:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-black: #0a0a0a;
    --light-black: #1a1a1a;
    --text-gray: #b0b0b0;
    --white: #ffffff;
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    font-family: var(--font-heading) !important;
}

.font-heading,
.font-playfair {
    font-family: var(--font-heading) !important;
}
.lead{
    font-size:16px;
}
.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background-color: var(--primary-gold) !important; }
.bg-dark-black { background: radial-gradient(circle at top left, rgba(212,175,55,0.16), #111827) !important; }

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 .22rem rgba(212,175,55,0.25), 0 10px 22px rgba(0,0,0,0.10);
}

.btn:active {
    transform: translateY(0);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #111827;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 22px rgba(212,175,55,0.18), 0 6px 16px rgba(0,0,0,0.10);
}

.btn-gold:hover {
    color: #111827;
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 14px 28px rgba(212,175,55,0.25), 0 10px 20px rgba(0,0,0,0.12);
}

.btn-outline-gold {
    background: rgba(212,175,55,0.10);
    color: var(--primary-gold);
    border: 2px solid rgba(212,175,55,0.85);
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #111827;
    border-color: rgba(0,0,0,0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(212,175,55,0.22), 0 10px 18px rgba(0,0,0,0.10);
}

.btn-outline-dark {
    border: 2px solid rgba(17,24,39,0.65);
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    background-color: rgba(17,24,39,0.04);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-dark:hover {
    background-color: #111827;
    border-color: #111827;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.18);
}

/* NRI Section Styling */
.nri-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.nri-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-gold);
}
.icon-box-premium {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.nri-card:hover .icon-box-premium {
    background: var(--primary-gold);
    color: #fff;
}

.award-thumb-btn {
    padding: 0;
    border: 0;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.award-thumb-btn:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.6);
    outline-offset: 4px;
    border-radius: 12px;
}

.award-lightbox-img {
    max-height: 75vh;
    object-fit: contain;
}

.award-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.award-lightbox-nav:hover {
    background: rgba(0,0,0,0.65);
}

.award-lightbox-prev { left: 12px; }
.award-lightbox-next { right: 12px; }

@media (max-width: 576px) {
    .award-lightbox-nav {
        width: 40px;
        height: 40px;
    }
    .award-lightbox-prev { left: 8px; }
    .award-lightbox-next { right: 8px; }
}

.dropdown-menu .dropend .dropdown-toggle::after {
    float: right;
    margin-top: 7px;
}

.dropdown-menu .dropend .dropdown-menu {
    margin-top: -10px;
    margin-left: 0px;
}

/* Desktop Hover Effect */
@media (min-width: 992px) {
    /* Only show direct child dropdown-menu on hover */
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    /* Only show sub-menu when hovering over the specific sub-menu item (dropend) */
    .dropend:hover > .dropdown-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: 0;
    }
}

/* Mobile Click Effect */
@media (max-width: 991px) {
    .dropend .dropdown-menu {
        position: static;
        margin-left: 20px;
        display: none;
    }
    
    .dropend .dropdown-menu.show {
        display: block;
    }
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 15px 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle {
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 12px;
    padding: 10px 12px;
    color: #fff;
    box-shadow: none;
}

.mobile-nav-toggle:focus {
    box-shadow: 0 0 0 .22rem rgba(212,175,55,0.18);
}

.mobile-nav-toggle .fa-bars {
    font-size: 1.1rem;
    color: #fff;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1020;
}

body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    body.mobile-nav-open {
        overflow: hidden;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(86vw, 380px);
        background: linear-gradient(180deg, #0b1220, #070c16);
        padding: 16px 16px 22px;
        transform: translateX(-105%);
        transition: transform 0.28s ease;
        box-shadow: 0 18px 50px rgba(0,0,0,0.45);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1045;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.10);
        margin-bottom: 12px;
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .mobile-nav-brand img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 12px;
        padding: 6px;
    }

    .mobile-nav-brand-text {
        min-width: 0;
    }

    .mobile-nav-brand-title {
        color: #fff;
        font-weight: 900;
        font-size: 1rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-nav-brand-subtitle {
        color: rgba(255,255,255,0.65);
        font-weight: 600;
        font-size: 0.82rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-nav-close {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.92);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-close:active {
        transform: scale(0.98);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-link {
        color: rgba(255,255,255,0.92) !important;
        padding: 12px 12px !important;
        border-radius: 12px;
        font-weight: 700;
    }

    .navbar-nav .nav-link.link-black {
        color: rgba(255,255,255,0.92) !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: rgba(255,255,255,0.08);
        color: #fff !important;
    }

    .dropdown-menu {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 14px;
        padding: 8px;
        width: 100%;
    }

    .navbar-collapse .dropdown-menu {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        margin-top: 6px !important;
        box-shadow: none !important;
    }

    .navbar-collapse .dropdown-menu.show {
        display: block;
    }

    .navbar-collapse .dropdown-menu .dropdown-menu {
        margin-top: 8px !important;
        margin-left: 10px;
        border-color: rgba(255,255,255,0.12);
    }

    .dropdown-item {
        color: rgba(255,255,255,0.90);
        border-radius: 12px;
        font-weight: 650;
        padding: 10px 12px;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(255,255,255,0.08);
        color: #fff;
    }

    .navbar-nav .btn.btn-gold {
        width: 100%;
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 800;
    }
}

.navbar.scrolled {
    background: rgb(255 255 255 / 95%);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom: none;
}
/* Adjust navbar links for scrolled state if needed, assuming default dark theme for now based on other files */

.navbar-brand img {
    height: 50px;
    transition: all 0.3s;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.link-black {
    color: #000000 !important;
}

/* =========================================
   HOME PAGE STYLES
   ========================================= */

/* Hero Carousel */
.hero-section {
    height: 100vh;
    position: relative;
}

.hero-section .carousel-item {
    height: 100vh;
    background-color: var(--dark-black);
}

.hero-section .carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transform: scale(1);
    transition: transform 6s ease;
}

.hero-section .carousel-item.active img {
    transform: scale(1.1);
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
}

.hero-caption h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Partner Slider */
.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

/* Section Styling */
section {
    padding: 80px 0; /* Unified padding */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-black);
    margin-bottom: 15px;
}

.section-title .separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

.section-title p {
    margin-top: 15px;
    color: #666;
   
}

/* About Section (Home) */
.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    transform: translate(-15px, -15px);
    z-index: -1;
}

.about-img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services (Home) */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
    min-height: 280px;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-card .btn-read-more {
    color: var(--primary-gold);
    border: 1px solid rgba(212,175,55,0.85);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    background: rgba(212,175,55,0.10);
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.service-card .btn-read-more:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #111827;
    border-color: rgba(0,0,0,0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(212,175,55,0.20), 0 8px 14px rgba(0,0,0,0.10);
}

.service-card .icon-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-card:hover .icon-wrapper {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card .icon-wrapper i {
    font-size: 1.5rem;
    color: #2c3e50;
    transition: all 0.3s;
}

.service-card:hover .icon-wrapper i {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Stats */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    color: var(--white);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-gold);
}

/* Featured Properties (Home) */
.property-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
}

.property-img-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.property-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img-container img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-details {
    padding: 15px;
}

.property-details .btn {
    padding: 6px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--dark-black);
    color: var(--primary-gold);
    border: 1px solid var(--dark-black);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.property-details .btn:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.property-price {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-body);
}

/* Testimonials */
.testimonial-section {
    background-color: #f9f9f9;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-left: 5px solid var(--primary-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    margin: 0px;
    border: 1px solid #d1d1d1!important;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* Contact (Home) */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.form-control {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 15px 0;
    background: transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.intro-card {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.team-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-img-container img {
    width: 100%;
    transition: transform 0.5s ease;
}

.team-img-container:hover img {
    transform: scale(1.05);
}

.vision-box {
    background: var(--dark-black);
    color: white;
    padding: 50px;
    height: 100%;
    border: 1px solid #333;
    transition: all 0.3s;
}

.vision-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.quote-box {
    background: #f9f9f9;
    padding: 40px;
    border-left: 4px solid var(--primary-gold);
    margin-top: 30px;
    font-style: italic;
}

/* Timeline (Growth Journey) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--primary-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after { left: -10px; }

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-date {
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
}

.advantage-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: #fff8e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

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

.process-icon-box {
    width: 100px;
    height: 100px;
    background: white;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-gold);
    position: relative;
    z-index: 2;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.process-step:last-child .process-line {
    display: none;
}

/* =========================================
   CAREER PAGE STYLES
   ========================================= */

.career-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}

.properties-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('../images/banner-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
}
.properties-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.career-hero-content {
    z-index: 2;
    max-width: 800px;
}

.career-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.career-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.talent-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.talent-card:hover::before {
    transform: scaleX(1);
}

.talent-icon {
    width: 80px;
    height: 80px;
    background: #fff8e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-gold);
    font-size: 2rem;
    transition: all 0.3s;
}

.talent-card:hover .talent-icon {
    background: var(--primary-gold);
    color: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.hiring-box {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hiring-box::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 15rem;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.job-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.job-item {
    margin-bottom: 20px;
}

.job-item .job-card {
    margin-bottom: 0;
    cursor: pointer;
}

.job-card-toggle:focus {
    outline: none;
    border-color: rgba(212,175,55,0.65);
    box-shadow: 0 0 0 .22rem rgba(212,175,55,0.18);
}

.job-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #eee;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-black);
    transition: all 0.25s;
}

.job-toggle-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.job-toggle-icon {
    transition: transform 0.25s ease;
}

.job-item.open .job-toggle-icon {
    transform: rotate(180deg);
}

.job-detail {
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.job-item.open .job-card {
    border-radius: 10px 10px 0 0;
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transform: none;
}

.job-item.open .job-card:hover {
    transform: none;
}

.job-item.open .job-detail {
    max-height: 70vh;
    padding: 18px 25px 22px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.job-detail-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.job-detail-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.65;
}

.job-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transform: translateX(10px);
}

.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 5px;
}

.job-meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 15px;
    align-items: center;
}

.job-meta i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.apply-btn {
    background: var(--dark-black);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.apply-btn:hover {
    background: var(--primary-gold);
    color: white;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--dark-black);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.career-apply-modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.career-apply-modal .modal-header {
    border: none;
    background: linear-gradient(135deg, #111827, #0b1220);
}

.career-apply-header {
    padding: 18px 18px;
}

.career-apply-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.career-apply-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.career-apply-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.career-apply-subtitle {
    margin-top: 4px;
    color: rgba(255,255,255,0.70);
    font-size: 0.92rem;
    font-weight: 600;
}

.career-apply-modal .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.career-apply-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 520px;
}

.career-apply-side {
    background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(17,24,39,0.04));
    border-right: 1px solid rgba(0,0,0,0.06);
}

.career-apply-side-inner {
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.career-apply-side-title {
    font-weight: 900;
    color: #111827;
    font-size: 1.05rem;
}

.career-apply-points {
    display: grid;
    gap: 10px;
}

.career-apply-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.06);
}

.career-apply-point i {
    color: var(--primary-gold);
    margin-top: 2px;
}

.career-apply-point span {
    color: #111827;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
}

.career-apply-note {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(17,24,39,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    color: rgba(17,24,39,0.75);
    font-weight: 700;
    font-size: 0.9rem;
}

.career-apply-note i {
    color: var(--primary-gold);
}

.career-apply-form {
    padding: 22px;
}

.career-apply-alerts .alert {
    border-radius: 12px;
}

.career-apply-input {
    border-radius: 12px;
    border-color: rgba(0,0,0,0.12);
    padding: 12px 14px;
}

.career-apply-input:focus {
    border-color: rgba(212,175,55,0.65);
    box-shadow: 0 0 0 .22rem rgba(212,175,55,0.18);
}

.career-file-hint {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.86rem;
    margin-top: 8px;
}

.career-apply-footer-text {
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(17,24,39,0.65);
    font-weight: 600;
}

@media (max-width: 991px) {
    .career-apply-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .career-apply-side {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
   
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/* Contact Page Map/Form Layout */
.map-container {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.form-container {
    height: 100%;
}

/* =========================================
   INVESTMENT SALES ADVISORY STYLES
   ========================================= */

.investment-hero {
    height: 85vh;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.investment-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-hero-content .lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.section-dark-modern {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 100px 0;
}

.service-card-modern {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.service-card-modern:hover::before {
    opacity: 0.05;
}

.service-card-modern:hover h3 {
    color: var(--primary-gold);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    transition: color 0.3s;
}

.service-card-modern p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-modern .icon-box {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-card-modern .link-arrow {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.service-card-modern .link-arrow i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-card-modern:hover .link-arrow {
    color: var(--primary-gold);
}

.service-card-modern:hover .link-arrow i {
    transform: translateX(5px);
}

.stat-modern {
    text-align: center;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-modern:last-child {
    border-right: none;
}

.stat-modern .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
}

.stat-modern .label {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-modern {
    position: relative;
    padding: 50px 0;
}

.process-step-modern {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.process-step-modern:last-child {
    margin-bottom: 0;
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
}

.process-content-modern {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    border-left: 2px solid var(--primary-gold);
}

.process-content-modern h4 {
    color: var(--dark-black);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bg-dark-modern .process-content-modern h4 {
    color: #fff;
}

.process-content-modern p {
    color: #666;
}

.bg-dark-modern .process-content-modern p {
    color: #aaa;
}

.form-container {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
}

.form-select-lg {
    border: 2px solid var(--primary-gold);
    font-family: var(--font-heading);
    color: var(--dark-black);
    font-weight: 600;
}

.dynamic-fields {
    display: none;
    animation: fadeIn 0.5s ease;
}

.dynamic-fields.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-container {
    height: 400px;
    min-height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.office-card {
    background: white;
    border: 1px solid #eee;
    padding: 25px;
    height: 100%;
    transition: all 0.3s;
}

.office-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.office-card h5 {
    color: var(--dark-black);
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* =========================================
   NESTED DROPDOWN & MANAGEMENT STYLES
   ========================================= */

/* Nested Dropdown Support */
.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
}

/* Premium Team Card */
.team-card-premium {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    /*height: 100%;*/
    border: 1px solid #bbb;
    position: relative;
    margin-bottom: 30px;
}

.team-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

/* =========================================
   NRI ADVISORY PREMIUM STYLES
   ========================================= */

.nri-hero-premium {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1566552881560-0be862a7c445?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.nri-hero-premium .badge-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.nri-stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.nri-stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.nri-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

.nri-stat-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nri-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 0;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.nri-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.nri-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.nri-card:hover::before {
    transform: scaleY(1);
}

.nri-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-black);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.nri-card:hover .nri-icon {
    background: var(--primary-gold);
    color: white;
}

.accordion-premium .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-premium .accordion-button {
    background: #fff;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-black);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px !important;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background: var(--dark-black);
    color: var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-premium .accordion-button::after {
    filter: grayscale(1);
}

.accordion-premium .accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(0deg);
}

.accordion-premium .accordion-body {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.global-presence-map {
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') no-repeat center center;
    background-size: contain;
    min-height: 500px;
    position: relative;
    opacity: 0.1;
}

.location-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* =========================================
   PROPERTY MANAGEMENT PREMIUM STYLES
   ========================================= */

.pm-hero {
    height: 85vh;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.pm-hero-content {
    border-left: 5px solid var(--primary-gold);
    padding-left: 40px;
}

.pm-feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.pm-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.pm-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pm-feature-box:hover::before {
    transform: scaleX(1);
}

.pm-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pm-feature-box:hover .pm-icon-wrapper {
    background: var(--primary-gold);
    color: white;
    transform: rotateY(180deg);
}

.pm-stat-row {
    background: var(--dark-black);
    padding: 80px 0;
    color: white;
    position: relative;
}

.pm-stat-item {
    text-align: center;
    padding: 20px;
}

.pm-stat-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.pm-stat-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pm-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.pm-step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    line-height: 0.8;
    margin-right: 20px;
    min-width: 80px;
}

.pm-step-content {
    padding-top: 10px;
}

.pm-step-content h4 {
    color: var(--dark-black);
    font-weight: 700;
}

.pm-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    color: white;
}

.pm-cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.pm-cta-box .pm-cta-form .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-bottom-width: 2px;
    border-bottom-color: rgba(255,255,255,0.35);
    border-radius: 10px;
    color: #ffffff;
    height: 58px;
    padding: 0 16px;
    box-shadow: none;
}

.pm-cta-box .pm-cta-form .form-control::placeholder {
    color: rgba(255,255,255,0.65);
    opacity: 1 !important;
}

.pm-cta-box .pm-cta-form .form-control::-webkit-input-placeholder {
    color: rgba(255,255,255,0.65);
    opacity: 1 !important;
}

.pm-cta-box .pm-cta-form .form-control::-ms-input-placeholder {
    color: rgba(255,255,255,0.65);
    opacity: 1 !important;
}

.pm-cta-box .pm-cta-form .btn {
    height: 58px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.pm-cta-box .pm-cta-form.row.g-3 {
    align-items: center;
}

.check-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-gold);
}

.testimonial-card-pm {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
}

.testimonial-card-pm::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.client-avatar-pm {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    margin: 0 auto 20px;
    padding: 3px;
    background: white;
}

/* =========================================
   LAND ACQUISITION PREMIUM STYLES
   ========================================= */

.land-hero {
    height: 90vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.9) 100%), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.land-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAgMjBWMjBIMjB2MjB6TTIwIDIwdjIwMDIwaDIwdi0yMHoiIGZpbGw9InJnYmEoMjEyLCAxNzUsIDU1LCAwLjA1KSIvPjwvZz48L3N2Zz4=');
    z-index: 1;
}

.land-hero-content {
    position: relative;
    z-index: 3;
}

.land-title-wrapper {
    border-left: 4px solid var(--primary-gold);
    padding-left: 30px;
    margin-bottom: 30px;
}

.strategy-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* =========================================
   NRI CORNER PREMIUM STYLES
   ========================================= */

.nri-corner-hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.nri-corner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
}

.nri-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.nri-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin-top: 15px;
}

.growth-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.growth-card:hover {
    border-top-color: var(--primary-gold);
    transform: translateY(-5px);
}

.growth-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-tab-nav .nav-link {
    border: none;
    color: #555;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
}

.service-tab-nav .nav-link.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
    background: transparent;
}

.guideline-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: 8px !important;
    overflow: hidden;
}

.guideline-accordion .accordion-button {
    background: white;
    color: #333;
    font-weight: 600;
    padding: 20px;
}

.guideline-accordion .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary-gold);
    box-shadow: none;
}

.guideline-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.1);
}

.nri-contact-section {
    background: #0b0b0b;
    color: white;
    padding: 80px 0;
}

.nri-form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 15px;
}

.nri-form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.nri-form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.nri-form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.nri-form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-gold);
    color: white;
    box-shadow: none;
}

.stat-divider {
    border-right: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .stat-divider {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* =========================================
   CSR (SOCIAL COMMITMENT) PREMIUM STYLES
   ========================================= */

.csr-hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1593113598332-cd288d649433?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.csr-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.csr-philosophy-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.csr-philosophy-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #f8f9fa;
    z-index: 1;
    transform: skewX(-15deg);
    transform-origin: top right;
}

.csr-impact-card {
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    min-height: 340px;
    border: none;
}

/* Social Commitment - support simple layouts with direct images inside columns */
#impact-pillars .row [class*="col-"] > img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.csr-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.csr-card-img {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.csr-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.csr-impact-card:hover .csr-card-img img {
    transform: scale(1.08);
}

.csr-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 26px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.0) 70%);
    color: #fff;
}

.csr-card-content h3,
.csr-card-content .h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.csr-card-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

.csr-card-content a {
    font-weight: 600;
    color: var(--primary-gold);
}

.csr-card-content a i {
    transition: transform 0.2s ease;
}

.csr-impact-card:hover .csr-card-content a i {
    transform: translateX(4px);
}

.csr-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: absolute;
    top: 18px;
    left: 18px;
    right: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.csr-stat-section {
    position: relative;
    padding: 90px 0;
    color: #fff;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 55%),
                #050608;
    overflow: hidden;
}

.csr-stat-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255,255,255,0.06) 1px, transparent 1px),
                      linear-gradient(210deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.35;
    pointer-events: none;
}

.csr-stat-section .container {
    position: relative;
    z-index: 1;
    max-width: 1080px;
}

.csr-stat-item {
    text-align: center;
    padding: 24px 10px;
}

.csr-stat-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.12);
}

.csr-stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 1px;
}

.csr-stat-label {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
}

.csr-quote-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 5px solid var(--primary-gold);
    padding: 40px;
    border-radius: 0 10px 10px 0;
    margin: 40px 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .csr-hero-title {
        font-size: 2.5rem;
    }
    .csr-philosophy-bg {
        width: 100%;
        transform: none;
        height: 50%;
        bottom: 0;
        top: auto;
    }
    .csr-stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        margin-bottom: 18px;
    }
}
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.strategy-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 25px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.strategy-card:hover .icon-box {
    background: var(--primary-gold);
    color: #000;
}

.strategy-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.strategy-card p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
    line-height: 1.7;
}

.market-indicator-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.indicator-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.indicator-box:hover {
    border-bottom-color: var(--primary-gold);
}

.indicator-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    margin-bottom: -20px;
    display: block;
    position: relative;
    z-index: 1;
}

.indicator-content {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #444;
}

.expertise-list i {
    color: var(--primary-gold);
    margin-right: 15px;
    margin-top: 5px;
}

.land-cta {
    background: var(--dark-black);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.land-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05));
    transform: skewX(-20deg);
}

.land-cta .land-cta-form .form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-bottom-width: 2px;
    border-bottom-color: rgba(255,255,255,0.35);
    border-radius: 10px;
    color: #ffffff;
    height: 58px;
    padding: 0 16px;
    box-shadow: none;
}

.land-cta .land-cta-form .form-control::placeholder {
    color: rgba(255,255,255,0.65);
    opacity: 1 !important;
}

.land-cta .land-cta-form .form-control::-webkit-input-placeholder {
    color: rgba(255,255,255,0.65);
    opacity: 1 !important;
}

.land-cta .land-cta-form .form-control::-ms-input-placeholder {
    color: rgba(255,255,255,0.65);
    opacity: 1 !important;
}

.land-cta .land-cta-form .btn {
    height: 58px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 10px;
}

.land-cta .land-cta-form.row.g-3 {
    align-items: center;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-img-wrapper img {
    width: 100%;
    
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-premium:hover .team-img-wrapper img {
    transform: scale(1);
}

.team-social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.team-card-premium:hover .team-social-overlay {
    bottom: 0;
    opacity: 1;
}

.team-social-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.team-social-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.team-details {
    padding: 15px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.team-position {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.team-experience {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eee; /* Border color essentially */
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid #eee;
}

.stat-box {
    background: #fcfcfc;
    padding: 10px 5px;
    text-align: center;
}

.stat-value {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-black);
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.office-card i {
    color: var(--primary-gold);
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

/* =========================================
   PROPERTY PAGE STYLES
   ========================================= */

.properties-hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
   
}

.properties-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.search-filter-section {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-top: -50px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-gold);
}

.form-select-custom {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.form-select-custom:focus {
    border-color: var(--primary-gold);
    box-shadow: none;
}

.locality-card {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.locality-card:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-gold);
}

.locality-icon {
    width: 40px;
    height: 40px;
    background: #fff8e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-right: 15px;
}

.category-card {
    
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-card-lg {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.property-card-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.property-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card-lg:hover .property-img-box img {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.new { background: var(--primary-gold); }
.status-badge.ready { background: #28a745; }

.property-content {
    padding: 25px;
}

.property-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.property-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.property-title a:hover {
    color: var(--primary-gold);
}

.property-meta {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* =========================================
   ADDITIONAL UTILITIES / COMPONENTS (From original Style.css)
   ========================================= */

/* Footer */
footer {
    background-color: var(--dark-black);
    color: #888;
    padding: 80px 0 30px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-title {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Utility Classes */
.hover-white:hover { color: #fff !important; }
.hover-gold:hover { color: var(--primary-gold) !important; }
.transition-all { transition: all 0.3s ease; }
.letter-spacing-2 { letter-spacing: 2px; }

/* Custom Accordion */
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion-button:not(.collapsed) {
    color: var(--primary-gold);
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button::after {
    filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
    filter: none;
}

/* Dropdowns */
.dropdown-menu {
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.dropdown-item:hover { color: var(--primary-gold); }

/* Tabs styling */
.nav-pills .nav-link {
    background: transparent !important;
    border: 1px solid #e5e5e5;
    color: #222 !important;
    margin: 0 6px;
}
.nav-pills .nav-link.active {
    background: var(--primary-gold) !important;
    color: #fff !important;
    border-color: var(--primary-gold);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: auto;
    top: 0;
    text-align: center;
}

.hero-carousel #heroCarousel .carousel-caption .container {
    transform: translateY(28px);
}

.hero-carousel #heroCarousel .carousel-caption h5 {
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .hero-carousel #heroCarousel .carousel-caption .container {
        transform: translateY(18px);
    }
    .hero-carousel #heroCarousel .carousel-caption h5 {
        font-size: 0.85rem;
    }
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.object-fit-cover {
    object-fit: cover;
}

/* Animations for Carousel Content */
.carousel-item.active h1 {
    animation: fadeInUp 1s both 0.5s;
}

.carousel-item.active h5 {
    animation: fadeInUp 1s both 0.3s;
}

.carousel-item.active p {
    animation: fadeInUp 1s both 0.7s;
}

.carousel-item.active .btn {
    animation: fadeInUp 1s both 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Single (Original Fallback) */
.hero-single {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('../images/test-1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 0;
    position: relative;
    overflow: visible;
}
.hero-content { text-align: center; }
.hero-content h1 { font-size: 3rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-content p { opacity: 0.9; }

/* Search Bar */
.search-filter-wrap { position: static; margin-top: 24px; width: min(1100px, 94%); z-index: 3; }
/* Reuse .search-filter-section from property styles above or here */
.form-select.form-select-custom {
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
}

/* About image frame */
.about-image-frame {
    position: relative;
    display: inline-block;
}
.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid var(--primary-gold);
    z-index: -1;
}
.about-image-frame img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Why Choose Us (premium light) */
.why-choose {
    background: radial-gradient(1200px 1200px at 10% 10%, rgba(212,175,55,0.08), transparent 40%), 
                radial-gradient(1000px 800px at 90% 20%, rgba(197,160,40,0.08), transparent 50%), 
                #f7f7f9;
}
/* Premium Service Box (Icon Left) */
.service-box-premium {
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #d1d1d1;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.service-box-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
}
.service-box-premium .sb-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.service-box-premium:hover .sb-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}
.service-box-premium h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2c3e50;
    transition: color 0.3s;
}
.service-box-premium:hover h5 {
    color: var(--primary-gold);
}
.service-box-premium p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.metric-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #d1d1d1;
    display: flex;
    align-items: center;
    text-align: left;
}
.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
}
.metric-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 1.4rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.metric-card:hover .metric-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #fff;
    border-color: transparent;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(212,175,55,0.25);
}
.metric-content {
    flex-grow: 1;
}
.metric-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #2c3e50, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-caption h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
    .about-img-wrapper::before { display: none; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 21px; }
    .left::after, .right::after { left: 21px; }
    .right { left: 0%; }
    .process-line { display: none; }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .job-card .btn {
        width: 100%;
    }
    .career-hero h1 { font-size: 2.5rem; }
}

/* =========================================
   MARQUEE / CAROUSEL STYLES
   ========================================= */
.marquee-section {
    background-color: #fff;
    overflow: hidden;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.marquee-right .marquee-track {
    animation: marquee-right 40s linear infinite;
}

.marquee-left .marquee-track {
    animation: marquee-left 40s linear infinite;
}

.developer-card {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    padding: 15px;
    transition: all 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.developer-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.7;
}

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

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* NRI Section Styles */
.nri-section {
    background-color: #fcfcfc;
}

.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    background-color: #fff8e1!important;
}

.nri-image-wrapper img {
    transition: transform 0.5s ease;
}

.nri-image-wrapper:hover img {
    transform: scale(1.02);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-25 {
    opacity: 0.25;
}

.z-n1 {
    z-index: -1;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* Property Card Amenities Fix */
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.amenities-list li i {
    margin-right: 6px;
    color: var(--primary-gold);
}

/* Global Opportunities Image Fix */
#global .card-img {
    height: 400px;
    object-fit: cover;
}

/* =========================================
   OUR STORY PAGE STYLES
   ========================================= */

/*.story-hero {*/
/* =========================================
   GLOBAL HERO FIXES
   ========================================= */
.about-hero,
.contact-hero,
.investment-hero,
.nri-hero-premium,
.pm-hero,
.land-hero,
.nri-corner-hero,
.csr-hero,
.properties-hero,
.hero-single {
    margin-top: 0 !important;
}

/* End of file */
/*    background: url('../images/banner-1.jpg') center/cover no-repeat fixed;*/
/*    position: relative;*/
/*    margin-top: 0;*/
/*}*/

/*.story-hero-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(rgba(0,0,0,0.6), rgba(10,10,10,0.8));*/
/*    z-index: 1;*/
/*}*/

/*.story-hero-content {*/
/*    z-index: 2;*/
/*    position: relative;*/
/*}*/

/*.story-img-frame {*/
/*    position: relative;*/
/*    padding: 15px;*/
/*    border: 1px solid rgba(212, 175, 55, 0.3);*/
/*    border-radius: 20px;*/
/*}*/

.bg-dark-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.mission-card, .vision-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: var(--primary-gold) !important;
}

/* Timeline specific overrides */
.timeline-row {
    position: relative;
}

@media (max-width: 767px) {
    .timeline-line {
        display: none !important;
    }
    .timeline-year {
        margin-bottom: 20px !important;
    }
    .arrow-left, .arrow-right {
        display: none;
    }
}

.premium-testimonial-card {
    transition: all 0.4s ease;
}

.premium-testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline-gold {
    background: rgba(212,175,55,0.10);
    color: var(--primary-gold);
    border: 2px solid rgba(212,175,55,0.85);
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #111827;
    border-color: rgba(0,0,0,0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(212,175,55,0.22), 0 10px 18px rgba(0,0,0,0.10);
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 2px;
}

.icon-box-md {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
 a.footer-link:hover{
     color:#ecb70c!important;
 }
.border-gold {
    border-color: var(--primary-gold) !important;
}

/* Index page specific footer tweaks */
body.index-page .footer-newsletter {
    background: #f5f5f5;
    padding: 16px;
    border-radius: 8px;
}
body.index-page .footer-newsletter .form-control {
    background: #ffffff !important;
    color: #222 !important;
    border-color: #ddd !important;
}
body.index-page .footer-newsletter small {
    color: #444 !important;
}
body.index-page .footer-copyright {
    background: #f5f5f5 !important;
    border-top-color: #e0e0e0 !important;
}
body.index-page .footer-copyright p,
body.index-page .footer-copyright a {
    color: #333 !important;
}
/* =========================================
   GOOGLE REVIEWS SECTION
   ========================================= */
.google-reviews-header {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Ensure header content doesn't collapse on small screens */
@media (max-width: 576px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .btn-google-review {
        width: 100%;
        text-align: center;
    }
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.rating-stars {
    color: #fbbc04; /* Google yellow/gold */
    font-size: 1.2rem;
    margin-bottom: 2px;
    white-space: nowrap; /* Prevent stars from wrapping */
}

.review-count {
    color: #666;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-google-review {
    background-color: #1a73e8;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-google-review:hover {
    background-color: #1557b0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.google-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
    border: 1px solid #f0f0f0;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.reviewer-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #1a73e8;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
}

.verified-badge {
    color: #1a73e8;
    font-size: 0.8rem;
    margin-left: 6px;
}

.review-time {
    font-size: 0.8rem;
    color: #888;
    display: block;
    margin-top: 2px;
}

.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.google-brand {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.property-detail-hero {
    min-height: 21vh;
    display: flex;
    align-items: center;
}

.property-section-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.property-section-card img {
    max-width: 100%;
}

.property-gallery {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.property-gallery-img {
    height: clamp(240px, 38vw, 360px);
    object-fit: cover;
}

.property-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.property-thumb {
    border: 2px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    padding: 0;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.property-thumb img {
    width: 100%;
    height: 54px;
    object-fit: cover;
    display: block;
}

.property-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,0.7);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.property-thumb.active {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 22px rgba(212,175,55,0.18);
}

.property-sidebar-sticky {
    position: sticky;
    top: 110px;
}

.property-enquiry-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.amenity-tile {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212,175,55,0.12);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}

.amenity-name {
    font-weight: 700;
    color: #111827;
}

.floorplan-card {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    background: #fff;
}

.floorplan-card img {
    width: 100%;
    height: clamp(180px, 26vw, 240px);
    object-fit: contain;
    background: #fff;
    display: block;
}

.developer-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.developer-logo {
    width: 78px;
    height: 78px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    flex: 0 0 auto;
}

.developer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.developer-meta {
    flex: 1 1 auto;
}

.btn-xs {
    padding: .18rem .55rem;
    font-size: .78rem;
    border-radius: 10px;
    line-height: 1.1;
}

.property-related-actions {
    flex-wrap: nowrap;
    gap: 10px;
}

.property-related-actions .property-price {
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .property-gallery-img { height: clamp(220px, 55vw, 320px); }
    .property-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .property-thumb img { height: 56px; }
    .property-sidebar-sticky { position: static; top: auto; }
}
