:root {
    --menu-bg-color: rgba(0, 0, 0, 0.92);
    --text-color: rgb(255, 255, 255);
    --font-family: 'Lato', sans-serif;
    --font-size-base: 25px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #f4f4f4;
    /* Light background for contrast */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/* Add this to prevent background scrolling when mobile menu is open */
.no-scroll {
    overflow: hidden !important;
}

#desktop-hero-video {
    display: block;
}

#mobile-hero-video {
    display: none;
}

/* ========================== STICKY NAVBAR WITH BLUR ========================== */
.navbar {
    position: fixed;
    /* Change to fixed for proper overlay on hero */
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background-color: transparent;
    /* Initial transparent background */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    /* Little back palette color when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for distinction */
}

/* GROUP ALL NAV ELEMENTS TO THE CENTER */
.nav-center-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* everything centered */
    gap: 40px;
    /* space between left menu, logo, and right menu */
    max-width: 1500px;
    /* Add max-width for content alignment */
    margin: 0 auto;
    /* Center the content */
    padding: 0 40px;
    /* Add padding for smaller screens */
}

/* LEFT & RIGHT MENU (Placed close to logo) */
.nav-left {
    display: flex;
    gap: 25px;
    /* space between menu items */
}

.nav-left a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px !important;
    opacity: 1 !important;
    transition: none !important;
    /* Remove all transitions */
}

.navbar.scrolled .nav-left a {
    color: #000 !important;
    /* Black color when scrolled */
}

.nav-left a:hover {
    color: #ffffff !important;
    /* Keep color constant on hover */
    opacity: 1 !important;
    /* Keep opacity constant on hover */
}

.navbar.scrolled .nav-left a:hover {
    color: #000 !important;
    /* Keep color constant on hover when scrolled */
}

.nav-left a:hover {
    /* No hover effect, keep constant values as defined above */
    color: #fff !important;
    /* Redundant but explicit for hover state */
    opacity: 1 !important;
    /* Redundant but explicit for hover state */
}

.navbar.scrolled .nav-left a:hover {
    /* No hover effect, keep constant values as defined above */
    color: #000 !important;
    /* Redundant but explicit for hover state when scrolled */
    opacity: 1 !important;
    /* Redundant but explicit for hover state when scrolled */
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: #fff !important;
    /* Ensure consistent color with other nav items */
    padding: 0;
    font-size: 15px !important;
    border: none;
    cursor: pointer;
    opacity: 1 !important;
    /* Ensure consistent opacity */
    transition: none !important;
    /* No transitions */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    /* Background for dropdown items */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    /* Above navbar content */
    border-radius: 5px;
    overflow: hidden;
    /* Ensures rounded corners apply to content */
    top: 100%;
    /* Position below the button */
    left: 0;
    /* Align with the left edge of the button */
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black !important;
    /* Dropdown links should be dark on light background */
    padding: 12px 16px;
    text-decoration: none !important;
    display: block !important;
    text-align: left;
    font-size: 14px !important;
    opacity: 1 !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd !important;
    color: #333 !important;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    /* Optional: style the button when dropdown is active */
    /* background-color: #555; */
}

.navbar.scrolled .dropdown .dropbtn {
    color: #000 !important;
    /* Ensure consistency with scrolled nav links */
}

.navbar.scrolled .dropdown-content a {
    color: #000 !important;
    /* Ensure consistency with scrolled nav links */
}

.navbar.scrolled .dropdown-content a:hover {
    background-color: #eee !important;
    color: #000 !important;
}

/* LOGO */
.nav-logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ========================== NAV BAR for mobile ========================== */
/* ========================== MOBILE MENU (ONLY MOBILE) ========================== */
/* Hide mobile button by default (Desktop) */
.mobile-menu-toggle {
    display: none;
}

/* Hide overlay by default */
.mobile-overlay {
    display: none;
}

/* MOBILE VIEW */
@media (max-width: 991px) {

    /* Hide desktop links in mobile */
    .nav-left {
        display: none;
    }

    /* Flex container for logo and mobile menu button */
    .nav-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        /* Take full width to push toggle to right */
        padding: 0 0px;
        /* Reduced padding to move logo left and menu right */
    }

    .navbar.scrolled {
        padding-top: 30px;
        /* Add top padding to scrolled navbar on mobile */
    }

    /* Show mobile hamburger button */
    .mobile-menu-toggle {
        display: block;
        /* position: absolute; REMOVED */
        /* right: 20px; REMOVED */
        /* top: 18px; REMOVED */
        font-size: 35px;
        /* Bigger icon */
        cursor: pointer;
        z-index: 2000;
        color: #fff;
    }

    /* Change hamburger color when navbar scrolled */
    .navbar.scrolled .mobile-menu-toggle {
        color: #000;
    }

    /* Overlay container */
    .mobile-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(10px);
        z-index: 9999;
        /* animation */
        opacity: 0;
        visibility: hidden;
        transform: scale(1.08);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Open state */
    .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    /* Close button */
    .mobile-close {
        position: absolute;
        top: 22px;
        right: 22px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
    }

    /* Menu list */
    .mobile-overlay-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-overlay-menu ul li {
        margin: 18px 0;
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    /* Stagger animation */
    .mobile-overlay.open .mobile-overlay-menu ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-overlay.open .mobile-overlay-menu ul li:nth-child(1) {
        transition-delay: 0.08s;
    }

    .mobile-overlay.open .mobile-overlay-menu ul li:nth-child(2) {
        transition-delay: 0.16s;
    }

    .mobile-overlay.open .mobile-overlay-menu ul li:nth-child(3) {
        transition-delay: 0.24s;
    }

    .mobile-overlay.open .mobile-overlay-menu ul li:nth-child(4) {
        transition-delay: 0.32s;
    }

    .mobile-overlay.open .mobile-overlay-menu ul li:nth-child(5) {
        transition-delay: 0.40s;
    }

    .mobile-overlay.open .mobile-overlay-menu ul li:nth-child(6) {
        transition-delay: 0.48s;
    }

    /* Links */
    .mobile-overlay-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: inline-block;
    }

    .mobile-overlay-menu a:hover {
        color: #d4af37;
    }

    /* Dropdown */
    .mobile-dropdown-content {
        display: none;
        margin-top: 12px;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
    }

    .mobile-dropdown-content a {
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 8px 0;
        display: block;
        color: #fff;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
        display: block;
    }

    .mobile-dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-dropdown-toggle .arrow {
        font-size: 22px;
        font-weight: 700;
    }
}

/* ========================== PARALLAX HERO SECTION ========================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Changed from flex-end to center for vertical alignment */
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 3;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 500px;
    /* To constrain the width of the paragraph */
    text-align: justify;
}

.hero-content h1 {
    font-size: 65px;
    letter-spacing: 3px;
    font-weight: 300;
}

/* ============================= hero indicator ============================= */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 10;
    opacity: 0.9;
}

/* TEXT */
.scroll-text {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* MOUSE SHAPE */
.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

/* SCROLL WHEEL */
.wheel {
    width: 10px;
    height: 12px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.6s infinite ease-in-out;
}

/* ANIMATION */
@keyframes scrollWheel {
    0% {
        opacity: 0;
        top: 10px;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 28px;
    }
}

/* New mobile-only indicator */
.scroll-indicator-mobile {
    display: none;
    /* Hidden by default */
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 10;
    opacity: 0.9;
}

.scroll-indicator-mobile .scroll-text {
    font-size: 16px;
    /* Slightly smaller font */
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.scroll-indicator-mobile .mouse {
    width: 30px;
    /* Slightly smaller mouse */
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator-mobile .wheel {
    width: 10px;
    /* Slightly smaller wheel */
    height: 12px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 12px;
    /* Adjusted top for new mouse size */
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelMobile 1.6s infinite ease-in-out;
}

@keyframes scrollWheelMobile {
    0% {
        opacity: 0;
        top: 12px;
        /* Adjusted top for new mouse size */
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 30px;
        /* Adjusted top for new mouse size */
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        /* Adjust height for mobile */
        min-height: 100vh;
        /* Minimum height to ensure visibility */
    }

    .hero-content {
        padding: 20px;
        /* Add some padding around content */
        position: relative;
        /* Change to relative to allow normal flow */
        top: auto;
        left: auto;
        transform: none;
    }

    .hero-content h1 {
        font-size: 40px;
        /* Smaller font size for mobile */
    }

    .hero-content p {
        font-size: 14px;
        /* Smaller font size for mobile */
        max-width: 90%;
        /* Adjust max-width for better fit */
        margin: 0 auto;
        /* Center paragraph */
    }

    .scroll-indicator {
        display: none;
        /* Hide original */
    }

    .scroll-indicator-mobile {
        display: flex;
        /* Show new one */
    }

    .scroll-indicator .scroll-text {
        font-size: 16px;
        /* Bigger font size for mobile */
        margin-bottom: 12px;
    }

    .scroll-indicator .mouse {
        width: 40px;
        /* Bigger mouse width for mobile */
        height: 60px;
        /* Bigger mouse height for mobile */
        border: 3px solid rgba(255, 255, 255, 0.8);
        /* Thicker border for mobile */
    }

    .scroll-indicator .wheel {
        width: 12px;
        /* Bigger wheel width for mobile */
        height: 14px;
        /* Bigger wheel height for mobile */
        top: 12px;
        /* Adjust top for new mouse size */
    }

    @keyframes scrollWheel {
        0% {
            opacity: 0;
            top: 12px;
            /* Adjust top for new mouse size */
        }

        30% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            top: 32px;
            /* Adjust top for new mouse size */
        }
    }
}

/* home page second section*/
/* ============================= SECTION 2 — INFO BLOCK ============================= */
/* ========================== SECTION 2 LAYOUT ========================== */
/* ========================= SECTION 2 BASE STYLES ========================= */
/* ========================== SECTION (IMAGE BACKGROUND) ========================== */
.s2 {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    /* ✅ Background image like screenshot */
    background: url("../img/man-walk.jpg") center/cover no-repeat;
}

/* ✅ Dark overlay like image */
.s2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    /* black overlay shade */
    z-index: 1;
}

/* ========================== CONTAINER ========================== */
.s2-container {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
}

/* ========================== TITLE ========================== */
.s2-title {
    font-size: 42px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* ========================== CONTENT ========================== */
.s2-content {
    max-width: 900px;
    margin: 0 auto;
}

.s2-content p {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
    color: #1c1c1c;
    margin-bottom: 18px;
}

/* ========================= STATS SECTION ========================= */
/* ========================= IMPACT STATS SECTION ========================= */
.impact-stats-section {
    background-color: #0d0d0d;
    padding-bottom: 100px;
    font-family: "Inter", sans-serif;
    color: #ffffff;
}

.impact-stats-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    /* Assuming a dark background for this section */
    margin-bottom: 40px;
    /* Space below the title */
    padding-top: 20px;
    /* Add some padding to the top */
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #cccccc;
    /* Slightly lighter than title for subtitle */
    margin-top: -30px;
    /* Adjust margin to be closer to title */
    margin-bottom: 50px;
    /* Space before the stats container */
    padding-left: 20px;
    /* Add padding to the sides */
    padding-right: 20px;
}

/* Grid container */
.impact-stats-container {
    width: 98%;
    max-width: 1500px;
    /* Further increased width */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
    /* Further increased divider column width */
    align-items: start;
}

/* Individual stat */
.impact-stat {
    padding-right: 20px;
}

/* Small label */
.impact-label {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.55;
}

/* Number */
.impact-stat h3 {
    font-size: 38px;
    font-weight: 300;
    margin: 8px 0 6px;
}

/* Description */
.impact-stat p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.65;
    max-width: 420px;
    /* Further increased max-width */
}

/* Divider */
.impact-divider {
    width: 3px;
    height: 85px;
    background: rgba(255, 255, 255, 0.12);
    align-self: center;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
    .impact-stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-divider {
        display: none;
    }

    .impact-stat p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .impact-stats-section {
        padding-bottom: 60px;
        /* Reduced padding for mobile */
    }

    .impact-stats-title {
        font-size: 28px;
        /* Smaller title for mobile */
        margin-bottom: 20px;
        padding-top: 40px;
        /* Adjusted padding-top */
    }

    .section-subtitle {
        font-size: 14px;
        /* Smaller subtitle for mobile */
        margin-top: -15px;
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .impact-stats-container {
        width: 90%;
        /* Adjusted width for mobile */
        margin: 0 auto;
        gap: 30px;
        /* Adjusted gap */
    }

    .impact-stat {
        padding-right: 0;
        /* Remove right padding */
        text-align: center;
        /* Center align content */
    }

    .impact-label {
        font-size: 11px;
        /* Smaller label font */
    }

    .impact-stat h3 {
        font-size: 32px;
        /* Smaller number font */
        margin: 5px 0 4px;
    }

    .impact-stat p {
        font-size: 12px;
        /* Smaller description font */
        max-width: 90%;
        /* Adjusted max-width */
        margin: 0 auto;
        /* Center description text */
    }
}

/* ========================= our development ========================= */
.spaces-section {
    background: radial-gradient(circle at top, #0d0d0d, #0d0d0d);
    color: #fff;
    font-family: "Inter", sans-serif;
    padding: 120px 80px 140px;
}

/* ---------- HEADER ---------- */
.spaces-hero {
    position: relative;
    margin-bottom: 120px;
    text-align: center;
}

.spaces-hero h1 {
    font-size: clamp(30px, 4vw, 60px);
    /* Adjusted font size */
    font-weight: 700;
    letter-spacing: 2px;
}

.spaces-sub {
    position: static;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.7;
    font-style: italic;
}

/* ---------- GRID ---------- */
.spaces-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

/* ---------- CARD ---------- */
.space-card {
    text-align: center;
}

.space-card h3 {
    font-size: 22px;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

/* ---------- IMAGE + HALF FRAME ---------- */
.image-wrap {
    position: relative;
    max-width: 360px;
    margin: 0 auto 32px;
    padding-top: 32px;
}

/* WHITE FRAME – TOP 50% ONLY */
.image-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 50%;
    background: #ffffff;
    z-index: 1;
}

/* IMAGE */
.image-wrap img {
    position: relative;
    width: 100%;
    height: 380px;
    object-fit: cover;
    z-index: 2;
    border-radius: 0 0 160px 160px;
}

/* ---------- TEXT ---------- */
.space-card p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 320px;
    margin: 0 auto 28px;
}

/* ---------- BUTTON ---------- */
.space-btn {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.35s ease;
}

.space-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .spaces-cards {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .spaces-sub {
        position: static;
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .spaces-section {
        padding: 60px 20px 80px;
        /* Reduced padding for mobile */
    }

    .spaces-hero {
        margin-bottom: 60px;
        /* Reduced margin for mobile header */
    }

    .spaces-hero h1 {
        font-size: 30px;
        /* Smaller font size for mobile heading */
    }

    .spaces-sub {
        font-size: 13px;
        /* Smaller font size for mobile subtitle */
    }

    .spaces-cards {
        gap: 60px;
        /* Reduced gap between cards for mobile */
    }

    .image-wrap {
        padding-top: 20px;
        /* Adjusted padding for image wrap */
        max-width: 280px;
        /* Reduced max-width for images */
    }

    .image-wrap img {
        height: 280px;
        /* Reduced image height for mobile */
        border-radius: 0 0 120px 120px;
        /* Adjusted border-radius */
    }

    .space-card h3 {
        font-size: 20px;
        /* Adjusted font size for card titles */
    }

    .space-card p {
        font-size: 12px;
        /* Adjusted font size for card text */
        max-width: 90%;
        /* Allow paragraph to take more width */
    }

    .space-btn {
        padding: 10px 28px;
        /* Adjusted button padding */
        font-size: 12px;
        /* Adjusted button font size */
    }
}

/* ========================= avya farms on home page ========================= */
/* =============================== FARMLAND PROJECT SECTION ================================ */
.farmland-project {
    background: radial-gradient(circle at left, #141414, #000);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    padding: 30px 40px 100px;
}

/* CONTAINER */
.farmland-container {
    display: grid;
    grid-template-columns: 1.05fr 1.4fr;
    align-items: center;
    gap: 60px;
    margin-top: -80px;
}

/* LEFT CONTENT */
.farmland-content {
    max-width: 620px;
}

.brand-sub-logo {
    width: 400px;
    height: auto;
    margin-left: 112px;
    /* Move the image to the right */
}

.brand-green {
    color: #4caf50;
}

.brand-gold {
    color: #d4a74f;
}

.brand-sub {
    display: inline-block;
    margin-bottom: 30px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    opacity: 0.8;
}

/* PROJECT TITLE */
.project-phase {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
    /* Center the text */
    margin-top: -50px;
    /* Move text further up */
}

/* DESCRIPTION */
.project-desc {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 30px;
}

/* STATS */
.project-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: center;
    /* Center flex items */
}

.stat {
    text-align: center;
}

.project-stats .stat i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4a74f;
    /* gold color to match branding */
}

.stat-icon {
    display: block;
    width: 32px;
    /* Adjust size as needed */
    height: 32px;
    /* Adjust size as needed */
    margin: 0 auto 10px auto;
    /* Center and add space below */
}

.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 600;
}

.stat-label {
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* LOCATION */
.project-location {
    font-size: 18px;
    opacity: 0.8;
    text-align: center;
    /* Center the text */
}

.project-location i {
    margin-right: 8px;
    color: #4caf50;
    /* green color to match branding */
}

.location-icon {
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    /* Adjust size as needed */
    margin-right: 8px;
    /* Add space to the right */
    vertical-align: middle;
    /* Align with text */
}

.explore-btn-container-inline {
    display: inline-block;
    /* Make the container inline */
    margin-left: 15px;
    /* Add some space between text and button */
    vertical-align: middle;
    /* Align with text */
}

.explore-now-btn-inline {
    display: inline-block;
    background: #234A42;
    /* Similar to other buttons */
    color: white;
    padding: 8px 18px;
    /* Smaller padding for inline display */
    border: none;
    border-radius: 20px;
    /* Slightly smaller border-radius */
    cursor: pointer;
    font-size: 14px;
    /* Smaller font size for inline display */
    transition: 0.3s ease;
    text-decoration: none;
    /* Remove underline */
}

.explore-now-btn-inline:hover {
    background: #1e4038;
    /* Darker shade on hover */
}

/* =============================== IMAGE SECTION ================================ */
.farmland-image {
    position: relative;
    overflow: hidden;
    border-radius: 0px 0 0 220px;
    /* KEY PART */
}

.farmland-image img {
    width: 100%;
    /* Increased width */
    height: 750px;
    /* Increased height again */
    object-fit: cover;
    display: block;
    transform: translateY(100px) translateX(-20px);
    /* Move image down and left slightly */
}

/* SHOT AT SITE */
.image-note {
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 11px;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* =============================== RESPONSIVE ================================ */
@media (max-width: 1100px) {
    .farmland-container {
        grid-template-columns: 1fr;
    }

    .farmland-image {
        border-radius: 40px;
    }

    .farmland-image img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .farmland-project {
        padding: 40px 20px 60px;
        /* Reduced padding for mobile */
    }

    .farmland-container {
        gap: 30px;
        /* Reduced gap */
        margin-top: 0;
        /* Reset margin-top */
    }

    .farmland-content {
        max-width: 100%;
        /* Allow content to take full width */
        text-align: center;
        /* Center align all text */
    }

    .brand-sub-logo {
        width: 250px;
        /* Smaller logo */
        margin-left: auto;
        /* Center the logo */
        margin-right: auto;
        /* Center the logo */
        margin-bottom: 20px;
        /* Add some space below logo */
    }

    .project-phase {
        font-size: 24px;
        /* Smaller font size */
        margin-top: 0;
        /* Reset margin-top */
        margin-bottom: 15px;
        /* Adjusted margin-bottom */
    }

    .project-desc {
        font-size: 15px;
        /* Smaller font size */
        margin-bottom: 20px;
    }

    .project-stats {
        flex-direction: column;
        /* Stack stats vertically */
        gap: 15px;
        /* Reduced gap between stacked stats */
        margin-bottom: 20px;
    }

    .stat-icon {
        width: 28px;
        /* Smaller icon */
        height: 28px;
        /* Smaller icon */
    }

    .stat-number {
        font-size: 22px;
        /* Smaller font size */
    }

    .stat-label {
        font-size: 11px;
        /* Smaller font size */
    }

    .project-location {
        font-size: 15px;
        /* Smaller font size */
        margin-bottom: 20px;
    }

    .explore-btn-container-inline {
        display: block;
        /* Make button block for better mobile placement */
        margin-top: 15px;
        /* Add space above button */
        margin-left: auto;
        /* Center the button */
        margin-right: auto;
        /* Center the button */
    }

    .farmland-image {
        border-radius: 20px;
        /* Smaller border-radius for mobile image */
    }

    .farmland-image img {
        height: 280px;
        /* Smaller image height */
        transform: translateY(0) translateX(0);
        /* Reset transform */
    }
}

/* ========================= Why invest in projects ========================= */
/* SECTION WRAPPER */
/* SECTION WRAPPER */
.vipp-kitchen-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #2F2F2F;
    color: #fff;
    padding: 0;
    min-height: 95vh;
}

/* LEFT IMAGE */
.kitchen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT GRID CONTENT */
.kitchen-grid-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
    background-color: #f4f4f4;
    /* New background color */
    color: #111;
    /* Dark text color for readability */
}

/* GROUP: TITLE + FIRST ROW */
.kitchen-grid-row-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers the title */
    width: 100%;
}

/* TITLE CENTERED ABOVE TWO BOXES */
.right-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #111;
    text-align: center;
}

/* ROWS */
.kitchen-grid-row {
    display: flex;
    gap: 25px;
    width: 100%;
}

.kitchen-grid-row.single {
    justify-content: center;
}

/* BOX STYLING */
.kitchen-box {
    background: #f4f4f4;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.kitchen-box:hover {
    background: #e8e8e8;
}

/* Wide Box */
.kitchen-box.wide {
    max-width: 85%;
}

/* Text inside boxes */
.kitchen-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.kitchen-box p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .vipp-kitchen-section {
        grid-template-columns: 1fr;
    }

    .kitchen-grid-content {
        padding: 40px 20px;
    }

    .kitchen-grid-row {
        flex-direction: column;
    }

    .kitchen-box.wide {
        max-width: 100%;
    }

    .right-title {
        font-size: 26px;
    }
}

/* ========================= testmonial ========================= */
/* TESTIMONIAL SECTION */
/* FULL WIDTH – 80vh HEIGHT */
/* FULL WIDTH – 80vh HEIGHT */
.testimonial-section {
    width: 100%;
    background: #F4F4F4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

/* CONTENT WRAPPER */
.testimonial-container {
    width: 100%;
    max-width: 1500px;
    /* Slightly wider for larger cards */
    margin: auto;
    text-align: center;
}

/* HEADER */
.testimonial-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: #111;
}

.testimonial-sub {
    color: #444;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 40px;
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    /* More spacing between cards */
    padding: 0 60px;
    /* Wider padding */
}

/* CARD */
.testimonial-item {
    background: #1E1E1E;
    padding: 50px 40px;
    /* Increased padding */
    border-radius: 16px;
    min-height: 320px;
    /* Taller box */
    transition: 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.testimonial-img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 2px solid #fff;
}

/* NAME */
.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

/* ROLE */
.testimonial-role {
    font-size: 14px;
    opacity: 0.7;
    color: #ccc;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e6e6e6;
    opacity: 0.9;
    max-width: 90%;
    /* makes text look cleaner */
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .testimonial-section {
        height: auto;
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .testimonial-item {
        min-height: 280px;
    }
}

/* ========================= Subscribe news letter ========================= */
/* NEWSLETTER SECTION */
.avya-newsletter-section {
    width: 100%;
    background: #E6E6E6;
    /* grey background like screenshot */
    padding: 70px 20px;
    /* top/bottom padding */
    display: flex;
    justify-content: center;
}

.avya-newsletter-container {
    width: 100%;
    max-width: 1200px;
    /* controls total width */
    display: flex;
    align-items: center;
    gap: 25px;
}

/* LEFT LABEL */
.avya-news-label {
    color: #000;
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* INPUT */
.avya-news-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

/* BUTTON */
.avya-news-btn {
    background: #1e2227;
    /* dark button */
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .avya-newsletter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .avya-news-label {
        text-align: center;
    }
}

/* ========================= footer ========================= */
/* ========================= FOOTER BASE ========================= */
.footer-section {
    background: #000;
    color: #e6e6e6;
    padding: 70px 80px 30px;
    font-family: "Inter", sans-serif;
}

/* ========================= GRID LAYOUT ========================= */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ========================= LOGO COLUMN ========================= */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
}

/* BRAND TEXT BELOW LOGO */
.footer-brand-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.75;
    max-width: 360px;
}

/* ========================= TITLES ========================= */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 18px;
}

/* ========================= LINKS ========================= */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #e6e6e6;
    font-size: 16px;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

/* ========================= ADDRESS ========================= */
.footer-address-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 14px;
}

.footer-address-item img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

/* ========================= SOCIAL ICONS ========================= */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #444;
}

.footer-social img {
    width: 18px;
    height: 18px;
}

/* ========================= DIVIDER ========================= */
.footer-divider {
    height: 1px;
    background: #333;
    margin: 50px 0 25px;
}

/* ========================= BOTTOM TEXT ========================= */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ========================= MOBILE FOOTER (LEFT ALIGN) ========================= */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 20px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        /* ✅ LEFT ALIGN */
    }

    /* Logo column */
    .footer-logo-col {
        align-items: flex-start;
        /* ✅ LEFT */
    }

    .footer-logo {
        width: 180px;
        margin-bottom: 15px;
    }

    .footer-brand-text {
        text-align: left;
        font-size: 13px;
        line-height: 1.6;
        max-width: 420px;
    }

    /* Footer columns */
    .footer-col {
        align-items: flex-start;
        /* ✅ LEFT */
        text-align: left;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 13px;
    }

    /* Address */
    .footer-address-item {
        justify-content: flex-start;
        text-align: left;
    }

    /* Social icons */
    .footer-social {
        justify-content: flex-start;
        /* ✅ LEFT */
        gap: 10px;
    }

    /* Bottom text */
    .footer-bottom {
        font-size: 12px;
        text-align: center;
    }
}

/* ========================= about main page ========================= */
/* SECTION */
.design-hero {
    width: 100%;
    min-height: 100vh;
    /* Make the section at least full viewport height */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
}

/* PARALLAX IMAGE CONTAINER */
.design-image-wrapper {
    width: 100%;
    height: 100vh;
    /* Fill the parent design-hero */
    overflow: hidden;
    position: relative;
    /* CUSTOM CURVED RADIUS */
    border-radius: 0 0 80px 0;
}

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Light black overlay */
    z-index: 1;
    /* Ensure overlay is above image but below text */
}

/* PARALLAX EFFECT */
.parallax .design-image {
    width: 100%;
    height: 110%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    /* KEY PARALLAX PROPERTY */
    transform: translateY(var(--scroll, 0px));
    transition: transform 0.1s linear;
}

/* TEXT OVERLAY */
.design-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
}

.design-text h1 {
    font-size: 65px;
    font-weight: 300;
    line-height: 1.2;
    white-space: nowrap;
    /* Ensure text stays on a single line */
    font-family: "Poppins", sans-serif;
}

.design-text p {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 15px;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .design-hero {
        min-height: 100vh;
        justify-content: center;
        /* Center content vertically */
    }

    .design-image-wrapper {
        height: 100vh;
        /* Make wrapper full height on mobile */
        border-radius: 0 0 50px 0;
    }

    .parallax .design-image {
        height: 100%;
        /* Ensure video takes full height, remove parallax extra height */
        transform: translateY(0px);
        /* Disable parallax movement on mobile */
    }

    .design-content {
        /* Revert to centering for mobile */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        /* Ensure text is centered */
        width: 90%;
        /* Constrain width for better readability */
    }

    .design-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .design-image-wrapper {
        border-radius: 0;
    }

    .design-content h1 {
        font-size: 28px;
        /* Further reduce font size for very small screens */
    }
}

/* ========================= about main page- about company ========================= */
/* SECTION WRAPPER */
.about-company {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    padding: 90px 80px;
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #111;
    gap: 60px;
}

/* LEFT SECTION */
.about-left h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-desc {
    font-size: 17px;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 750px;
    /* Increased line width */
    margin-bottom: 35px;
}

/* LOGOS ROW */
.about-logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-logos img {
    height: 35px;
    opacity: 0.7;
    transition: 0.3s;
}

.about-logos img:hover {
    opacity: 1;
}

/* RIGHT SIDE GRID (2x2) */
.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.stat-box h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-company {
        grid-template-columns: 1fr;
        padding: 50px 25px;
    }

    .about-right {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================= growth road-map section ========================= */
/* ============================== OUR GROWTH ROADMAP SECTION ============================== */
.growth-roadmap-section {
    position: relative;
    color: #fff;
    padding: 120px 80px;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    /* ✅ Background Image */
    background: url("../img/growth.jpg") center/cover no-repeat;
}

/* ✅ Dark overlay on top of image */
.growth-overlay-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* You can increase darkness by changing 0.85 -> 0.95 */
    background: rgba(0, 0, 0, 0.85);
}

/* Layout container */
.growth-roadmap-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */
.growth-left h2 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.05;
    text-transform: uppercase;
}

.growth-subtitle {
    margin-top: 16px;
    font-size: 18px;
    opacity: 0.65;
    font-style: italic;
}

/* RIGHT SIDE BLOCKS */
.growth-right {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.growth-block h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4a74f;
    margin-bottom: 12px;
}

.growth-block p {
    font-size: 14px;
    line-height: 1.9;
    opacity: 0.85;
    max-width: 560px;
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1024px) {
    .growth-roadmap-section {
        padding: 90px 30px;
    }

    .growth-roadmap-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .growth-block p {
        max-width: 100%;
    }
}

/* ========================= about main page- our service ========================= */
/* SECTION */
.services-section {
    width: 100%;
    padding: 80px 90px;
    background: #f4f4f4;
    color: #000;
    font-family: "Inter", sans-serif;
}

/* HEADER */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-size: 40px;
    font-weight: 600;
}

/* 3×2 GRID – EVEN SPACING */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    /* 🔥 Even spacing between all boxes */
}

/* CARD */
.service-card {
    background: #fff;
    color: #fff;
    width: 100%;
    height: 300px;
    padding: 32px 26px;
    border-radius: 18px;
    border: 1px solid #ddd;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    border: 1px solid #ccc;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    margin-bottom: 20px;
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

/* DESCRIPTION */
.service-card p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.5;
    color: #000;
}

/* 🔥 FADE-IN SCROLL ANIMATION */
.fade-box {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s ease;
}

.fade-box.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: auto;
        padding: 25px;
    }
}

/* ========================= about main page- our md ========================= */
/* MAIN SECTION */
.our-md-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-areas: "content image";
    /* CONTENT LEFT → IMAGE RIGHT */
    background: #000;
    color: #fff;
    padding: 0;
    min-height: 95vh;
    font-family: "Inter", sans-serif;
}

/* RIGHT IMAGE (NOW RIGHT) */
.our-md-image {
    grid-area: image;
}

.our-md-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEFT GRID CONTENT */
.our-md-grid-content {
    grid-area: content;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
}

/* GROUP: TITLE + FIRST ROW */
.our-md-row-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* TITLE CENTERED */
.our-md-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

/* ROWS */
.our-md-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Spacing between vertically stacked boxes */
    width: 100%;
    /* Ensure full width */
}

/* BOX STYLING (LIGHT THEME) */
.our-md-box {
    background: #000;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    border: 1px solid #ddd;
    transition: 0.3s ease;
    width: 100%;
    /* Ensure full width */
}

.our-md-box:hover {
    background: #1c1c1c;
}

/* Text inside boxes */
.our-md-box p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .our-md-section {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "content";
    }

    .our-md-grid-content {
        padding: 40px 20px;
    }

    .our-md-title {
        font-size: 26px;
    }
}

/* ========================= about main page- our light ========================= */
/* MAIN SECTION - DARK BACKGROUND */
.our-light-section {
    width: 100%;
    padding: 80px 90px;
    background: #f4f4f4;
    font-family: "Inter", sans-serif;
    color: #000;
}

/* HEADER */
.our-light-header {
    text-align: center;
    margin-bottom: 45px;
}

.our-light-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
}

/* 3 BOX GRID */
.our-light-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* BOX STYLE */
.our-light-box {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 35px 28px;
    border: 1px solid #444;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 280px;
    transition: 0.3s ease;
}

.our-light-box:hover {
    background: #F9F8F6;
    /* Slight hover highlight */
}

/* ICON */
.our-light-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #f4f4f4;
    border: 1px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    margin-bottom: 18px;
}

/* TITLE */
.our-light-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

/* DESCRIPTION */
.our-light-box p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .our-light-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .our-light-section {
        padding: 60px 20px;
    }

    .our-light-title {
        font-size: 28px;
    }

    .our-light-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our-light-box {
        height: auto;
        padding: 25px;
    }
}

/* ========================= about main page- new timeline ========================= */
/* ========================== BASE ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    font-family: "Inter", sans-serif;
    color: #fff;
}

/* ========================== SECTION ========================== */
.journey-section {
    position: relative;
    min-height: 100vh;
    padding: 70px 0;
    overflow-x: visible;
    overflow-y: hidden;
}

/* background (replace image anytime) */
.journey-bg {
    position: absolute;
    inset: 0;
    background: url("img/journey-bg.jpg") center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.35;
    z-index: 0;
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

/* ========================== LAYOUT ========================== */
.journey-container {
    position: relative;
    z-index: 2;
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 5px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0px;
    align-items: center;
}

/* ========================== LEFT STICKY ========================== */
.journey-left {
    position: sticky;
    top: 60px;
    align-self: start;
}

.journey-title {
    font-size: 62px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.journey-logo-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 5;
}

.journey-logo-inner {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: grid;
    place-items: center;
}

.journey-logo-inner span {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #222;
}

/* ========================== RIGHT TIMELINE SCROLL ========================== */
.journey-right {
    width: 100%;
    position: relative;
}

.journey-timeline {
    position: relative;
    width: 110%;
    height: 720px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: -170px;
    padding-left: 120px;
    /* ✅ Reduced gap here */
    gap: 30px;
}

/* scroll space at end */
/* ========================== CENTER LINE ========================== */
.journey-line {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.journey-line-end {
    position: absolute;
    right: 0;
    top: 56%;
    transform: translateY(-50%);
    width: 4px;
    height: 52px;
    background: rgba(255, 255, 255, 0.9);
}

/* ========================== TIMELINE ITEM ========================== */
.journey-item {
    position: relative;
    min-width: 300px;
    height: 100%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* DOT + YEAR */
.journey-dot-area {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.journey-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
}

.journey-dot-done {
    background: rgba(255, 255, 255, 0.95);
}

.journey-check {
    font-size: 14px;
    font-weight: 900;
    color: #000;
}

.journey-year {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 1px;
    opacity: 0.95;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.journey-year-top {
    top: -65px;
}

.journey-year-bottom {
    bottom: -55px;
}

/* CARD */
.journey-card {
    position: absolute;
    width: 360px;
    text-align: center;
}

.journey-card-top {
    top: 50px;
}

.journey-card-bottom {
    bottom: 20px;
}

.journey-card-text {
    margin-bottom: 16px;
}

.journey-card-text-bottom {
    margin-top: 16px;
    margin-bottom: 0;
}

.journey-brand {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 6px;
}

.journey-heading {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 10px;
}

.journey-location {
    font-size: 13px;
    opacity: 0.85;
}

/* IMAGE CIRCLE */
.journey-pin {
    position: relative;
    display: grid;
    place-items: center;
}

.journey-pin-up {
    margin-bottom: 10px;
}

.journey-img-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.6);
}

.journey-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-pointer {
    position: absolute;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 16px solid rgba(255, 255, 255, 0.95);
}

.journey-pointer-up {
    top: -14px;
    bottom: auto;
    border-top: none;
    border-bottom: 16px solid rgba(255, 255, 255, 0.95);
}

/* journey section for mobile version */
/* ========================== MOBILE — SINGLE ROW HORIZONTAL ========================== */
@media (max-width: 1100px) {

    /* 🔥 ONE ROW CONTAINER */
    .journey-container {
        display: flex;
        align-items: center;
        gap: 40px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 90px 20px;
        max-width: none;
    }

    /* Hide scrollbar */
    .journey-container::-webkit-scrollbar {
        display: none;
    }

    .journey-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* 🔥 Logo stays first */
    .journey-left {
        position: relative;
        flex: 0 0 auto;
        min-width: 260px;
        text-align: center;
    }

    .journey-title {
        font-size: 36px;
    }

    .journey-logo-circle {
        width: 200px;
        height: 200px;
    }

    .journey-logo-inner {
        width: 160px;
        height: 160px;
    }

    .journey-logo-inner span {
        font-size: 40px;
    }

    /* 🔥 Timeline continues horizontally */
    .journey-right {
        flex: 0 0 auto;
    }

    .journey-timeline {
        width: max-content;
        height: 442px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 30px;
        padding-right: 40px;
    }

    /* Line stays horizontal */
    .journey-line {
        top: 56%;
        left: 0;
        right: 0;
        height: 3px;
    }

    .journey-line-end {
        display: block;
    }

    /* Items size */
    .journey-item {
        min-width: 280px;
        height: 100%;
    }

    .journey-card {
        width: 300px;
    }

    .journey-img-circle {
        width: 120px;
        height: 120px;
    }

    .journey-year {
        font-size: 26px;
    }

    .journey-card-top {
        top: -50px;
        /* Further push down the top card for mobile */
    }

    .journey-card-bottom {
        bottom: -70px;
        /* Further push up the bottom card for mobile */
    }
}

/* ------------------------ projects page - hero section ------------------------ */
/* HERO SECTION FOR PROJECTS PAGE */
.ourprojects-hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    overflow: hidden;
    /* Added to contain the video */
}

/* New style for the video background */
.ourprojects-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Place video behind content and overlay */
}

/* Overlay */
.ourprojects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Content */
.ourprojects-content {
    position: absolute;
    /* Changed to absolute for centering */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* Center text horizontally */
    color: #fff;
}

.ourprojects-content h1 {
    font-size: 65px;
    letter-spacing: 3px;
    font-weight: 300;
}

.ourprojects-content p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 500px;
}

/* ------------------------ projects section ------------------------ */
/* Projects CSS Refined */
#projects {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    /* ✅ Force all text inside this section to black */
    color: #000;
}

/* ✅ 252px LEFT + RIGHT SPACE */
#projects .container {
    padding-left: 252px;
    padding-right: 252px;
}

/* Header & Tabs */
.projects-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section-title {
    font-size: 32px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-title .lighter {
    font-weight: 300;
}

.project-tabs {
    display: flex;
    gap: 20px;
}

.tab {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all var(--transition-speed);
    color: #000;
}

.tab.active {
    background-color: #a07d4a;
    color: #000;
    /* ✅ active tab text also black */
}

.tab:not(.active):hover {
    color: #a07d4a;
}

/* Project Card */
.project-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    gap: 40px;
    align-items: stretch;
}

/* Image Section */
.project-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    width: 728px;
    /* Set fixed width */
    height: 643px;
    /* Set fixed height */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

/* Details Section */
.project-details {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.project-category {
    font-size: 14px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Specs List */
.project-specs {
    margin-bottom: 40px;
    border-top: 1px solid #eee;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    gap: 20px;
}

.spec-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    flex-shrink: 0;
}

.spec-item .text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.spec-item .text .text-muted {
    font-weight: 400;
    color: #000;
    margin-left: 5px;
}

/* Actions */
.btn-explore {
    background-color: black;
    /* Changed to explicit black */
    color: white;
    padding: 15px 40px;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 0;
    display: inline-block;
}

.btn-explore:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-download {
    background-color: white;
    color: black;
    border: 1px solid black;
    padding: 15px 40px;
    font-size: 13px;
    letter-spacing: 2px;
    border-radius: 0;
    display: inline-block;
    margin-left: 10px;
    /* Add some spacing between buttons */
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    #projects .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .projects-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        padding: 8px 15px;
    }

    .project-card,
    .project-card:nth-child(even) {
        flex-direction: column;
    }

    .project-image {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    .project-details {
        padding: 20px;
    }

    .project-title {
        font-size: 24px;
    }

    .project-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-explore,
    .btn-download {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    #projects .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ------------------------ AVYA-referral-hero page ------------------------ */
.referral-hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Added to contain the video */
}

/* New style for the video background */
.referral-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Place video behind content and overlay */
}

/* Overlay */
.referral-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    /* Ensure overlay is above video */
}

/* Content */
.referral-content {
    position: relative;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
    /* Added margin for separation */
    z-index: 2;
    /* Ensure content is above overlay */
}

.referral-content h1 {
    font-size: 65px;
    letter-spacing: 3px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    /* Added margin for separation */
}

.referral-content p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 500px;
    color: #fff;
    margin-top: 20px;
    /* Added margin for separation */
}

/* ------------------------ AVYA-referral-image with-text ------------------------ */
/* MAIN SECTION */
/* Section Wrapper */
.referral-residents-section {
    padding: 60px 80px;
    font-family: "Inter", sans-serif;
    color: #1c1c1c;
    background-color: #f4f4f4;
}

/* Title */
.referral-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
}

.referral-title span {
    color: #1c1c1c;
}

/* Paragraph */
.referral-text {
    font-size: 17px;
    line-height: 1.7;
    max-width: 1600px;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Image */
.referral-image-box img {
    width: 100%;
    height: 50vh;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .referral-residents-section {
        padding: 40px 20px;
    }

    .referral-title {
        font-size: 32px;
    }

    .referral-text {
        font-size: 15px;
    }
}

/* ------------------------ Referral-register-form ------------------------ */
.avya-referral-section {
    font-family: "Inter", sans-serif;
    padding: 60px 80px;
    color: #222;
}

/* Header */
.referral-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
}

.referral-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
}

.referral-header h2 span {
    color: #1c1c1c;
}

.referral-header h3 {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.8;
    color: #222;
}

.referral-divider {
    margin: 20px 0 40px 0;
    border: none;
    border-bottom: 1px solid #ddd;
}

/* Content Layout */
.referral-content {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    gap: 60px;
    color: #222;
}

/* LEFT TEXT */
.referral-text p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
    color: #222;
}

/* FORM STYLES */
.referral-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.field label {
    font-size: 14px;
    opacity: 0.7;
}

.field input,
.field select {
    width: 100%;
    padding: 8px 0;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    background: transparent;
}

.field.full {
    grid-column: span 2;
}

/* REGISTER BUTTON */
.referral-btn {
    padding: 12px 35px;
    background: #1c1c1c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
}

.referral-btn:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
    .referral-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: span 1;
    }
}

/* ------------------------ channel-partner-page-hero ------------------------ */
.channel-partner-hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    position: relative;
    /* ensure it's relative for video positioning */
}

/* VIDEO WRAPPER */
.channel-partner-image-wrapper {
    width: 100%;
    height: 100vh;
    /* Fill the parent design-hero */
    overflow: hidden;
    position: relative;
    display: flex;
    /* Added for centering content */
    justify-content: center;
    /* Added for horizontal centering */
    align-items: center;
    /* Added for vertical centering */
    /* CUSTOM CURVED RADIUS */
    border-radius: 0 0 80px 0;
}

/* DARK OVERLAY */
.channel-partner-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    /* z-index for overlay */
}

/* VIDEO STYLES */
.channel-partner-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* Changed to 110% */
    object-fit: cover;
    z-index: -1;
    transform: translateY(var(--scroll, 0px));
    transition: transform 0.1s linear;
}

/* TEXT CONTENT */
.channel-partner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* z-index for text content */
    color: #fff;
    text-align: center;
}

.channel-partner-text h1 {
    font-size: 58px;
    font-weight: 600;
    line-height: 1.2;
}

.channel-partner-text p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-top: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .channel-partner-image-wrapper {
        height: 100vh;
        /* Changed to 100vh */
        border-radius: 0 0 50px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .channel-partner-bg-video {
        height: 100%;
        /* Ensure video takes full height on mobile */
        transform: translateY(0px);
        /* Disable parallax movement on mobile */
    }

    .channel-partner-text {
        /* Centered by main styles, remove mobile-specific overrides */
    }

    .channel-partner-text img {
        /* New rule added */
        max-width: 150% !important;
        /* Make logo bigger on mobile */
        transform: translateX(-15%);
        /* Move logo further left on mobile */
    }

    .channel-partner-text h1 {
        font-size: 36px;
    }

    .channel-partner-text p {
        font-size: 15px;
    }
}

/* ========================= partner-page-with-image-text ========================= */
.Partner-image-section {
    padding: 90px 100px;
    font-family: "Inter", sans-serif;
    background: #ffffff;
}

/* TEXT CONTENT */
.Partner-image-content {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.Partner-image-content h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #111;
}

.Partner-image-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* IMAGE */
.Partner-image {
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
}

.Partner-image img {
    width: 100%;
    height: 80vh;
    display: block;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .Partner-image-section {
        padding: 60px 20px;
    }

    .Partner-image-content h2 {
        font-size: 32px;
    }

    .Partner-image-content p {
        font-size: 15px;
    }
}

/* ========================= partner-page-partner-submit-form ========================= */
.avya-journey-section {
    padding: 90px 100px;
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #222;
}

/* HEADER */
.avya-journey-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avya-journey-header h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
}

.header-right {
    font-size: 14px;
    letter-spacing: 1.5px;
    opacity: 0.6;
}

/* DIVIDER */
.avya-divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 20px 0 60px;
}

/* GRID */
.avya-journey-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

/* LEFT INFO */
.avya-journey-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* FORM */
.avya-journey-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 50px;
}

/* FORM COLUMNS */
.form-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* FORM GROUP */
.form-group label {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #bbb;
    padding: 8px 2px;
    font-size: 15px;
    outline: none;
    background: transparent;
}

.form-group input::placeholder {
    color: #aaa;
}

/* MOBILE INPUT */
.mobile-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-input span {
    font-size: 15px;
    opacity: 0.7;
}

.mobile-input input {
    flex: 1;
}

/* SUBMIT */
.form-submit {
    grid-column: 2 / 3;
    margin-top: 20px;
}

.form-submit button {
    background: #1c1c1c;
    color: #fff;
    padding: 14px 38px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit button:hover {
    background: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .avya-journey-section {
        padding: 60px 20px;
    }

    .avya-journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .avya-journey-form {
        grid-template-columns: 1fr;
    }

    .form-submit {
        grid-column: auto;
    }

    .avya-journey-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========================= BLOG HERO VIDEO ========================= */
.blog-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Make blog video behave exactly like #hero-video */
.blog-hero video,
.blog-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* ========================= BLOG HERO MOBILE – SAME AS ABOUT ========================= */
@media (max-width: 768px) {
    .blog-hero {
        height: 100vh;
        /* SAME AS ABOUT PAGE */
    }

    .blog-hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .blog-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

/* ------------------------ AVYA-contact-hero page ------------------------ */
.contact-hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* Darker overlay for better text contrast */
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 65px;
    letter-spacing: 3px;
    font-weight: 300;
}

.contact-hero-content p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 500px;
}

@media (max-width: 768px) {

    .contact-hero {
        height: 100vh;
    }

    .contact-hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%; /* important */
    }

    .contact-hero-content h1 {
        font-size: 28px;
        white-space: nowrap; /* 🔥 keeps text in one line */
    }

    .contact-hero-content p {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* =========================== LOCATION – REACH US =========================== */
.location-reach-section {
    padding: 60px 100px;
    background: #f6f6f6;
    font-family: Inter, sans-serif;
}

.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-header h2 {
    font-size: 40px;
    /* Make the title bigger */
    font-weight: 600;
    /* Add some weight to the title */
    color: #111;
    /* Set a specific color for consistency */
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

#topImage {
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: zoom-in;
}

.location-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
}

.company-name {
    font-size: 22px;
}

.company-type {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.info-row {
    font-size: 14px;
    margin-bottom: 8px;
    color: #374151;
}

.direction-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 22px;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
}

.location-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-main img {
    width: 100%;
    border-radius: 10px;
    cursor: zoom-in;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
}

.gallery-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: .7;
}

.gallery-thumbs img:hover {
    opacity: 1;
}

.reach-form-card {
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.reach-form-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    height: 48px;
    /* Set a specific smaller height for input fields */
}

textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    min-height: 120px;
    /* Keep this for textarea */
    resize: vertical;
    /* Allow vertical resizing for textarea */
}

.submit-btn {
    margin-top: 16px;
    padding: 14px;
    background: #111827;
    color: #fff;
    border-radius: 12px;
    border: none;
    width: 100%;
    /* Added for wider button */
}

/* MODAL */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.image-modal .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .location-grid,
    .location-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-reach-section {
        padding: 40px 20px;
        /* Reduced padding for mobile */
    }

    .location-header h2 {
        font-size: 32px;
        /* Smaller title font for mobile */
    }

    .location-header p {
        font-size: 14px;
        /* Smaller subtitle font for mobile */
    }

    .location-grid {
        gap: 30px;
        /* Reduced gap between main grid items */
    }

    .location-card {
        padding: 15px;
        /* Adjust card padding */
    }

    #topImage {
        height: 200px;
        /* Shorter image height on mobile */
    }

    .location-bottom {
        gap: 15px;
        /* Reduced gap within the card's sub-grid */
    }

    .location-info .company-name {
        font-size: 20px;
        color: #000;
    }

    .location-info .company-type,
    .location-info .info-row {
        font-size: 13px;
    }

    .direction-btn {
        padding: 10px 18px;
        /* Adjust button padding */
        font-size: 13px;
    }

    .reach-form-card {
        padding: 25px;
        /* Adjust form card padding */
    }

    .reach-form-card h3 {
        font-size: 20px;
    }

    .reach-form-card input,
    .reach-form-card textarea {
        padding: 12px;
        /* Adjust form input padding */
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        /* Adjust submit button padding */
        font-size: 14px;
    }

    .location-gallery .gallery-thumbs img {
        width: 50px;
        height: 50px;
        /* Smaller thumbnails */
    }
}

/* ================================ locate-EXPERIENCE with image ================================ */
.experience-hero {
    width: 100vw;
    height: 80vh;
    background-image: url("/img/Let’s\ begin\ in\ the\ experience.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* DARK OVERLAY */
.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* CONTENT */
.experience-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

/* SMALL TEXT ABOVE HEADING */
.experience-eyebrow {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.75;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* MAIN HEADING */
.experience-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* BUTTON */
.experience-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #000;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experience-btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .experience-content h1 {
        font-size: 38px;
    }

    .experience-btn {
        padding: 12px 28px;
    }
}

/* =============================== contact- CONNECT FORM SECTION ================================ */
.connect-section {
    background: #0f1f1b;
    /* Dark green background */
    padding: 80px 20px;
    font-family: "Inter", sans-serif;
}

.connect-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 6px;
}

/* HEADER */
.connect-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.connect-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
}

.connect-title span {
    font-style: italic;
}

.connect-desc p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* FORM */
.connect-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
}

input,
textarea {
    padding: 14px 16px;
    border: none;
    background: #f4f4f4;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: none;
}

/* BUTTON */
.submit-btn {
    margin-top: 10px;
    padding: 16px;
    background: #122821;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #0b1c16;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .connect-header {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .connect-container {
        padding: 40px 20px;
    }
}

/* ================= BLOG SECTION ================= */
/* ========================== BLOG PAGE LAYOUT (LIKE IMAGE) ========================== */
.blog-page {
    background: #ffffff;
    padding: 60px 0;
    font-family: "Inter", sans-serif;
    color: #111;
}

.blog-page-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* LEFT */
.blog-left {
    width: 100%;
}

.blog-page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.blog-page-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* BLOG LIST */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.blog-post {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-post-thumb {
    width: 150px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 4px;
    display: block;
}

.blog-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.blog-post-title a {
    text-decoration: none;
    color: #111;
}

.blog-post-title a:hover {
    text-decoration: underline;
}

.blog-post-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.blog-post-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta .dot {
    font-size: 10px;
}

/* PAGINATION */
.pagination {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
    /* Center pagination buttons */
}

.page-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    display: grid;
    place-items: center;
    border-radius: 2px;
    text-decoration: none;
    /* Remove underline from links */
    color: #111;
    /* Ensure color is visible */
}

.page-btn.active {
    background: #f4f4f4;
    font-weight: 700;
}

/* ========================== SIDEBAR ========================== */
.blog-sidebar {
    width: 100%;
    position: sticky;
    /* Make the sidebar sticky */
    top: 20px;
    /* Stick 20px from the top of the viewport */
    align-self: start;
    /* Ensures it aligns to the start of its grid area */
}

.sidebar-box {
    border: 1px solid #eee;
    padding: 18px;
    margin-bottom: 25px;
    background: #fff;
}

.sidebar-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* SEARCH */
.sidebar-search {
    display: flex;
    border: 1px solid #ddd;
    overflow: hidden;
}

.sidebar-search input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 13px;
    outline: none;
}

.sidebar-search button {
    border: none;
    background: #f4f4f4;
    padding: 10px 14px;
    cursor: pointer;
}

/* TABS */
.sidebar-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.tab-btn.active {
    border-bottom: 2px solid #111;
    color: #111;
}

/* MINI POSTS */
.sidebar-tab-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-post {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mini-post img {
    width: 48px;
    height: 48px;
    border-radius: 3px;
    object-fit: cover;
}

.mini-date {
    font-size: 11px;
    color: #999;
    margin-bottom: 2px;
}

.mini-title {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    border-radius: 2px;
}

.social-btn:hover {
    background: #f4f4f4;
}

/* CATEGORIES */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

/* Mobile adjustments for Blog Page */
@media (max-width: 768px) {
    .blog-page {
        padding: 40px 0;
        /* Adjust padding for mobile */
    }

    .blog-page-container {
        grid-template-columns: 1fr;
        /* Single column layout for mobile */
        gap: 30px;
        /* Adjust gap */
        padding: 0 15px;
        /* Adjust horizontal padding */
    }

    .blog-left {
        width: 100%;
        /* Ensure full width */
    }

    .blog-page-title {
        font-size: 24px;
        /* Smaller title font size */
        text-align: center;
        /* Center the title */
    }

    .blog-page-subtitle {
        font-size: 13px;
        /* Smaller subtitle font size */
        text-align: center;
        /* Center the subtitle */
        margin-bottom: 25px;
        /* Adjust margin */
    }

    .blog-list {
        gap: 25px;
        /* Adjust gap between blog posts */
    }

    .blog-post {
        flex-direction: column;
        /* Stack thumbnail and content vertically */
        gap: 15px;
        /* Adjust gap */
        padding-bottom: 25px;
        /* Adjust padding */
        align-items: center;
        /* Center items in stacked layout */
        text-align: center;
        /* Center text within blog post */
    }

    .blog-post-thumb {
        width: 100%;
        /* Full width for thumbnail */
        max-width: 300px;
        /* Constrain max width for better appearance */
        height: 180px;
        /* Adjust height */
        margin-bottom: 10px;
        /* Add margin below thumbnail */
    }

    .blog-post-content {
        padding-left: 0;
        /* Remove left padding */
        width: 100%;
        /* Ensure full width */
    }

    .blog-post-title {
        font-size: 16px;
        /* Smaller blog post title */
    }

    .blog-post-desc {
        font-size: 12px;
        /* Smaller blog post description */
        text-align: left;
        /* Keep description left aligned if possible, or center if desired */
    }

    .blog-post-meta {
        justify-content: center;
        /* Center meta info */
    }

    .blog-post-tags {
        justify-content: center;
        /* Center tags */
    }

    .pagination {
        margin-top: 25px;
        /* Adjust margin */
    }

    .blog-sidebar {
        display: none;
        /* Hide sidebar on mobile */
        position: static;
        /* Disable sticky for mobile sidebar */
        top: auto;
        align-self: auto;
    }

    .sidebar-box {
        margin-bottom: 20px;
        /* Adjust margin */
    }

    .sidebar-title {
        text-align: center;
        /* Center sidebar titles */
    }

    .sidebar-search {
        width: 90%;
        /* Adjust width of search bar */
        margin: 0 auto;
        /* Center search bar */
    }

    .sidebar-tabs {
        width: 90%;
        /* Adjust width of tabs */
        margin: 0 auto 15px auto;
        /* Center tabs */
    }

    .mini-post {
        justify-content: center;
        /* Center mini posts */
    }

    .social-icons {
        justify-content: center;
        /* Center social icons */
    }

    .sidebar-list {
        width: 90%;
        /* Adjust width of category list */
        margin: 0 auto;
        /* Center category list */
    }

    .sidebar-list li {
        justify-content: center;
        /* Center category list items */
    }

    .tag-btn {
        font-size: 11px;
        /* Smaller tag button font */
        padding: 4px 8px;
        /* Adjust padding */
    }
}

.dummy-error-fix {
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.sidebar-list li a {
    text-decoration: none;
    color: #111;
}

.sidebar-list li span {
    color: #999;
}

/* TWEETS */
.tweet-box {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.tweet-btn {
    margin-top: 12px;
    padding: 10px 14px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    border-radius: 2px;
}

.tweet-btn:hover {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .blog-page-container {
        grid-template-columns: 1fr;
    }

    .blog-post {
        flex-direction: column;
    }

    .blog-post-thumb {
        width: 100%;
        height: 200px;
    }
}

/* =============================== Sticky form for all the pages ================================ */
/* ========================= ENQUIRY WRAPPER ========================= */
.enquiry-wrapper {
    position: fixed;
    right: -300px;
    /* hidden initially */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    transition: right 0.4s ease;
    /* Desktop transition */
    z-index: 10000;
}

/* ACTIVE STATE */
.enquiry-wrapper.active {
    right: 0;
}

/* ========================= VERTICAL BUTTON ========================= */
.enquiry-btn-vertical {
    background: linear-gradient(180deg, #F3F4F4, #EEEEEE);
    color: #2B2A2A;
    padding: 14px 10px;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    box-shadow: -6px 8px 20px rgba(0, 0, 0, 0.25);
    /* Add this for desktop to prevent it from collapsing on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-btn-vertical span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ========================= FORM BOX ========================= */
.sticky-form {
    width: 300px;
    background: #fff;
    padding: 22px;
    border-radius: 14px 0 0 14px;
    box-shadow: -6px 10px 30px rgba(0, 0, 0, 0.2);
}

/* FORM FIELDS */
.sticky-form input,
.sticky-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.sticky-form textarea {
    resize: none;
    height: 80px;
}

/* BUTTON */
.sticky-form .btn-group {
    text-align: center;
}

.sticky-form button {
    background-color: #2B2A2A;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* MOBILE */
/* Override mobile-specific sticky form styles from style.css to maintain desktop behavior */
@media (max-width: 768px) {
    .enquiry-wrapper {
        position: fixed !important;
        right: -300px !important;
        /* Hidden initially, same as desktop */
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center !important;
        transition: right 0.4s ease !important;
        z-index: 10000 !important;
        /* Remove any conflicting mobile styles from style.css */
        left: unset !important;
        bottom: unset !important;
        width: auto !important;
        background: transparent !important;
    }

    .enquiry-wrapper.active {
        right: 0 !important;
    }

    .enquiry-wrapper .enquiry-btn-vertical {
        /* Reset to desktop state, overriding mobile styles from style.css */
        position: relative !important;
        /* Not absolute or fixed */
        left: unset !important;
        bottom: unset !important;
        transform: none !important;
        /* Reset transform */
        width: auto !important;
        padding: 14px 10px !important;
        border-radius: 12px 0 0 12px !important;
        box-shadow: -6px 8px 20px rgba(0, 0, 0, 0.25) !important;
        z-index: auto !important;
        background: linear-gradient(180deg, #F3F4F4, #EEEEEE) !important;
        color: #2B2A2A !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .enquiry-wrapper .enquiry-btn-vertical span {
        writing-mode: vertical-rl !important;
        transform: rotate(180deg) !important;
        font-size: 13px !important;
        letter-spacing: 2px !important;
    }

    .sticky-form {
        width: 300px !important;
        /* Desktop width */
        background: #fff !important;
        padding: 22px !important;
        border-radius: 14px 0 0 14px !important;
        box-shadow: -6px 10px 30px rgba(0, 0, 0, 0.2) !important;
        /* Address clipping issue */
        height: auto !important;
        max-height: 80vh !important;
        /* Ensure it doesn't get too tall */
        overflow-y: auto !important;
        /* Allow scrolling within the form */
    }
}

/* ========================= whatsapp-sticky section ========================= */
.whatsapp-sticky {
    position: fixed;
    left: 5px;
    /* Moved left from 15px */
    bottom: 100px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-sticky img {
    width: 40px;
    /* Increased from 28px */
    height: 40px;
    /* Increased from 28px */
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    /* Hover shadow made more transparent */
}

/* ========================= terms and conditions - hero section ========================= */
.terms-hero-section {
    height: 50vh;
    width: 100%;
    background-color: #1c1c1c;
    /* soft light grey like image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Title */
.terms-hero-title {
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #eeeeec;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 26px;
        letter-spacing: 3px;
    }
}

/* ========================= terms and conditions section ========================= */
.terms-page {
    padding: 90px 20px;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    color: #1c1c1c;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-subtitle {
    font-size: 16px;
    opacity: 0.6;
    text-align: center;
    margin-bottom: 60px;
}

/* Blocks */
.terms-block {
    margin-bottom: 50px;
}

.terms-block h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.terms-block p {
    font-size: 16px;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-title {
        font-size: 32px;
    }

    .terms-subtitle {
        font-size: 14px;
    }

    .terms-block h2 {
        font-size: 20px;
    }

    .terms-block p {
        font-size: 15px;
    }
}

/* ========================= terms and conditions section ========================= */
.faq-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000000;
    /* Heading color */
}

.faq-header p {
    font-size: 16px;
    opacity: 0.75;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: #000000;
    /* Paragraph color */
}

/* Accordion container */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Accordion item */
.faq-item {
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Question */
.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f7f7f7;
}

/* Icon */
.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 26px;
}

.faq-answer p {
    padding: 10px 0 22px;
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    opacity: 0.85;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
}

/* design for the 3rd faq title and bullets points */
.faq-answer-title {
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 15px;
    color: #111;
}

.faq-bullets {
    padding-left: 18px;
    margin: 0;
}

.faq-bullets li {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 6px;
    list-style-type: disc;
}

/* MAP WRAPPER */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 750px;
    /* Increased height */
    background: #f4f4f4;
    /* replace with map image if needed */
    overflow: hidden;
    /* Ensure content stays within bounds */
    border-radius: 14px;
    /* Match other elements */
}

/* POPUP */
.map-popup {
    position: absolute;
    top: calc(50% - 230px);
    left: calc(50% + 30px);
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 10;
    /* Ensure popup is above map image */
}

.map-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* IMAGE */
.popup-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* CONTENT */
.popup-content {
    padding: 14px;
}

.popup-category {
    font-size: 11px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
}

.popup-content h3 {
    font-size: 16px;
    margin: 4px 0;
    font-weight: 600;
}

.popup-rating {
    font-size: 14px;
    margin-top: 4px;
}

.popup-rating span {
    color: #6b7280;
    font-size: 13px;
}

.popup-hours {
    font-size: 13px;
    margin-top: 6px;
    color: #555;
}

/* ACTION BUTTONS */
.popup-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-primary {
    flex: 1;
    background: #111827;
    color: #fff;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
}

.btn-outline {
    width: 36px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    line-height: 34px;
}

/* Styles for the new inline Avya Farms offer section */
.farmland-offer-info-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    /* Space between the price and guntas info */
    margin-left: 20px;
    /* Adjust spacing from other stats */
    padding: 10px 15px;
    background-color: #1a1a1a;
    /* Dark background for the box */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    /* Keep content on one line for better inline display */
}

.offer-price-inline {
    font-size: 18px;
    font-weight: 700;
    color: #f5d17a;
    /* Gold color */
    line-height: 1.2;
}

.price-highlight-inline {
    color: #4caf50;
    /* Green color */
}

.guntas-info-inline {
    font-size: 14px;
    font-weight: 500;
    color: #e6e6e6;
    line-height: 1.2;
}

/* Adjust project-stats to accommodate the new inline box */
.project-stats {
    display: flex;
    gap: 20px;
    /* Reduced gap to fit more items inline */
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

/* Responsive adjustments for the inline offer section */
@media (max-width: 768px) {
    .farmland-offer-info-inline {
        margin-left: 0;
        /* Remove left margin on smaller screens */
        margin-top: 20px;
        /* Add top margin when stacked */
        width: 100%;
        /* Take full width */
    }

    .offer-price-inline {
        font-size: 16px;
    }

    .guntas-info-inline {
        font-size: 12px;
    }
}

/* ========================= Blogs Section on each pages css ========================= */
.blog-section {
    padding: 80px 40px;
    /* Add some padding around the section */
    background-color: #f9f9f9;
    /* Light background for the section */
    text-align: center;
}

.blog-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.blog-section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive columns */
    gap: 30px;
    /* Space between blog cards */
    max-width: 1600px;
    /* Limit grid width */
    margin: 0 auto;
    /* Center the grid */
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    /* Remove underline from link */
    color: inherit;
    /* Inherit text color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    /* Fixed height for blog image container */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the container without distortion */
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
    /* Slightly zoom image on hover */
}

.blog-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    /* Allow content to take up available space */
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-read {
    font-size: 14px;
    color: #007bff;
    /* A distinct color for read more link */
    font-weight: 500;
    margin-top: auto;
    /* Push to the bottom */
    display: inline-block;
}

.blog-read:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Two columns on medium screens */
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        /* Single column on small screens */
    }

    .blog-section-title {
        font-size: 30px;
    }

    .blog-section-subtitle {
        font-size: 16px;
    }
}

/* ========================= AVYA Privilege Page Specific Mobile Styles ========================= */
@media (max-width: 768px) {
    #desktop-hero-video {
        display: none;
    }

    #mobile-hero-video {
        display: block;
    }

    /* Mobile styles for the referral hero section */
    .referral-hero {
        min-height: 50vh;
        /* Adjust height for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .design-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .design-image {
        /* Applies to both #desktop-hero-video and #mobile-hero-video */
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Cover the entire area */
    }

    .design-text {
        position: relative;
        z-index: 1;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .design-text img {
        max-width: 90% !important;
        /* Adjust max-width for smaller screens, override inline */
        height: auto !important;
        /* Maintain aspect ratio, override inline */
        width: auto !important;
        /* Ensure it respects max-width */
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll indicator on mobile for cleaner look */
    }

    /* Mobile styles for the referral form section */
    .avya-referral-section {
        padding: 20px;
        /* Add some padding on mobile */
    }

    .referral-content {
        flex-direction: column;
        /* Stack text and form vertically */
        width: 100%;
        /* Ensure content takes full width */
    }

    .referral-text,
    .referral-form {
        width: 100%;
        /* Take full width */
        margin-bottom: 20px;
        /* Add space between stacked elements */
    }

    .referral-form .form-row {
        flex-direction: column;
        /* Stack form fields vertically */
        margin-bottom: 0;
        /* Reset row margin */
    }

    .referral-form .field {
        width: 100%;
        /* Make each field take full width */
        margin-bottom: 15px;
        /* Add space between fields */
    }

    .referral-form .field:last-child {
        margin-bottom: 0;
        /* No margin for the last field in a row */
    }

    .referral-form input,
    .referral-form select,
    .referral-form textarea {
        width: 100%;
        /* Ensure form elements take full width */
    }

    .referral-btn {
        width: 100%;
        /* Make the button full width */
    }

    /* Mobile styles for the referral header */
    .referral-header {
        display: flex;
        /* Ensure it's a flex container */
        flex-direction: column;
        /* Stack children vertically */
        align-items: center;
        /* Center horizontally */
        text-align: center;
        /* Center text within the elements */
        padding: 10px 0;
        /* Add some vertical padding */
    }

    .referral-header h2,
    .referral-header h3 {
        display: block;
        /* Ensure they are block-level elements */
        width: 100%;
        /* Take full width */
        margin: 5px 0;
        /* Add some vertical margin between them */
    }
}

/* ======================== MOBILE STICKY ENQUIRY ========================== */
.enquiry-btn-mobile {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 998;
    /* Below modal, above content */
    cursor: pointer;
    text-transform: uppercase;
}

.enquiry-modal-mobile {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    /* Above everything */
    justify-content: center;
    align-items: center;
}

.enquiry-modal-mobile .modal-content {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.enquiry-modal-mobile .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.enquiry-modal-mobile h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    color: #333;
}

.enquiry-modal-mobile form input,
.enquiry-modal-mobile form textarea,
.enquiry-modal-mobile form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.enquiry-modal-mobile form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.enquiry-modal-mobile form button:hover {
    background-color: var(--secondary-color);
}

/* Media query to handle desktop vs mobile */
@media (max-width: 768px) {
    .enquiry-wrapper {
        display: none;
        /* Hide desktop version on mobile */
    }

    .enquiry-btn-mobile {
        display: block;
        /* Show mobile button */
    }
}