/* !!!!!!!!!!!!!!!!   Zyada use hony waly colors */
@import 'image-lightbox.css';


:root {
    /* Colors */
    --primary-gold: #C9A961;
    --gold-dark: #B8985F;
    --gold-light: #E5D4A6;
    --gold-accent: #D4AF37;
    --primary-color: #D4AF37;
    --dark-blue: #1a2332;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #ddd;
    --dark-navy: #0F1419;
    --charcoal: #1A1F2E;
    --slate: #2C3E50;
    --text-primary: #1A1F2E;
    --text-secondary: #5A6C7D;
    --text-muted: #8B95A1;
    --off-white: #FAFBFC;
    --light-gray: #F4F6F8;
    --border-subtle: #E8ECEF;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.15);

    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(2rem, 4vw + 1rem, 2rem);
    --fs-h3: clamp(1.5rem, 3vw + 1rem, 2.5rem);
    --fs-base: clamp(1rem, 0.5vw + 0.8rem, 1.125rem);
    --fs-small: clamp(0.875rem, 0.3vw + 0.75rem, 1rem);

    /* Responsive Spacing */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 2vw, 1.25rem);
    --space-md: clamp(1.25rem, 4vw, 2.5rem);
    --space-lg: clamp(2.5rem, 8vw, 5rem);
    --space-xl: clamp(4rem, 12vw, 8rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* zoom: 99%; */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    text-decoration: none;
}

.internal-link {
    font-weight: 700;
    color: var(--primary-gold, #C9A961);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.internal-link:hover {
    color: #111;
    border-bottom-color: var(--primary-gold, #C9A961);
    opacity: 0.85;
}

/* Header & Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header.header-white {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1250px; */
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    position: relative;
}

.logo {
    height: clamp(40px, 4vw, 60px) !important;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

@media (min-width: 1001px) {
    .nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.header.header-white .nav-item,
.header.scrolled .nav-item,
.header.scrolled-past-hero .nav-item {
    color: var(--text-dark);
}

.nav-item:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-gold) !important;
}

.nav-item:hover:after {
    width: 100%;
}

@media (max-width: 1350px) and (min-width: 1001px) {
    .nav {
        gap: 12px;
    }

    .nav-item {
        font-size: 11px;
    }
}

/* Dropdown Container */
.dropdown-container {
    position: relative;
    cursor: pointer;
}

.nav-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 150%;
    /* Position below the nav item */
    left: 0;
    background-color: #d1d1d1;
    /* Light grey matching the image */
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.dropdown-item {
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-transform: none;
    /* Keep original casing */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.nested-dropdown:hover>.dropdown-item {
    background-color: #c0c0c0;
    /* Slightly darker grey on hover */
    padding-left: 25px;
    /* Subtle hover effect */
    color: #000;
}

/* Nested Dropdown Styles */
.nested-dropdown {
    position: relative;
}

.nested-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    /* Position to the right by default */
    background-color: #d1d1d1;
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

/* For screens where the menu might go off the right edge */
@media (max-width: 1400px) {
    .nested-dropdown-menu {
        left: auto;
        right: 100%;
        transform: translateX(10px);
    }
}

.nested-dropdown:hover>.nested-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.get-in-touch {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Hamburger Menu Utility */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.header.header-white .hamburger span,
.header.scrolled .hamburger span,
.header.scrolled-past-hero .hamburger span {
    background: var(--text-dark);
}

.hamburger.active .hamburger span {
    background: var(--text-dark) !important;
}

/* Mobile Nav Drawer Styles */
@media (max-width: 1000px) {
    .hamburger {
        display: flex;
        order: 3;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        padding: var(--space-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1050;
    }

    .nav.open {
        right: 0;
    }

    .nav-item {
        color: var(--text-dark) !important;
        font-size: clamp(1rem, 4vw, 1.25rem);
        text-align: center;
        width: 100%;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Nav Dropdown Adjustments */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Hidden by default on mobile, toggled via JS if needed, or just show flat */
        padding-left: 20px;
    }

    .dropdown-container:hover .dropdown-menu,
    .dropdown-container.active .dropdown-menu {
        display: flex;
    }

    .dropdown-item {
        padding: 12px 15px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-dark);
        justify-content: center;
    }

    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-gold);
    }

    .nested-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.03);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
    }

    .nested-dropdown.active>.nested-dropdown-menu {
        display: flex;
    }

    .nav-link {
        justify-content: center;
        width: 100%;
    }

    .nav-link i {
        margin-left: 5px;
    }

    .dropdown-container.active .nav-link i {
        transform: rotate(180deg);
    }

    /* Show get-in-touch button inside mobile nav */


    .nav .mobile-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        margin-top: var(--space-md);
        padding-top: var(--space-md);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .nav .mobile-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

.about-hero {
    font-family: "Playfair Display", serif;
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url('/images/About us.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.35);
    z-index: 1;
}

/* PERFECT CENTER */
.about-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 700;
    color: #000;
    margin: 0;
    z-index: 2;
    letter-spacing: -0.5px;
}

/* PERFECT BOTTOM LEFT */
.about-hero-subtitle {
    position: absolute;
    bottom: 70px;
    left: 80px;
    max-width: 520px;
    color: #000;
    z-index: 2;
}

.about-hero-subtitle h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.about-hero-subtitle p {
    font-size: 14px;
    opacity: 0.8;
}


.hero {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    position: relative;
    width: 100%;
    min-height: 500px;
    height: clamp(500px, 97vh, 900px);
    background-color: #101b90;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes kenBurns {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -10;
    /* Lower than hero-content */
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 12, 70, 0.3); 
    z-index: 2;
}
*/

.hero-content {
    position: relative;
    z-index: 100;
    /* Higher than overlay */
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: var(--space-xl);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 3.8rem);
    font-weight: 800;
    text-align: inherit;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Breakpoints for various views */
@media (min-width: 1201px) {
    .hero-content {
        text-align: center;
        /* margin-left: 5%; */
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .hero-content {
        text-align: center;
        /* No margin-left shift — keep PC centered layout */
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 6vw, 3.2rem);
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
        width: 95%;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-content p {
        text-align: center;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.7rem, 9vw, 2.3rem);
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: inherit;
}

.header-whatsapp i {
    font-size: 32px;
    /* increase this value */
    color: #25D366;
    transition: 0.3s ease;
}

.header-whatsapp i:hover {
    transform: scale(1.2);
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-h1);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-base);
    font-weight: 400;
    color: #ffffff !important;
    line-height: 1.6;
    max-width: 800px;
    letter-spacing: 0.3px;
}

.hero-trust {
    display: flex;
    justify-content: start;
    margin-bottom: 20px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Initial glide up entry + floating + infinite glowing pulse */
    animation: glideUp 1s ease-out backwards, float 3s ease-in-out infinite 1s, glowPulse 2s infinite ease-in-out;
}

.trust-pill i {
    color: var(--primary-gold);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(201, 169, 97, 0.4));
}

.trust-pill span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
}

.gold-text-small {
    color: var(--primary-gold);
    font-weight: 700;
}

@keyframes glideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    50% {
        border-color: rgba(201, 169, 97, 0.6);
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    }
}




.section-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
}

.my-section-subtitle {
    font-size: var(--fs-small);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-md);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--primary-gold);
}


.gold-text {
    color: var(--primary-gold);
    -webkit-background-clip: text;
    background-clip: text;
}

.white-text {
    color: #f7f7f7;
}

.light-text {
    color: #f7f7f7;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 2vw, 14px);
    padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 32px);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-accent));
    color: white;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 169, 97, 0.25);
}

.btn-gold:active {
    transform: translateY(0);
}

/* New Theme Utility */
.btn-theme-gold {
    border: 1px solid var(--primary-gold) !important;
    color: #111 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.btn-theme-gold:hover {
    background-color: var(--primary-gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
}



.btn-gold-dark {
    background: linear-gradient(135deg, var(--gold-dark), var(--primary-gold));
    color: var(--white);
    padding: 16px 48px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 15px;
}

.btn-gold-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn-dark {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 16px 56px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 15px;
}

.btn-dark:hover {
    background-color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.view-btn {
    margin: 40px auto 0;
    display: flex;
    max-width: 280px;
    width: 100%;
}

@media (max-width: 768px) {
    .view-btn {
        max-width: 100%;
        margin-top: 20px;
    }
}

.benefits-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) 5%;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: var(--space-md) 5%;
    }
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    padding: 14px 54px;
    /* Adjusted for border */
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--charcoal);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 100px;
}

.btn-outline-dark.btn-large {
    padding: 14px 98px;
    /* Adjusted for border with large size */
}

.view-gold-btn {
    margin-top: 17%;
    max-width: 50%;
    text-decoration: none;

}

.intro-section {
    position: relative;
    padding: var(--space-lg) 5%;
    max-width: 1200px;
    padding-top: 0;
    margin: 0 auto;
    overflow: hidden;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
}

.projects-section {
    position: relative;
    padding: var(--space-lg) 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.projects-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: var(--space-md);
    width: 100%;
    max-width: 1400px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}


.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.project-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
    display: block;
}



@media (max-width: 768px) {}

@media (max-width: 480px) {
    h2 {
        font-size: 12px;
    }
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-info {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
    /* 2 lines × 1.3 line-height */
}

.project-location {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.dummy-box-orange {
    max-width: 100%;
    background: linear-gradient(180deg,
            #f7f7f7 0%,
            #fcfaf7 10%,
            #eedcc0 20%,
            #eedcc0 50%,
            #eedcc0 80%,
            #eedcc0 90%,
            #f7f7f7 100%);
    z-index: -10;
}

.view-btn {
    padding: 20px 103px;
    border-radius: 33px;
    border: 1px solid var(--primary-gold) !important;
    color: #111 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.view-btn:hover {
    background-color: var(--primary-gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 400;

}

.detail-icon {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.detail-item span {
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0;
    line-height: 1.4;
}



.about-section {
    position: relative;
    padding: var(--space-lg) 5%;
}

.about-content,
.story-grid,
.goal-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 1272px;
    margin: 0 auto;
    align-items: center;
}

.sticky-column {
    position: relative;
    height: 100%;
}

@media (min-width: 769px) {

    .about-content,
    .story-grid,
    .goal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 60px;
    }
}



.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 28px;
    width: 100%;
}

.about-heading {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    letter-spacing: 0.5px;
}

.legacy-heading {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-label {
    position: relative;
    font-family: 'Lato', Helvetica, sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #000;
    width: 95px;
}

.about-description {
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 23px;
    letter-spacing: 0;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 600px; /* Increased height to match reference */
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .about-image {
        height: 350px; /* Shorter for mobile */
        max-width: 100%;
    }
}

/* Home About Feature Table */
.desc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.desc-table tr {
    border-bottom: 20px solid transparent; /* Spacing between rows */
}

.desc-icon-cell {
    width: 120px;
    vertical-align: top;
    text-align: center;
    padding-right: 25px;
    border-right: 1px solid #eee;
}

.desc-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.desc-heading {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desc-content-cell {
    padding-left: 25px;
    vertical-align: middle;
}

.desc-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    display: block;
}

.about-intro-box p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    max-width: 900px;
}

.about-subtitle {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-top: 22px;
    line-height: 1.3;
    max-width: 900px;
}

.statistics-section {
    position: relative;
    padding: var(--space-md) 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    justify-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #000;
    line-height: 25px;
    letter-spacing: 0;
}

.stat-label {
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-top: 15px;
    line-height: 1.4;
    letter-spacing: 0;
}


.cta-section {
    position: relative;
    height: 694px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    text-align: center;
}

.cta-logo {
    width: 168px;
    height: 123px;
    border-radius: 14px;
    object-fit: cover;
}

.cta-title {
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    line-height: 1.4;
}

.cta-location {
    font-family: 'Playfair Display', Helvetica, serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.4;
}



.benefits-section {
    position: relative;
    padding: var(--space-lg) 5%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    /* Contain horizontal marquee motion */
    overflow: hidden;
}

.benefits-title {
    font-family: 'Montserrat', Helvetica, sans-serif;
    font-size: var(--fs-h2);
    font-weight: 700;
    text-align: center;
    color: #000;
    line-height: 1.2;
    letter-spacing: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    justify-items: center;
    width: 100%;
}

.benefit-card {
    width: 247px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: auto;
    height: 70px;
    object-fit: cover;
    margin-bottom: 23px;
}

.benefit-title {
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: 0;
}

.benefit-description {
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    letter-spacing: 0;
}



.animate-fade-in {
    animation: fade-in 1s ease forwards;
}

.animate-fade-up {
    animation: fade-up 1s ease forwards;
}

.reviews {
    background: #fff;
    padding: 80px 16px;
    width: 100%;
    overflow: hidden;
}

/* Desktop / laptop layout: center reviews and limit width */


.reviews-header {
    margin-bottom: 48px;
}

.reviews-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating span {
    font-size: 14px;
}

.rating img {
    height: 16px;
    width: 16px;
}

.reviews-header>p {
    font-size: 14px;
    margin-bottom: 16px;
}

.google-text {
    font-weight: 900;
}

.g1 {
    color: #438ef4;
}

.g2 {
    color: #d93025;
}

.g3 {
    color: #fb8e29;
}

.g4 {
    color: #438ef4;
}

.g5 {
    color: #6a8038;
}

.g6 {
    color: #d93025;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-md);
    width: 100%;
    margin-top: var(--space-md);
}

.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px 24px;
    min-height: 244px;
    width: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-card-gray {
    background: #f4f4f4;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

@media (min-width: 1025px) {
    .reviews {
        width: 75%;
        margin: 0 auto;
    }


    .review-card {
        width: 50%;
    }
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.avatar-blue {
    background: #5c6bc0;
}

.avatar-orange {
    background: #f4511e;
}

.avatar-teal {
    background: #00897b;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.review-time {
    font-weight: 300;
    font-size: 9px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.stars img {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 12px;
    padding-right: 10px;
}

.welcome {
    position: relative;
    padding: 80px 5%;
    background-color: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.welcome-text-content {
    max-width: 1000px;
    margin: 0 auto;
}

.welcome h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.3rem);
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.welcome-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--primary-gold, #c5a059);
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.feature-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold, #c5a059);
}

.welcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welcome-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
}

/* Custom list indicators */
.welcome-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold, #c5a059);
    font-weight: 800;
}

/* Checkmark list specifically */
.welcome-list.check-list li::before {
    content: '✓';
    font-size: 1.2rem;
}

.welcome-list li strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.welcome-cta-box {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.welcome .cta-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.welcome-cta-box .btn {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 40px;
}

.blogs {

    position: relative;
    padding-top: 5%;
    background: linear-gradient(180deg,
            rgba(247, 247, 247, 1) 0%,
            rgba(228, 199, 127, 0.7) 50%,
            rgba(247, 247, 247, 1) 100%);
    /* Contain partners marquee motion */
    overflow: hidden;
}

.blogs .container {
    width: 80%;
}

.blogs h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.blogs-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: #dcd7c9;
    border: 2px solid #a27b5c;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card>img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.blog-content .blog-title-text,
.blog-content a,
.blog-content h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    /* 1.4 line-height * 2 lines */
    color: #000;
    text-decoration: none;
}

.blog-content .blog-title-text:hover {
    color: #C9A961;
}

.blog-content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
    /* 1.6 line-height * 3 lines */
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #888;
}

.partners-title {
    margin-top: 48px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 65px;
    flex-wrap: wrap;
}

.partner {
    text-align: center;
}

.partner img {
    width: 120px;
    height: 91px;
    object-fit: contain;
    margin-bottom: 4px;
}

.partner p {
    font-size: 14px;
}

.why-choose {
    position: relative;
    padding: var(--space-lg) 5%;
    margin: 0 auto;
}

.why-choose h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 1025px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        width: 80%;
        margin: auto;
    }
}

.why-item {
    border-top: 1px solid #ccc;
    padding: 24px 0;
    transition: all 0.4s ease;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.why-header:hover {
    color: var(--primary-gold);
}

.why-header h3 {
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}

.why-item-open .why-header {
    color: var(--primary-gold);
}

.why-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-item-open .why-answer {
    grid-template-rows: 1fr;
}

.answer-inner {
    min-height: 0;
}

.why-answer p {
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

.toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item-open .toggle {
    transform: rotate(45deg);
    color: var(--primary-gold);
}

.why-image img {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.schedule h2 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 16px;
}

#contact .container {
    /* padding: 0 16px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-choose .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.schedule p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}

.contact-now {
    position: relative;
    margin-top: 1%;
    width: 24%;
    margin-left: auto;
    margin-right: auto;
}

.searches {
    position: relative;
    padding: 80px 16px;
}

.searches h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 52px;
    text-align: center;
    margin-bottom: 48px;
}

.searches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    width: 79%;
    margin: 0 auto;
    justify-content: center;
}

.search-category {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.search-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    cursor: text;

}

.search-link:hover {
    color: var(--primary-color);
}

.searches-list h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 24px;
}

.searches-list ul {
    list-style: none;
}

.searches-list li {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 16px;
}

.searches-image img {
    width: 100%;
    height: 668px;
    object-fit: cover;
    border-radius: 8px;
}


.btn-contact-now {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin: 15px 0;
}

.btn-contact-now:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
}

.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Contact Section */
.contact-section {
    padding: var(--space-lg) 5%;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.contact-grid>.contact-details,
.contact-grid>.contact-form-wrapper {
    align-self: start;
    padding-top: 40px;
}

@media (min-width: 1020px) {
    .contact-grid {
        grid-template-columns: 40% 60%;
        width: 100%;
        margin: auto;
        padding: 10px;
    }
}

@media (min-width: 1440px) {
    .contact-grid {
        grid-template-columns: 40% 60%;
        width: 85%;
        margin: auto;
    }
}

.section-subtitle {
    color: var(--primary-color);

    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.popular-searches {
    font-family: 'Playfair Display', Helvetica, serif;
    margin-top: var(--space-md);
    width: 100%;
    background-color: #f4f4f4;
    padding: var(--space-lg) 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.popular-title {
    font-family: 'Playfair Display', Helvetica, serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    max-width: 701px;
}

.section-subtitle {
    color: var(--primary-color);

    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-company {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.phone-grid {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: baseline;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
    flex-wrap: wrap;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-numbers p {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: 60px 80px;
    background-color: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.story-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
}

.story-image {
    width: 100%;
}

.story-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Goal Section */
.goal-section {
    padding: 60px 80px;
    background-color: #f9f6f0;
}

.goal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.goal-image {
    width: 100%;
}

.goal-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.goal-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.goal-subheading {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 10px 0;
    color: #000;
}

.goal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: justify;
}

/* Company About Section */
.company-about {
    padding: 60px 80px;
    background: linear-gradient(to bottom, #f4f1eb 0%, #e6c98a 100%);
}

.company-about .container {
    max-width: 1400px;
    margin: 0 auto;
}

.company-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.8;
    justify-content: center;
    text-align: center;
    max-width: 85%;
    padding-left: 15%;
}

.company-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.my-company-text {
    margin-bottom: 20px;
}

.personal-company-text {
    font-weight: 700;
}

.why-choose-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 30px 0 20px 0;
    text-align: center;
}

/* Core Values */
.core-values {
    margin-top: 50px;
}

.values-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tablet view */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile view */
@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.company-text {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 768px) {
    .company-text {
        font-size: 15px;
        gap: 10px 14px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .company-text {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }
}

.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.value-card p {
    font-size: 13px;
    color: #666;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 0;
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row.form-row-names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    text-align: start;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

.form-input,
.form-textarea {
    padding: 15px 15px;
    border: 1px solid #d4b872;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: transparent;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #b39750;
    background-color: transparent;
}

.form-input.full-width {
    grid-column: 1 / -1;
}

.message-group {
    margin-top: 5px;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    grid-column: 1 / -1;
}

.submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.submit-wrapper .btn-submit {
    background-color: #cca450;
    color: white;
    font-weight: 600;
    padding: 14px 45px;
    border: 1px solid #cca450;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

.submit-wrapper .btn-submit:hover {
    background-color: #b39750;
}

/* Button Loading State */
.btn-submit {
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
}

.btn-submit.loading {
    background-color: var(--gold-dark);
    color: transparent;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-submit:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.footer {
    width: 100%;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#snackbar {
    min-width: 320px;
    background-color: #1a1f2e;
    /* Dark slate for premium feel */
    color: white;
    text-align: left;
    padding: 16px 24px;
    border-radius: 12px;
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--primary-gold);

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#snackbar.show {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}

#snackbar.error {
    border-left-color: #ff4d4d;
}

#snackbar i {
    font-size: 20px;
    color: var(--primary-gold);
}

#snackbar.error i {
    color: #ff4d4d;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.footer-nav-link,
.footer-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover,
.footer-link:hover {
    color: var(--primary-gold);
}

.footer-divider {
    width: 100%;
    height: 2px;
    background-color: rgba(21, 21, 21, 0.2);
    margin: 10px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-copyright {
    font-weight: 500;
    font-size: 16px;
    color: #787878;
}

.footer-text {
    font-weight: 500;
    font-size: 16px;
    color: #787878;
}




.card svg {
    height: 25px;
}

.card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7e7e7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    height: 50px;
    width: 250px;
}

.card::before,
.card::after {
    position: absolute;
    display: flex;
    align-items: center;
    width: 51%;
    height: 100%;
    transition: 0.25s linear;
    z-index: 1;
}

.card::before {
    content: "";
    left: 0;
    justify-content: flex-end;
    background-color: #D4AF37;
}

.card::after {
    content: "";
    right: 0;
    justify-content: flex-start;
    background-color: #D4AF37;
}

.card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card:hover span {
    opacity: 0;
    z-index: -3;
}

.card:hover::before {
    opacity: 0.5;
    transform: translateY(-100%);
}

.card:hover::after {
    opacity: 0.5;
    transform: translateY(100%);
}

.card span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: whitesmoke;
    font-family: 'Fira Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.25s;
    z-index: 2;
}

.card .social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 100%;
    color: whitesmoke;
    font-size: 24px;
    text-decoration: none;
    transition: 0.25s;
}

.card .social-link svg {
    text-shadow: 1px 1px rgba(31, 74, 121, 0.7);
    transform: scale(1);
}

.card .social-link:hover {
    background-color: rgba(249, 244, 255, 0.774);
    animation: bounce_613 0.4s linear;
}




.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.img-hover {

    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover:hover {
    transform: scale(1.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

}

.blog-card>img:hover {
    transform: scale(1.05);

}

.text-black {
    color: #000 !important;
}

.header.scrolled .nav-item:hover {
    color: var(--primary-gold) !important;
}

.header.header-white .nav-item:hover {
    color: var(--primary-gold) !important;
}

/* ==========================================================================
   POPULAR SLIDER SECTION
   ========================================================================== */
.popular-slider-section {
    padding: 60px 0;


    background: linear-gradient(180deg,
            #04072C 0%,
            #A68B4B 73%,
            #F7F7F7 90%,
            #fff 100%);

    text-align: center;
    overflow: hidden;
    height: 90vh !important;
    /* background: linear-gradient(180deg, #111536 0%, #4a4233 50%, #ebdcc0 100%); */
}

.popular-slider-section .section-title {
    color: #ffffff !important;
    margin-top: 5%;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 5% !important;

}

.popular-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.popular-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;

}

.popular-slide {
    flex: 0 0 auto;
    width: 600px;


}

.popular-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.popular-slide:hover img {
    transform: scale(1.03);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .popular-slider-section {
        padding: 40px 0;
    }

    .popular-slide {
        width: 340px;
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg,
            #141414 0%,
            #1C1C1C 25%,
            #262626 45%,
            #2E2E2E 50%,
            #262626 55%,
            #1C1C1C 75%,
            #141414 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.popular-slide-skeleton {
    width: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .popular-slide-skeleton {
        width: 340px;
    }
}

/* Component Skeletons */
.project-card-skeleton {
    width: 100%;
    min-width: 350px;
    /* Default for slider use */
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.similar-slider .project-card-skeleton {
    min-width: calc(33.333% - 20px);
}

@media (max-width: 1200px) {
    .similar-slider .project-card-skeleton {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .similar-slider .project-card-skeleton {
        min-width: 280px;
    }
}

.card-image-skeleton {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.card-info-skeleton {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-text {
    height: 20px;
    border-radius: 4px;
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.meta {
    height: 14px;
    width: 40%;
}

.blog-card-skeleton {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
}

.stat-item-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.stat-value-skeleton {
    width: 80px;
    height: 48px;
    border-radius: 8px;
}

.stat-label-skeleton {
    width: 120px;
    height: 18px;
    border-radius: 4px;
}

.faq-item-skeleton {
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-skeleton-item {
    min-width: 300px;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    flex-shrink: 0;
}

.property-row-skeleton {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 100px;
    width: 100%;
}

.row-img-skeleton {
    flex: 1;
    aspect-ratio: 16 / 10;
    background: #f5f5f5;
    border-radius: 4px;
    z-index: 2;
}

.row-details-skeleton {
    flex: 1;
    padding: 60px 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.property-row-skeleton:nth-child(odd) .row-details-skeleton {
    transform: translateX(-120px);
    padding-left: 140px;
}

.property-row-skeleton:nth-child(even) .row-details-skeleton {
    transform: translateX(120px);
    padding-right: 140px;
    order: -1;
}

@media (max-width: 991px) {
    .property-row-skeleton {
        flex-direction: column;
        gap: 0;
    }

    .row-details-skeleton,
    .property-row-skeleton:nth-child(odd) .row-details-skeleton,
    .property-row-skeleton:nth-child(even) .row-details-skeleton {
        transform: translateY(-40px);
        width: 90%;
        padding: 30px;
        order: 1;
    }
}

/* ==========================================================================
   SIMILAR CARDS (PROPERTIES & BLOGS) — Premium
   ========================================================================== */

.similar-card {
    width: calc(33.333% - 18px);
    flex: 0 0 calc(33.333% - 18px);
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .similar-card {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .similar-card {
        min-width: 280px;
    }
}

.similar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Image Wrapper ── */
.similar-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.similar-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.similar-card:hover .similar-card-img {
    transform: scale(1.08);
}

.similar-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.similar-card:hover .similar-card-img-overlay {
    opacity: 1;
}

.similar-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-gold, #c9a961);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.35);
}

/* ── Card Content ── */
.similar-card-content {
    padding: clamp(16px, 3vw, 28px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 14px);
}

.similar-card .card-header {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.similar-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.similar-card:hover .card-title {
    color: var(--primary-gold, #c9a961);
}

.similar-card .card-price {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--primary-gold, #c9a961);
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.similar-card .card-price span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
    letter-spacing: 1px;
}

.similar-card .card-location {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: var(--primary-gold, #c9a961);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.similar-card .card-location i {
    color: var(--primary-gold, #c9a961);
    font-size: 12px;
}

.similar-card .card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 16px);
}

.similar-card .footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.similar-card .footer-icon {
    width: 18px;
    height: 18px;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.similar-card:hover .footer-icon {
    opacity: 1;
}


/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 32px;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #C9A961;
    border-radius: 5px;
    transition: 0.3s ease;
}


/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1000px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 20px;
        transition: 0.35s ease;
        z-index: 9998;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav-item {
        font-size: 18px;
        padding: 10px 0;
        color: var(--text-primary) !important;
    }

    .hamburger {
        display: flex;
    }

    /* General sections */


    .intro-section,
    .about-section,
    .benefits-section,
    .why-section,
    .stats-section,
    .reviews-section,
    .partners-section,
    .blogs-section,
    #contact {
        padding: 20px 7px !important;
    }

    .dummy-box-orange {
        padding: 3px 10px 0px;
    }

    /* Typography */
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px !important;
    }

    .my-section-subtitle {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* Grids to single column */
    /* Removed .projects-grid from here to allow 2-col on tablets */
    .benefits-grid,
    .stats-grid,
    /* .reviews-grid, */
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .blogs-grid,
    .projects-grid {
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    /* Flex layouts to column */
    .about-content,
    .why-grid,
    .contact-grid {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        display: flex !important;
    }

    .contact-grid>div {
        width: 100%;
        max-width: 600px;
        text-align: start;
    }

    .contact-item {
        justify-content: start;
    }

    .phone-grid {
        justify-content: start !important;
    }

    .hero-content {
        padding: 0 20px;
        align-items: center;
        text-align: start;
    }

    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    /* Images full width on mobile */
    .about-main-image,
    .why-main-image {
        height: 400px;
    }

    /* Contact form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-subtitle {
        bottom: 40px;
        left: 40px;
        max-width: 90%;
    }
}

/* Mobile header layout */
@media (max-width: 1000px) {
    .header-content {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        width: 100%;
        padding: 0 16px;
        gap: 10px;
    }

    .logo {
        justify-self: start;
        height: 45px;
        width: auto;
    }

    .get-in-touch {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
    }

    .get-in-touch img {
        width: 20px;
        height: auto;
    }

    .get-in-touch .btn {
        font-size: 11px;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .hamburger {
        display: flex !important;
        justify-self: end;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .project-card {
        width: 100%;
        height: auto;
    }
}

/* Small tablets and large phones (768px and below) */
@media (max-width: 768px) {
    .hero-title {
        text-align: center;

        font-size: 36px;
    }

    .section-title {
        text-align: center;

        font-size: 28px !important;
    }

    .my-section-subtitle {
        font-size: 16px;
    }

    .btn-large {
        padding: 14px 40px;
    }

    .about-main-image,
    .why-main-image {
        height: 300px;
    }



    .explore-btn {
        padding-top: 5%;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        bottom: 30px;
        left: 20px;
    }

    .about-hero-subtitle h2 {
        font-size: 16px;
    }

    .about-hero-subtitle p {
        font-size: 13px;
    }
}

/* Small phones (600px and below) */
@media (max-width: 600px) {
    .header-content {
        text-align: center;
        grid-template-columns: auto 1fr auto;
        padding: 0 12px;
        gap: 6px;
    }

    .logo {
        height: 38px;
    }

    .get-in-touch {
        gap: 4px;
        scale: 0.92;
    }

    .get-in-touch img {
        width: 18px;
    }

    .get-in-touch .btn {
        font-size: 10px;
        padding: 6px 10px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .hero-title {
        text-align: center;
        font-size: 28px !important;
    }

    .section-title {
        text-align: center;
        font-size: 24px !important;
    }

    .my-section-subtitle {
        text-align: center;
        font-size: 14px;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .btn-large {
        padding: 12px 32px;
    }

    .intro-text {
        font-size: 15px;
    }

    .about-main-image,
    .why-main-image {
        height: 250px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    footer .card {
        width: 250px;
        height: 50px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        bottom: 20px;
        left: 16px;
    }
}

/* Extra small phones (420px and below) */
@media (max-width: 420px) {
    .get-in-touch .btn {
        font-size: 9px;
        padding: 5px 8px;
    }

    .get-in-touch img {
        width: 16px;
    }

    .logo {
        height: 34px;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .section-title {
        font-size: 20px !important;
    }

    .hero-content {
        gap: 30px;
    }

    .explore-btn {
        width: 100%;
    }

    .about-hero {
        height: 70vh;
    }

    .about-hero-title {
        font-size: 24px;
    }
}






/* ===== RESPONSIVE BREAKPOINTS FOR REVIEWS ===== */

/* Tablets and smaller desktops (1024px and below) */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }

    .reviews-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .reviews-header h3 {
        font-size: 32px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Third card takes full width centered */
    .review-card:nth-child(3) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Tablets and large phones (768px and below) */
@media (max-width: 768px) {
    .reviews {
        padding: 50px 0;
    }

    .reviews-header h3 {
        font-size: 28px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* Mobile phones (600px and below) */
@media (max-width: 600px) {
    .reviews {
        padding: 40px 0;
    }

    .reviews-header {
        margin-bottom: 24px;
        text-align: center;
    }

    .reviews-header h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .reviews-header>p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .reviews-grid {
        gap: 16px;
    }

    .review-card {
        padding: 24px 20px;
    }
}

/* Extra small phones (420px and below) */
@media (max-width: 420px) {
    .reviews {
        padding: 32px 0;
    }

    .reviews-header h3 {
        font-size: 22px;
    }

    .reviews-header>p {
        font-size: 12px;
    }

    .review-card {
        padding: 20px 16px;
    }


}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Animate hamburger to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 1000px) {
    .footer-logo-img {
        width: 80%;
        height: 50%;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.35s ease;
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.12);
        z-index: 9998;
    }

    .nav.open {
        right: 0;
    }

    .nav-item {
        font-size: 18px;
        color: var(--text-dark) !important;
    }
}



.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 28px);
    width: 100%;
}

.project-card {
    height: 100%;
}

.project-image {
    width: 100%;
    height: clamp(220px, 35vw, 420px);
    object-fit: cover;
}




.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(16px, 3vw, 28px);
    width: 100%;
}

.blog-card img {
    height: clamp(200px, 30vw, 320px);
    object-fit: cover;
}




@media (max-width: 768px) {

    footer .card {
        max-width: 250px;
        width: 250px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* === BLOG CARD MUST MATCH PROJECT CARD ON MOBILE === */
    .blogs-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 0 1px !important;
        box-sizing: border-box !important;
    }

    .blog-card {
        width: 100% !important;
        max-width: 100% !important;
        background: var(--white) !important;
        background-color: var(--white) !important;
        border: 1px solid var(--primary-gold) !important;
        border-radius: 12px !important;
        box-shadow: var(--shadow-sm) !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .blog-card img,
    .blog-card>img {
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        aspect-ratio: 1 / 1 !important;
    }

    .blog-content {
        padding: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        flex-grow: 1 !important;
    }

    .blog-content h4,
    .blog-content .blog-title-text,
    .blog-title {
        font-size: clamp(1rem, 3vw, 1.25rem) !important;
        font-weight: 700 !important;
        color: #000 !important;
        line-height: 1.3 !important;
        margin-bottom: 4px !important;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Always 4 in desktop */
    gap: var(--space-md);
    width: 100%;
}

/* Tablet */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-column {
        text-align: center;
    }

    .project-details {
        text-align: center;
    }

    .section-title {
        font-size: 36px;
    }
}

/* Text Grid Cards for About Page */
.text-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.text-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.text-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.text-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.text-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.text-card p:last-child {
    margin-bottom: 0;
}

.about-intro-box {
    background: linear-gradient(135deg, #fdfbfb 0%, #f4f6f9 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-gold);
    margin-bottom: 30px;
}

.about-intro-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-intro-box h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.about-intro-box p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-intro-box p:last-child {
    margin-bottom: 0;
}

/* Chairman signature block */
.chairman-signature {
    margin-top: 28px;
    padding-top: 20px;
}

.signature-line {
    width: 55px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    margin-bottom: 12px;
}

.signature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.signature-company {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
}

/* Flexible description table (Global) */
.desc-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 3px;
    table-layout: auto;
    margin-top: 8px;
}

.desc-table tr {
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.2s;
    border-radius: 8px;
}

.desc-table tr:hover {
    background: rgba(201, 169, 97, 0.05);
}

.desc-icon-cell {
    vertical-align: top;
    padding: 6px 10px 6px 0;
    white-space: nowrap;
    width: 0;
}

.desc-emoji {
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 2px;
}

.desc-heading {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary-gold);
    white-space: normal;
    max-width: 85px;
    line-height: 1.2;
}

.desc-content-cell {
    vertical-align: top;
    padding: 6px 0 6px 12px;
    border-left: 2px solid rgba(201, 169, 97, 0.2);
    color: #444;
    font-size: 0.82rem;
    line-height: 1.5;
}

.desc-text {
    display: block;
}

.desc-bullets {
    margin: 0;
    padding-left: 14px;
}

.desc-bullets li {
    margin-bottom: 1px;
    font-size: 0.8rem;
}

/* ── Compact Chips for empty-content items ── */
.desc-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.desc-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}

.desc-chip:hover {
    background: rgba(201, 169, 97, 0.16);
    transform: translateY(-1px);
}

.desc-chip-emoji {
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
}

.desc-chip-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 600px) {

    /* Mobile stack for desc-table */
    .desc-table,
    .desc-table tbody,
    .desc-table tr,
    .desc-table td {
        display: block;
        width: 100%;
    }

    .desc-icon-cell {
        padding: 8px 0 2px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: normal;
    }

    .desc-emoji {
        display: inline;
        margin-bottom: 0;
        font-size: 1rem;
    }

    .desc-heading {
        display: inline;
        max-width: none;
    }

    .desc-content-cell {
        padding: 2px 0 8px 12px !important;
        border-left: 2px solid rgba(201, 169, 97, 0.3);
    }

    /* Chips on mobile */
    .desc-chips-row {
        gap: 4px;
        margin: 6px 0;
    }

    .desc-chip {
        padding: 3px 8px;
        gap: 4px;
    }

    .desc-chip-emoji {
        font-size: 0.85rem;
    }

    .desc-chip-label {
        font-size: 0.55rem;
    }

    .about-content,
    .about-section {
        padding: 0 !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-title {
        font-size: 20px;
    }

    .about-text {
        text-align: center;

    }

    .about-heading {
        line-height: 1.4;
    }

    .reviews {
        padding: 20px 1px;
        width: 100%;
        /* overflow: hidden; */
    }
}


.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    transform: translateZ(0);
}

/* Smooth hover lift */
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Click press effect */
.btn:active {
    transform: translateY(1px) scale(0.97);
}

/* Shimmer highlight */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: 0.5s ease;
}

.btn:hover::after {
    left: 120%;
}

/* Gold buttons glow effect */
.btn-gold:hover,
.btn-gold-dark:hover {
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
}

/* Dark button premium hover */
.btn-dark:hover {
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

/* Ripple click animation */
.btn span.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.45);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

.map-section {
    margin: 20px auto;
    width: 100%;
}

.search-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.search-icon:hover {
    transform: scale(1.1);

}

.logo {
    cursor: pointer;
    text-decoration: none !important;
}

.logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

/* Desktop / laptop only */
@media (min-width: 1024px) {
    .container {
        margin: auto;
        width: 100%;
    }
}

/* ============================= */
/* MOBILE TEXT ALIGNMENT START */
/* ============================= */

@media (max-width: 768px) {

    /* Global text alignment */
    body,
    section,
    .container,
    .row,
    .col {
        text-align: left !important;
    }

    /* Hero text */
    .hero-content,
    .hero-text,
    .page-hero-content,
    .blogs-write-hero-content {
        text-align: start !important;
        /* align-items: flex-start !important; */
        justify-content: center;
    }

    /* Headings */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-align: left !important;
    }

    /* Paragraphs */
    p {
        text-align: left !important;
    }

    /* Buttons wrapper */
    .btn-group,
    .hero-buttons {
        justify-content: flex-start !important;
    }

    .contact-form-wrapper {
        padding: 0 !important;
    }

}

@media (max-width: 600px) {

    .about-content,
    .about-section {
        padding: 5px 0px !important;
    }

    .about-heading {
        font-size: 26px;
    }
}

@media (max-width: 426px) {
    .footer-logo-img {
        width: 50%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr !important;
        /* keep 2 columns */
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .projects-section {
        position: relative;
        padding: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .blogs .container {
        width: 100%;
        padding: 32px;
    }
}

/* Discover SEO Section Styles */
.seo-discover-section.gold-on-black {
    background-color: #000000;
    width: 100%;
    overflow: hidden;
}

.gold-text {
    color: #c5a059 !important;
}

.white-text {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .discover-title {
        font-size: 1.8rem !important;
    }
    .discover-content {
        font-size: 1rem !important;
    }
}
