 :root {
            --navy: #0A2463;
            --dark-navy: #051638;
            --bright-blue: #1E3A8A;
            --electric-orange: #FF6B35;
            --vibrant-orange: #FF8C42;
            --dark-orange: #E54B20;
            --white: #FFFFFF;
            --light-gray: #F5F7FA;
            --soft-gray: #E8ECF1;
            --text-dark: #1A202C;
            --text-gray: #4A5568;
            --yellow-accent: #FDB913;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Circuit Pattern Background */
        .circuit-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, transparent 24%, rgba(10, 36, 99, 0.02) 25%, rgba(10, 36, 99, 0.02) 26%, transparent 27%, transparent 74%, rgba(10, 36, 99, 0.02) 75%, rgba(10, 36, 99, 0.02) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(10, 36, 99, 0.02) 25%, rgba(10, 36, 99, 0.02) 26%, transparent 27%, transparent 74%, rgba(10, 36, 99, 0.02) 75%, rgba(10, 36, 99, 0.02) 76%, transparent 77%, transparent);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(10, 36, 99, 0.1);
            animation: slideDown 0.6s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--electric-orange), var(--vibrant-orange));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            position: relative;
        }

        .logo-icon::before {
            content: '⚡';
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--navy);
            letter-spacing: 2px;
        }

        .logo-text span {
            color: var(--electric-orange);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 600;
            position: relative;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--electric-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--electric-orange);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-emergency {
            padding: 0.8rem 1.8rem;
            background: var(--electric-orange);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-emergency:hover {
            background: var(--dark-orange);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--navy);
            transition: all 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            margin-top: 85px;
            height: 90vh;
            background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2.5rem;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 5rem;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            animation: fadeInLeft 0.8s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.6rem 1.3rem;
            background: rgba(255, 107, 53, 0.15);
            border: 2px solid var(--electric-orange);
            border-radius: 50px;
            color: var(--electric-orange);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .hero-title .highlight {
            color: var(--electric-orange);
            position: relative;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            line-height: 1.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 2.8rem;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: var(--electric-orange);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-primary:hover {
            background: var(--dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--navy);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            border-left: 4px solid var(--electric-orange);
            padding-left: 1.2rem;
        }

        .stat-number {
            font-family: 'Exo 2', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--electric-orange);
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-image {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            animation: fadeInRight 0.8s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .work-showcase {
            position: relative;
            width: 100%;
            height: 70%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border: 5px solid rgba(255, 107, 53, 0.3);
        }

        .work-showcase img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cert-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cert-icon {
            width: 50px;
            height: 50px;
            background: var(--electric-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .cert-text {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--navy);
        }

        /* Services Section */
        .services {
            padding: 8rem 2.5rem;
            background: var(--light-gray);
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            animation: fadeInUp 0.8s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(255, 107, 53, 0.1);
            border: 2px solid var(--electric-orange);
            color: var(--electric-orange);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-description {
            font-size: 1.15rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .service-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(10, 36, 99, 0.08);
            transition: all 0.4s ease;
            border-top: 4px solid transparent;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--electric-orange), var(--yellow-accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(10, 36, 99, 0.15);
        }

        .service-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--electric-orange), var(--vibrant-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .service-card h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.6rem;
            color: var(--navy);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--electric-orange);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* About Section */
        .about {
            padding: 8rem 2.5rem;
            background: white;
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Exo 2', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 1.8rem;
            line-height: 2;
        }

        .certifications {
            margin-top: 3rem;
            display: grid;
            gap: 1.5rem;
        }

        .cert-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 8px;
            border-left: 4px solid var(--electric-orange);
        }

        .cert-item-icon {
            width: 50px;
            height: 50px;
            background: var(--electric-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .cert-item-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--navy);
        }

        .about-images {
            position: relative;
            height: 600px;
        }

        .about-img-main {
            position: absolute;
            width: 70%;
            height: 500px;
            right: 0;
            top: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(10, 36, 99, 0.2);
            border: 5px solid var(--electric-orange);
        }

        .about-img-secondary {
            position: absolute;
            width: 50%;
            height: 380px;
            left: 0;
            bottom: 0;
            border-radius: 12px;
            overflow: hidden;
            border: 5px solid white;
            box-shadow: 0 25px 60px rgba(10, 36, 99, 0.2);
        }

        .about-img-main img, .about-img-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gallery Section */
        .gallery {
            padding: 8rem 2.5rem;
            background: var(--light-gray);
        }

        .gallery-grid {
            max-width: 1600px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.4s ease;
            box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(10, 36, 99, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.95) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .gallery-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 2.5rem;
            background: var(--navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15), transparent);
        }

        .testimonial-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 12px;
            border: 2px solid rgba(255, 107, 53, 0.3);
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            border-color: var(--electric-orange);
        }

        .stars {
            color: var(--yellow-accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 2;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
        }

        .author-avatar {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--electric-orange), var(--vibrant-orange));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Exo 2', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .author-info h5 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            font-weight: 700;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 2.5rem;
            background: white;
        }

        .contact-content {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .contact-item {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--electric-orange), var(--vibrant-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .contact-details h4 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.4rem;
            color: var(--navy);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .contact-details p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .contact-details a {
            color: var(--electric-orange);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 600;
        }

        .contact-details a:hover {
            color: var(--dark-orange);
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 55px;
            height: 55px;
            background: var(--light-gray);
            border: 2px solid var(--electric-orange);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--electric-orange);
            text-decoration: none;
            font-size: 1.4rem;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--electric-orange);
            color: white;
            transform: translateY(-5px);
        }

        .map-container {
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(10, 36, 99, 0.15);
            border: 3px solid var(--electric-orange);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: var(--dark-navy);
            color: white;
            padding: 5rem 2.5rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-section h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
            color: var(--electric-orange);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 1rem;
            transition: color 0.3s;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--electric-orange);
        }

        .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: white;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .cta-buttons {
                justify-content: center;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .hero-image {
                height: 400px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 1.2rem 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 85px);
                background: white;
                flex-direction: column;
                padding: 3rem;
                transition: left 0.3s ease;
                box-shadow: 0 10px 30px rgba(10, 36, 99, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .service-grid,
            .gallery-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .about-images {
                height: 500px;
            }

            .services,
            .about,
            .gallery,
            .testimonials,
            .contact {
                padding: 6rem 1.5rem;
            }
        }
