:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --grey: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Top Bar */
.top-bar { background: var(--dark); color: #fff; padding: 10px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; }
.top-bar a { color: #fff; margin-left: 15px; text-decoration: none; }

/* Header & Logo */
header { background: #fff; padding: 15px 0; box-shadow: 0 2px 15px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; transition: 0.3s; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
#site-logo { height: 60px; width: auto; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 14px; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.btn-quote { background: var(--gold); color: #fff !important; padding: 10px 20px; border-radius: 3px; }

/* Footer */
.main-footer { background: #1a1a1a; color: #ccc; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { height: 70px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; margin-bottom: 25px; border-left: 3px solid var(--gold); padding-left: 10px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.contact-item { display: flex; margin-bottom: 15px; }
.contact-item i { color: var(--gold); margin-right: 15px; margin-top: 5px; }
.map-container { border-radius: 8px; overflow: hidden; border: 1px solid #333; }
.footer-bottom { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; text-align: center; }

/* --- Updated Responsive Section (No Design Change) --- */
@media (max-width: 768px) {
    .nav-links { 
        display: none; /* Default chhupa rahega */
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Jab click hoga toh ye class add hogi */
    .nav-links.open { 
        display: flex !important; 
    }

    .nav-links li { 
        margin: 15px 0; 
        text-align: center;
        width: 100%;
    }

    .hamburger { 
        display: block; 
    }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4 { border-left: none; padding-left: 0; }
    .contact-item { justify-content: center; }
}


/* --- Expertise Section Styles --- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

/* Mobile Responsive Query */
@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
        gap: 20px;
    }
    
    .expertise-card {
        margin-bottom: 10px;
    }
}

/* --- Global Split Section --- */
.presence-wrapper {
    display: flex;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.presence-item {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    text-decoration: none;
}

.presence-item:hover {
    flex: 1.5; /* Hover karne par ye side badi ho jayegi */
}

.presence-item .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) brightness(0.6);
    transition: 0.7s;
}

.presence-item:hover .bg-image {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.05);
}

.presence-info {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.presence-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 70px);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.presence-info p {
    font-size: 18px;
    letter-spacing: 2px;
    color: #c5a059;
    margin-top: 10px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .presence-wrapper {
        flex-direction: column;
        height: 800px;
    }
    .presence-item:hover {
        flex: 1; /* Mobile par expansion band */
    }
}


/* --- Featured Properties Section --- */
.filter-container {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #c5a059;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 0.3s;
    margin: 5px;
    border-radius: 4px;
}

.filter-btn.active, .filter-btn:hover {
    background: #c5a059;
    color: #fff;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
}

.prop-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c5a059;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.prop-details {
    padding: 25px;
}

.prop-location {
    color: #c5a059;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.prop-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.prop-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: #777;
    font-size: 14px;
}

/* Animation for Filtering */
@keyframes fadeInCard {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}



/* --- About Section Styles --- */
.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.about-image-side {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.about-image-side img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #c5a059; /* Gold accent box shadow */
    transition: 0.5s;
}

.about-content-side {
    flex: 1.2;
    min-width: 350px;
}

.about-tagline {
    color: #c5a059;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 25px;
    transition: 0.3s;
    border: 1px solid #1a1a1a;
}

.read-more-btn:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image-side {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .about-image-side img {
        box-shadow: 10px 10px 0px #c5a059;
    }
    .about-content-side {
        min-width: 100%;
    }
}



/* --- Premium Testimonial Card Slider --- */
.testimonials-wrapper {
    padding: 80px 0;
    background: #f8f9fa; /* Light background for visual break */
    overflow: hidden;
    position: relative;
}

.testimonial-container-inner {
    max-width: 1200px;
    margin: auto;
    overflow: hidden; /* Taaki extra cards bahar na dikhein */
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: 300%; /* 3 cards ke liye */
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    margin: 0 20px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid #c5a059;
    position: relative;
}

.quote-icon-gold {
    color: rgba(197, 160, 89, 0.2);
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
}

.client-meta h4 {
    font-family: 'Playfair Display', serif;
    margin: 15px 0 5px 0;
    color: #1a1a1a;
}

.client-meta span {
    font-size: 13px;
    color: #c5a059;
    font-weight: 600;
    text-transform: uppercase;
}

/* Dots */
.t-dots-nav {
    text-align: center;
    margin-top: 30px;
}

.t-dot {
    height: 8px;
    width: 8px;
    background: #ccc;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.t-dot.active {
    background: #c5a059;
    width: 25px;
    border-radius: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
}

/* --- home css: end here --- */


/* --- About Hero: Center Reveal Animation --- */
.about-hero {
    position: relative;
    width: 100%;
    height: 85vh; /* Screen ka 85% area lega */
    min-height: 600px;
    background: #111; /* Background color jab tak image load ho */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* START: Image bich mein band hai (0% width jaisa feel) */
    clip-path: inset(0% 50% 0% 50%); 
    animation: revealFromCenter 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.3s;
}

.hero-reveal-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Text white hai isliye image ko halka dark rakha hai */
}

/* Bich se Khulne wali Animation Logic */
@keyframes revealFromCenter {
    0% { clip-path: inset(0% 50% 0% 50%); }
    100% { clip-path: inset(0% 0% 0% 0%); }
}

/* --- Text Fade-Up Animation --- */
.hero-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.sub-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #c5a059;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: textUp 1s ease forwards;
    animation-delay: 1.8s; /* Image khulne ke baad start hoga */
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 7vw, 65px);
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: textUp 1s ease forwards;
    animation-delay: 2s;
}

.hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: textUp 1s ease forwards;
    animation-delay: 2.2s;
}

.gold-text { color: #c5a059; }

/* Simple Upward Animation */
@keyframes textUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .about-hero { height: 70vh; }
    .main-title { font-size: 40px; }
}










/* --- The Story Section Styles --- */
.the-story-section {
    padding: 100px 20px;
    background: #ffffff;
    /* overflow hidden rakha hai taaki badge bahar na nikle */
    overflow: hidden; 
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    flex: 1;
    min-width: 300px; /* 350px se kam kiya taaki mobile par fit ho */
    position: relative;
}

.main-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.main-img-box img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.main-img-box:hover img {
    transform: scale(1.05);
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #c5a059;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    z-index: 2;
}

.exp-badge h2 {
    font-size: 40px;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.exp-badge span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.story-content-box {
    flex: 1.2;
    min-width: 300px; /* 350px se kam kiya */
}

.section-tag {
    color: #c5a059;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 45px); /* Choti screen ke liye minimum size set kiya */
    line-height: 1.2;
    color: #111;
    margin-bottom: 30px;
}

.gold-highlight { color: #c5a059; }

.story-text p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: #c5a059;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.feature-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.story-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    border: 2px solid #111;
}

.story-btn:hover { background: transparent; color: #111; }

/* Responsive Story Section */
@media (max-width: 768px) {
    .story-container { gap: 40px; flex-direction: column; }
    .story-image-wrapper, .story-content-box { min-width: 100%; }
    .exp-badge { 
        bottom: 10px; 
        right: 10px; 
        padding: 15px; 
        position: relative; /* Mobile par overlap na ho */
        float: right;
        margin-top: -50px;
    }
    .feature-grid { grid-template-columns: 1fr; }
}


/* --- Core Values Section Styles --- */
.values-section {
    padding: 100px 20px;
    background: #f8f9fa;
    position: relative;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header { text-align: center; margin-bottom: 60px; }
.values-header .tagline { color: #c5a059; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 13px; }
.values-header .title { font-family: 'Playfair Display', serif; font-size: 40px; margin-top: 10px; color: #111; }
.values-header .divider { width: 60px; height: 3px; background: #c5a059; margin: 20px auto; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 300px se 280px kiya taaki wrap jaldi ho */
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 1;
}

.value-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.active-card { border-bottom: 5px solid #c5a059; }

.card-icon {
    width: 80px; height: 80px;
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    transition: 0.3s;
}

.value-card:hover .card-icon { background: #c5a059; color: #fff; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; color: #111; }
.value-card p { font-family: 'Montserrat', sans-serif; color: #666; line-height: 1.7; font-size: 15px; }

.card-bg-icon {
    position: absolute; bottom: -20px; right: -20px;
    font-size: 100px; color: rgba(0,0,0,0.02);
    z-index: -1; transform: rotate(-15px);
}

@media (max-width: 768px) {
    .values-section { padding: 60px 15px; }
    .values-header .title { font-size: 32px; }
    .values-grid { grid-template-columns: 1fr; } /* Force 1 card per row */
    .value-card { padding: 40px 25px; }
}


/* --- Why Choose Us Section Styles --- */
.stats-section {
    padding: 100px 20px;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

/* Yahan Desktop ke liye min-width theek hai */
.stats-info { flex: 1; min-width: 300px; }
.stats-grid { flex: 1.2; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.stats-info .tag { color: #c5a059; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 13px; }
.stats-info h2 { font-family: 'Playfair Display', serif; font-size: 42px; margin: 20px 0; line-height: 1.2; }
.stats-desc { color: #aaa; line-height: 1.8; margin-bottom: 30px; }

.stats-list { list-style: none; padding: 0; }
.stats-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #eee; font-weight: 500; }
.stats-list li i { color: #c5a059; }

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: 0.4s;
    /* Box sizing add kiya taaki padding card ko bada na kare */
    box-sizing: border-box; 
}

.stat-card:hover { background: #c5a059; transform: translateY(-10px); }
.stat-icon i { font-size: 35px; color: #c5a059; margin-bottom: 15px; transition: 0.3s; }
.stat-card h2, .stat-card .plus { display: inline-block; font-size: 40px; font-family: 'Playfair Display', serif; margin: 0; }
.stat-card p { margin-top: 10px; font-size: 13px; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }

/* --- MAJOR CHANGES HERE --- */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 15px; /* Mobile par side padding kam ki */
    }
    
    .stats-container {
        gap: 30px; /* Gap kam kiya mobile ke liye */
    }

    .stats-info, .stats-grid {
        min-width: 100% !important; /* 300px hata kar 100% force kiya */
        width: 100%;
    }

    .stats-grid { 
        grid-template-columns: 1fr !important; /* One-by-one cards */
    }

    .stats-info h2 { 
        font-size: 28px; /* Heading thodi choti ki taaki line na kate */
        text-align: center;
    }
    
    .stats-desc, .stats-list {
        text-align: center;
    }
    
    .stats-list li {
        justify-content: center;
    }

    .stat-card {
        padding: 30px 15px; /* Card ki internal padding kam ki */
    }
}


/* --- Founder Section Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

.founder-section {
    padding: 120px 20px;
    background: #fff;
    position: relative;
}

.founder-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.founder-image-box { flex: 1; min-width: 300px; }
.image-inner { position: relative; padding-left: 20px; }

.image-inner::before {
    content: "";
    position: absolute; top: -20px; left: 0;
    width: 80%; height: 100%;
    border: 10px solid #f1f1f1;
    z-index: 0;
}

.image-inner img {
    width: 100%; border-radius: 5px;
    position: relative; z-index: 1;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.experience-tag {
    position: absolute; top: 20px; left: -10px;
    background: #c5a059; color: #fff;
    padding: 10px 25px; font-weight: 700;
    z-index: 2; font-size: 14px;
}

.founder-content { flex: 1.5; min-width: 300px; }
.quote-icon { font-size: 50px; color: rgba(197, 160, 89, 0.2); display: block; margin-bottom: -20px; }
.founder-title { font-family: 'Playfair Display', serif; font-size: 40px; color: #111; margin-bottom: 30px; }
.message-body p { font-family: 'Montserrat', sans-serif; font-size: 17px; line-height: 1.9; color: #555; font-style: italic; margin-bottom: 25px; }

.founder-signature { margin-top: 40px; border-top: 1px solid #eee; padding-top: 30px; }
.founder-name { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 5px; color: #111; }
.founder-desig { color: #c5a059; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; font-size: 12px; }

@media (max-width: 768px) {
    .founder-container { flex-direction: column; gap: 50px; }
    .founder-image-box, .founder-content { min-width: 100%; }
    .founder-title { font-size: 30px; text-align: center; }
    .image-inner { padding-left: 0; }
    .image-inner::before { display: none; } /* Mobile par extra border hata diya */
    .message-body p { font-size: 15px; text-align: center; }
    .founder-signature { text-align: center; }
}



/* --- Global Presence Section Styles --- */
.presence-section {
    padding: 100px 20px;
    background: #fdfdfd;
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 30px 30px; /* Subtle Grid Background */
}

.presence-container { max-width: 1200px; margin: 0 auto; text-align: center; }

.presence-header { margin-bottom: 80px; }
.presence-header .tag { color: #c5a059; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 13px; }
.presence-header .title { font-family: 'Playfair Display', serif; font-size: 42px; color: #111; margin: 10px 0; }
.presence-header .subtitle { color: #777; font-family: 'Montserrat', sans-serif; font-size: 18px; }

.map-connect-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 40px 0;
}

.location-box {
    flex: 1;
    max-width: 300px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
    transition: 0.3s;
    z-index: 2;
}

.location-box:hover { border-color: #c5a059; transform: translateY(-5px); }

.city-icon i { font-size: 40px; color: #c5a059; margin-bottom: 20px; }
.location-box h3 { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 5px; }
.location-box .country { color: #c5a059; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; }

.area-list { list-style: none; padding: 0; text-align: left; }
.area-list li { color: #555; margin-bottom: 10px; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.area-list li i { color: #c5a059; font-size: 12px; }

/* Connection Line & Plane Animation */
.connection-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(to right, #c5a059 0, #c5a059 10px, transparent 10px, transparent 20px);
    position: relative;
    margin: 0 20px;
}

.plane-icon {
    position: absolute;
    top: -15px;
    left: 0;
    color: #c5a059;
    font-size: 24px;
    animation: flightMove 5s linear infinite;
}

@keyframes flightMove {
    0% { left: 0%; transform: rotate(90deg); }
    100% { left: 100%; transform: rotate(90deg); }
}

.presence-footer { margin-top: 60px; color: #888; font-style: italic; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Mobile Responsive */
@media (max-width: 991px) {
    .map-connect-wrapper { flex-direction: column; gap: 50px; }
    .connection-line { width: 2px; height: 100px; background: repeating-linear-gradient(to bottom, #c5a059 0, #c5a059 10px, transparent 10px, transparent 20px); margin: 20px 0; }
    .plane-icon { top: 0; left: -11px; animation: flightMoveVertical 5s linear infinite; }
}

@keyframes flightMoveVertical {
    0% { top: 0%; transform: rotate(180deg); }
    100% { top: 100%; transform: rotate(180deg); }
}



/* --- Property Hero Section Styles --- */
.property-hero {
    position: relative;
    width: 100%;
    height: 90vh; /* Screen ka 90% cover karega */
    min-height: 650px;
    background: #111; /* Fallback color */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* Background Image Animation (Zoom-in Fade) */
.hero-bg-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0; /* Shuru mein chhupa hua */
    transform: scale(1.1); /* Shuru mein halka zoom */
    animation: imageRevealZoom 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-bg-animate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Text readability ke liye image dark */
}

/* Content Area */
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px); /* Shuru mein niche */
    animation: contentSlideUp 1s ease-out forwards;
    animation-delay: 1.2s; /* Image load hone ke baad aayega */
    padding: 0 20px;
}

/* Typography & Colors */
.hero-content .eyebrow {
    font-family: 'Montserrat', sans-serif;
    color: #c5a059; /* Gold Theme */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.hero-content .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 75px); /* Responsive font size */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.gold-text {
    color: #c5a059;
}

.hero-content .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #c5a059;
    color: #fff;
    border: 2px solid #c5a059;
}

.btn-primary:hover {
    background: transparent;
    color: #c5a059;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #111;
}

/* Bottom Gradient decor */
.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to top, #111, transparent);
    z-index: 1;
}

/* --- ANIMATIONS KEYFRAMES --- */

/* Image Zoom-in Fade */
@keyframes imageRevealZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Content Slide Up */
@keyframes contentSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .property-hero {
        height: 70vh;
    }
    .hero-content .hero-title {
        font-size: 35px;
    }
    .hero-content .hero-subtitle {
        font-size: 15px;
    }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
}



/* --- Global Properties Catalog Styles --- */
.property-catalog {
    padding: 80px 0;
    background: #fdfdfd;
}

.catalog-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.catalog-header .sub-title {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 13px;
    display: block;
}

.catalog-header .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #111;
    margin-top: 10px;
}

/* --- THE MAGIC GRID (RESPONSIVE) --- */
.property-grid {
    display: grid;
    /* Default: 1 Column for Mobile */
    grid-template-columns: 1fr; 
    gap: 30px;
}

/* Tablet View: 2 Columns */
@media (min-width: 768px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop View: 3 Columns */
@media (min-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styling */
.prop-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-10px);
}

.prop-img-wrapper {
    position: relative;
    height: 230px;
}

.prop-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tags */
.status-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.status-tag.ready { background: #27ae60; }
.status-tag.selling { background: #e67e22; }
.status-tag.approved { background: #2980b9; }

.location-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 3px;
}

/* Info */
.prop-info {
    padding: 20px;
    flex-grow: 1;
}

.prop-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.prop-loc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.prop-specs {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
}

.prop-specs span { font-size: 13px; font-weight: 600; color: #555; }
.prop-specs i { color: #c5a059; margin-right: 4px; }

/* Footer */
.prop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.prop-footer .price {
    font-weight: 700;
    color: #c5a059;
}

.details-btn {
    background: #111;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    transition: 0.3s;
}

.details-btn:hover {
    background: #c5a059;
}

/* Mobile Specific Tweaks */
@media (max-width: 480px) {
    .catalog-header .main-title { font-size: 28px; }
    .prop-img-wrapper { height: 200px; }
    .catalog-container { width: 95%; }
}



/* --- Ultra-Responsive Investment Insights --- */
.investment-insights {
    padding: 60px 0; /* Mobile par padding kam */
    background: #0f0f0f;
    color: #fff;
    overflow: hidden; /* Screen se bahar kuch nahi jayega */
}

.insights-container {
    width: 92%; /* Side mein thodi space rahegi mobile par */
    max-width: 1200px;
    margin: 0 auto;
}

.insights-header {
    text-align: center;
    margin-bottom: 40px;
}

.insights-header .eyebrow {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.insights-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; /* Mobile font size */
    margin-bottom: 15px;
    line-height: 1.3;
}

.insights-header .section-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* --- THE GRID (MOBILE FIRST) --- */
.insights-grid {
    display: flex;
    flex-direction: column; /* Mobile par ek ke niche ek */
    gap: 20px;
}

.insight-card {
    background: #1a1a1a;
    padding: 30px 20px; /* Mobile friendly padding */
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%; /* Mobile par poori width */
    box-sizing: border-box; /* Padding width ke andar rahegi */
}

.featured-gold {
    border: 1px solid #c5a059;
}

.insight-icon {
    font-size: 32px;
    color: #c5a059;
    margin-bottom: 15px;
}

.insight-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #c5a059;
}

.insight-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insight-list {
    list-style: none;
    padding: 0;
}

.insight-list li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start; /* Long text ke liye alignment sahi rahegi */
}

.insight-list li i {
    color: #c5a059;
    margin-right: 10px;
    margin-top: 3px;
}

/* --- DESKTOP ADJUSTMENTS (Laptop/Large Screen) --- */
@media (min-width: 992px) {
    .investment-insights {
        padding: 100px 0;
    }

    .insights-grid {
        flex-direction: row; /* Desktop par side-by-side */
    }

    .insight-card {
        flex: 1; /* Dono cards barabar width ke honge */
        padding: 45px;
    }

    .insights-header .section-title {
        font-size: 42px;
    }
    
    .insights-header .section-desc {
        font-size: 16px;
    }
}



/* --- Section Basics --- */
.available-props-section {
    padding: 80px 0 !important;
    background: #ffffff !important;
}

.prop-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* --- Heading Styling --- */
.prop-header-text {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.prop-header-text h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px !important;
    color: #1a1a1a !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
}

.prop-header-text p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    color: #777 !important;
}

/* --- Grid System --- */
.prop-grid-system {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

/* --- Card Design --- */
.p-card-box {
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #f0f0f0 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: 0.3s ease !important;
}

.p-card-box:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}

/* --- Image & Tags --- */
.p-img-wrapper {
    position: relative !important;
    height: 220px !important;
}

.p-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.p-status-tag {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase !important;
}
.tag-gold { background: #c5a059 !important; }
.tag-blue { background: #3498db !important; }
.tag-green { background: #27ae60 !important; }

/* --- Card Body --- */
.p-details {
    padding: 20px !important;
    flex-grow: 1 !important;
}

.p-price-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.price-val {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}

.prop-cat {
    font-size: 12px !important;
    color: #aaa !important;
    text-transform: uppercase !important;
}

.p-name {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333 !important;
    min-height: 44px !important; /* Title alignment ke liye */
}

/* --- Icons --- */
.p-specs {
    display: flex !important;
    justify-content: space-between !important;
    padding: 12px 0 !important;
    border-top: 1px solid #f5f5f5 !important;
    border-bottom: 1px solid #f5f5f5 !important;
    margin-bottom: 20px !important;
}

.p-specs span {
    font-size: 13px !important;
    color: #666 !important;
}

.p-specs i {
    color: #c5a059 !important;
    margin-right: 5px !important;
}

/* --- Buttons --- */
.p-footer-btns {
    display: flex !important;
    gap: 10px !important;
}

.view-details-btn {
    flex: 4 !important;
    background: #1a1a1a !important;
    color: #fff !important;
    text-align: center !important;
    padding: 12px !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
}

.call-action-btn {
    flex: 1 !important;
    border: 1px solid #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1a1a1a !important;
    border-radius: 5px !important;
    text-decoration: none !important;
}

/* --- RESPONSIVE FIXES --- */

@media (max-width: 992px) {
    .prop-grid-system {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 650px) {
    .prop-grid-system {
        grid-template-columns: 1fr !important;
    }
    .prop-header-text h2 {
        font-size: 28px !important;
    }
    .p-img-wrapper {
        height: 200px !important;
    }
}



/* --- Why Choose Us Section --- */
.why-choose-section {
    padding: 100px 0 !important;
    background: #1a1a1a !important; /* Dark Premium Background */
    color: #ffffff !important;
}

.why-choose-section .prop-header-text span {
    color: #c5a059 !important; /* Gold Accent */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.why-choose-section .prop-header-text h2 {
    color: #ffffff !important;
}

/* --- Expertise Grid --- */
.expertise-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    margin-top: 50px !important;
}

/* --- Expertise Individual Card --- */
.expertise-card {
    background: rgba(255, 255, 255, 0.05) !important; /* Subtle Glass effect */
    padding: 40px 25px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
}

.expertise-card:hover {
    background: #c5a059 !important; /* Turns Gold on Hover */
    transform: translateY(-15px) !important;
    border-color: #c5a059 !important;
}

.exp-icon {
    font-size: 45px !important;
    color: #c5a059 !important;
    margin-bottom: 25px !important;
    transition: 0.4s !important;
}

.expertise-card:hover .exp-icon {
    color: #ffffff !important; /* Icon turns white on hover */
}

.expertise-card h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.expertise-card p {
    font-size: 14px !important;
    color: #cccccc !important;
    line-height: 1.6 !important;
    transition: 0.4s !important;
}

.expertise-card:hover p {
    color: #ffffff !important;
}

/* --- RESPONSIVE FIXES --- */

/* Desktop to Tablet */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .why-choose-section {
        padding: 60px 0 !important;
    }
    .expertise-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .expertise-card {
        padding: 30px 20px !important;
    }
}



/* --- Area Guide Section --- */
.area-guide-section {
    padding: 80px 0 !important;
    background: #fdfdfd !important;
}

.area-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

/* --- Area Box Design --- */
.area-box {
    background: #fff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    border: 1px solid #f0f0f0 !important;
    transition: 0.4s ease !important;
}

.area-box:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* --- Image & Overlay --- */
.area-img {
    position: relative !important;
    height: 250px !important;
    overflow: hidden !important;
}

.area-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: 0.5s ease !important;
}

.area-box:hover .area-img img {
    transform: scale(1.1) !important; /* Zoom effect on hover */
}

.area-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 20px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent) !important;
    color: #fff !important;
}

.area-overlay h3 {
    font-size: 24px !important;
    margin-bottom: 5px !important;
    font-family: 'Playfair Display', serif !important;
}

.area-overlay p {
    font-size: 13px !important;
    opacity: 0.9 !important;
}

/* --- Content List --- */
.area-info-content {
    padding: 25px !important;
}

.area-info-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.area-info-content ul li {
    font-size: 14px !important;
    color: #555 !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.area-info-content ul li i {
    color: #c5a059 !important; /* Gold icons */
    font-size: 16px !important;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 650px) {
    .area-grid {
        grid-template-columns: 1fr !important;
    }
    .area-img {
        height: 200px !important;
    }
}



/* --- Testimonial Section --- */
.testimonial-section {
    padding: 100px 0 !important;
    background: #f4f7f6 !important;
}

.testimonial-slider {
    padding: 40px 10px 60px !important;
}

/* --- Unique Card Design --- */
.testi-card {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05) !important;
    position: relative !important;
    margin: 10px !important;
    border: 1px solid #eee !important;
    transition: 0.3s ease !important;
}

.quote-icon {
    font-size: 30px !important;
    color: #c5a059 !important; /* Gold Theme */
    margin-bottom: 20px !important;
    opacity: 0.3 !important;
}

.testi-text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #444 !important;
    font-style: italic !important;
    margin-bottom: 30px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* --- Client Profile Area --- */
.client-info {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.client-info img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #c5a059 !important;
}

.client-meta h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

.client-meta span {
    font-size: 13px !important;
    color: #888 !important;
}

/* --- Slider Pagination Styling --- */
.swiper-pagination-bullet-active {
    background: #c5a059 !important; /* Gold active dot */
    width: 25px !important;
    border-radius: 5px !important;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 768px) {
    .testi-card {
        padding: 30px 20px !important;
    }
    .testi-text {
        font-size: 14px !important;
    }
}



/* --- Home Page Specific (Sirf Home Page Par Asar Karega) --- */
#home-expertise-section .expertise-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

/* Home Page Mobile View */
@media (max-width: 768px) {
    #home-expertise-section .expertise-grid {
        grid-template-columns: 1fr !important; /* Home par mobile mein 1 column */
    }
}

/* --- About Us Page & Global Grid (Standard Responsive) --- */
/* Ye code About Us aur baki pages ke liye hai jo ID ke bina hain */
.expertise-grid:not(#home-expertise-section .expertise-grid) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* About Us Mobile Fix */
@media (max-width: 768px) {
    .expertise-grid:not(#home-expertise-section .expertise-grid) {
        grid-template-columns: 1fr;
    }
}



/* service page css code  */


/* --- Clean Modern Hero Section (Mobile Optimized) --- */
.service-hero-clean {
    position: relative;
    width: 100%;
    height: 100vh; /* Desktop par full screen */
    min-height: 600px; /* Safety height */
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center; /* Vertical Center */
    justify-content: center;
    color: #fff;
    z-index: 5;
    padding: 0 20px; /* Side gaps for mobile */
}

/* Background & Overlay */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ken-burns-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.service-hero-clean.active .ken-burns-img {
    transform: scale(1.0);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 2;
}

/* Text Container */
.hero-text-container {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.sub-title { 
    color: #c5a059; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-weight: 700; 
    font-size: 13px; 
    margin-bottom: 15px;
    display: block;
}

.main-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(30px, 8vw, 60px); /* Auto-resize fonts */
    line-height: 1.2; 
    margin-bottom: 20px;
    padding: 0 10px;
}

.gold-text { color: #c5a059; }

.hero-desc { 
    font-family: 'Montserrat', sans-serif; 
    font-size: clamp(14px, 4vw, 18px); /* Responsive desc */
    color: #ddd; 
    line-height: 1.6; 
    margin-bottom: 35px; 
    max-width: 700px; 
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.gold-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #c5a059;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 4px;
    transition: 0.3s;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px); /* Kam distance move hoga mobile pe */
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-hero-clean.active .animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 768px) {
    .service-hero-clean {
        height: 100svh; /* Dynamic viewport height for mobile browsers */
        padding-top: 80px; /* Header space */
        padding-bottom: 40px;
    }

    .main-title {
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-desc {
        margin-bottom: 25px;
        line-height: 1.5;
    }

    /* Animation mobile par thodi fast aur smooth rakhi hai */
    .animate-fade-up {
        transform: translateY(20px); 
    }
}




/* --- Service Categories Section (Fully Responsive) --- */
.service-categories-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Side safety for mobile */
}

.service-cat-grid {
    display: grid;
    /* Desktop: 4 columns | Tablet: 2 columns | Mobile: 1 column */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
    margin-top: 50px;
}

.cat-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%; /* Card height barabar rakhne ke liye */
    box-sizing: border-box; /* Padding ko width ke andar rakhne ke liye */
}

/* Card Hover Effect */
.cat-card:hover {
    transform: translateY(-8px);
    border-color: #c5a059;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.cat-icon-box {
    font-size: 35px;
    color: #c5a059;
    margin-bottom: 20px;
}

.cat-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cat-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Content ko push karega taaki tags align rahein */
}

.location-tag {
    align-self: flex-start; /* Tag ko left mein rakhega */
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c5a059;
    background: rgba(197, 160, 89, 0.08);
    padding: 6px 15px;
    border-radius: 4px;
}

/* --- MOBILE & TABLET FIXES --- */

/* Tablet View (2 Columns) */
@media (max-width: 991px) {
    .service-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile View (1 Column) */
@media (max-width: 600px) {
    .service-categories-section {
        padding: 50px 0;
    }

    .service-cat-grid {
        grid-template-columns: 1fr; /* Force 1 column */
        gap: 20px;
    }

    .cat-card {
        padding: 30px 20px;
        text-align: left; /* Center se zyada professional left lagta hai mobile pe */
    }

    .cat-content h3 {
        font-size: 20px;
    }

    .cat-content p {
        font-size: 14px;
    }
}




/* --- Investment Consulting Section --- */
.investment-consulting {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.consulting-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Side */
.consulting-image-box {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.consulting-image-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 25px;
    font-weight: 700;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Content Side */
.consulting-content {
    flex: 1.2;
}

.consulting-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.point-item {
    display: flex;
    gap: 15px;
}

.point-icon {
    font-size: 24px;
    color: #c5a059;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.point-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- RESPONSIVE FIXES --- */

@media (max-width: 1024px) {
    .consulting-wrapper {
        flex-direction: column; /* Image upar, Content niche */
        gap: 40px;
    }
    
    .consulting-image-box img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .investment-consulting {
        padding: 60px 0;
    }

    .consulting-points-grid {
        grid-template-columns: 1fr; /* Mobile par single column list */
        gap: 25px;
    }

    .main-title {
        font-size: 30px !important;
    }

    .section-desc {
        font-size: 15px;
    }
}





/* --- How We Work Section Styles --- */
.how-we-work-section {
    padding: 100px 0;
    background: #111; /* Dark professional theme */
    color: #fff;
    overflow: hidden;
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Connecting Line (Desktop Only) */
.process-steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(197, 160, 89, 0.3);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #c5a059;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 5px solid #111;
    box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.5);
}

.step-content {
    padding: 0 15px;
}

.step-icon {
    font-size: 30px;
    color: #c5a059;
    margin-bottom: 20px;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.step-content p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* --- RESPONSIVE FIXES --- */

/* Tablet (2x2 Grid) */
@media (max-width: 1024px) {
    .process-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .process-steps-container::before {
        display: none; /* Tablet aur mobile pe line hata di */
    }
}

/* Mobile (Single Column) */
@media (max-width: 768px) {
    .how-we-work-section {
        padding: 60px 0;
    }

    .process-steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        margin: 0; /* Left align numbers */
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step-content {
        padding: 0;
    }

    .step-icon {
        display: none; /* Mobile par clean rakhne ke liye icons hide kar sakte hain */
    }
}





/* --- Regional Desks Section Styles --- */
.regional-desks-section {
    padding: 100px 0;
    background: #f4f4f4;
}

.desks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.desk-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.desk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.desk-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.desk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.desk-card:hover .desk-image img {
    transform: scale(1.1);
}

.desk-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c5a059;
    color: #fff;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desk-content {
    padding: 40px;
}

.desk-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.desk-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.desk-features {
    list-style: none;
    padding: 0;
}

.desk-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.desk-features i {
    color: #c5a059;
    margin-top: 3px;
}

/* --- RESPONSIVE FIXES --- */

@media (max-width: 991px) {
    .desks-grid {
        grid-template-columns: 1fr; /* Mobile aur Tablet pe single column */
        gap: 30px;
    }
    
    .desk-content {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .regional-desks-section {
        padding: 60px 0;
    }

    .desk-content h3 {
        font-size: 22px;
    }

    .desk-image {
        height: 220px;
    }
}






/* --- Trust & Testimonials Section (Fully Responsive) --- */
.trust-testimonials-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden; /* Horizontal scroll rokne ke liye */
}

/* Regulatory Badges - Mobile Optimized */
.trust-badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap; /* Mobile par badges niche shift ho jayenge */
    padding: 0 15px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1 1 150px; /* Mobile par width manage karega */
    max-width: 200px;
}

.badge-item img {
    height: 55px; /* Size thoda chota kiya for alignment */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.badge-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.badge-item span {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Testimonials Grid - Fluid Layout */
.testimonials-grid {
    display: grid;
    /* Desktop: 3 columns | Tablet: 2 | Mobile: 1 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 10px;
}

.testi-card {
    background: #fdfdfd;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box; /* Padding handling */
    transition: 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.testi-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testi-user h4 {
    font-size: 17px;
    color: #111;
    margin-bottom: 4px;
}

/* --- MOBILE SPECIFIC FIXES --- */

@media (max-width: 768px) {
    .trust-testimonials-section {
        padding: 50px 0;
    }

    .trust-badges-wrapper {
        gap: 30px; /* Mobile par gap kam */
    }

    .badge-item {
        flex: 1 1 120px; /* Ek line mein 2 badges ayenge mobile pe */
    }

    .badge-item img {
        height: 45px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr; /* Force single column on mobile */
        gap: 20px;
    }

    .testi-card {
        padding: 25px; /* Mobile par padding kam taaki text cut na ho */
    }

    .testi-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .badge-item {
        flex: 1 1 100%; /* Bahut chote phones pe 1 badge per line */
    }
}

