:root {
            /* Brand Colors from Logo */
            --teal-dark: #1a4457;
            --teal-light: #2c5f78;
            --blue-light: #5db3d5;
            --orange-brand: #e27527;
            --orange-hover: #cf6720;
            
            /* Enhanced Light Theme UI Colors */
            --bg-main: #f8fafc;
            --bg-white: #ffffff;
            --text-main: #2d3748;
            --text-muted: #64748b;
            --border-light: #e2e8f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        html, body {
            background-color: var(--bg-main);
            color: var(--text-main);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw; /* Prevents mobile horizontal scrolling/gap */
            -webkit-font-smoothing: antialiased;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes pulse-glow {
            0% { box-shadow: 0 0 0 0 rgba(93, 179, 213, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(93, 179, 213, 0); }
            100% { box-shadow: 0 0 0 0 rgba(93, 179, 213, 0); }
        }

        /* Premium Glass Navbar */
        nav {
            position: fixed;
            width: 100%;
            left: 0; /* Anchors the header to prevent shifting */
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 30px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .logo img {
            height: 65px;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--teal-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            transition: color 0.3s, transform 0.3s;
            position: relative;
        }

        .nav-links a:not(.btn-nav)::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--orange-brand);
            transition: width 0.3s ease;
        }

        .nav-links a:not(.btn-nav):hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--orange-brand);
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--orange-brand), var(--orange-hover));
            padding: 12px 28px;
            border-radius: 30px;
            color: white !important;
            text-decoration: none !important;
            box-shadow: 0 4px 15px rgba(226, 117, 39, 0.25);
            transition: all 0.3s ease;
            border: none;
        }

        .btn-nav:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(226, 117, 39, 0.4);
        }

        /* Mobile Menu Toggle Icon */
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--teal-dark);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-toggle:hover {
            color: var(--orange-brand);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 140px 5% 60px;
            background: radial-gradient(circle at top right, rgba(93, 179, 213, 0.08), var(--bg-main) 60%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 680px;
            z-index: 2;
            animation: fadeInUp 1s ease-out forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 68, 87, 0.05);
            color: var(--teal-dark);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 30px;
            border: 1px solid rgba(26, 68, 87, 0.1);
        }

        .hero-badge i {
            color: var(--orange-brand);
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--teal-dark);
            letter-spacing: -1px;
        }

        .text-gradient {
            background: linear-gradient(to right, var(--teal-light), var(--blue-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 45px;
            line-height: 1.8;
            max-width: 600px;
        }

        .hero-graphics {
            flex: 1;
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: float 8s ease-in-out infinite;
        }

        .glow-circle {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: conic-gradient(from 180deg at 50% 50%, rgba(26,68,87,0.03) 0deg, rgba(93,179,213,0.1) 180deg, rgba(226,117,39,0.05) 360deg);
            filter: blur(50px);
            position: absolute;
        }

        /* Abstract Graphic Composition */
        .glass-card {
            position: absolute;
            width: 280px;
            height: 180px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--blue-light);
        }

        .glass-card.top { transform: translate(-50px, -80px) rotate(-5deg); animation: pulse-glow 3s infinite; }
        .glass-card.bottom { transform: translate(60px, 60px) rotate(5deg); color: var(--orange-brand); background: rgba(255,255,255,0.6); }

        /* Stats Strip */
        .stats {
            background: var(--bg-white);
            padding: 50px 5%;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            position: relative;
            z-index: 10;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--orange-brand);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--teal-dark);
            font-weight: 600;
        }

        /* Shared Section Styles */
        .section {
            padding: 120px 5%;
            background: var(--bg-main);
        }

        .section-alt {
            background: var(--bg-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--teal-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.15rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Services Grid */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .card {
            background: var(--bg-white);
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(26, 68, 87, 0.04);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(0,0,0,0.03);
            z-index: 1;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(26, 68, 87, 0.08);
            border-color: rgba(93, 179, 213, 0.2);
        }

        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(93, 179, 213, 0.1), rgba(93, 179, 213, 0.05));
            color: var(--teal-dark);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }

        .card:hover .icon-box {
            background: var(--teal-dark);
            color: var(--bg-white);
            transform: scale(1.1) rotate(5deg);
        }

        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--teal-dark);
            font-weight: 700;
        }

        .card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Portfolio / Work Section */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .portfolio-card {
            border-radius: 24px;
            overflow: hidden;
            background: var(--bg-main);
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            transition: transform 0.4s ease;
            border: 1px solid var(--border-light);
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
        }

        .portfolio-img {
            height: 240px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
        }
        
        .p-1 { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
        .p-2 { background: linear-gradient(135deg, #2c3e50, #3498db); }
        .p-3 { background: linear-gradient(135deg, #11998e, #38ef7d); }

        .portfolio-content {
            padding: 35px;
            background: var(--bg-white);
        }

        .portfolio-content h3 {
            font-size: 1.6rem;
            color: var(--teal-dark);
            margin-bottom: 10px;
        }

        .portfolio-content p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .portfolio-link {
            color: var(--orange-brand);
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .portfolio-link:hover {
            gap: 12px;
            color: var(--orange-hover);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
            padding: 100px 5%;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CiAgPGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPgo8L3N2Zz4=') repeat;
            opacity: 0.5;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255,255,255,0.8);
        }

        .btn-large {
            background: var(--bg-white);
            color: var(--teal-dark) !important;
            padding: 18px 45px;
            font-size: 1.1rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-large:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: var(--orange-brand) !important;
        }

        /* Contact Section */
        .contact-section {
            padding: 120px 5%;
            background: var(--bg-main);
            position: relative;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            background: var(--bg-white);
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(26, 68, 87, 0.05);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            z-index: 10;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--teal-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-info p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: rgba(93, 179, 213, 0.1);
            color: var(--teal-dark);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-text h4 {
            color: var(--teal-dark);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .info-text p {
            color: var(--text-muted);
            margin: 0;
            font-size: 0.95rem;
        }

        /* Form Styling */
        .contact-form {
            background: var(--bg-main);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--text-main);
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--blue-light);
            box-shadow: 0 0 0 4px rgba(93, 179, 213, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
            color: var(--bg-white);
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(26, 68, 87, 0.15);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(26, 68, 87, 0.25);
            background: linear-gradient(135deg, var(--orange-brand), var(--orange-hover));
        }

        /* Grounded Dark Footer */
        footer {
            background: #0f172a;
            color: var(--bg-white);
            padding: 80px 5% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            max-width: 1300px;
            margin: 0 auto;
            margin-bottom: 60px;
        }

        .footer-logo img {
            height: 60px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: #94a3b8;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--bg-white);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--blue-light);
        }

        .copyright {
            text-align: center;
            color: #64748b;
            font-size: 0.95rem;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 5%;
            background: var(--bg-main);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-white);
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(26, 68, 87, 0.03);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(26, 68, 87, 0.08);
            border-color: rgba(93, 179, 213, 0.2);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--teal-dark);
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--orange-brand);
        }

        .faq-question i {
            font-size: 1.1rem;
            color: var(--blue-light);
            transition: transform 0.4s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--bg-white);
            padding: 0 30px;
        }

        .faq-answer p {
            color: var(--text-muted);
            line-height: 1.7;
            padding-bottom: 25px;
            margin: 0;
        }

        /* Active State for Accordion */
        .faq-item.active .faq-question {
            color: var(--orange-brand);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--orange-brand);
        }

        .faq-item.active .faq-answer {
            max-height: 400px; /* Adjust if answers get very long */
        }

        /* =========================================
           MOBILE RESPONSIVE MEDIA QUERIES 
           ========================================= */
        
        @media (max-width: 992px) {
            /* Navbar & Hamburger Menu */
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                padding: 30px 0;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                /* Hides menu by default */
                clip-path: circle(0% at top right);
                transition: all 0.4s ease-out;
            }

            .nav-links.active {
                /* Reveals menu */
                clip-path: circle(150% at top right);
            }

            /* Hero Adjustments */
            .hero {
                flex-direction: column;
                text-align: center;
                min-height: auto; /* REMOVES GIANT GAP */
                padding-top: 150px; 
                padding-bottom: 80px;
            }
            .hero h1 { font-size: 3.2rem; }
            .hero-content { margin: 0 auto; }
            .hero-badge { margin: 0 auto 30px; }
            .hero-content div[style*="display: flex"] { justify-content: center; } 
            .hero-graphics { display: none; }
            
            /* Section Adjustments */
            .section, .contact-section { padding: 80px 5%; }
            .section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
            .section-header p { font-size: 1.05rem; }
            
            /* Contact Form Adjustments */
            .contact-wrapper { grid-template-columns: 1fr; padding: 40px 30px; gap: 40px; }
            .form-row { grid-template-columns: 1fr; }
            .contact-info h2 { font-size: 2.2rem; }
            
            /* CTA Adjustments */
            .cta-content h2 { font-size: 2.5rem; }
            .cta-section { padding: 70px 5%; }
        }

        @media (max-width: 768px) {
            /* Nav & Logo Adjustments */
            nav {
                padding: 10px 5%;
            }
            .logo img {
                height: 48px; /* SHRINKS THICK HEADER */
            }

            /* Stats Strip */
            .stat-item { width: 45%; padding: 15px 0; }
            .stat-item h3 { font-size: 2.4rem; }
            
            /* Smaller text for phones */
            .hero h1 { font-size: 2.6rem; }
            .hero p { font-size: 1rem; margin-bottom: 30px; }
            .hero {
                padding-top: 120px; /* TIGHTER FIT */
                padding-bottom: 60px; /* SMALLER GAP BELOW BUTTONS */
            }

            .section-header h2 { font-size: 2.2rem; }
            .card { padding: 40px 30px; }
            
            /* Center Service Cards on Mobile */
            .card { text-align: center; }
            .card .icon-box { margin: 0 auto 20px auto; }
            
            /* Portfolio Grid */
            .portfolio-grid { grid-template-columns: 1fr; }

            /* Footer Mobile Centering */
            .footer-grid { gap: 40px; }
            .footer-grid > div { text-align: center; }
            .footer-logo { display: flex; justify-content: center; }

            /* FAQ Mobile */
            .faq-question { font-size: 1.05rem; padding: 20px; }
            .faq-answer p { padding-bottom: 20px; font-size: 0.95rem; }
            .faq-answer { padding: 0 20px; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2.2rem; }
            .stat-item { width: 100%; border-bottom: 1px solid var(--border-light); }
            .stat-item:last-child { border-bottom: none; }
            
            .contact-wrapper { padding: 30px 20px; }
            .contact-form { padding: 30px 20px; }
            .cta-content h2 { font-size: 2rem; }
            .btn-large { padding: 15px 30px; font-size: 1rem; }
            
            .info-item { flex-direction: column; text-align: center; gap: 10px; }
        }