    :root {
        --dark-navy: #0d1f2d;
        --deep-teal: #1a4a5a;
        --teal: #2a7a6e;
        --green: #3aaa85;
        --light-green: #8cc63f;
        --gold: #c9a84c;
        --cream: #f8fcf9;
        --off-white: #ffffff;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Alexandria', sans-serif;
        background-color: var(--off-white);
        color: var(--dark-navy);
        line-height: 1.6;
        overflow-x: hidden;
    }

    html {
        scroll-behavior: smooth;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* Animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Additional slight delays for staggered intros */
    .delay-1 {
        transition-delay: 0.1s;
    }

    .delay-2 {
        transition-delay: 0.2s;
    }

    .delay-3 {
        transition-delay: 0.3s;
    }

    .delay-4 {
        transition-delay: 0.4s;
    }

    .delay-5 {
        transition-delay: 0.5s;
    }

    .delay-6 {
        transition-delay: 0.6s;
    }

    .delay-7 {
        transition-delay: 0.7s;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        z-index: 1000;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 30px 80px;
        color: var(--dark-navy);
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
        padding: 15px 80px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .logo {
        grid-column: 1;
        justify-self: start;
        font-size: 29px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .logo span {
        color: var(--teal);
    }

    .logo-img {
        height: 65px;
        width: auto;
        object-fit: contain;
        transform: scale(1.3);
        transform-origin: right center;
    }

    .footer-logo .logo-img {
        height: 80px;
    }

    .nav-links {
        grid-column: 3;
        justify-self: end;
        display: flex;
        gap: 25px;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        font-weight: 300;
        font-size: 16px;
        color: var(--dark-navy);
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--teal);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        background: var(--teal);
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(42, 122, 110, 0.15) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px auto;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(201, 168, 76, 0.2);
    }

    .icon-circle i,
    .icon-circle span {
        font-size: 32px;
        color: var(--teal);
        transition: all 0.5s ease;
    }

    /* Unified hover states for containers with icon-circle */
    .stat-card:hover .icon-circle,
    .intro-card:hover .icon-circle,
    .project-card:hover .icon-circle,
    .vision-card:hover .icon-circle,
    .info-item:hover .icon-circle,
    .value-card:hover .icon-circle,
    .footer-col ul li:hover .icon-circle {
        background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(42, 122, 110, 0.2);
        border-color: transparent;
    }

    .stat-card:hover .icon-circle i,
    .stat-card:hover .icon-circle span,
    .intro-card:hover .icon-circle i,
    .intro-card:hover .icon-circle span,
    .project-card:hover .icon-circle i,
    .project-card:hover .icon-circle span,
    .vision-card:hover .icon-circle i,
    .value-card:hover .icon-circle i,
    .info-item:hover .icon-circle i,
    .footer-col ul li:hover .icon-circle i {
        color: #ffffff;
        transform: rotateY(360deg);
    }

    /* Menu Toggle */
    .menu-toggle {
        display: none;
        font-size: 28px;
        background: none;
        border: none;
        color: var(--dark-navy);
        cursor: pointer;
    }

    /* Common Sections */
    section {
        padding: 100px 20px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .text-center {
        text-align: center !important;
    }

    .section-title {
        text-align: center;
        font-size: 38px;
        font-weight: 400;
        margin-bottom: 20px;
        color: var(--dark-navy);
        position: relative;
    }

    .section-title.light {
        color: white;
    }



    .section-subtitle {
        text-align: center;
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto 50px;
        color: #555;
        line-height: 1.8;
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* Align content effectively to right side based on RTL direction */
        padding: 0 80px;
        overflow: hidden;
        margin-top: 0;
        background-color: #f8f9fa;
        /* In case the background image doesn't load immediately */
    }

    .hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        opacity: 0.85;
        /* Allowing text to stand out, assuming image is light */
    }

    html[dir="ltr"] .hero-img {
        transform: scaleX(-1);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradient fading from white on the right (RTL start) to transparent on the left */
        z-index: -1;
    }

    .hero-content {
        z-index: 1;
        max-width: 600px;
        padding-top: 60px;
    }

    .hero-subtitle {
        color: var(--teal);
        font-weight: 300;
        font-size: 16px;
        margin-bottom: 20px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .hero-subtitle-green-text {
        color: var(--teal);
    }

    .hero-title {
        font-size: 50px;
        color: var(--dark-navy);
        font-weight: 400;
        margin-bottom: 40px;
        line-height: 1.25;
        text-shadow: none;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .btn {
        display: inline-flex;
        /* Fix flex layout */
        align-items: center;
        gap: 12px;
        padding: 14px 30px;
        background: var(--teal);
        color: white;
        border-radius: 6px;
        /* Squarish corners per image */
        font-size: 16px;
        font-weight: 300;
        transition: all 0.3s ease;
        border: 2px solid var(--teal);
        box-shadow: 0 4px 15px rgba(42, 122, 110, 0.2);
    }

    .btn:hover {
        background: var(--deep-teal);
        border-color: var(--deep-teal);
        color: white;
        box-shadow: 0 6px 20px rgba(42, 122, 110, 0.3);
    }

    .btn-outline {
        background: transparent;
        color: var(--teal);
        border: 2px solid var(--teal);
        box-shadow: none;
    }

    .btn-outline:hover {
        background: rgba(42, 122, 110, 0.05);
        border-color: var(--teal);
        color: var(--teal);
        box-shadow: none;
    }

    /* Stats Section */
    .stats-section {
        background: var(--cream);
        color: white;
        padding: 50px 20px;
        position: relative;
        z-index: 10;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 55px;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--gold);
        display: flex;
        justify-content: center;
        align-items: center;
        direction: ltr;
        /* Ensure numbers and + sign render correctly */
    }

    .stat-number::after {
        content: '+';
        font-size: 35px;
        margin-left: 5px;
        font-weight: 300;
    }

    .stat-card p {
        font-size: 19px;
        font-weight: 500;
        color: var(--dark-navy);
        opacity: 1;
        margin-top: 5px;
    }

    /* Introduction Section */
    .intro {
        background: var(--cream);
    }

    .intro-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 60px;
    }

    .intro-card {
        background: white;
        padding: 45px 25px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .intro-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--light-green);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: right;
    }

    .intro-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .intro-card:hover::before {
        transform: scaleX(1);
    }



    .intro-card h3 {
        color: var(--deep-teal);
        margin-bottom: 15px;
        font-size: 22px;
        font-weight: 400;
    }

    .intro-card p {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
    }

    /* About Section */
    /* تنسيق سكشن من نحن */
    .about {
        padding: 80px 0;
        background-color: #f8fcf9;
    }

    .section-title {
        text-align: center;
        font-size: 36px;
        color: #1a3c34;
        margin-bottom: 15px;
    }

    .section-subtitle {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
        color: #666;
        font-size: 18px;
        line-height: 1.6;
    }

    /* شبكة الخدمات - 3 كروت في الصف */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 أعمدة متساوية */
        gap: 30px;
        max-width: 1200px;
        margin: 80px auto 0;
        /* Forced top margin to guarantee space from text */
        padding: 0 20px;
    }

    /* تنسيق الكارت */
    .service-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        /* ضروري لقص الصورة عند الزوايا */
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(42, 122, 110, 0.15);
    }

    /* الصورة - تأخذ عرض الكارت بالكامل من الأعلى */
    .service-img {
        width: 100%;
        height: 220px;
        /* يمكنك تعديل الارتفاع حسب الحاجة */
        object-fit: cover;
        /* يضمن ملء الصورة للمساحة دون تمطيط */
        display: block;
        transition: transform 0.6s ease;
        margin-bottom: 20px;
    }

    .service-card:hover .service-img {
        transform: scale(1.1);
        /* تأثير زووم عند الهوفر */
    }

    /* الجزء السفلي - المحتوى */
    .service-body {
        padding: 40px 25px;
        text-align: center;
        /* محاذاة لليمين */
    }

    .service-body h3 {
        font-size: 20px;
        color: #2a7a6e;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .service-body p {
        font-size: 15px;
        color: #777;
        line-height: 1.7;
        margin: 0;
    }

    /* تجاوب التصميم (Responsive) */
    @media (max-width: 992px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            /* كارتين في الشاشات المتوسطة */
        }
    }

    @media (max-width: 650px) {
        .services-grid {
            grid-template-columns: 1fr;
            /* كارت واحد في الموبايل */
        }

        .section-title {
            font-size: 28px;
        }
    }

    .hex-wrapper {
        max-width: 650px;
        margin: 80px auto 0;
        display: flex;
        justify-content: center;
    }

    .hex-group {
        cursor: pointer;
    }

    .hex-polygon {
        transition: fill 0.3s, filter 0.3s;
    }

    .hex-group:hover .hex-polygon {
        filter: brightness(1.1) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.25));
    }

    .hex-group text {
        pointer-events: none;
    }

    .about-decorative-img {
        display: none;
        /* Can be enabled and styled as a side image for larger screens if client wishes */
    }

    /* Core Values Section */
    .values {
        background: var(--cream);
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        margin-top: 50px;
    }

    .value-card {
        background: white;
        padding: 40px 30px;
        border-radius: 16px;
        border-top: 5px solid var(--teal);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        text-align: center;
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-top-color: var(--green);
    }



    .value-card h3 {
        color: var(--dark-navy);
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .value-card p {
        color: #555;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Why Us Section */
    .why-us {
        background: var(--deep-teal);
        color: white;
        position: relative;
    }

    .why-us::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
        pointer-events: none;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 30px;
        display: flex;
        align-items: flex-start;
        gap: 25px;
        transition: background 0.4s ease, border-color 0.4s ease;
        position: relative;
        z-index: 1;
    }

    .why-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(201, 168, 76, 0.3);
    }

    .why-icon {
        width: 65px;
        height: 65px;
        background: #ffffff;
        color: var(--deep-teal);
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .why-card:hover .why-icon {
        transform: rotate(5deg) scale(1.1);
        background: var(--gold);
        color: #ffffff;
        box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
    }

    .why-text p {
        line-height: 1.8;
        font-size: 16px;
        color: #e0e0e0;
        margin: 0;
    }

    /* Footer / Contact */
    .footer {
        background: var(--dark-navy);
        color: white;
        padding: 80px 20px 40px;
        text-align: center;
        position: relative;
    }

    .footer-logo {
        font-size: 42px;
        font-weight: 400;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .footer-logo span {
        color: var(--gold);
    }

    .footer-tagline {
        color: var(--green);
        font-size: 20px;
        margin-bottom: 50px;
        font-weight: 300;
    }

    .contact-info {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-bottom: 60px;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.03);
        padding: 15px 30px;
        border-radius: 40px;
        transition: background 0.3s;
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .contact-item span {
        direction: ltr;
    }

    .contact-item .icon {
        color: var(--gold);
        font-size: 22px;
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
        color: #777;
        font-size: 15px;
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .intro-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .hero-title {
            font-size: 60px;
        }

        .hex-wrapper {
            transform: scale(0.9);
        }

        .navbar {
            padding: 15px 40px;
        }

        .hero-content {
            padding-top: 30px;
        }
    }

    @media (max-width: 768px) {

        .navbar,
        .navbar.scrolled {
            padding: 8px 20px;
            display: flex;
            justify-content: space-between;
        }

        .logo-img {
            height: 50px;
            transform: scale(1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 70px;
            right: -100%;
            background: rgba(255, 255, 255, 0.98);
            width: 100%;
            height: 100vh;
            text-align: center;
            padding: 40px 0;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            gap: 30px;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            font-size: 20px;
        }

        .menu-toggle {
            display: block;
        }

        .hero-title {
            font-size: 45px;
            margin-bottom: 25px;
        }

        .hero-content {
            padding-top: 20px;
        }

        .hero-buttons {
            gap: 12px;
            flex-direction: column;
            align-items: flex-start;
        }

        .btn {
            padding: 10px 20px;
            font-size: 14px;
            width: fit-content;
        }

        .hero-tagline {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .intro-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .values-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .why-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .hex-wrapper {
            transform: scale(0.65);
            transform-origin: top center;
            height: 380px;
            margin-top: 40px;
        }

        .contact-info {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .contact-item {
            width: 100%;
            max-width: 350px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .hex-wrapper {
            transform: scale(0.55);
            height: 320px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .hero-title {
            font-size: 38px;
        }

        .section-title {
            font-size: 30px;
        }
    }

    /* Consulting Section */
    .consulting-section {
        background: #f8fcf9;
        padding: 80px 20px;
    }

    /* Consulting Section Refactor */
    .consulting-container {
        margin-top: 50px;
    }

    .consulting-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }

    .consulting-header h3 {
        font-size: 32px;
        color: var(--teal);
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .consulting-header p {
        color: #555;
        font-size: 17px;
        line-height: 1.8;
    }

    .consulting-rows {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .consulting-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background: rgb(255, 255, 255);
        padding: 20px 25px 30px;
        border-radius: 20px;
        transition: background 0.4s ease;
    }

    .consulting-feature:hover {
        background: white;
        box-shadow: 0 10px 40px rgba(42, 122, 110, 0.05);
    }

    /* Remove alternating horizontal logic, since it's a grid now */
    .consulting-feature:nth-child(even) {
        flex-direction: column;
    }

    .feature-text {
        width: 100%;
        text-align: center;
        order: 2;
        /* Put text below image */
    }

    .feature-image {
        width: 100%;
        height: 200px;
        order: 1;
        /* Put image above text */
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .feature-num {
        display: block;
        font-size: 50px;
        font-weight: 200;
        color: rgba(42, 122, 110, 0.1);
        margin-bottom: -15px;
        transform: translateY(-10px);
    }

    .feature-text h4 {
        font-size: 22px;
        color: var(--dark-navy);
        margin-bottom: 15px;
        font-weight: 500;
        background: linear-gradient(90deg, var(--teal), var(--green));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-text p {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
    }

    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .consulting-feature:hover .feature-image {
        transform: scale(1.02);
    }

    @media (max-width: 900px) {
        .consulting-rows {
            grid-template-columns: 1fr;
        }

        .consulting-feature {
            gap: 20px;
            padding: 30px 20px;
        }

        .feature-num {
            margin-bottom: 0;
            font-size: 45px;
        }
    }

    /* Irrigation & Planting Sections Shared Styles */
    .section-title-alt {
        font-size: 32px;
        color: var(--dark-navy);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
        text-align: center;
        width: 100%;
    }



    .section-description {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        margin: 0 auto 30px;
        max-width: 700px;
        text-align: center;
    }

    /* Irrigation Section */
    .irrigation-section {
        background: var(--off-white);
        padding: 80px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .two-column-layout {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .text-content {
        flex: 1;
    }

    .image-content {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .feature-img {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .feature-list {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-list li {
        background: white;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 15px;
        color: var(--dark-navy);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        display: flex;
        align-items: center;
        gap: 10px;
        border-right: 3px solid var(--teal);
    }

    /* Planting Section - Image 4 Style */
    .planting-section {
        background: #fdfdfd;
        padding: 100px 20px;
        text-align: center;
    }

    .planting-header {
        margin-bottom: 60px;
    }

    .planting-header h2 {
        font-size: 36px;
        color: var(--dark-navy);
        margin-bottom: 20px;
    }

    .planting-header p {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
        font-size: 17px;
        line-height: 1.8;
    }

    .process-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .process-item {
        background: #ffffff;
        width: 260px;
        padding: 20px 20px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        transform: translateY(30px);
    }

    .process-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .process-item:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    .process-img-box {
        margin-bottom: 20px;
        border-radius: 12px;
        overflow: hidden;
    }

    .process-img-box img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .process-item:hover .process-img-box img {
        transform: scale(1.05);
    }

    .process-item h4 {
        color: var(--dark-navy);
        font-size: 16px;
        font-weight: 500;
        margin: 0;
    }

    /* Hardscape Section */
    .hardscape-section {
        background: var(--cream);
        padding: 100px 20px;
    }

    .hardscape-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .hardscape-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hardscape-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: transform 0.3s ease;
    }

    .hardscape-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .hardscape-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .hardscape-card:hover img {
        transform: scale(1.05);
    }

    .hardscape-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(13, 31, 45, 0.9), transparent);
        padding: 40px 20px 20px;
        text-align: center;
    }

    .hardscape-content h4 {
        color: white;
        font-size: 18px;
        font-weight: 400;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .hardscape-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .hardscape-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Maintenance Section */
    .maintenance-section {
        background: var(--off-white);
        padding: 100px 20px;
        position: relative;
        overflow: hidden;
    }

    .maintenance-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .maintenance-infinity-wrap {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        height: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .infinity-svg {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .m-node {
        position: absolute;
        background: white;
        border-radius: 50%;
        width: 130px;
        height: 130px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 2;
        border: 2px solid var(--teal);
        transition: transform 0.3s ease;
    }

    .m-node:hover {
        transform: scale(1.1);
        border-color: var(--gold);
        z-index: 10;
    }

    .node-icon {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .m-node span {
        font-size: 13px;
        color: var(--dark-navy);
        font-weight: 500;
        padding: 0 5px;
        line-height: 1.2;
    }

    /* Node Positioning */
    .node-1 {
        top: 15%;
        left: 10%;
    }

    .node-2 {
        top: 65%;
        left: 25%;
    }

    .node-3 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .node-4 {
        top: 15%;
        right: 25%;
    }

    .node-5 {
        top: 65%;
        right: 10%;
    }

    .m-node.node-3:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

    @media (max-width: 900px) {
        .maintenance-infinity-wrap {
            height: auto;
            flex-direction: column;
            gap: 20px;
        }

        .infinity-svg {
            display: none;
        }

        .m-node {
            position: relative;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
            width: 100%;
            height: auto;
            border-radius: 15px;
            flex-direction: row;
            justify-content: flex-start;
            padding: 15px 20px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .m-node:hover {
            transform: translateY(-5px) !important;
        }

        .node-icon {
            font-size: 24px;
            margin-bottom: 0;
            margin-left: 15px;
        }

        .m-node span {
            font-size: 15px;
        }
    }

    @media (max-width: 900px) {
        .two-column-layout {
            flex-direction: column;
            text-align: center;
        }

        .section-title-alt::after {
            right: 50%;
            transform: translateX(50%);
        }

        .section-description {
            margin: 0 auto 30px;
        }

        .feature-list {
            grid-template-columns: 1fr;
        }

        .process-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .process-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Execution Section */
    .execution-section {
        background: #ffffff;
        padding: 80px 20px;
        overflow: hidden;
    }

    .exec-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .exec-title h2 {
        color: var(--dark-navy);
        font-size: 38px;
        margin-bottom: 15px;
        font-weight: 400;
        text-align: center;
    }

    .exec-title p {
        color: #555;
        font-size: 18px;
        max-width: 800px;
        line-height: 1.8;
        margin: 0 auto 20px;
        text-align: center;
    }

    .section-badge {
        display: inline-block;
        padding: 6px 14px;
        background: rgba(201, 168, 76, 0.15);
        color: var(--gold);
        border-radius: 20px;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .exec-layout {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
    }

    .cards-column {
        display: flex;
        flex-direction: column;
        gap: 60px;
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .right-cards {
        align-items: flex-end;
    }

    .left-cards {
        align-items: flex-start;
    }

    .layer-card {
        background: linear-gradient(145deg, #ffffff 0%, #f9fbf9 100%);
        border-radius: 8px;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        max-width: 290px;
        border: 1px solid rgba(0, 0, 0, 0.02);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .layer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .right-card {
        border-right: 4px solid var(--card-color);
        transform: translateX(20px);
    }

    .left-card {
        border-left: 4px solid var(--card-color);
        transform: translateX(-20px);
    }

    .layer-card.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .card-tag {
        font-weight: 700;
        font-size: 15px;
        color: var(--card-color);
        margin-bottom: 8px;
    }

    .layer-card p {
        margin: 0;
        color: #666;
        font-size: 14px;
    }

    .exec-image-wrap {
        flex: 1.5;
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
    }

    .exec-img {
        width: 100%;
        max-width: 550px;
        border-radius: 12px;
    }

    .connector-dot {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .connector-dot.show {
        opacity: 1;
    }

    @media (max-width: 900px) {
        .execution-section {
            padding: 60px 20px;
        }

        .exec-layout {
            flex-direction: column;
        }

        .right-cards,
        .left-cards {
            align-items: center;
            width: 100%;
            gap: 30px;
        }

        .layer-card {
            max-width: 100%;
            border-right: none !important;
            border-left: none !important;
            border-bottom: 4px solid var(--card-color);
            transform: translateY(20px);
        }

        .layer-card.visible {
            transform: translateY(0);
        }

        .connectors {
            display: none !important;
        }

        .exec-image-wrap {
            width: 100%;
            margin: 30px 0;
        }

        .exec-title h2 {
            text-align: center;
        }

        .exec-title p {
            text-align: center;
        }

        .exec-title .section-badge {
            display: block;
            width: fit-content;
            margin: 0 auto 10px;
        }
    }

    /* تنسيق السكشن الأساسي */
    #vision {
        padding: 100px 20px;
        background: #f8fcf9;
        position: relative;
    }

    .vision-title {
        text-align: center;
        font-size: 32px;
        color: #1a3c34;
        margin-bottom: 70px;
        font-weight: 700;
    }

    .vision-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* تنسيق الكارت الجديد */
    .vision-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        position: relative;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(42, 122, 110, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .vision-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(42, 122, 110, 0.1);
        border-color: #2a7a6e;
    }



    /* محتوى النص */
    .card-content h3 {
        font-size: 24px;
        color: #1a3c34;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .card-content p {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
        margin: 0;
    }

    /* الرقم التسلسلي بشكل خلفي شيك */
    .feature-num {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 40px;
        font-weight: 800;
        color: rgba(42, 122, 110, 0.04);
        /* رقم شفاف جداً */
        z-index: 0;
    }

    /* التجاوب */
    @media (max-width: 992px) {
        .vision-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .vision-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 10px;
        }

        #vision {
            padding: 60px 15px;
        }
    }

    .maintenance-section {
        padding: 100px 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .maintenance-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-title-alt {
        font-size: 36px;
        color: #1a3c34;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }



    /* حاوية المسار */
    .m-path-wrap {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        padding: 40px 0;
    }

    /* الخط الواصل بين الدوائر */
    .m-nodes-container {
        display: flex;
        justify-content: bween;
        align-items: flex-start;
        position: relative;
        gap: 20px;
    }

    /* الخط الخلفي */
    .m-nodes-container::before {
        content: '';
        position: absolute;
        top: 45px;
        /* منتصف الدائرة تقريباً */
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #2a7a6e 0, #2a7a6e 5px, transparent 5px, transparent 10px);
        z-index: 0;
    }


    /* العنصر الفردي */
    .m-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    /* الدائرة المحيطة بالأيقونة */
    .m-circle {
        width: 90px;
        height: 90px;
        background: #fff;
        border: 2px solid #2a7a6e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #2a7a6e;
        margin-bottom: 20px;
        transition: all 0.4s ease;
        box-shadow: 0 10px 20px rgba(42, 122, 110, 0.1);
    }

    .m-item:hover .m-circle {
        background: #2a7a6e;
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 15px 30px rgba(42, 122, 110, 0.2);
    }

    /* النص تحت الدائرة */
    .m-item span {
        font-size: 16px;
        color: #333;
        font-weight: 600;
        line-height: 1.4;
        max-width: 140px;
    }

    /* التجاوب مع الموبايل */
    @media (max-width: 992px) {
        .m-nodes-container {
            flex-wrap: wrap;
            gap: 40px;
        }

        .m-nodes-container::before {
            display: none;
            /* إخفاء الخط في الشاشات الصغيرة */
        }

        .m-item {
            flex: none;
            width: 45%;
        }
    }

    @media (max-width: 600px) {
        .m-item {
            width: 100%;
        }
    }

    /* Container & Main Styles */
    .project-map-section {
        padding: 80px 0;
        background: #ffffff;
        direction: rtl;
        /* لضمان التنسيق العربي */
    }

    .projects-grid-wrapper {
        margin-top: 50px;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .project-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(42, 122, 110, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(42, 122, 110, 0.1);
        border-color: #2a7a6e;
    }

    .info-text h4 {
        font-size: 22px;
        color: #1a3c34;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .info-text p {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
        margin: 0;
    }

    @media (max-width: 992px) {
        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .projects-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    /* Gallery Styles */
    .gallery-section {
        padding: 80px 0;
        background: #f9f9f9;
    }

    .gallery-grid {
        display: grid;
        /* ينشئ أعمدة تتكيف تلقائياً مع حجم الشاشة */
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-auto-rows: 280px;
        gap: 20px;
        padding: 20px;
    }

    .gallery-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    /* جعل بعض الكروت تأخذ مساحة أكبر لشكل "بينترست" */
    .gallery-item.large {
        grid-row: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    /* تأثير الطبقة الملونة عند الوقوف بالماوس */
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(26, 60, 52, 0.95), rgba(42, 122, 110, 0.2));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 30px;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .overlay-text span {
        color: #8bc34a;
        /* أخضر فاتح للتصنيف */
        font-weight: bold;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .overlay-text h4 {
        color: #ffffff;
        font-size: 20px;
        margin-top: 8px;
        font-weight: 600;
    }

    /* --- Responsive Gallery --- */
    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr;
            /* عمود واحد في الموبايل */
            grid-auto-rows: 350px;
        }

        .gallery-item.large {
            grid-row: span 1;
            /* إلغاء الطول الزائد في الموبايل */
        }

        .gallery-overlay {
            opacity: 1;
            /* إظهار النصوص دائماً في الموبايل لسهولة التصفح */
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }
    }

    /* ================= استايل معرض المشاريع النظيف ================= */

    .portfolio-section {
        padding: 100px 0;
        background-color: #fdfdfd;
        direction: rtl;
    }

    .portfolio-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 36px;
        color: #1a3c34;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 17px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* شبكة المعرض */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-auto-rows: 280px;
        gap: 20px;
        padding: 0 20px;
        max-width: 1300px;
        margin: 0 auto;
    }

    /* العنصر الفردي */
    .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
    }

    .portfolio-item.lg {
        grid-row: span 2;
    }

    .item-inner {
        width: 100%;
        height: 100%;
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .item-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(26, 60, 52, 0.9), rgba(42, 122, 110, 0.1));
        display: flex;
        align-items: flex-end;
        padding: 35px;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .portfolio-item:hover .item-overlay {
        opacity: 1;
    }

    .portfolio-item:hover img {
        transform: scale(1.1);
    }

    .overlay-content h4 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .portfolio-item:hover h4 {
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .portfolio-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
            gap: 20px;
            padding: 0 20px;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
        }

        .portfolio-item {
            height: 350px;
            display: block !important;
            opacity: 1 !important;
            transform: translateY(0) !important;
            visibility: visible !important;
        }

        .portfolio-item.lg {
            grid-row: span 1;
        }

        .item-overlay {
            opacity: 1;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            padding: 20px;
        }

        .overlay-content h4 {
            font-size: 16px;
            transform: translateY(0);
        }

        /* Ensure images are visible */
        .portfolio-item img {
            opacity: 1 !important;
            visibility: visible !important;
        }
    }

    /* ================= Contact Section Styles ================= */
    .contact-section {
        padding: 100px 0;
        background: radial-gradient(circle at top right, #f8fcf9, #ffffff);
        direction: rtl;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: center;
        padding: 0 20px;
    }

    .contact-form-wrap {
        background: #fff;
        padding: 30px 20px;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(26, 74, 90, 0.05);
        border: 1px solid rgba(42, 122, 110, 0.05);
        margin: 0 10px;
    }

    .contact-form-wrap h3 {
        font-size: 28px;
        color: var(--deep-teal);
        margin-bottom: 10px;
    }

    .contact-form-wrap p {
        color: #666;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 1.5px solid #eee;
        border-radius: 12px;
        font-family: inherit;
        font-size: 15px;
        transition: all 0.3s ease;
        background: #fdfdfd;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--teal);
        background: #fff;
        box-shadow: 0 5px 15px rgba(42, 122, 110, 0.05);
        outline: none;
    }

    .contact-info-wrap {
        padding-right: 20px;
    }

    .contact-visual-data h2 {
        font-size: 42px;
        color: var(--deep-teal);
        line-height: 1.3;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .contact-visual-data p {
        font-size: 18px;
        color: #555;
        margin-bottom: 40px;
    }

    .info-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .info-item .icon-circle {
        margin: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .info-item .icon-circle i {
        font-size: 24px;
    }

    .info-details h4 {
        font-size: 16px;
        color: var(--deep-teal);
        margin-bottom: 4px;
        font-weight: 600;
    }

    .info-details p {
        font-size: 15px;
        color: #666;
        margin-bottom: 0;
    }

    .motto-text {
        border-top: 2px solid #eee;
        padding-top: 30px;
        font-style: normal;
        color: var(--teal);
        font-weight: 500;
    }

    /* ================= Footer Redesign Styles ================= */
    .footer {
        background: var(--deep-teal);
        color: #fff;
        padding: 80px 20px 30px;
        direction: rtl;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .footer-logo img {
        height: 60px;
        margin-bottom: 20px;
        filter: brightness(0) invert(1);
    }

    .about-col p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 15px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-links a:hover {
        background: var(--gold);
        transform: translateY(-3px);
        border-color: var(--gold);
    }

    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        text-align: center;
    }



    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 25px;
        letter-spacing: 0.3px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .footer-col ul li .icon-circle {
        margin: 0;
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .footer-col ul li .icon-circle i {
        font-size: 18px;
    }

    .footer-col ul li a,
    .footer-col ul li {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        line-height: 1.6;
    }

    .footer-col h4::after {
        display: none;
        /* Remove diagonal/underline lines */
    }

    .footer-col ul li a:hover {
        color: var(--gold);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 30px;
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

    /* --- Responsive Contact & Footer --- */
    @media (max-width: 992px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .contact-info-wrap {
            padding-right: 0;
            order: -1;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-visual-data h2 {
            font-size: 32px;
        }
    }

    /* ================= Stats & Intro Refinements ================= */
    .stat-icon,
    .intro-icon {
        width: 70px;
        height: 70px;
        background: rgba(42, 122, 110, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.4s ease;
    }

    .stat-icon i,
    .intro-icon i {
        font-size: 28px;
        color: var(--teal);
    }

    .stat-card:hover .stat-icon,
    .intro-card:hover .intro-icon {
        background: var(--teal);
        transform: translateY(-5px);
    }

    .stat-card:hover .stat-icon i,
    .intro-card:hover .intro-icon i {
        color: #fff;
    }

    /* Custom colors for specific icons to match Vision style */
    .stat-card:nth-child(2) .stat-icon,
    .intro-card:nth-child(2) .intro-icon {
        background: rgba(201, 168, 76, 0.1);
    }

    .stat-card:nth-child(2) .stat-icon i,
    .intro-card:nth-child(2) .intro-icon i {
        color: var(--gold);
    }

    .stat-card:nth-child(2):hover .stat-icon,
    .intro-card:nth-child(2):hover .intro-icon {
        background: var(--gold);
    }

    /* ================= Project Grid Section Refinement ================= */
    .map-container {
        display: block;
        /* Remove flex split layout */
        max-width: 1200px;
        margin: 0 auto;
    }

    .map-image {
        display: none;
        /* Hide the map as requested */
    }

    .map-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        width: 100%;
        padding: 0;
    }

    .info-card {
        background: #fff;
        padding: 40px 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(42, 122, 110, 0.1);
    }

    .info-text h4 {
        font-size: 20px;
        color: var(--dark-navy);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .info-text p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

    @media (max-width: 900px) {
        .map-info {
            grid-template-columns: 1fr;
        }
    }

    /* ================= WhatsApp Floating Button ================= */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: 30px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128c7e;
        color: #fff;
    }

    .whatsapp-float i {
        margin-top: 2px;
    }

    /* Pulse Animation */
    @keyframes pulse-whatsapp {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .whatsapp-float {
        animation: pulse-whatsapp 2s infinite;
    }

    /* ================= 404 Not Found Page ================= */
    .not-found-section {
        padding: 180px 20px 100px;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at top right, #f8fcf9, #ffffff);
    }

    .not-found-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .error-code {
        font-size: 150px;
        font-weight: 800;
        color: var(--teal);
        line-height: 1;
        margin-bottom: 20px;
        text-shadow: 4px 4px 0px rgba(42, 122, 110, 0.1);
    }

    .error-title {
        font-size: 36px;
        color: var(--dark-navy);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .error-desc {
        font-size: 18px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 40px;
    }
/* Fix sub-text font weights under main headings */
.section-subtitle, .section-description, .exec-title p, .map-header p, .consulting-header p {
    font-weight: normal !important;
}
