        /* ================= ROOT ================= */
        :root {
            --primary: #0066cc;
            --secondary: #003366;
            --accent: #00d4aa;
            --dark: #0a0f1c;
            --light: #f4f7fb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Poppins, sans-serif;
            line-height: 1.6;
            color: #222;
            overflow-x: hidden;
        }


        /* ================= HEADER ================= */
        /* ================= HEADER ================= */

        header {
            width: 100%;
            background: #f5f7fa;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Compact layout */
        .nav {
            max-width: 1200px;
            margin: auto;
            padding: 8px 5%;
            /* reduced from 15px */
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Smaller Logo */
        header img {
            width: 80px;
            /* reduced from 110px */
            height: auto;
            transition: 0.3s ease;
        }

        /* Navigation */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
            /* reduced spacing */
        }

        /* Links */
        .nav-links a {
            text-decoration: none;
            font-size: 14px;
            /* reduced text size */
            font-weight: 500;
            color: #333;
            position: relative;
            transition: 0.3s ease;
        }

        /* Underline hover */
        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: var(--primary);
            transition: 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Phone button */
        .nav-links a[href^="tel"] {
            background: var(--primary);
            color: #fff;
            padding: 6px 14px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 13px;
        }

        .nav-links a[href^="tel"]:hover {
            background: var(--secondary);
        }

        /* ================= HAMBURGER ================= */

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* ================= HERO ================= */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 15, 28, .75), rgba(10, 15, 28, .75)),
                url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df");

            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
            margin: auto;
            animation: fadeUp 1s ease forwards;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: .9;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: var(--primary);
            color: white;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: .3s;
        }

        .btn:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* ================= SECTIONS ================= */
        section {
            padding: 90px 8%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 34px;
            color: var(--secondary);
        }

        /* ================= Our SERVICES ================= */

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
            transition: .3s;
        }

        .card:hover {
            transform: translateY(-8px);
        }

        .card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }


        /* ================= PLANS ================= */
        .plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .plan {
            background: var(--light);
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            transition: .3s;
        }

        .plan:hover {
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
        }

        .price {
            font-size: 32px;
            color: var(--primary);
            margin: 15px 0;
        }

        /* ================= TESTIMONIAL ================= */
        .testimonial {
            background: var(--dark);
            color: white;
            text-align: center;
        }

        .testimonial p {
            max-width: 700px;
            margin: auto;
            opacity: .9;
        }

        /* ===== TRUSTED VERIZON SECTION ===== */

        .verizon-section {
            padding: 90px 8%;
            background: linear-gradient(135deg, #003366, #0066cc);
            color: #fff;
        }

        .verizon-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .verizon-content h2 {
            font-size: 34px;
            margin-bottom: 20px;
        }

        .verizon-content p {
            margin-bottom: 18px;
            line-height: 1.7;
            opacity: .95;
        }

        .verizon-highlight {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            backdrop-filter: blur(6px);
            transition: .3s;
        }

        .verizon-highlight:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.18);
        }

        .verizon-highlight h3 {
            color: #00d4aa;
            margin-bottom: 10px;
        }

        .verizon-btn {
            display: inline-block;
            padding: 14px 30px;
            background: #00d4aa;
            color: #003366;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: .3s;
        }

        .verizon-btn:hover {
            background: #fff;
            color: #003366;
            transform: translateY(-3px);
        }

        /* Image */

        .verizon-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        /* Responsive */

        @media(max-width:768px) {
            .verizon-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* ================= CONTACT ================= */
        .contact form {
            max-width: 600px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        input,
        textarea {
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #ccc;
            font-family: Poppins;
        }

        /* ================= FOOTER ================= */
        footer {
            background: var(--secondary);
            color: white;
            text-align: center;
            padding: 25px;
        }



        /* ===== ABOUT SECTION ===== */

        .about-section {
            padding: 80px 8%;
            background: #f4f7fb;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* Image */

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            animation: float 4s ease-in-out infinite;
        }

        /* Content */

        .about-content h2 {
            font-size: 36px;
            color: #003366;
            margin-bottom: 20px;
        }

        .about-content p {
            color: #555;
            margin-bottom: 18px;
            line-height: 1.7;
        }

        /* Stats */

        .about-stats {
            display: flex;
            gap: 25px;
            margin: 25px 0;
        }

        .stat {
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: .3s;
        }

        .stat:hover {
            transform: translateY(-5px);
        }

        .stat h3 {
            color: #0066cc;
            font-size: 22px;
        }

        .stat span {
            font-size: 14px;
            color: #666;
        }

        /* Button */

        .about-btn {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(135deg, #0066cc, #003366);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: .3s;
        }

        .about-btn:hover {
            background: #00d4aa;
            transform: translateY(-2px);
        }

        /* Animation */

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive */
        /* 
        @media(max-width:768px) {
            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
        } */

        /* ================= ANIMATIONS ================= */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== GALLERY SECTION ===== */

        .gallery-section {
            padding: 90px 8%;
            background: #f4f7fb;
            text-align: center;
        }

        .gallery-section h2 {
            font-size: 34px;
            color: #003366;
            margin-bottom: 15px;
        }

        .gallery-section .gallery-quote {
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-style: italic;
            font-size: 16px;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 15px;
            position: relative;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: .4s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
            opacity: 0;
            transition: .4s;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }


        /* ===== DISCLAIMER SECTION ===== */

        .disclaimer-section {
            background: #f4f7fb;
            padding: 70px 8%;
        }

        .disclaimer-container {
            max-width: 1000px;
            margin: auto;
            background: #ffffff;
            border-left: 6px solid #0066cc;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }

        .disclaimer-container h2 {
            color: #003366;
            margin-bottom: 15px;
            font-size: 28px;
        }

        .disclaimer-container p {
            color: #555;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .disclaimer-note {
            margin-top: 15px;
            padding: 15px;
            background: rgba(0, 102, 204, 0.08);
            border-radius: 8px;
            font-size: 14px;
            color: #003366;
        }

        /* Responsive */

        /* @media(max-width:768px) {
            .gallery-section {
                padding: 70px 5%;
            }
        } */

        /* ================= MOBILE ================= */
        /* @media(max-width:768px) {
            .hero h1 {
                font-size: 34px;
            }

            .nav-links {
                display: none;
            }
        } */

        /* ==================== FOOTER ================= */
        .footer-section {
            background: #003366;
            color: #fff;
            padding: 60px 8% 30px;
            font-family: 'Poppins', sans-serif;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-about h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #00d4aa;
        }

        .footer-about p {
            font-size: 14px;
            line-height: 1.7;
            color: #cfd8dc;
        }

        .footer-links h4,
        .footer-contact h4,
        .footer-social h4 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #00d4aa;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #cfd8dc;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-links ul li a:hover {
            color: #00d4aa;
        }

        .footer-contact p {
            font-size: 14px;
            color: #cfd8dc;
            margin-bottom: 10px;
        }

        .footer-social .social-icons {
            display: flex;
            gap: 15px;
        }

        .footer-social .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #00d4aa;
            border-radius: 50%;
            color: #003366;
            font-size: 16px;
            transition: 0.3s;
        }

        .footer-social .social-icons a:hover {
            background: #fff;
            color: #00d4aa;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            font-size: 13px;
            color: #cfd8dc;
        }

        /* ===== RESPONSIVE ===== */
        /* ===================== RESPONSIVE DESIGN ===================== */

        /* Tablet */
        @media (max-width: 992px) {

            section {
                padding: 70px 6%;
            }

            .hero h1 {
                font-size: 40px;
            }

            .about-container,
            .verizon-container {
                gap: 30px;
            }
        }


        /* Mobile */
        @media (max-width: 768px) {

            /* ===== HEADER ===== */

            .hamburger {
                display: flex;
            }

            .nav {
                position: relative;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #ffffff;
                flex-direction: column;
                align-items: center;
                gap: 18px;
                padding: 20px 0;
                display: none;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            }

            .nav-links.active {
                display: flex;
            }

            header img {
                width: 65px;
            }

            /* ===== HERO ===== */

            .hero {
                height: 85vh;
                padding: 0 15px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero p {
                font-size: 15px;
            }

            /* ===== SECTIONS ===== */

            section {
                padding: 60px 5%;
            }

            .section-title h2 {
                font-size: 26px;
            }

            /* ===== ABOUT ===== */

            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }

            /* ===== VERIZON ===== */

            .verizon-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .verizon-content h2 {
                font-size: 26px;
            }

            /* ===== GALLERY ===== */

            .gallery-section {
                padding: 60px 5%;
            }

            .gallery-container {
                gap: 15px;
            }

            /* ===== FOOTER ===== */

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 25px;
            }

            .footer-social .social-icons {
                justify-content: center;
            }
        }

        