
        /* * =========================================
         * CORE VARIABLES & RESET
         * =========================================
         */
        :root {
            --primary-navy: #0F172A;
            --secondary-blue: #1E293B;
            --accent-gold: #48cae4;
            --text-white: #FFFFFF;
            --text-grey: #94A3B8;
            --bg-light: #F8FAFC;
            --font-main: 'Nunito Sans', sans-serif;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-light);
            color: var(--primary-navy);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* * =========================================
         * UTILITIES
         * =========================================
         */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-navy);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            margin: 15px auto 0;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--accent-gold);
            color: var(--primary-navy);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: var(--transition);
            border: 2px solid var(--accent-gold);
            cursor: pointer;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--accent-gold);
        }

        /* * =========================================
         * NAVIGATION
         * =========================================
         */
        header {
            background-color: rgba(15, 23, 42, 0.95); /* Slightly less transparent for legibility */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 1001; /* Ensure logo is above mobile menu overlay */
        }

        .logo img {
            height: 45px;
            width: auto;
        }
        
        /* New Fallback Logo Style */
        .logo-text-fallback {
            display: none; /* Hidden by default */
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            letter-spacing: 1px;
            font-family: 'Nunito Sans', sans-serif;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        /* HAMBURGER MENU STYLES */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            background-color: white;
            border-radius: 2px;
        }

        /* * =========================================
         * HERO SECTION
         * =========================================
         */
        .hero {
            background-color: var(--primary-navy);
            color: var(--text-white);
          /*  padding: 50px 0 80px;  Restored top padding */
            text-align: center;
            position: relative;
        }

        .poll{
            background-color: white;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            line-height: 1;
        }

        .hero h2 {
            font-size: 1.8rem;
            
            padding-bottom: 10px;
            font-weight: 400;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-grey);
            max-width: 700px;
            margin: 0 auto 10px;
            margin-top: 20px;
        }

        /* New Pre-Title Style */
        .hero-pre-title {
            font-size: 1.1rem; /* Small font size */
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 0; /* Reduced from 5px to 0 to tighten spacing */
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        /* Hero Banner Image (Contained) */
        .hero-banner-image {
            width: 100%;
            
          
            
            
            display: block;
            object-fit:contain;
            object-position: top;
            /* 
              height: 450px;
              border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px; /* Added rounded corners
           box-shadow: 0 20px 40px rgba(0,0,0,0.2); */
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 30px;
            padding-bottom:30px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-grey);
        }

        /* * =========================================
         * TRACK RECORD
         * =========================================
         */
        .track-record {
            background-color: var(--bg-light);
        }

        .records-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .record-card {
            background: white;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-left: 5px solid var(--accent-gold);
            transition: var(--transition);
        }

        .record-card:hover {
            transform: translateY(-5px);
        }

        .record-year {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-navy);
            margin-bottom: 15px;
        }

        .record-detail {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .record-detail strong {
            color: var(--secondary-blue);
        }

        .accuracy-badge {
            display: inline-block;
            background: #dcfce7;
            color: #166534;
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-top: 10px;
        }

        /* * =========================================
         * ABOUT & WHO WE ARE (CREATIVE LAYOUT)
         * =========================================
         */
        .about-section {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        /* Creative Background Element */
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 10%, rgba(196, 164, 91, 0.05) 0%, transparent 20%),
                        radial-gradient(circle at 90% 90%, rgba(15, 23, 42, 0.03) 0%, transparent 20%);
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .about-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            transition: var(--transition);
            overflow: hidden;
            z-index: 1;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.06);
            border-color: rgba(196, 164, 91, 0.2);
        }

        /* Decorative top accent line */
        .about-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
        }

        .card-number {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(15, 23, 42, 0.05);
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 1;
            z-index: -1;
        }

        .about-card h3 {
            font-size: 1.8rem;
            color: var(--primary-navy);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        /* Icon for the header */
        .about-card h3::before {
            content: '';
            display: block;
            width: 8px;
            height: 30px;
            background-color: var(--accent-gold);
            border-radius: 4px;
        }

        .about-card p {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.8;
            text-align: justify; /* Clean blocks of text */
        }

        /* * =========================================
         * APPROACH (Cards)
         * =========================================
         */
        .approach-section {
            background-color: var(--secondary-blue);
            color: white;
        }

        .approach-section .section-title {
            color: white;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .approach-card {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .approach-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .approach-card h3 {
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        /* * =========================================
         * SERVICES
         * =========================================
         */
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-item {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            color: var(--primary-navy);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
            border-color: var(--accent-gold);
        }

        .service-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-navy);
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 10px;
            display: inline-block;
            width: fit-content;
        }

        .service-item p {
            color: #475569;
            font-size: 1rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        /* * =========================================
         * FIELD SURVEY GALLERY (Masonry)
         * =========================================
         */
        .gallery-section {
            background-color: white;
        }

        .masonry-grid {
            column-count: 3;
            column-gap: 20px;
            margin-top: 40px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .masonry-item:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .masonry-grid {
                column-count: 2;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero h2 {
                font-size: 1.2rem;
            }
            .hero-banner-image {
               
            }
            
            /* Mobile Navigation */
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-links {
                position: fixed;
                left: -100%;
                top: 75px; /* Adjust based on header height */
                gap: 0;
                flex-direction: column;
                background-color: var(--primary-navy);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding-bottom: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                padding: 16px 0;
                display: block;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            
            .nav-links a:hover {
                background-color: rgba(255,255,255,0.05);
            }
        }

        @media (max-width: 480px) {
            .masonry-grid {
                column-count: 1;
            }
        }

        /* * =========================================
         * CONTACT & FOOTER
         * =========================================
         */
        .contact-section {
            background-color: var(--primary-navy);
            color: white;
            text-align: center;
            padding-bottom: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            font-size: 1.3rem;
            margin-top: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .contact-icon {
            color: var(--accent-gold);
        }

        /* * =========================================
         * NEW FOOTER STYLES (Combined Contact & Footer)
         * =========================================
         */
        footer {
            background-color: #050b14; /* Deep dark background */
            color: white;
            text-align: center;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            scroll-margin-top: 60px; /* Offset for sticky header */
        }

        .footer-brand {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-contact-block {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .footer-contact-item {
            font-size: 1.1rem;
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact-item i {
            color: var(--accent-gold);
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-nav a {
            color: #94a3b8;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .footer-nav a:hover {
            color: var(--accent-gold);
        }

         .footer-socials {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }

        .social-circle {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            font-size: 1rem;
        }

        .social-circle:hover {
            border-color: var(--accent-gold);
            color: var(--primary-navy);
            background-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        .copyright {
            color: #475569;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Animation classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
   