/* ===================================
   SALMAN DEVELOPERS - MAIN STYLESHEET
   Premium Real Estate Landing Page
   =================================== */

/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Effra';
    src: url('../fonts/Effra_Std_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Effra';
    src: url('../fonts/Effra_Std_Lt.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Effra';
    src: url('../fonts/Effra Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Effra Variable';
    src: url('../fonts/EffraVF_Trial_Wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Ela Sans';
    src: url('../fonts/Ela Sans Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --gold-primary: #755429;
    /* --gold-light: #A69076; */
    --gold-dark: #755429;
    --gold-accent: #C4A574;

    /* Background Colors */
    --bg-cream: #F8F5F0;
    /* --bg-cream-light: #FAF8F5; */
    /* --bg-cream-dark: #EDE8E0; */
    --bg-beige: #E8E0D5;
    /* --bg-tan: #D4C8B8; */

    /* Text Colors */
    --text-dark: #755429;
    /* --text-medium: #000; */
    /* --text-light: #8A8A8A; */
    --text-white: #FFFFFF;

    /* Accent Colors */
    /* --accent-dark: #1A1A1A; */
    /* --accent-brown: #4A3F35; */

    /* Shadows */
    /* --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08); */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    /* --shadow-xl: 0 15px 60px rgba(0, 0, 0, 0.2); */
    --shadow-gold: 0 4px 20px rgba(139, 115, 85, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;

    /* Fonts */
    --font-primary: 'Effra', 'Helvetica Neue', sans-serif;
    --font-display: 'Effra Variable', 'Effra', sans-serif;
    --font-accent: 'Ela Sans', serif;
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    /* background-color: var(--bg-cream); */

    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* width: 100%;
    position: relative;
    background-image: url('../images/Buidling-vector-2.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover; */
}

.container-fluid {
    max-width: 1920px;
    margin: auto;
    /* padding: 0 40px; */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold-primary);
}

/* ===== TYPOGRAPHY ===== */
.section-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-description {
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    max-width: 600px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animate on scroll classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* ===== HEADER / NAVIGATION MODERN ===== */
.header-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}

/* Logo */
.logo-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #3f3b37;
    max-width: 200px;
}

.logo-modern img{
    width: 100%;
    height: auto;
    max-height: 4rem;
    max-width: fit-content;
}


.nav-opt {
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 80px;
}

.logo-main-row {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-family: var(--font-display);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-icon-bars {
    display: flex;
    gap: 2px;
    margin: 0 4px;
    height: 18px;
    align-items: flex-end;
}

.logo-bar {
    width: 2px;
    background: linear-gradient(to top, #755429, #D4C8B8);
}

.logo-bar:nth-child(1) {
    height: 12px;
}

.logo-bar:nth-child(2) {
    height: 18px;
}

.logo-bar:nth-child(3) {
    height: 24px;
}

.logo-bar:nth-child(4) {
    height: 18px;
}

.logo-bar:nth-child(5) {
    height: 12px;
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

/* Nav */
.nav-modern {
    display: flex;
    align-items: center;
    gap: 80px;
}

.nav-item {
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    color: #3f3b37;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-item:hover {
    color: var(--gold-primary);
}

.nav-item i {
    font-size: 14px;
    color: var(--gold-primary);
    margin-left: 6px;
}

/* Menu Toggle */
.menu-toggle-modern {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-bar {
    height: 2px;
    background-color: var(--gold-primary);
    transition: width 0.3s;
}

.menu-bar.long {
    width: 30px;
}

.menu-bar.short {
    width: 20px;
}

.menu-toggle-modern:hover .menu-bar.short {
    width: 30px;
}

.menu-toggle-modern:hover .menu-bar.long {
    width: 25px;
}

/* Decoration */
.header-deco-line {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background:
        linear-gradient(135deg, transparent 50%, rgba(139, 115, 85, 0.1) 50%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .nav-modern {
        display: none;
    }
}

/* ===== MAIN BACKGROUND WRAPPER ===== */
/* .main-background-wrapper {
    width: 100%;
    position: relative;
    background-image: url('../images/Buidling-vector.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 100% auto;
} */
.banner-top-venc{
    
}
.main-background-wrapper {
    position: relative;
    width: 100%;
    z-index: 0;
}
 
.main-background-wrapper .v-image {
    position: absolute;
    top: -500px;
    left: 0;
    width: 100%;
    height: 110%;
    opacity: 0.09;
}

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION MODERN REDESIGN ===== */
.hero-modern {
    position: relative;
    /* min-height: 100vh; */
    min-height: 100%;
    /* Full viewport height */
    /* background-color: #FFFFFF; */
    /* Clean white background */
    display: flex;
    align-items: center;
    overflow: hidden;
    /* padding: 40px; */
    margin-top: 90px;
    padding-top: 0px;
    /* Space for fixed header */
}
.banner-top-venc{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

/* Decorative Background Lines */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line {
    position: absolute;
    background-color: rgba(139, 115, 85, 0.05);
    /* Very subtle gold/brown lines */
}

.line-1 {
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%;
}

.line-2 {
    top: 0;
    right: 20%;
    width: 1px;
    height: 100%;
}

.line-3 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

/* Layout Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.hero-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

/* PROPER TYPOGRAPHY & TEXT SIDE */
.hero-text-content {
    flex: 1;
    max-width: 50%;
    padding-right: 10px;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
   height: auto;
        max-height: fit-content;
    padding-top: 50px;
}


.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 50px);
    font-weight: 700;
    /* Bold */
    line-height: 1.2;
    color: var(--gold-primary);
    /* The specific brown/gold color */
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}
@media(min-width: 1400px) {
    
    .hero-heading {
        font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 55px);
    }
    
}


@media(min-width: 1600px) {
    
    .hero-heading {
        font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 62px);
    }
    
}
@media(min-width: 1750px) {
    
    .hero-heading {
        font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 70px);
    }
    
}

.hero-desc {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
    max-width: 400px;
    margin-bottom: 50px;
}

/* NAVIGATION CONTROLS */
.hero-nav-controls {
    display: flex;
    gap: 0;
    /* Connected buttons */
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F0F0;
    /* Light gray default */
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

/* Darker/Gold button for the active/next one to match design */
.hero-nav-btn.next {
    background-color: var(--gold-dark);
    color: #FFF;
}

.hero-nav-btn:hover {
    background-color: var(--gold-primary);
    color: #FFF;
    cursor: pointer;
}

/* IMAGE SIDE */
.hero-visual {
    flex: 1.2;
    position: relative;
    /*height: 85vh;*/
    max-height: 850px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: 0px;
}

.hero-img-container {
    width: 100%;
    height: 100%;
    /*position: relative;*/
    /*overflow: hidden;*/
}

.main-hero-img {
    width: 100%;
    height: auto;
    /*object-fit: cover;*/
    /*object-position: bottom;*/
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .container-fluid {
        /* padding: 0 10px; */
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        align-items: center;
        /* Text on top or bottom? Design usually text top on mobile */
        padding-top: 0px;
        text-align: center;
    }

    .hero-text-content {
        flex: 1;
        max-width: 100%;
        padding-right: 0px;
        position: relative;
        z-index: 1;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        height: auto;
        max-height: fit-content;
        padding-top: 0px;
        align-items: center;
    }

    .hero-visual {
        width: 100%;
        height: auto;
        /* flex: none; */
        margin-left: 0px;
    }

    .hero-desc {
        text-align: center;
        border-left: none;
        padding-left: 0;
        margin: 0 auto 30px auto;
    }
    .about-modern-section {
    padding: 30px 0px 30px 0px !important;
    }
}

/* HERO SLIDER ANIMATIONS */
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in {
    animation: fadeInSlide 0.5s ease forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION MODERN ===== */
.about-modern-section {
    position: relative;
    padding: 120px 0px 30px 0px;
    /* background-color: #FFFFFF; */
    overflow: hidden;
}

/* Background Lines */
.about-bg-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 115, 85, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 115, 85, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    /* Grid effect */
    pointer-events: none;
    z-index: 0;
    transform: perspective(1000px) rotateX(20deg) scale(1.2);
    /* Angled architectural feel */
    opacity: 0.6;
}

.about-modern-container {
    position: relative;
    z-index: 2;
}

.about-modern-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* SIDE IMAGES */
.about-image-side {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    flex-shrink: 0;
    width: 29%;
    max-width: 557px;
}

.about-image-side.left {
    top: -120px;
    display: flex;
    align-items: flex-start;
    height: 100%;
    min-height: 926px;
}

.about-image-side.right {
    bottom: -120px;
    display: flex;
    align-items: end;
    height: 100%;
    min-height: 926px;
}

.about-side-img {
    width: 100%;
    height: auto;
    /*height: 700px;*/
    /*object-fit: cover;*/
    transition: var(--transition-slow);
    box-shadow: var(--shadow-md);
}

.about-image-side:hover .about-side-img {
    transform: scale(1.05);
}

/* CENTER CARD */
.about-content-card {
    position: relative;
    width: 50%;
    background-color: #EFE7D1;
    padding: 180px 85px;
    text-align: center;
    z-index: 0;
    margin: 0 -40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
}

.about-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    /* Darker beige/brown */
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.about-app-title {
    font-size: 48px;
    line-height: 1.1;
    color: var(--gold-primary);
    font-weight: bold;
    /* Gold Dark */
    margin-bottom: 35px;
}

.about-text-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Effra', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-features-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.about-features-list span {
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--gold-primary);
    font-style: italic;
}

.btn-about-gold {
    display: inline-block;
    background-color: var(--gold-primary);
    color: #FFF;
    padding: 15px 5px;
    font-size: 13px;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
    font-weight: 500;
    transition: var(--transition-normal);
}

.btn-about-gold:hover {
    background-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Bottom Decoration */
/* Bottom Decoration */
.about-bottom-circle {
    width: 120px;
    height: 120px;
    border: 1px solid rgb(4 4 4 / 90%);
    border-radius: 50%;
    margin: 80px auto 0 auto;
    position: relative;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.about-bottom-circle:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(117, 84, 41, 0.2);
}

.about-bottom-circle::after {
    content: '';
    position: absolute;
    top: -50px;
    bottom: 50px;
    width: 2px;
    background-color: rgb(4 4 4 / 90%);
    left: 50%;
    transform: translateX(-50%);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .nav-modern {
        gap: 40px;
    }

    .about-modern-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-side.left {
        top: 0px;
        display: flex;
        align-items: flex-start;
        height: 100%;
        min-height: auto;
    }

    .about-image-side.right {
        bottom: 0px;
        display: flex;
        align-items: end;
        height: 100%;
        min-height: auto;
    }

    .about-content-card {
        margin: -50px 0;
        /* Vertical overlap instead */
        width: 90%;
        max-width: 600px;
        order: 2;
        /* Card in middle vertically */
    }

    .about-image-side {
        width: 80%;
        max-width: 500px;
        height: 300px;
    }

    .about-image-side.left {
        order: 1;
        margin-right: auto;
        /* Align left */
    }

    .about-image-side.right {
        order: 3;
        margin-left: auto;
        /* Align right */
    }
}

@media (max-width: 768px) {
    .about-image-side {
        width: 100%;
        margin: 0 !important;
    }

    .about-content-card {
        margin: -30px 15px;
        /* Slight overlap */
        width: calc(100% - 30px);
        padding: 50px 20px;
        width: 100%;
    }

    .about-app-title {
        font-size: 36px;
    }
}

/* ===== LANDMARK PROJECTS & STATS SECTION ===== */
.landmarks-section {
    background-color: rgba(239, 231, 209, 0.60);
    /* Matching beige background */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.landmarks-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, #755429 0, #755429 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
    pointer-events: none;
}

.landmarks-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* 3D CAROUSEL */
.landmark-slider-perspective {
    perspective: 2000px;
    height: 530px;
    /* Increased height for better visibility */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 1400px;
    /* Max width constraint */
    margin-left: auto;
    margin-right: auto;
}

.landmark-slider-track {
    position: relative;
    width: 400px;
    /* Base width */
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landmark-slide {
    position: absolute;
    width: 400px;
    height: 450px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    /* Default state */
    opacity: 0;
    transform: translateX(0) scale(0.8);
    z-index: 0;
}

.landmark-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active Center Slide */
.landmark-slide.center {
    opacity: 1;
    transform: translateX(0) scale(1.1);
    /* Center, scaled up */
    z-index: 20;
    /* Highest priority */
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); */
}

/* Side Slides - Overlapping */
/* We translate less than 100% to create overlap */
.landmark-slide.side-left {
    opacity: 0.85;
    transform: translateX(-60%) scale(0.9) rotateY(15deg);
    /* Overlap significantly */
    z-index: 10;
    /* Lower than center */
    filter: brightness(0.6);
    cursor: pointer;
}

.landmark-slide.side-right {
    opacity: 0.85;
    transform: translateX(60%) scale(0.9) rotateY(-15deg);
    /* Overlap significantly */
    z-index: 10;
    /* Lower than center */
    filter: brightness(0.6);
    cursor: pointer;
}

/* Hidden Slides */
.landmark-slide.hidden-left {
    opacity: 0;
    transform: translateX(-120%) scale(0.8);
    z-index: 1;
}

.landmark-slide.hidden-right {
    opacity: 0;
    transform: translateX(120%) scale(0.8);
    z-index: 1;
}

/* CONTROLS */
.landmark-controls-container {
    display: flex;
    align-items: flex-start;
    /* Align with text top */
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.landmark-arrow {
    font-size: 30px;
    color: var(--gold-primary);
    background: none;
    transition: var(--transition-normal);
    padding: 10px;
}

.landmark-arrow:hover {
    color: var(--gold-primary);
    transform: scale(1.2);
}

.landmark-info {
    max-width: 600px;
}

.landmark-active-title {
    font-size: 42px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.landmark-active-desc {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 25px;
}

.landmark-read-more {
        font-size: 16px;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 0px solid currentColor;
    padding-bottom: 2px;
    text-decoration: none;
}

.landmark-read-more:hover {
    color: var(--gold-primary);
}

/* STATS */
.landmark-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-top: 0px;
    border-top: 0px solid rgba(139, 115, 85, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.landmark-stat-item {
    text-align: left;
}

.l-stat-label {
        display: block;
    font-size: 13px;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0px;
    line-height: 1.4;
}

.l-stat-number {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--gold-primary);
    line-height: 1;
}

.l-stat-divider {
        width: 2px;
    height: 150px;
    background-color: var(--gold-primary);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .landmark-slider-perspective {
        height: 500px;
    }

    .landmark-slide {
        width: 300px;
        height: 450px;
    }

    .landmark-slider-track {
        width: 300px;
    }

    .landmark-slide.side-left {
        transform: translateX(-50%) scale(0.9);
    }

    .landmark-slide.side-right {
        transform: translateX(50%) scale(0.9);
    }

    .landmark-controls-container {
        gap: 20px;
    }

    .landmark-active-title {
        font-size: 32px;
    }

    .landmark-stats-container {
        flex-direction: column;
        gap: 30px;
        border-top: none;
    }

    .l-stat-divider {
        width: 100px;
        height: 1px;
    }


}

@media (max-width: 576px) {
    .landmark-slider-perspective {
        height: 400px;
    }

    .landmark-slide {
        width: 260px;
        height: 380px;
    }

    .landmark-slider-track {
        width: 260px;
    }

    .landmark-slide.side-left {
        transform: translateX(-30%) scale(0.9);
        opacity: 0.5;
        z-index: 5;
    }

    .landmark-slide.side-right {
        transform: translateX(30%) scale(0.9);
        opacity: 0.5;
        z-index: 5;
    }
}

/* ===== CELEBRATING EXCELLENCE SECTION (FAN SLIDER) ===== */
.excellence-section {
    position: relative;
    /* background-color: #FFFFFF; */
    padding: 100px 0;
    overflow: hidden;
}

.excellence-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(to right, #755429 1px, transparent 1px),
        linear-gradient(to bottom, #755429 1px, transparent 1px);
    background-size: 100px 100px;
    perspective: 1000px;
    transform-origin: top;
    pointer-events: none;
    z-index: 0;
}

.excellence-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.excellence-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold-primary);
    line-height: 1.2;
    font-weight: bold;
}

.fan-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    max-width: 1600px;
    margin: auto;
}

.fan-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 30px;
    color: var(--gold-primary);
    cursor: pointer;
    z-index: 50;
    transition: transform 0.3s;
}

.fan-nav-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.fan-nav-btn.prev {
    left: 20px;
}

.fan-nav-btn.next {
    right: 20px;
}

.fan-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.fan-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 400px;
    background: #ccc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center center;
}

.fan-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== STATES for Fan Slider ===== */
/* Center */
.fan-slide.active {
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 30;
    filter: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Left side */
.fan-slide.prev-1 {
    transform: translate(-120%, -50%) scale(1.0);
    z-index: 20;
    filter: grayscale(100%);
    opacity: 1;
}

.fan-slide.prev-2 {
    transform: translate(-180%, -50%) scale(0.85);
    z-index: 10;
    filter: grayscale(100%);
    opacity: 0.9;
}

.fan-slide.prev-3 {
    transform: translate(-230%, -50%) scale(0.7);
    z-index: 5;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Right side */
.fan-slide.next-1 {
    transform: translate(20%, -50%) scale(1.0);
    z-index: 20;
    filter: grayscale(100%);
    opacity: 1;
}

.fan-slide.next-2 {
    transform: translate(80%, -50%) scale(0.85);
    z-index: 10;
    filter: grayscale(100%);
    opacity: 0.9;
}

.fan-slide.next-3 {
    transform: translate(130%, -50%) scale(0.7);
    z-index: 5;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Hidden */
.fan-slide.hidden-left {
    transform: translate(-300%, -50%) scale(0.5);
    opacity: 0;
    z-index: 0;
}

.fan-slide.hidden-right {
    transform: translate(200%, -50%) scale(0.5);
    opacity: 0;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fan-slider-wrapper {
        height: 350px;
    }

    .fan-slide {
        width: 200px;
        height: 300px;
    }

    /* Adjust spacing for mobile if needed */
}

/* ===== SERVICES SECTION MODERN ===== */
.services-modern-section {
    /* background-color: #FFFFFF; */
    padding: 0px 0px 100px 0px;
    overflow: hidden;
    position: relative;
}

.services-bg-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(107, 90, 69, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 90, 69, 0.05) 1px, transparent 1px);
    background-size: 150px 150px;
    z-index: 0;
    pointer-events: none;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    /* Angled perspective effect */
    opacity: 0.6;
}

.services-modern-section .container {
    position: relative;
    z-index: 1;
}

.services-header {
    margin-bottom: 80px;
    text-align: center;
}

.service-modern-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.service-modern-row:last-child {
    margin-bottom: 0;
}

/* IMAGE SIDE */
.service-img-wrapper {
    flex: 1.2;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-modern-row:hover .service-img {
    transform: scale(1.05);
    /* Subtle zoom */
}

/* CARD SIDE */
.service-card-wrapper {
    flex: 1;
    position: relative;
    z-index: 10;
}

.service-modern-row .service-card-wrapper.right {
    margin-left: -80px;
    /* Overlap Left */
}

.service-modern-row.reverse .service-card-wrapper.left {
    margin-right: -80px;
    justify-content: right;
    display: flex;
    /* Overlap Right */
}

.service-modern-card {
    background-color: #efe7d1;
    padding: 75px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 470px;
}

.service-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--gold-primary);
    /* Brown/Gold */
    margin-bottom: 20px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: 'Effra', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: -25px;
    right: 30px;
    font-size: 50px;
    color: var(--gold-primary);
    /* background: #EFE7D1; */
    padding: 0 10px;
}

/* LEFT SIDE QUOTE for Reverse */
.service-modern-row.reverse .quote-icon {
    right: auto;
    left: 30px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .service-modern-row {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .service-modern-row.reverse {
        flex-direction: column-reverse;
    }

    .service-img-wrapper {
        width: 100%;
        height: 300px;
        flex: none;
    }

    .service-card-wrapper {
        width: 90%;
        flex: none;
        margin: -50px auto 0 auto !important;
        /* Overlap vertically */
    }

    .service-modern-card {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 24px;
    }
}



/* ===== WHAT WE OFFER SECTION (TEXT SLIDER) ===== */
.offer-text-section {
    background-color: #EFE7D1;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.offer-text-section-inner {
    padding: 0px 40px;
}

.offer-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.offer-header-row .section-title {
    color: var(--gold-primary);
    font-size: 42px;
    margin: 0;
}

.offer-nav-controls {
    display: flex;
    gap: 20px;
}

.offer-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--gold-primary);
    /* Brown */
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.offer-nav-btn:hover {
    background: rgba(107, 90, 69, 0.1);
    transform: scale(1.1);
}

.offer-text-slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.offer-text-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.offer-text-card {
    min-width: 380px;
    background: #FFFFFF;
    padding: 50px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-text-title {
    color: var(--gold-primary);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.offer-text-desc {
    color: #8d9aa8;
    font-size: 14px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-text-card {
        min-width: 300px;
        padding: 30px 25px;
    }
}

/* ===== NEWS MODERN SECTION ===== */
.news-modern-section {
    padding: 100px 0;
    /* background-color: #FFFFFF; */
}

.news-modern-header {
    margin-bottom: 60px;
}

.news-modern-subtitle {
    display: block;
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-modern-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--gold-primary);
    margin: 0;
}

.news-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-modern-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

.news-modern-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.news-modern-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-modern-card:hover .news-modern-bg {
    transform: scale(1.05);
}

.news-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 10;
}

.news-modern-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-modern-meta span i {
    margin-right: 5px;
}

.news-modern-card-title {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 0;
}


@media (max-width: 992px) {
    .news-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-modern-grid {
        grid-template-columns: 1fr;
    }

    .news-modern-card {
        height: 400px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #111111;
    color: var(--text-white);
    padding-top: 80px;
}

.footer-section-inner {
    padding: 0px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-normal);
}

.footer-link:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--gold-accent);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        padding-left: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .l-stat-number {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--text-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        color: var(--text-dark);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-images-grid {
        width: 100%;
        opacity: 0.3;
    }

    .hero-content {
        padding-left: 20px;
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .excellence-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .excellence-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .excellence-item:nth-child(4) {
        grid-column: span 1;
    }

    .services-header {
        flex-direction: column;
        gap: 30px;
    }

    .commercial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .project-card {
        flex: 0 0 calc(100% - 40px);
        min-width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .demands-section {
        height: auto;
        padding: 80px 0;
    }

    .demands-bg {
        opacity: 0.3;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        flex: 0 0 calc(100% - 40px);
        min-width: auto;
    }

    .news-card {
        flex-direction: column;
    }

    .news-card-image {
        width: 100%;
        height: 200px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .excellence-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--bg-beige);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-primary);
}

/* Layout Container */
        .all-pro-p-container {
            margin: 100px auto;
        }

        .all-pro-p-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            padding: 40px;
        }

        @media (min-width: 768px) {
            .all-pro-p-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .all-pro-p-grid {
                gap: 48px;
            }
        }

        /* Card Component */
        .all-pro-p-card {
            position: relative;
            overflow: hidden;
            background-color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            aspect-ratio: 3/4;
        }

        @media (min-width: 768px) {
            .all-pro-p-card {
                aspect-ratio: 4/5;
            }
        }

        .all-pro-p-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1000ms;
        }

        .all-pro-p-card:hover .all-pro-p-img {
            transform: scale(1.1);
        }

        /* Content Area */
        .all-pro-p-content {
            position: absolute;
            bottom: 0;
            right: 0; /* Aligned to Left Bottom as per original request */
            width: 90%;
            background-color: #EFE7D1;
            padding: 24px;
            transition: transform 500ms;
            box-sizing: border-box;
        }

        @media (min-width: 768px) {
            .all-pro-p-content {
                width: 80%;
                padding: 32px 60px 32px 32px;
            }
        }

        .all-pro-p-card:hover .all-pro-p-content {
            /*transform: translateY(-4px);*/
        }

        /* Animated Border */
        .all-pro-p-border-top {
               position: absolute;
                top: -10px;
                left: 0;
                height: 10px;
                background-color: #b89564;
                width: 50%;
                transition: width 500ms ease-in-out;
        }

        .all-pro-p-card:hover .all-pro-p-border-top {
            width: 100%; /* Full Border on Hover */
        }

        /* Typography */
        .all-pro-p-title-main {
            min-height: 110px;
        }
        .all-pro-p-title {
                margin: 0 0 12px 0;
                font-weight: 700;
                line-height: 1.2;
                color: var(--gold-primary);
                text-transform: uppercase;
                letter-spacing: -0.5px;
                margin-bottom: 10px;
                font-size: clamp(40px, 4.8vw, 30px);
        }

        @media (min-width: 768px) {
            .all-pro-p-title {
               font-size: clamp(40px, 4.8vw, 40px);
            }
        }

        .all-pro-p-desc {
            color: #6f7071;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-family: var(--font-primary);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .all-pro-p-link {
                display: inline-block;
                font-size: 14px;
                font-weight: 500;
                text-transform: uppercase;
                text-decoration: none;
                transition: color 300ms;
                color: #b89564;
        }

        .all-pro-p-link:hover {
                color: var(--gold-primary);
        }

/* ===== PROJECT HERO SECTION (DUPLICATED) ===== */
.project-hero-modern {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 90px;
    padding-top: 0px;
}
.banner-top-venc{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

/* Decorative Background Lines */
.project-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.project-line {
    position: absolute;
    background-color: rgba(139, 115, 85, 0.05);
}

.project-line-1 {
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%;
}

.project-line-2 {
    top: 0;
    right: 20%;
    width: 1px;
    height: 100%;
}

.project-line-3 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

/* Layout Container */
.project-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.project-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* PROPER TYPOGRAPHY & TEXT SIDE */
.project-hero-text-content {
    flex: 1;
    max-width: 30%;
    padding-right: 10px;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: fit-content;
    padding-top: 0px;
}


.project-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}
@media(min-width: 1400px) {
    .project-hero-heading {
        font-family: var(--font-display);
        font-size: clamp(40px, 4.8vw, 55px);
    }
}


@media(min-width: 1600px) {
    .project-hero-heading {
        font-family: var(--font-display);
        font-size: clamp(40px, 4.8vw, 62px);
    }
}
@media(min-width: 1750px) {
    .project-hero-heading {
        font-family: var(--font-display);
        font-size: clamp(40px, 4.8vw, 70px);
    }
}

.project-hero-desc {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
    max-width: 400px;
    margin-bottom: 50px;
}

/* NAVIGATION CONTROLS */
.project-hero-nav-controls {
    display: flex;
    gap: 0;
}

.project-hero-nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F0F0;
    color: var(--text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.project-hero-nav-btn.next {
    background-color: var(--gold-dark);
    color: #FFF;
}

.project-hero-nav-btn:hover {
    background-color: var(--gold-primary);
    color: #FFF;
    cursor: pointer;
}

/* IMAGE SIDE */
.project-hero-visual {
    flex: 1.2;
    position: relative;
    /*height: 85vh;*/
    max-height: fit-content;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: 0px;
}

.project-hero-img-container {
    width: 100%;
    height: 100%;
    /*position: relative;*/
    /*overflow: hidden;*/
}

.project-main-hero-img {
    width: 100%;
    height: auto;
    /*object-fit: cover;*/
    /*object-position: bottom;*/
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .project-hero-text-content {
    max-width: 50%;
    }
}
@media (max-width: 992px) {
    .project-hero-wrapper {
        flex-direction: column-reverse;
        padding-top: 0px;
        text-align: center;
    }

    .project-hero-text-content {
        flex: 1;
        max-width: 100%;
        padding-right: 0px;
        position: relative;
        z-index: 1;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        height: auto;
        max-height: fit-content;
        padding-top: 0px;
        align-items: center;
    }

    .project-hero-visual {
        width: 100%;
        /*height: 50vh;*/
        flex: none;
        margin-left: 0px;
    }

    .project-hero-desc {
        text-align: center;
        border-left: none;
        padding-left: 0;
        margin: 0 auto 30px auto;
    }
}
@media (max-width: 425px){
    .all-pro-p-container {
    margin: 5px auto;
}
    .all-pro-p-title {
    font-size: clamp(20px, 4.8vw, 30px);
}
.all-pro-p-title-main {
    min-height: 40px;
}
.all-pro-p-desc {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.all-pro-p-link {
    font-size: 12px;
}
}