        /* ================================================================
               1. RESET & BASE
               ================================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.8;
            direction: inherit;
            transition: background-color 0.4s ease, color 0.3s ease;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            transition: 0.3s;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ================================================================
               2. COLOR THEMES
               ================================================================ */
        :root {
            --navy: #1F4D5F;
            --navy-light: #2E6A82;
            --navy-dark: #153544;
            --navy-bg: #f0f4f8;
            --navy-card: #ffffff;
            --navy-text: #1a1a1a;
            --navy-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

            --terracotta: #B4654A;
            --gold: #D4A373;
            --sand: #F5EBE0;
            --brown-dark: #3D2B1F;
            --terracotta-bg: #FAF6F0;
            --terracotta-card: #ffffff;
            --terracotta-text: #2C221A;
        }

        body.theme-navy {
            background: var(--navy-bg);
            color: var(--navy-text);
        }
        body.theme-terracotta {
            background: var(--terracotta-bg);
            color: var(--terracotta-text);
        }

        /* ================================================================
               3. SHARED STYLES
               ================================================================ */
        .section-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            border-radius: 4px;
            margin-top: 8px;
        }
        body.theme-navy .section-title {
            color: var(--navy);
        }
        body.theme-navy .section-title::after {
            background: var(--navy);
        }
        body.theme-terracotta .section-title {
            color: var(--navy);
        }
        body.theme-terracotta .section-title::after {
            background: var(--terracotta);
        }

        .section-sub {
            font-size: 18px;
            color: #888;
            margin-bottom: 35px;
        }

        .btn-primary {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            color: #fff;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        body.theme-navy .btn-primary {
            background: var(--navy);
        }
        body.theme-navy .btn-primary:hover {
            background: var(--navy-light);
        }
        body.theme-terracotta .btn-primary {
            background: var(--terracotta);
        }
        body.theme-terracotta .btn-primary:hover {
            background: var(--navy);
        }

        .btn-outline {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid;
            cursor: pointer;
            transition: 0.3s;
            background: transparent;
        }
        body.theme-navy .btn-outline {
            border-color: #fff;
            color: #fff;
        }
        body.theme-navy .btn-outline:hover {
            background: #fff;
            color: var(--navy);
        }
        body.theme-terracotta .btn-outline {
            border-color: #fff;
            color: #fff;
        }
        body.theme-terracotta .btn-outline:hover {
            background: #fff;
            color: var(--terracotta);
        }

        /* ================================================================
               4. TOP BAR
               ================================================================ */
        .top-bar {
            padding: 6px 0;
            font-size: 13px;
            position: relative;
            z-index: 100;
        }
        body.theme-navy .top-bar {
            background: var(--navy-dark);
            color: rgba(255, 255, 255, 0.8);
        }
        body.theme-terracotta .top-bar {
            background: var(--brown-dark);
            color: var(--sand);
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .top-bar .contact-info span {
            margin-inline-end: 20px;
        }
        .top-bar .contact-info i {
            margin-inline-end: 6px;
        }
        .top-bar .controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .top-bar .controls button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-family: 'Cairo', sans-serif;
            transition: 0.3s;
            padding: 2px 6px;
            font-weight: 600;
        }
        body.theme-navy .top-bar .controls button {
            color: rgba(255, 255, 255, 0.7);
        }
        body.theme-navy .top-bar .controls button:hover,
        body.theme-navy .top-bar .controls button.active {
            color: #fff;
            border-bottom: 2px solid #8ED1FC;
        }
        body.theme-terracotta .top-bar .controls button {
            color: rgba(255, 255, 255, 0.7);
        }
        body.theme-terracotta .top-bar .controls button:hover,
        body.theme-terracotta .top-bar .controls button.active {
            color: var(--gold);
            border-bottom: 2px solid var(--gold);
        }
        .top-bar .controls .sep {
            opacity: 0.3;
        }

        /* ================================================================
               5. HEADER / NAV
               ================================================================ */
        header {
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: 0.3s;
            background: rgba(31, 77, 95, 0.95);
            backdrop-filter: blur(10px);
        }
        body.theme-navy header {
            background: rgba(31, 77, 95, 0.95);
            border-bottom: 3px solid var(--navy-light);
        }
        body.theme-terracotta header {
            background: linear-gradient(135deg, rgba(31, 77, 95, 0.95) 0%, rgba(61, 43, 31, 0.95) 100%);
            border-bottom: 3px solid var(--gold);
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .logo-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 900;
            transition: 0.3s;
        }
        body.theme-navy .logo-icon {
            background: #fff;
            color: var(--navy);
            border: 3px solid var(--navy-light);
        }
        body.theme-terracotta .logo-icon {
            background: var(--sand);
            color: var(--navy);
            border: 3px solid var(--gold);
        }
        .logo-text h1 {
            font-size: 26px;
            font-weight: 900;
            color: #fff;
            letter-spacing: 1px;
        }
        .logo-text span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            opacity: 0.85;
            letter-spacing: 2px;
        }
        body.theme-navy .logo-text span {
            color: rgba(255, 255, 255, 0.8);
        }
        body.theme-terracotta .logo-text span {
            color: var(--gold);
        }

        /* ----- Navigation ----- */
        nav ul {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav ul li a {
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 14px;
            border-radius: 8px;
            transition: 0.3s;
            display: block;
        }
        body.theme-navy nav ul li a:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        body.theme-terracotta nav ul li a:hover {
            background: rgba(212, 163, 115, 0.2);
        }

        /* Dropdown */
        nav ul li {
            position: relative;
        }
        nav ul li .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            inset-inline-start: 0;
            min-width: 220px;
            border-radius: 10px;
            padding: 8px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            z-index: 999;
        }
        body.theme-navy nav ul li .dropdown {
            background: #fff;
        }
        body.theme-terracotta nav ul li .dropdown {
            background: #fff;
        }
        nav ul li:hover .dropdown {
            display: block;
        }
        nav ul li .dropdown a {
            color: #333;
            padding: 10px 20px;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        body.theme-navy nav ul li .dropdown a:hover {
            background: var(--navy-bg);
            color: var(--navy);
        }
        body.theme-terracotta nav ul li .dropdown a:hover {
            background: var(--sand);
            color: var(--terracotta);
        }
        nav ul li .dropdown i {
            width: 20px;
        }
        .dropdown-arrow {
            font-size: 11px;
            margin-inline-start: 4px;
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        /* ================================================================
               6. HERO WITH REAL BACKGROUND IMAGE
               ================================================================ */
        .hero {
            position: relative;
            padding: 100px 0 80px;
            text-align: center;
            overflow: hidden;
            min-height: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Background layer, separated so it can slowly zoom without affecting content */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: #16323f;
            background-image: url('https://images.pexels.com/photos/1554646/pexels-photo-1554646.jpeg?auto=compress&cs=tinysrgb&w=1600'), linear-gradient(135deg, #16323f, #1F4D5F);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            animation: heroZoom 22s ease-in-out infinite alternate;
            z-index: 0;
        }
        @keyframes heroZoom {
            from { transform: scale(1); }
            to { transform: scale(1.09); }
        }
        /* Dark overlay for readability */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 10;
            color: #fff;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1.3;
            color: #fff;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .hero h2 .highlight {
            background-image: linear-gradient(90deg, #8ED1FC, #ffffff, #8ED1FC);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #8ED1FC;
            animation: shineText 6s linear infinite;
        }
        body.theme-terracotta .hero h2 .highlight {
            background-image: linear-gradient(90deg, var(--gold), #ffffff, var(--gold));
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: var(--gold);
            animation: shineText 6s linear infinite;
        }
        @keyframes shineText {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        .hero p {
            font-size: 20px;
            max-width: 720px;
            margin: 0 auto 30px;
            opacity: 0.9;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        .hero .btn-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-anim {
            opacity: 0;
            animation: heroFadeUp 0.9s ease forwards;
        }
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-scroll-cue {
            position: relative;
            z-index: 10;
            margin-top: 46px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 20px;
            animation: cueBounce 2s ease-in-out infinite;
        }
        @keyframes cueBounce {
            0%, 100% { transform: translateY(0); opacity: 0.6; }
            50% { transform: translateY(8px); opacity: 1; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero::after { animation: none; }
            .hero h2 .highlight { animation: none; }
            .hero-anim { opacity: 1; animation: none; }
            .hero-scroll-cue { animation: none; }
        }

        /* ================================================================
               7. STATS / COUNTERS
               ================================================================ */
        .stats-section {
            padding: 50px 0;
        }
        body.theme-navy .stats-section {
            background: var(--navy);
            color: #fff;
        }
        body.theme-terracotta .stats-section {
            background: var(--brown-dark);
            color: var(--sand);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .stats-grid .stat h3 {
            font-size: 42px;
            font-weight: 900;
        }
        body.theme-navy .stats-grid .stat h3 {
            color: #8ED1FC;
        }
        body.theme-terracotta .stats-grid .stat h3 {
            color: var(--gold);
        }
        .stats-grid .stat p {
            font-size: 16px;
            opacity: 0.8;
        }

        /* ================================================================
               8. ABOUT
               ================================================================ */
        .about-section {
            padding: 70px 0;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-grid .about-image {
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .about-grid .about-image img {
            border-radius: 16px;
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.7s ease;
            display: block;
        }
        .about-grid .about-image:hover img {
            transform: scale(1.08);
        }
        .about-grid .about-text p {
            font-size: 17px;
            margin-bottom: 15px;
            color: #555;
        }
        .about-grid .about-text .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        .about-grid .about-text .features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        body.theme-navy .about-grid .about-text .features li i {
            color: var(--navy);
        }
        body.theme-terracotta .about-grid .about-text .features li i {
            color: var(--terracotta);
        }

        /* ================================================================
               9. SERVICES
               ================================================================ */
        .services-section {
            padding: 70px 0;
        }
        body.theme-navy .services-section {
            background: var(--navy-bg);
        }
        body.theme-terracotta .services-section {
            background: var(--terracotta-bg);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .service-card {
            padding: 30px 25px;
            border-radius: 16px;
            transition: 0.4s;
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        body.theme-navy .service-card {
            background: #fff;
            box-shadow: var(--navy-shadow);
            border-bottom: 4px solid var(--navy);
        }
        body.theme-terracotta .service-card {
            background: #fff;
            box-shadow: var(--navy-shadow);
            border-bottom: 4px solid var(--gold);
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        body.theme-navy .service-card:hover {
            box-shadow: 0 16px 50px rgba(31, 77, 95, 0.15);
        }
        body.theme-terracotta .service-card:hover {
            box-shadow: 0 16px 50px rgba(61, 43, 31, 0.15);
        }
        .service-card .icon {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
            transition: transform 0.4s ease;
        }
        .service-card .icon-thumb {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            display: block;
            border: 3px solid var(--terracotta);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
        }
        .service-card:hover .icon-thumb {
            transform: scale(1.12) rotate(-3deg);
        }
        body.theme-navy .service-card .icon-thumb {
            border-color: var(--navy);
        }
        body.theme-terracotta .service-card .icon-thumb {
            border-color: var(--terracotta);
        }
        .service-card:hover .icon {
            transform: scale(1.18) rotate(-4deg);
        }
        body.theme-navy .service-card .icon {
            color: var(--navy);
        }
        body.theme-terracotta .service-card .icon {
            color: var(--terracotta);
        }
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        body.theme-navy .service-card h3 {
            color: var(--navy);
        }
        body.theme-terracotta .service-card h3 {
            color: var(--brown-dark);
        }
        .service-card p {
            color: #666;
            font-size: 15px;
        }
        .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            justify-content: center;
            margin-top: 14px;
        }
        .card-tags span {
            font-size: 11.5px;
            font-weight: 700;
            padding: 4px 11px;
            border-radius: 20px;
        }
        body.theme-navy .card-tags span {
            background: rgba(31, 77, 95, 0.08);
            color: var(--navy);
        }
        body.theme-terracotta .card-tags span {
            background: rgba(180, 101, 74, 0.1);
            color: var(--terracotta);
        }
        .service-card:hover .card-tags span {
            transform: translateY(-2px);
        }
        .card-tags span {
            transition: transform 0.3s ease;
        }
        .service-card .read-more {
            display: inline-block;
            margin-top: 12px;
            font-weight: 700;
            font-size: 14px;
        }
        body.theme-navy .service-card .read-more {
            color: var(--navy);
        }
        body.theme-terracotta .service-card .read-more {
            color: var(--terracotta);
        }
        .service-card .read-more i {
            margin-inline-start: 6px;
        }

        /* ===== Service Detail Modal ===== */
        .service-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
            backdrop-filter: blur(4px);
        }
        .service-modal.open {
            display: flex;
        }
        .service-modal .modal-content {
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        body.theme-navy .service-modal .modal-content {
            background: #fff;
            color: var(--navy-text);
        }
        body.theme-terracotta .service-modal .modal-content {
            background: #fff;
            color: var(--terracotta-text);
        }
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        .service-modal .close-modal {
            position: absolute;
            top: 15px;
            inset-inline-end: 20px;
            font-size: 30px;
            background: none;
            border: none;
            cursor: pointer;
            color: #999;
            transition: 0.3s;
        }
        .service-modal .close-modal:hover {
            color: #333;
            transform: rotate(90deg);
        }
        .service-modal .modal-content h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        body.theme-navy .service-modal .modal-content h2 {
            color: var(--navy);
        }
        body.theme-terracotta .service-modal .modal-content h2 {
            color: var(--brown-dark);
        }
        .service-modal .modal-content .modal-icon {
            font-size: 60px;
            display: block;
            margin-bottom: 15px;
        }
        .service-modal .modal-content p {
            color: #555;
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 15px;
        }
        .service-modal .modal-content .modal-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        .service-modal .modal-content .modal-images img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
        }
        .service-modal .modal-content ul {
            list-style: disc;
            padding-inline-start: 25px;
            color: #555;
            margin-bottom: 15px;
        }
        .service-modal .modal-content ul li {
            margin-bottom: 6px;
        }

        @media (max-width: 600px) {
            .service-modal .modal-content {
                padding: 25px;
            }
            .service-modal .modal-content .modal-images {
                grid-template-columns: 1fr;
            }
            .service-modal .modal-content .modal-images img {
                height: 160px;
            }
        }

        /* ================================================================
               10. PROJECTS / GALLERY
               ================================================================ */
        .projects-section {
            padding: 70px 0;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        .project-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: 0.4s;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
        }
        .project-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.5s;
        }
        .project-item:hover img {
            transform: scale(1.05);
        }
        .project-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: #fff;
        }
        .project-item .overlay h4 {
            font-size: 18px;
        }
        .project-item .overlay p {
            font-size: 13px;
            opacity: 0.8;
        }

        /* ================================================================
               11. WHY US
               ================================================================ */
        .why-section {
            padding: 70px 0;
        }
        body.theme-navy .why-section {
            background: var(--navy-bg);
        }
        body.theme-terracotta .why-section {
            background: var(--terracotta-bg);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        .why-grid .item .num {
            font-size: 32px;
            font-weight: 900;
            display: block;
        }
        body.theme-navy .why-grid .item .num {
            color: var(--navy);
        }
        body.theme-terracotta .why-grid .item .num {
            color: var(--terracotta);
        }
        .why-grid .item h4 {
            font-size: 18px;
            margin: 8px 0;
        }
        .why-grid .item p {
            color: #777;
            font-size: 14px;
        }

        /* ================================================================
               12. CONTACT
               ================================================================ */
        .contact-section {
            padding: 70px 0;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .contact-info-cards .ci {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 22px;
            border-radius: 12px;
            transition: 0.3s;
        }
        body.theme-navy .contact-info-cards .ci {
            background: #fff;
            box-shadow: var(--navy-shadow);
        }
        body.theme-terracotta .contact-info-cards .ci {
            background: #fff;
            box-shadow: var(--navy-shadow);
        }
        .contact-info-cards .ci i {
            font-size: 28px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
        }
        body.theme-navy .contact-info-cards .ci i {
            background: var(--navy);
        }
        body.theme-terracotta .contact-info-cards .ci i {
            background: var(--terracotta);
        }
        .contact-info-cards .ci h4 {
            font-size: 16px;
        }
        .contact-info-cards .ci p {
            color: #777;
            font-size: 14px;
        }

        .contact-form-wrap {
            padding: 30px;
            border-radius: 16px;
        }
        body.theme-navy .contact-form-wrap {
            background: #fff;
            box-shadow: var(--navy-shadow);
        }
        body.theme-terracotta .contact-form-wrap {
            background: #fff;
            box-shadow: var(--navy-shadow);
        }
        .contact-form-wrap label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 14px;
        }
        body.theme-navy .contact-form-wrap label {
            color: var(--navy);
        }
        body.theme-terracotta .contact-form-wrap label {
            color: var(--brown-dark);
        }
        .contact-form-wrap input,
        .contact-form-wrap textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e8e8e8;
            border-radius: 10px;
            font-size: 15px;
            font-family: 'Cairo', sans-serif;
            margin-bottom: 16px;
            transition: 0.3s;
            background: #fafafa;
        }
        .contact-form-wrap input:focus,
        .contact-form-wrap textarea:focus {
            outline: none;
            border-color: var(--navy);
            background: #fff;
        }
        body.theme-terracotta .contact-form-wrap input:focus,
        body.theme-terracotta .contact-form-wrap textarea:focus {
            border-color: var(--terracotta);
        }
        .contact-form-wrap textarea {
            height: 130px;
            resize: vertical;
        }
        .contact-form-wrap .btn-primary {
            width: 100%;
        }

        /* ================================================================
               13. FOOTER
               ================================================================ */
        footer {
            padding: 40px 0 20px;
            color: #fff;
        }
        body.theme-navy footer {
            background: var(--navy-dark);
        }
        body.theme-terracotta footer {
            background: var(--brown-dark);
            border-top: 3px solid var(--gold);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        body.theme-terracotta .footer-grid h4 {
            color: var(--gold);
        }
        .footer-grid ul li {
            margin-bottom: 8px;
        }
        .footer-grid ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
        .footer-grid ul li a:hover {
            color: #fff;
        }
        body.theme-terracotta .footer-grid ul li a:hover {
            color: var(--gold);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            opacity: 0.7;
        }

        /* ================================================================
               14. RESPONSIVE
               ================================================================ */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .hero h2 {
                font-size: 34px;
            }
            .hero {
                min-height: 500px;
                padding: 80px 0 60px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 15px 0;
                gap: 5px;
            }
            nav ul.open {
                display: flex;
            }
            nav ul li .dropdown {
                position: static;
                box-shadow: none;
                padding-inline-start: 20px;
            }
            body.theme-navy nav ul li .dropdown {
                background: rgba(255, 255, 255, 0.05);
            }
            body.theme-terracotta nav ul li .dropdown {
                background: rgba(255, 255, 255, 0.05);
            }
            nav ul li .dropdown a {
                color: #fff;
            }
            .header-flex {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .top-bar .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .hero h2 {
                font-size: 28px;
            }
            .hero p {
                font-size: 17px;
            }
            .hero {
                min-height: 400px;
                padding: 60px 0 40px;
            }
            .section-title {
                font-size: 28px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .about-grid .about-text .features {
                grid-template-columns: 1fr;
            }
            .contact-info-cards .ci {
                padding: 14px 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h2 {
                font-size: 22px;
            }
            .hero .btn-group {
                flex-direction: column;
                align-items: center;
            }
            .hero {
                min-height: 350px;
                padding: 50px 0 30px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .logo-text h1 {
                font-size: 20px;
            }
            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }

        /* ================================================================
               EXTRA. ENTRANCE POLISH
               ================================================================ */
        /* Content is ALWAYS visible by default — no JS or scroll-timing
           dependency for whether something can be seen. .reveal /
           .reveal-stagger classes remain only as harmless markers; the
           subtle fade-in below is a pure-CSS, animation-only effect that
           cannot ever leave content hidden even if it fails to run. */
        .reveal, .reveal-stagger > * {
            opacity: 1;
            transform: none;
        }

        /* ================================================================
               EXTRA. TRUST / OFFICIAL REGISTRATION STRIP
               ================================================================ */
        .trust-strip {
            padding: 34px 0;
            position: relative;
            z-index: 5;
            margin-top: -60px;
        }
        .trust-card {
            border-radius: 20px;
            padding: 30px 25px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        body.theme-navy .trust-card {
            background: #fff;
        }
        body.theme-terracotta .trust-card {
            background: #fff;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 14px;
            text-align: start;
        }
        .trust-item i {
            font-size: 26px;
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            color: #fff;
        }
        body.theme-navy .trust-item i {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
        }
        body.theme-terracotta .trust-item i {
            background: linear-gradient(135deg, var(--terracotta), var(--gold));
        }
        .trust-item h5 {
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 2px;
        }
        body.theme-navy .trust-item h5 { color: var(--navy); }
        body.theme-terracotta .trust-item h5 { color: var(--brown-dark); }
        .trust-item span {
            font-size: 12.5px;
            color: #888;
            display: block;
        }
        @media (max-width: 900px) {
            .trust-card {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .trust-card {
                grid-template-columns: 1fr;
            }
            .trust-strip {
                margin-top: -40px;
            }
        }

        /* ================================================================
               EXTRA. SECTOR NOTE BADGE
               ================================================================ */
        .sector-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 18px;
            font-weight: 700;
        }
        body.theme-navy .sector-note {
            background: rgba(31, 77, 95, 0.08);
            color: var(--navy);
        }
        body.theme-terracotta .sector-note {
            background: rgba(180, 101, 74, 0.1);
            color: var(--terracotta);
        }

        /* Counter pulse when animated */
        .stats-grid .stat h3.counted {
            animation: countPulse 0.5s ease;
        }
        @keyframes countPulse {
            0% { transform: scale(0.85); }
            60% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }
