        /* ===== GLOBAL STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #1e293b;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        :root {
            --primary: #ed8909;      /* New accent color */
            --primary-dark: #d47a06;
            --primary-light: #f5a23a;
            --secondary: #0f3b7a;
            --secondary-dark: #0a2c5e;
            --accent: #2a9d8f;
            --light-bg: #f8fafc;
            --gray-bg: #f1f5f9;
            --dark-text: #0f172a;
            --border-radius: 16px;
            --transition: all 0.3s ease;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .bg-light {
            background-color: var(--light-bg);
        }
        
        .section-header {
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--primary);
            border-radius: 4px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #475569;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* ===== HEADER & NAVBAR ===== */
        .header {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            padding: 12px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo {
            height: 70px;
            width: auto;
            border-radius: 12px;
            padding: 6px 12px;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .brand-name {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-link {
            font-weight: 500;
            color: #334155;
            margin: 0 8px;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 10px 0;
        }
        
        .dropdown-item {
            padding: 8px 24px;
            transition: var(--transition);
        }
        
        .dropdown-item:hover {
            background-color: var(--light-bg);
            color: var(--primary);
            padding-left: 28px;
        }
        
        .btn-login, .btn-call {
            
            border-radius: 40px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-login {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-login:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-call {
            background: var(--primary);
            color: white;
            border: none;
        }
        
        .btn-call:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* ===== HERO ANIMATIONS ===== */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes fadeZoom {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 137, 9, 0.4); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(237, 137, 9, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 137, 9, 0); }
        }
        
        @keyframes shine {
            0% { left: -100%; }
            20%, 100% { left: 200%; }
        }
        
        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
        }
        
        .hero-image img {
            animation: fadeZoom 0.8s ease-out, float 5s ease-in-out infinite 0.8s;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .hero-image img:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-25deg);
            animation: shine 6s infinite;
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-image .btn-primary {
            animation: pulse 2s infinite;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .hero-image .btn-primary:hover {
            animation: none;
            transform: translateY(-3px);
            background: var(--primary-dark);
            box-shadow: 0 10px 20px rgba(237,137,9,0.3);
        }
        
        /* ===== HERO SECTION ===== */
        .hero-section {
            background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 100%);
            padding: 80px 0;
            overflow: hidden;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .highlight {
            color: var(--primary);
            position: relative;
        }
        
        .hero-description {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 30px;
        }
        
        .hero-features {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-item i {
            font-size: 1.3rem;
            color: var(--primary);
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-outline {
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: var(--primary);
            border: none;
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(237,137,9,0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* ===== SERVICE CARDS ===== */
        .service-card {
            background: white;
            padding: 35px 25px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .service-icon i {
            font-size: 2.5rem;
            color: white;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .service-link {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        /* ===== PLAN CARDS ===== */
        .plan-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
        }
        
        .plan-card.popular {
            border: 2px solid var(--primary);
            position: relative;
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .plan-header {
            padding: 35px 25px;
            background: var(--light-bg);
            text-align: center;
        }
        
        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .plan-price .amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
        }
        
        .plan-features {
            padding: 30px 25px;
        }
        
        .plan-features ul {
            list-style: none;
            padding: 0;
        }
        
        .plan-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .plan-features i.fa-check {
            color: #10b981;
        }
        
        .plan-features i.fa-times {
            color: #ef4444;
        }
        
        .plan-footer {
            padding: 0 25px 35px;
        }
        
        /* ===== TESTIMONIALS ===== */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 24px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            height: 100%;
        }
        
        .testimonial-rating {
            color: #fbbf24;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: #334155;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* ===== SPEED TEST ===== */
        .speedtest-section {
            background: white;
        }
        
        .speedtest-result {
            background: var(--gray-bg);
            padding: 25px;
            border-radius: 20px;
            margin: 25px 0;
        }
        
        .speed-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .speed-label {
            font-weight: 500;
        }
        
        .speed-value {
            font-weight: 700;
            color: var(--primary);
        }
        
        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 70px 0;
            color: white;
        }
        
        .cta-title {
            font-size: 2.3rem;
            font-weight: 700;
        }
        
        .btn-light {
            background: white;
            color: var(--primary);
            padding: 12px 35px;
            border-radius: 40px;
            font-weight: 600;
        }
        
        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 12px 35px;
            border-radius: 40px;
            font-weight: 600;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
        }
        
        .footer-widget h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
        }
        
        .footer-links, .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li, .contact-info li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding: 20px 0;
            text-align: center;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 999;
        }
        
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }
        
        /* ===== COVERAGE ===== */
        .coverage-card {
            background: white;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
        }
        
        .coverage-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* ===== CONTACT FORM ===== */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .form-control {
            padding: 12px 18px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-padding { padding: 50px 0; }
            .hero-title { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
            .navbar-brand .brand-name { font-size: 1.2rem; }
            .btn-call, .btn-login { padding: 6px 15px; font-size: 0.85rem; }
        }
        /* Testimonials (Updated Design) */
        .testimonials-section {
            background: linear-gradient(135deg, #fef9f9 0%, #ffffff 100%);
        }
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 30px 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
            position: relative;
            border: 1px solid rgba(230,57,70,0.1);
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .quote-icon {
            font-size: 2.5rem;
            color: rgba(230,57,70,0.2);
            position: absolute;
            top: 20px;
            right: 25px;
        }
        .testimonial-rating {
            margin-bottom: 20px;
            color: #ffb703;
        }
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #2d3e50;
            margin-bottom: 25px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }
        .author-img {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary), #ff8c8c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
        }
        .testimonial-author h5 {
            margin: 0;
            font-weight: 700;
        }
        /* Owner / Manager Section */
        .team-section {
            background: white;
        }
        .team-card {
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            text-align: center;
            padding: 30px 20px;
            border: 1px solid #f0f0f0;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 45px rgba(0,0,0,0.12);
        }
        .team-avatar {
            width: 130px;
            height: 130px;
            background: linear-gradient(145deg, var(--primary), #f4a261);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.2rem;
            color: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .team-name {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .team-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }
        .team-bio {
            color: var(--gray);
            font-size: 0.95rem;
            padding: 0 10px;
            margin-bottom: 20px;
        }
        .team-social a {
            display: inline-flex;
            width: 36px;
            height: 36px;
            background: #f1f1f1;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            color: var(--dark);
            transition: var(--transition);
        }
        .team-social a:hover {
            background: var(--primary);
            color: white;
        }