@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-navy: #0A1931;
    --secondary-gold: #C5A059;
    --navy-accent: #15305B;
    --navy-dark: #061329;
    --gold-light: #ECC880;
    --gold-dark: #9F7B3E;
    --light-bg: #F7F9FC;
    --white: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #000000;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gold-gradient: linear-gradient(135deg, #ECC880 0%, #C5A059 50%, #9F7B3E 100%);
    --gold-gradient-hover: linear-gradient(135deg, #FFF0D2 0%, #ECC880 50%, #C5A059 100%);
    --navy-gradient: linear-gradient(135deg, #15305B 0%, #0A1931 50%, #061329 100%);

}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: clip;
    width: 100%;
}

input,
select,
textarea,
button,
option,
.form-control,
input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    text-transform: capitalize;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    /* text-transform: capitalize; */
}

p {
    color: #393535 !important;
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-navy);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize !important;
}

a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--secondary-gold);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Typography Utilities */
.section-subtitle {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--secondary-gold);
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize !important;
}

.about-head{
    font-size: 26px;
}

.text-gold {
    color: var(--secondary-gold) !important;
}

.text-navy {
    color: var(--primary-navy) !important;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-navy) !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 14px 28px;
    border: none;
    border-radius: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient-hover);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
    color: var(--primary-navy) !important;
}

.btn-navy-outline {
    background: transparent;
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 12px 26px;
    border: 2px solid var(--primary-navy);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-navy-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--secondary-gold);
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 12px 26px;
    border: 2px solid var(--secondary-gold);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-meet-team {
    background: var(--navy-accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-meet-team:hover {
    background: var(--navy-accent);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.form-control-minimal {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 8px 0 !important;
    box-shadow: none !important;
    color: var(--text-dark) !important;
    font-size: 15px !important;
    outline: none !important;
    transition: var(--transition-smooth);
}

.form-control-minimal:focus {
    border-bottom-color: var(--secondary-gold) !important;
}

@media (min-width: 992px) {
    .contact-border-right {
        border-right: 1px solid #eee;
    }
}



/* Section styling */
.section-padding {
    padding: 70px 0;
}

.bg-dark-premium {
    background: var(--navy-dark);
    color: var(--white);
}

.bg-dark-premium h2 {
    color: var(--white);
}

.bg-light-premium {
    background: var(--light-bg);
}

.bg-subtle-gold {
    background-color: #FAF7F2 !important;
}

.bg-subtle-navy {
    background-color: #F4F7FB !important;
}

.bg-subtle-champagne {
    background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 100%) !important;
}

.about-section {
    background-color: #FAF7F2;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}




/* navbar css start========================================================== */





.sticky-top {
    position: sticky !important;
    top: 0;
    z-index: 1020;
}

.navbar {
    background-color: #fff !important;
    padding: 10px !important;
}

.nav-link {
    padding-bottom: 0px !important;
    color: var(--black) !important;
}

.nav-item .nav-link {
    font-weight: 600;
    font-size: 14px;
}

.nav-item .nav-active {
    color: var(--gold-dark) !important;
}

.nav-item:hover .nav-link {
    color: var(--gold-dark) !important;
    transition: 0.5s ease-out;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    border-radius: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 600;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--navy-accent);
    color: #fff !important;
}


/* logo */
.logo {
    width: 190px;
}


@media(max-width: 1200px) {
    .nav-item .nav-link {
        font-size: 13px;
    }
}





@media(max-width: 767px) {
    .navbar-brand {
        padding: 0 !important;
    }

    .logo {
        width: 120px;
    }

    .navbar {
        background-color: #fff !important;
        padding: 10px !important;

    }


    .navbar-toggler {
        padding: 5px;

    }

    .navbar-toggler-icon {
        height: 20px;


    }

    .nav-item .nav-link {
        font-size: 14px;
    }
}

.carousel-item img {
    width: 100% !important;
}


/* navbar css end ==================================================================*/






/* About Section */




.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-main {
    width: 100%;
    border: 2px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-image-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--navy-gradient);
    border: 2px solid var(--secondary-gold);
    padding: 20px 18px;
    color: var(--white);
    text-align: center;
    max-width: 210px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-image-badge h4 {
    color: var(--secondary-gold);
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.about-image-badge p {
    font-size: 11px;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1.45;
    margin: 0;
    font-weight: 500;
    color: var(--secondary-gold) !important;
}

.about-highlight-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.about-highlight-list li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.about-highlight-list li i {
    color: var(--secondary-gold);
    font-size: 18px;
}

/* Feature/Why Choose Us Card */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid rgba(10, 25, 49, 0.05);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 25, 49, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary-navy);
}

.feature-icon-box i {
    font-size: 28px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    /* font-size: 14px; */
    color: var(--text-muted);
    margin: 0;
}

/* New Launches Grid CSS */
.launch-grid-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.launch-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 280px;
    /* fixed height for grid consistency */
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.launch-card img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: transform 0.8s ease;
}

.launch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 19, 41, 0.45);
    /* dark translucent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition-smooth);
}

.launch-overlay h3 {
    color: var(--white) !important;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
}

.launch-card:hover img {
    transform: scale(1.08);
}

.launch-card:hover .launch-overlay {
    background: rgba(6, 19, 41, 0.6);
    /* darken on hover */
}



/* Testimonials Section */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote-icon {
    font-size: 50px;
    color: rgba(197, 160, 89, 0.2);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary-gold);
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.testimonial-author-role {
    font-size: 12px;
    text-transform: capitalize;
    color: var(--navy-accent);
    letter-spacing: 2px;
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--primary-navy);
    background: transparent;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.testimonial-nav-btn:hover {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* News & Blog Section */
.blog-card {
    background: var(--white);
    border: 1px solid rgba(10, 25, 49, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.blog-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 12px;
    font-size: 11px;
    text-transform: capitalize;
    font-weight: 600;
    border-left: 3px solid var(--secondary-gold);
}

.blog-body {
    padding: 25px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-navy);
}

.blog-title a:hover {
    color: var(--secondary-gold);
}

.blog-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-readmore {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--navy-accent);
}

.blog-readmore:hover {
    color: var(--primary-navy);
}



/* Sticky Enquiry Widget */
.sticky-enquire-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom right;
    background: var(--gold-gradient);
    color: var(--primary-navy) !important;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: capitalize;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.25);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sticky-enquire-btn:hover {
    padding-right: 40px;
}

/* Enquiry Modal Form Styling */
.enquiry-modal .modal-content {
    background: var(--primary-navy);
    border: 2px solid var(--secondary-gold);
    border-radius: 0;
    color: var(--white);
}

.enquiry-modal .modal-header {
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.enquiry-modal .modal-title {
    color: var(--white);
}

.enquiry-modal .btn-close {
    background-color: var(--secondary-gold);
    opacity: 0.8;
}

.enquiry-modal .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 0;
    color: var(--white);
    padding: 12px 15px;
}

.enquiry-modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.enquiry-modal .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
    color: var(--white);
}

/* Floating Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    border: 1px solid var(--secondary-gold);
    color: var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    border-color: transparent;
    transform: translateY(-5px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

/* Advantage Dubai - Split Layout */
.advantage-img-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.advantage-img-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    bottom: 0;
    border: 2px solid var(--secondary-gold);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.advantage-img-main {
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(10, 25, 49, 0.15);
    transition: var(--transition-smooth);
    width: 100%;
}

.advantage-img-wrapper:hover .advantage-img-main {
    transform: translate(-10px, -10px);
}

.advantage-img-wrapper:hover .advantage-img-border {
    transform: translate(5px, 5px);
}

.advantage-glass-badge {
    position: absolute;
    bottom: -15px;
    right: 5px;
    background: rgba(10, 25, 49, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 20px 25px;
    z-index: 3;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-glass-badge h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.advantage-item-minimal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition-smooth);
    padding: 10px;
}

.advantage-item-minimal:hover {
    transform: translateX(5px);
}

.advantage-bullet {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-bullet i {
    font-size: 14px;
}

.advantage-text-minimal h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.advantage-text-minimal p {
    line-height: 1.5;
    font-size: 16px;
    /* color: var(--text-muted); */
}

/* Footer Styling */
.footer-wrap {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 2px solid var(--secondary-gold);
    padding-top: 80px;
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-gold);
}

.footer-logo {
    width: 230px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    display: block;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info li i {
    color: var(--secondary-gold);
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact-info a:hover {
    color: var(--secondary-gold) !important;
    padding-left: 3px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #030a17;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom p {
    color: #c7c7c7 !important;
}

.footer-bottom-links a:hover {
    color: var(--secondary-gold);
}

/* Responsiveness adjustments */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 40px 0;
    }



    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }

    .sticky-enquire-btn {
        top: auto;
        bottom: 0;
        transform: none;
        right: 0;
        left: 0;
        width: 100%;
        text-align: center;
        border-radius: 0;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
        padding: 15px;
    }

    .back-to-top {
        bottom: 70px;
        /* offset to avoid overlapping sticky footer inquiry button */
        left: auto;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-logo {
        width: 180px;

    }

    .footer-wrap {
        padding-top: 50px;
    }



    .whatsapp-float {
        bottom: 126px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }



    .section-subtitle {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 13px;

    }

    .form-control {
        .footer-bottom p {
            font-size: 11px !important;
        }
    }

    @media (max-width: 575.98px) {
        .section-title {
            font-size: 26px;
        }


    }

    /* Fix mobile shaking and ensure sticky navbar stays viewport aligned */
    section,
    footer {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}


/* reels section start =================================================== */


.insta-section {
    padding: 80px 0;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.insta-header h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}

.insta-follow-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: var(--navy-accent);
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.insta-follow-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.insta-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-size: 16px;
}

/* Custom Owl Carousel Dots for Instagram Section */
.insta-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.insta-carousel .owl-dots .owl-dot {
    outline: none;
    border: none;
    background: transparent;
}

.insta-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(10, 25, 49, 0.2) !important;
    display: block;
    transition: var(--transition-smooth);
    border-radius: 30px;
}

.insta-carousel .owl-dots .owl-dot.active span,
.insta-carousel .owl-dots .owl-dot:hover span {
    background: var(--secondary-gold) !important;
    width: 24px;
    /* elongated active dot */
}

/* Custom Banner Carousel Controls - Circular Icon Style */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--gold-dark) !important;
    border-radius: 50%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-smooth);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--gold-light) !important;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

@media(max-width: 991px) {
    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
        background-size: 100% 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;

    }

    .insta-follow-btn {
        font-size: 16px;
    }
}

/* Team Section CSS */
.team-card {
    background: var(--white);
    border: 1px solid rgba(10, 25, 49, 0.05);
    padding: 35px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: var(--transition-smooth);
    border-radius: 4px;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 25, 49, 0.06);
    border-color: var(--secondary-gold);
}

.team-img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper {
    border-color: var(--secondary-gold);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.08);
}



.team-name {
   
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.team-role {
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #777777 !important;
}

.team-desc {
    font-size: 18px;
    /* color: var(--text-muted); */
    line-height: 1.6;
    margin: 0;
}

/* Contact & Footer Inline CSS Migrated Rules */
.contact-intro-text {
    /* font-size: 16px; */
    line-height: 1.8;
}

.contact-detail-text {
    font-size: 18px;
}

.contact-detail-address {
    font-size: 18px;
    line-height: 1.6;
}

.contact-form-subtext {
    font-size: 18px;
}

.phone-input-wrapper {
    border-bottom: 1px solid #ccc;
}

.btn-contact-submit {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.enquiry-modal select option {
    background: var(--primary-navy);
}

/* Contact Section Social Media Icons */
.contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(10, 25, 49, 0.15);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: transparent;
}

.contact-social-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary-navy);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.25);
}


@media (max-width:991px) {
    p {
        font-size: 14px;
    }

    .contact-intro-text {
        font-size: 13px;
    }

    .contact-detail-text {
        font-size: 13px;
    }

    .contact-detail-address,
    .contact-form-subtext {
        font-size: 13px;
    }
}

/* Override Bootstrap text-muted style to render in #393535 */
.text-muted {
    color: #393535 !important;
}

/* About Page Custom Sections */
.about-hero {
    position: relative;
    background: linear-gradient(rgba(90, 97, 97, 0.85), rgba(1, 14, 31, 0.9)), url('../../assets/img/banner/sub-bner-dubai.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0;
    text-align: center;
    border-bottom: 2px solid var(--secondary-gold);
}



.about-hero.noida-hero {
    background: url('../../assets/img/noida/hero-baner-noida.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;
}
.about-hero.dubai-hero {
    background: url('../../assets/img/dubai/hero-dubai.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;

}

.about-hero.greece-hero {
    background: url('../../assets/img/greece/hero-greece.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;

}

.about-hero.second-home-hero {
    background: url('../../assets/img/second-home/hero-second-home.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;

}

.about-hero.team-hero {
    background: url('../../assets/img/share-partner/hero-team.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;

}

.about-hero.service-hero {
    background: url('../../assets/img/share-partner/hero-service.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;

}

.about-hero.share-partner-hero {
    background: url('../../assets/img/share-partner/hero-share-partner.jpg') no-repeat center center;
    background-size: cover;
    aspect-ratio: 1900 / 600;
    height: auto;
    padding: 0;

}




@media (max-width: 768px) {
    .about-hero.noida-hero .noida-breadcrumb,
    .about-hero.dubai-hero .dubai-breadcrumb {
        padding: 10px 20px;
        border-radius: 8px;
    }
    .about-hero.noida-hero h1,
    .about-hero.dubai-hero h1 {
        font-size: 18px !important;
        margin-bottom: 2px !important;
    }
    .about-hero.noida-hero .breadcrumb-custom,
    .about-hero.dubai-hero .breadcrumb-custom {
        margin-top: 2px !important;
        font-size: 11px !important;
    }
}

.about-hero h1 {
    color: var(--white) !important;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-hero p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px;
    margin-bottom: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--secondary-gold);
    margin-top: 15px;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
    color: var(--secondary-gold);
}

.value-card {
    background: var(--white);
    border: 1px solid rgba(10, 25, 49, 0.05);
    padding: 40px 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 4px;
    height: 100%;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
    box-shadow: 0 15px 35px rgba(10, 25, 49, 0.06);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary-gold);
    font-size: 24px;
}

/* Stats Styling */
.stats-section {
    border-bottom: 2px solid var(--secondary-gold);
}

.stat-item {
    padding: 20px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Founder Styling */
.founder-img-wrapper {
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
}

.founder-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--secondary-gold);
    z-index: 1;
}

.founder-img {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    object-fit: cover;
}

.founder-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--navy-accent);
    border-left: 4px solid var(--secondary-gold);
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.8;
}

.founder-meta {
    margin-top: 20px;
}

/* Timeline Styling */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: rgba(197, 160, 89, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-gold);
    text-align: center;
    background: var(--white);
    z-index: 2;
    line-height: 35px;
}

.timeline-content {
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: 4px;
    border-left: 3px solid var(--secondary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Helper Utilities */
.max-width-600 {
    max-width: 600px;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .founder-quote {
        font-size: 16px;
    }

    .timeline-wrapper::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-year {
        width: 50px;
        font-size: 15px;
    }
}

/* Project Detail Breadcrumb Bar (Matching Reference) */
.project-breadcrumb-bar {
    background-color: #F8F9FA;
    border-bottom: 1px solid #E9ECEF;
    padding: 12px 0;
    font-size: 14px;
}

.project-breadcrumb-bar .breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.project-breadcrumb-bar .breadcrumb-list a {
    color: #262626;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-breadcrumb-bar .breadcrumb-list a:hover {
    color: var(--primary-navy);
}

.project-breadcrumb-bar .breadcrumb-separator {
    color: #495057;
    font-size: 10px;
    margin: 0 4px;
}

.project-breadcrumb-bar .breadcrumb-current {
    color: var(--navy-accent);
    font-weight: 600;
}

.project-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--secondary-gold);
    color: var(--primary-navy);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-right: 8px;
    margin-bottom: 10px;
}

.property-main-title {
 
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.property-location-tag {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

/* Gallery & Media Styles */
.property-gallery-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.property-gallery-main img {
    width: 100%;
    /* height: 440px; */
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.property-gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-thumbs-row {
    margin-top: 15px;
}

.gallery-thumb-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    height: 100px;
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--secondary-gold);
    transform: translateY(-2px);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing & Configuration Table */
.custom-plan-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.custom-plan-table thead th {
    background: var(--primary-navy);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border: none;
}

.custom-plan-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #EDF2F7;
    font-size: 15px;
    color: var(--text-dark);
}

.custom-plan-table tbody tr:last-child td {
    border-bottom: none;
}

.custom-plan-table tbody tr:hover {
    background-color: rgba(197, 160, 89, 0.05);
}

.unit-type-tag {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 16px;
}

.unit-price-tag {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 15px;
}

/* Specifications Grid */
.spec-box-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #EAEFF5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.spec-box-card:hover {
    border-color: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 25, 49, 0.08);
}

.spec-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.spec-label {
    font-size: 12px;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0;
}

/* Detail Section Headings */
.detail-section-title {
   
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Landmarks / Connectivity Table */
.connectivity-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.connectivity-table th {
    background: #F1F5F9;
    color: var(--primary-navy);
    font-weight: 700;
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 2px solid #CBD5E1;
}

.connectivity-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #E2E8F0;
    font-size: 14px;
}

.connectivity-table tr:last-child td {
    border-bottom: none;
}

.connectivity-time-badge {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-dark);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Amenities Grid */
.amenity-card {
    background: #FFFFFF;
    border: 1px solid #EAEFF5;
    border-radius: 10px;
    padding: 18px 15px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.amenity-card:hover {
    border-color: var(--secondary-gold);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
    transform: translateY(-4px);
}

.amenity-card .amenity-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(10, 25, 49, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 20px;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    background: var(--gold-gradient);
    color: var(--white);
}

.amenity-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0;
}

/* Floor Plan Accordion */
.floorplan-accordion .accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #FFFFFF;
}

.floorplan-accordion .accordion-button {
    font-weight: 700;
    color: var(--primary-navy);
    background: #F8FAFC;
    padding: 16px 20px;
    font-size: 16px;
    box-shadow: none;
}

.floorplan-accordion .accordion-button:not(.collapsed) {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-dark);
}

.floorplan-accordion .accordion-button::after {
    background-size: 14px;
}

.floorplan-img-wrap {
    text-align: center;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 8px;
    border: 1px dashed #CBD5E1;
}

.floorplan-img-wrap img {
    max-height: 320px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Sticky Sidebar Booking & Enquiry Card */
.sticky-sidebar-card {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    z-index: 10;
}

.booking-card {
    background: var(--navy-dark);
    border-radius: 14px;
    padding: 28px 24px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(6, 19, 41, 0.25);
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.booking-price-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.booking-price-header .price-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.booking-price-header .price-amount {
    
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.booking-card .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
}

.booking-card .form-control:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25);
}

.booking-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.booking-card .btn-whatsapp-direct {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.booking-card .btn-whatsapp-direct:hover {
    background: #20BA5A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Recent Sidebar Items */
.recent-property-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #EDF2F7;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.recent-property-item:last-child {
    border-bottom: none;
}

.recent-property-item img {
    width: 75px;
    height: 65px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-property-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.recent-property-item:hover .recent-property-info h6 {
    color: var(--gold-dark);
}

.recent-property-info p {
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0;
}

/* ROI Calculator Box */
.roi-calculator-box {
    background: #FFFFFF;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.roi-stat-pill {
    background: #F8FAFC;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.roi-stat-pill .stat-label {
    font-size: 12px;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.roi-stat-pill .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0;
}

/* Similar Property Cards */
.similar-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    /* height: 100%; */
}

.similar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(10, 25, 49, 0.12);
    border-color: var(--secondary-gold);
}

.similar-card-img-wrap {
    position: relative;
    /* height: 200px; */
    overflow: hidden;
}

.similar-card-img-wrap img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: transform 0.5s ease;
}

.similar-card:hover .similar-card-img-wrap img {
    transform: scale(1.06);
}

.similar-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-navy);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.similar-card-body {
    padding: 20px;
    background-color: var(--navy-accent);
  
}

.similar-card-title {
    font-size: 22px;
    font-weight: 700;
     color: #ffff;
    margin-bottom: 6px;
}

.similar-card-location {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}

.similar-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-dark);
}


.project-title-heading {
    font-size: 32px;
   

}

.vacation-card-heading {
    font-size: 22px;

}

@media (max-width: 991px) {
    .sticky-sidebar-card {
        position: static;
        margin-top: 40px;
    }

    .property-gallery-main img {
        height: 300px;
    }

    .property-main-title {
        font-size: 28px;
    }

    .project-title-heading {
        font-size: 29px;
    }

    .faq-accordion .accordion-body {
        Font-size: 14px !important;
    }

    .vacation-card-heading, .similar-card-title {
        font-size: 18px;

    }
}

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: 10px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    background: #FFFFFF;
    padding: 18px 24px;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold-dark);
    font-weight: 700;
}

.faq-accordion .accordion-body {
    padding: 20px 24px;
    color: #393535 !important;
    font-size: 17px;
    line-height: 1.7;
    background: #FFFFFF;
}

/* Vacation Collection Image Wrapper */
.vacation-collection-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.vacation-collection-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.similar-card:hover .vacation-collection-img-wrap img {
    transform: scale(1.06);
}

/* Contact Page Map */
.contact-map-frame {
    border: 0;
}

/* Blog Detail Page & Article Typography */
.article-title {
    font-size: 32px;
    line-height: 1.3;
}



.article-content {
    line-height: 1.8;
    color: #444444;
}

@media (max-width: 991px) {
    .article-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Modern Team Section (Matching Reference Style)
   ========================================================================== */

#team{
    background: #F8FAFC;
}


.team-card-modern {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 24px;
}

.team-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.team-card-img-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    background: #f1f3f5;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: border-color 0.35s ease;
}

.team-card-modern:hover .team-card-img-wrapper {
    border-color: var(--secondary-gold);
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.team-card-modern:hover .team-card-img {
    transform: scale(1.08);
}

.team-card-body {
    padding: 16px 16px 20px;
    text-align: center;
    background: #ffffff;
    width: 100%;
}

.team-member-name {
    color: var(--primary-navy);
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.team-member-role {
    color: #1A1F2C;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.team-member-desc {
    color: #64748B;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ECEFF2;
}

.team-social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F8FAFC;
    color: #0c1b33;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.team-social-links a:hover {
    background: #F15A29;
    color: #ffffff;
    border-color: #F15A29;
    transform: translateY(-2px);
}

.team-contact-info {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #EEF2F6;
    text-align: center;
}

.team-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-phone-link i {
    color: var(--secondary-gold);
    font-size: 13px;
    transition: transform 0.3s ease;
}

.team-phone-link:hover {
    color: var(--secondary-gold);
}

.team-phone-link:hover i {
    transform: scale(1.15) rotate(10deg);
}

/* ==========================================================================
   Second Home / Vacation Home Section
   ========================================================================== */
.second-home-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.second-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 25, 49, 0.1);
    border-color: var(--secondary-gold);
}

.second-home-img-wrap {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #0A1931;
}

.second-home-img-wrap img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* .second-home-card:hover .second-home-img-wrap img {
    transform: scale(1.06);
} */

.second-home-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 25, 49, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.second-home-status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.second-home-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.second-home-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.second-home-location {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 500;
}

.second-home-desc {
    color: #4A5568 !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.second-home-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.second-home-feat-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.second-home-card:hover .second-home-feat-item {
    background: #FFFFFF;
    border-color: rgba(197, 160, 89, 0.4);
}

.second-home-feat-item i {
    font-size: 16px;
    color: var(--secondary-gold);
    display: block;
    margin-bottom: 4px;
}

.second-home-feat-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-navy);
    display: block;
    line-height: 1.3;
}

.second-home-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-second-home-enquire {
    flex: 1;
    background: var(--navy-gradient);
    color: #FFFFFF;
    border: 1px solid var(--primary-navy);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-second-home-enquire:hover {
    background: var(--gold-gradient);
    color: var(--navy-dark) !important;
    border-color: var(--secondary-gold);
}

.btn-second-home-whatsapp {
    width: 44px;
    height: 44px;
    background: #25D366;
    color: #FFFFFF !important;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.btn-second-home-whatsapp:hover {
    background: #1EBE5D;
    color: #FFFFFF !important;
    transform: scale(1.05);
}

/* ==========================================================================
   Share Partner Page Styling
   ========================================================================== */

/* 1. About Section */
.sp-about-section {
    padding: 75px 0 65px;
    /* background: linear-gradient(135deg, #0F2341 0%, #061329 100%); */
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.sp-about-title {
    font-size: 36px;
    font-weight: 600;
    /* color: #FFFFFF !important; */
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.sp-about-text {
    font-size: 17px;
    line-height: 1.85;
    /* color: #E2E8F0 !important; */
    max-width: 1080px;
    margin: 0 auto;
    font-weight: 400;
}

/* 2. Why Choose Section */
.sp-why-choose-section {
    position: relative;
    padding: 85px 0;
    background: linear-gradient(rgba(10, 25, 49, 0.88), rgba(6, 19, 41, 0.92)), url('../img/banner/sub-bner-dubai.jpg') center/cover no-repeat;
    background-attachment: scroll;
}

.sp-section-heading-light {
    color: #FFFFFF !important;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 45px;
    text-align: center;
    letter-spacing: 0.5px;
}

.sp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: #FFFFFF;
}

.sp-feature-item {
    background: #FFFFFF;
    padding: 38px 25px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 175px;
}

.sp-feature-item:hover {
    background: #FAFAFA;
    transform: translateY(-3px);
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sp-feature-icon {
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.sp-feature-item:hover .sp-feature-icon {
    color: var(--secondary-gold);
    transform: scale(1.1);
}

.sp-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .sp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-about-title{
        font-size: 28px;
    }
    .sp-about-text{
        font-size: 14px;
        text-align: justify;
    
    }
    .sp-section-heading-light{
        font-size: 28px;
    }
    .sp-list li, .sp-check-item{
        font-size: 14px !important;
    }
    .sp-pillar-title{
        font-size: 28px !important;
    }
}

@media (max-width: 575px) {
    .sp-feature-grid {
        grid-template-columns: 1fr;
    }
    .sp-feature-item {
        padding: 28px 18px;
        min-height: 140px;
    }
}

/* 3. Our Share Partners Section */
.sp-partners-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.sp-gold-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary-gold);
    margin-top: -10px;
    margin-bottom: 20px;
}

.sp-partner-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sp-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(10, 25, 49, 0.12);
    border-color: var(--secondary-gold);
}

.sp-partner-img-wrapper {
    width: 100%;
    height: 310px;
    overflow: hidden;
    background-color: #F1F5F9;
}

.sp-partner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.sp-partner-card:hover .sp-partner-img {
    transform: scale(1.04);
}

.sp-partner-name {
    padding: 16px 12px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
    background: #FFFFFF;
    border-top: 1px solid #F1F5F9;
}

/* 4. Eligibility Check & Legal Terms Section */
.sp-eligibility-terms-section {
    position: relative;
    padding: 85px 0;
    background: linear-gradient(rgba(10, 25, 49, 0.88), rgba(6, 19, 41, 0.92)), url('../img/service/dubai_marina_tower.png') center/cover no-repeat;
    background-attachment: scroll;
}

.sp-column-heading {
    color: #FFFFFF !important;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.sp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-list li {
    position: relative;
    padding-left: 28px;
    color: #F1F5F9 !important;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.sp-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--secondary-gold);
    font-size: 24px;
    line-height: 1;
}

/* 5. What You Get & Support Mechanism Section */
.sp-benefits-support-section {
    position: relative;
    padding: 85px 0;
    background: linear-gradient(rgba(6, 19, 41, 0.93), rgba(10, 25, 49, 0.93)), url('../img/banner/sub-bner-dubai.jpg') center/cover no-repeat;
    background-attachment: scroll;
}

.sp-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

.sp-check-icon {
    color: var(--secondary-gold);
    font-size: 17px;
    margin-top: 3px;
    flex-shrink: 0;
}

.sp-pillar-title {
    color: #FFFFFF !important;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase !important;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* 6. Partner Form & CTA Section */
.sp-cta-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* 7. Associated With Top Dubai Builders Section */
.sp-brands-section {
    padding: 60px 0 70px;
    /* background: linear-gradient(135deg, #0F2341 0%, #061329 100%); */
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.sp-brands-title {
    font-size: 32px;
    font-weight: 600;
    /* color: #FFFFFF !important; */
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.sp-brands-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 50px;
}

.sp-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #FFFFFF;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); */
    transition: var(--transition-smooth);
    min-height: 70px;
}

/* .sp-brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
} */

.sp-brand-item img {
    max-height: 44px;
    width: auto;
    max-width: 135px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.sp-brand-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 767px) {
    .sp-brands-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .sp-brands-row {
        gap: 20px 30px;
    }
    .sp-brand-item {
        padding: 10px 14px;
        min-height: 58px;
    }
    .sp-brand-item img {
        max-height: 36px;
        max-width: 110px;
    }
}

/* ==========================================================================
   Dubai Cards & Developer Brand First-Letter Font Styles
   ========================================================================== */

.similar-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(10, 25, 49, 0.12);
    border-color: var(--secondary-gold);
}

.similar-card-img-wrap {
    width: 100%;
    /* height: 210px; */
    overflow: hidden;
    position: relative;
    background: #F1F5F9;
}

.similar-card-img-wrap img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
    transition: transform 0.6s ease;
}

.similar-card:hover .similar-card-img-wrap img {
    transform: scale(1.06);
}

.similar-card-body {
    padding: 18px 16px;
    background: #FFFFFF;
}

.similar-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1.45;
}

/* Developer Brand Word Font Styles */
.brand-word-binghatti {
    font-weight: 900 !important;
    color: #0A1931 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-right: 2px;
}

.brand-word-danube {
    font-style: italic !important;
    font-weight: 900 !important;
    color: #ED1C24 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    display: inline-block;
    transform: skewX(-4deg);
    margin-right: 2px;
}

.brand-word-bnw {
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 1.3em !important;
    color: #0A1931 !important;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

.brand-word-damac {
    font-weight: 900 !important;
    font-style: italic !important;
    letter-spacing: 1.5px !important;
    color: #0A1931 !important;
    text-transform: uppercase !important;
    margin-right: 2px;
}

.brand-word-imtiaz {
    font-weight: 700 !important;
    color: #C11823 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-right: 2px;
}

.brand-word-samana {
    font-weight: 700 !important;
    color: #0A1931 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-right: 2px;
}

.brand-word-sobha {
    font-weight: 800 !important;
    color: #C5A059 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-right: 2px;
}

.brand-word-forbes {
    font-weight: 800 !important;
    font-size: 1.15em !important;
    color: #f81b1b !important;
    letter-spacing: -0.3px !important;
    margin-right: 2px;
}

.brand-word-gaurs {
    font-weight: 900 !important;
    color: #1f8a10 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-right: 2px;
}

/* ==========================================================================
   Leadership & Team Card Styling
   ========================================================================== */

   .team-gall-section{
    background: var(--navy-accent);
   }

.team-card-modern {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(10, 25, 49, 0.12);
    border-color: var(--secondary-gold);
}

.team-card-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2.5px solid var(--secondary-gold);
    padding: 4px;
    margin: 0 auto 20px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.team-card-modern:hover .team-card-img {
    transform: scale(1.05);
}

.team-card-body {
    width: 100%;
}

.team-member-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.team-member-role {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 18px;
}

.team-member-bio {
    font-size: 14.5px;
    line-height: 1.7;
    color: #4A5568 !important;
    text-align: left;
    margin-top: 10px;
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
}

.team-member-bio p {
    font-size: 14px !important;
    line-height: 1.65;
    /* color: #4A5568 !important; */
    margin-bottom: 12px;
}

.team-member-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .team-card-modern{
        padding: 20px 5px;
    }
}

/* ==========================================================================
   Vacation Home & Second Home Cards
   ========================================================================== */

.second-home-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.second-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(10, 25, 49, 0.12);
    border-color: var(--secondary-gold);
}

.second-home-img-wrap {
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #F1F5F9;
}

.second-home-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.second-home-card:hover .second-home-img-wrap img {
    transform: scale(1.06);
}

.second-home-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 25, 49, 0.88);
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(197, 160, 89, 0.4);
    z-index: 2;
}

.second-home-status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold-gradient);
    color: #0A1931;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.second-home-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.second-home-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.second-home-subtitle {
    font-size: 12.5px;
    font-weight: 700;
    color: #C5A059;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.second-home-tagline {
    font-size: 13.5px;
    font-style: italic;
    color: #1A4D3E;
    font-weight: 600;
    margin-bottom: 12px;
}

.second-home-location {
    font-size: 13.5px;
    color: #64748B;
    margin-bottom: 12px;
}

.second-home-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 16px;
}

/* 3 Highlight Boxes matching the Aarambh Ayodhya screenshot */
.aarambh-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.aarambh-highlight-box {
    background: #0B251E;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 8px;
    padding: 12px 6px;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.aarambh-highlight-box:hover {
    background: #11382E;
    border-color: var(--secondary-gold);
    transform: translateY(-2px);
}

.aarambh-highlight-icon {
    font-size: 20px;
    color: #ECC880;
    margin-bottom: 6px;
}

.aarambh-highlight-value {
    font-size: 11px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
}

.aarambh-highlight-value span {
    display: block;
    color: #ECC880;
    font-size: 12.5px;
    font-weight: 900;
    margin-top: 2px;
}

.aarambh-limited-banner {
    background: #FDF8EE;
    border: 1px dashed rgba(197, 160, 89, 0.7);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 11.5px;
    font-weight: 700;
    color: #8B631B;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

.second-home-features {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #EDF2F7;
    border-bottom: 1px solid #EDF2F7;
    margin-bottom: 18px;
}

.second-home-feat-item {
    text-align: center;
    flex: 1;
    font-size: 12px;
    color: #4A5568;
}

.second-home-feat-item i {
    display: block;
    font-size: 16px;
    color: var(--secondary-gold);
    margin-bottom: 4px;
}

.second-home-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-second-home-enquire {
    flex: 1;
    background: var(--primary-navy);
    color: #FFFFFF;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-second-home-enquire:hover {
    background: var(--secondary-gold);
    color: #0A1931;
}

.btn-second-home-whatsapp {
    width: 44px;
    height: 42px;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-second-home-whatsapp:hover {
    background: #1EBE5D;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* ==========================================================================
   Dubai Premium Developer Cards Custom Layout (Reference Match)
   ========================================================================== */

.dubai-dev-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: #F1F5F9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

.dubai-dev-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(10, 25, 49, 0.15);
}

/* Image Wrap */
.dev-card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dev-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); */
}

/* .dubai-dev-card:hover .dev-card-img-wrap img {
    transform: scale(1.08);
} */

/* Badge (Top-Left) */
.dev-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: #d63384; /* Featured color matching reference image */
    color: #ffffff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Favorite Button (Top-Right) */
.dev-card-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 25, 49, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition-smooth);
    outline: none;
    padding: 0;
}

.dev-card-fav:hover {
    background: rgba(197, 160, 89, 0.9);
    border-color: #C5A059;
    color: #ffffff;
    transform: scale(1.1);
}

.dev-card-fav.active {
    background: #ffffff;
    color: #e31b23;
    border-color: #ffffff;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

/* Floating Info Box (Bottom) */
.dev-card-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 5;
    background: #ffffff;
    border-radius: 16px;
    padding: 60px 15px 20px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
}

/* Overlapping Circular Brand Logo */
.dev-card-brand-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 5px;
}

.dev-card-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Project Details styling */
.dev-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0A1931; /* var(--primary-navy) */
    margin: 0 0 4px 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: capitalize !important;
}

.dev-card-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    margin: 0;
    line-height: 1.4;
    text-transform: none !important;
}

@media (max-width: 991px) {
    .dev-card-badge {
        padding: 4px 10px;
        font-size: 10px;
        top: 10px;
        left: 10px;
    }
    .dev-card-fav {
        width: 32px;
        height: 32px;
        font-size: 13px;
        top: 10px;
        right: 10px;
    }
    .dev-card-brand-logo {
        width: 80px;
        height: 80px;
    }
    .dev-card-info {
        padding-top: 50px;
    }
}

@media (max-width: 575px) {
    .dubai-dev-card {
        aspect-ratio: 5 / 6;
    }
    .dev-card-info {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 42px 10px 14px 10px;
    }
    .dev-card-brand-logo {
        width: 70px;
        height: 70px;
    }
    .dev-card-title {
        font-size: 16px;
    }
    .dev-card-subtitle {
        font-size: 11px;
    }
}

/* ==========================================================================
   Team Gallery Section Custom Layout
   ========================================================================== */
.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(10, 25, 49, 0.05);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(10, 25, 49, 0.12);
}

.gallery-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-info {
    padding: 24px 20px;
    background: #ffffff;
    text-align: left;
}

.gallery-title {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.gallery-desc {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    /* color: #555555 !important; */
    line-height: 1.6;
    margin-bottom: 0;
}
