/* ===== MODERN SUBSCRIPTION CARDS STYLES ===== */

/* Package Page Container - Modern White Background */
.package-container {
    background: linear-gradient(135deg, #ffffff 0%, #fff 50%, #ffffff 100%);
    min-height: 100vh;
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.package-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#fff; 
        
    pointer-events: none;
    z-index: 0;
}

.package-container > * {
    position: relative;
    z-index: 1;
}

/* Modern Card Styles */
.modern-plan-card {
    background: white;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.modern-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.modern-plan-card.featured {
    border: 1px solid #e2e8f0;
    transform: none;
    z-index: 2;
}

.modern-plan-card.featured:hover {
    transform: translateY(-5px);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #5bcbe3;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Card Header */
.modern-card-header {
    padding: 20px 15px 10px 15px;
    text-align: center;
    background: white;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.modern-card-header.featured {
    background: white;
    color: black;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.modern-card-header.featured .plan-name {
    color: #000000;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5bcbe3;
    margin-bottom: 4px;
    line-height: 1;
}

.modern-card-header.featured .plan-price {
    color: #5bcbe3;
}

.plan-duration {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
}

.modern-card-header.featured .plan-duration {
    color: #666666;
}

/* Card Body */
.modern-card-body {
    padding: 15px;
}

.plan-description {
    font-size: 0.85rem;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Features List */
.modern-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.modern-feature-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.modern-feature-item:last-child {
    border-bottom: none;
}

.modern-feature-item:hover {
    background: #f7fafc;
    padding-left: 10px;
    border-radius: 8px;
}

.feature-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 10px;
}

.feature-text {
    font-size: 0.85rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.3;
}

/* Card Footer */
.modern-card-footer {
    padding: 0 15px 15px 15px;
}

.modern-plan-button {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #5bcbe3;
    transition: left 0.5s;
}

.modern-plan-button:hover::before {
    left: 100%;
}

.btn-select {
    background: linear-gradient(135deg, #5bcbe3, #5bcbe3);
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #5bcbe3;
    border: 2px solid #5bcbe3;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.btn-current {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Current Plan Alert */
.current-plan-alert {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 20px;
    border-radius: 16px;
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.3);
}

/* Welcome Section - Modern White Design */
.welcome-section {
    text-align: center;
    color: #2d3748;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    border-radius: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.welcome-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #4a5568;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .modern-plan-card.featured {
        transform: none;
    }
    
    .modern-plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .welcome-section h2 {
        font-size: 2.5rem;
    }
    
    .welcome-section p {
        font-size: 1.1rem;
    }
    
    .modern-plan-card {
        margin-bottom: 20px;
    }
    
    .modern-card-header,
    .modern-card-body,
    .modern-card-footer {
        padding: 25px 20px;
    }
    
    .plan-price {
        font-size: 1.6rem;
    }
    
    .popular-badge {
        padding: 10px 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .package-container {
        padding: 60px 0 40px 0;
    }
    
    .welcome-section h2 {
        font-size: 2rem;
    }
    
    .welcome-section p {
        font-size: 1rem;
    }
    
    .modern-card-header,
    .modern-card-body,
    .modern-card-footer {
        padding: 20px 15px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .modern-plan-button {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .popular-badge {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* Animation for cards on load */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-plan-card {
    animation: cardSlideUp 0.6s ease-out forwards;
}

.modern-plan-card:nth-child(1) { animation-delay: 0.1s; }
.modern-plan-card:nth-child(2) { animation-delay: 0.2s; }
.modern-plan-card:nth-child(3) { animation-delay: 0.3s; }
.modern-plan-card:nth-child(4) { animation-delay: 0.4s; }

/* Glassmorphism effect for featured card */
.modern-plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 24px;
    pointer-events: none;
}
/* Top Navigation Bar */
        .top-nav {
            background: #ffffff;
            border-bottom: 2px solid #5bcbe3;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .top-nav-left {
            display: flex;
            gap: 30px;
        }

        .top-nav-right {
            display: flex;
            gap: 30px;
            align-items: center;
            background-color: white;
        }

        .top-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .top-nav a:hover {
            color: #8e44ad;
        }

        .phone-number {
            font-weight: 600;
            color: #333;
        }

        /* Main Header */
        .main-header {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #8e44ad, #3498db);
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon::before {
            content: '✦';
            color: white;
            font-size: 20px;
            font-weight: bold;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .logo-sub {
            font-size: 12px;
            color: #666;
            margin-top: -2px;
        }

        .main-nav {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-item a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .nav-item a:hover {
            color: #8e44ad;
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-icon {
            width: 20px;
            height: 20px;
            cursor: pointer;
            fill: #666;
            transition: fill 0.3s ease;
        }

        .search-icon:hover {
            fill: #8e44ad;
        }

        .shop-plans-btn {
            background: #5bcbe3;
            color: black;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .text-truncate{
            padding-top:15px;
        }

        .shop-plans-btn:hover {
            background: #7d3c98;
        }
 /* Service Check Section */
        .service-check {
            background: #000;
            color: white;
            padding: 5px 0;
            text-align: center;
        }

        .service-check-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .location-icon {
            width: 20px;
            height: 20px;
            fill: #27ae60;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            background: #f8f9fa;
            padding: 15px 0;
        }

        .breadcrumbs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumbs-nav {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .breadcrumbs-nav a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .breadcrumbs-nav a:hover {
            color: #8e44ad;
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
            padding: 8px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-content {
            padding: 20px;
        }

        .mobile-nav-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-item:last-child {
            border-bottom: none;
        }

        .mobile-nav-item a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }

        .mobile-actions {
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Mobile Dropdown Styles */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

        .mobile-dropdown.active .mobile-arrow {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            display: none;
            background: #f8f9fa;
            padding: 15px 20px;
            margin-top: 10px;
            border-radius: 5px;
            border-left: 3px solid #5bcbe3;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        .mobile-dropdown-section {
            margin-bottom: 15px;
        }

        .mobile-dropdown-section:last-child {
            margin-bottom: 0;
        }

        .mobile-dropdown-section h4 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-dropdown-section a {
            display: block;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .mobile-dropdown-section a:hover {
            color: #5bcbe3;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .top-nav-container,
            .header-container,
            .breadcrumbs-container {
                padding: 0 15px;
            }

            .main-nav {
                gap: 25px;
            }
        }

        @media (max-width: 992px) {
            .top-nav-left,
            .top-nav-right {
                gap: 20px;
            }

            .main-nav {
                gap: 20px;
            }

            .shop-plans-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .top-nav {
                font-size: 13px;
                background: white;
            }

            .top-nav-container {
                flex-direction: column;
                gap: 10px;
                padding: 10px 15px;
            }

            .top-nav-left,
            .top-nav-right {
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
            }

            .main-header {
                position: relative;
                padding: 12px 0;
            }

            .header-container {
                justify-content: space-between;
                padding: 0 15px;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .header-actions {
                gap: 15px;
            }

            .search-icon {
                width: 18px;
                height: 18px;
            }

            .shop-plans-btn {
                display: none;
            }

            .logo-main {
                font-size: 20px;
            }

            .logo-sub {
                font-size: 11px;
            }

            .service-check {
                padding: 15px 0;
            }

            .service-check-content {
                flex-direction: column;
                gap: 8px;
                font-size: 14px;
                padding: 0 15px;
            }

            .breadcrumbs {
                padding: 12px 0;
            }

            .breadcrumbs-nav {
                font-size: 12px;
                text-align: center;
            }

           
        }

        @media (max-width: 480px) {
            .top-nav {
                font-size: 12px;
            }

            .top-nav-left,
            .top-nav-right {
                gap: 10px;
            }

            .phone-number {
                font-size: 12px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .logo-icon::before {
                font-size: 18px;
            }

            .logo-main {
                font-size: 18px;
            }

            .logo-sub {
                font-size: 10px;
            }

            .header-actions {
                gap: 10px;
            }

            .search-icon {
                width: 16px;
                height: 16px;
            }

            .shop-plans-btn {
                padding: 6px 12px;
                font-size: 11px;
            }

            .service-check-content {
                font-size: 13px;
            }

            .location-icon {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 360px) {
            .header-container {
                padding: 0 10px;
            }

            .logo-main {
                font-size: 16px;
            }

            .shop-plans-btn {
                padding: 5px 10px;
                font-size: 10px;
            }

            .service-check-content {
                font-size: 12px;
                padding: 0 10px;
            }
        }

/* Mega Dropdown */
        .mega-dropdown {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            width: 1000px;
            max-width: 90vw;
            margin-top: 20px;
            z-index: 9999;
        }

        .mega-dropdown::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid white;
        }

        .nav-item:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }

        .dropdown-content {
            display: flex;
            padding: 40px;
            gap: 40px;
        }

        /* Left Section */
        .dropdown-left {
            flex: 0 0 250px;
            border-right: 1px solid #e0e0e0;
            padding-right: 40px;
        }

        .dropdown-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .dropdown-section-link {
            color: #007bff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .dropdown-section-link:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        /* Right Section */
        .dropdown-right {
            flex: 1;
        }

        .dropdown-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .dropdown-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .service-column h3 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

       .service-column ul {
    list-style: none;
    padding: 0;        /* Add this to remove default padding */
    margin: 0;         /* Add this to remove default margin */
}

.service-column li {
    margin-bottom: 10px;
    padding: 0;        /* Add this to ensure no padding on li */
    margin-left: 0;    /* Add this to ensure no left margin */
}

        .service-column a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .service-column a:hover {
            color: #007bff;
        }

        /* Contact Info */
        .nav-contact {
            position: absolute;
            right: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-number {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .phone-number:hover {
            color: #007bff;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .mega-dropdown {
                width: 800px;
            }

            .dropdown-content {
                padding: 30px;
            }

            .dropdown-title {
                font-size: 26px;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                flex-wrap: wrap;
                height: auto;
                padding: 20px;
            }

            .nav-item {
                margin: 10px;
            }

            .mega-dropdown {
                width: 95vw;
                position: fixed;
                left: 2.5vw;
                transform: none;
            }

            .dropdown-content {
                flex-direction: column;
                padding: 20px;
            }

            .dropdown-left {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
                padding-right: 0;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

            .nav-contact {
                position: static;
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
        }
        /* Footer Styles */
        .footer {
            background: #000;
            color: white;
            padding: 30px 0 25px 0;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Email Signup Section */
        .email-signup {
            text-align: center;
            margin-bottom: 25px;
        }

        .email-signup-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 14px;
            color: #e0e0e0;
        }

        .email-icon {
            width: 16px;
            height: 16px;
            fill: #e0e0e0;
        }

        /* Blue Divider Lines */
        .divider {
            height: 2px;
            background: #3498db;
            margin: 20px 0;
            width: 100%;
        }

        /* Footer Links */
        .footer-links {
            text-align: center;
            margin: 25px 0;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }
      
        .ratte{
            margin-top:80px;
        }
        .footer-nav a {
            color: #e0e0e0 !important;
            text-decoration: none;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .footer-nav a:hover {
            color: #3498db;
        }

        .footer-separator {
            color: #888;
            font-weight: normal;
            margin: 0 4px;
        }

        .privacy-choice {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .privacy-icon {
            width: 14px;
            height: 14px;
            background: #3498db;
            border-radius: 2px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .privacy-icon::before {
            content: "✓";
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        /* Social Media Icons */
        .social-media {
            text-align: center;
            margin-top: 25px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: #888;
            cursor: pointer;
            transition: fill 0.3s ease;
        }

        .social-icon:hover {
            fill: #3498db;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 25px 0 20px 0;
            }

            .footer-container {
                padding: 0 15px;
            }

            .email-signup-content {
                flex-direction: column;
                gap: 8px;
                font-size: 13px;
            }

            .footer-nav {
                flex-direction: column;
                gap: 15px;
                line-height: 1.8;
            }

            .footer-nav a {
                display: block;
                padding: 5px 0;
            }

            .footer-separator {
                display: none;
            }

            .social-icons {
                gap: 25px;
            }

            .social-icon {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 20px 0 15px 0;
            }

            .email-signup-content {
                font-size: 12px;
                padding: 0 10px;
            }

            .footer-nav {
                font-size: 12px;
                gap: 12px;
            }

            .social-icons {
                gap: 20px;
            }

            .social-icon {
                width: 20px;
                height: 20px;
            }

            .divider {
                margin: 15px 0;
            }
        }

        @media (max-width: 360px) {
            .footer-container {
                padding: 0 10px;
            }

            .email-signup-content {
                font-size: 11px;
            }

            .footer-nav {
                font-size: 11px;
                gap: 10px;
            }
        }

        /* Desktop-specific responsive adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .footer-nav {
                gap: 6px;
            }

            .footer-separator {
                margin: 0 3px;
            }
        }

        /* Feedback Button Styles */
.feedback-button {
    position: fixed;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: black;
    color: white;
    border: none;
    padding: 18px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    writing-mode: vertical-rl;
    
}

.feedback-button:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
}

/* Modal Styles */
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.feedback-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-modal-header {
    background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
    color: black;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.feedback-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.feedback-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.feedback-close:hover {
    opacity: 0.7;
}

.feedback-modal-body {
    padding: 25px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 8px;
    border: 2px solid #1866b4;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rating-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star-rating {
    display: flex;
    gap: 5px;
    align-items: center;
}

.star {
    font-size: 24px;
    color: #ddb035;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
}

.submit-btn {
    background: linear-gradient(135deg, #5bcbe3 0%, #5bcbe3 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px;
    color: #28a745;
    font-weight: 600;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Responsive Design for Feedback */
@media (max-width: 768px) {
    .feedback-button {
        right: 20px;
        padding: 12px 8px;
        font-size: 12px;
    }

    .feedback-modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .feedback-modal-header,
    .feedback-modal-body {
        padding: 20px;
    }
}

/* Feedback Form Scrollbar Styles */
.feedback-modal-body {
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #5bcbe3 #f1f1f1;
}

.feedback-modal-body::-webkit-scrollbar {
    width: 8px;
}

.feedback-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.feedback-modal-body::-webkit-scrollbar-thumb {
    background: #5bcbe3;
    border-radius: 4px;
}

.feedback-modal-body::-webkit-scrollbar-thumb:hover {
    background: #4a9cc7;
}

.feedback-form {
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #5bcbe3 #f1f1f1;
}

.feedback-form::-webkit-scrollbar {
    width: 8px;
}

.feedback-form::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.feedback-form::-webkit-scrollbar-thumb {
    background: #5bcbe3;
    border-radius: 4px;
}

.feedback-form::-webkit-scrollbar-thumb:hover {
    background: #4a9cc7;
}
 .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 50vh;
            margin-bottom: 70px;
        }

          @media (max-width: 968px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                gap: 40px;
               
            }
        }
        
          .container {
             margin: 0 auto;
             width: 1200px;
            background: white;
            padding: 40px 20px 60px;
            border-radius: 8px;
            
        }
.hero-section {
    display: flex;
    justify-content: center;
    padding: 50px 15px;  /* adjust padding as needed */
}

.starlink-container {
    max-width: 1200px;
    width: 100%;
}
 .description {
            font-size: 13px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
            
            font-weight: 400;
        }
        @media (max-width: 768px) {
            .description{
                padding: 0 2px;
                text-align:justify;
            }
            }
            .image-container{
                width: 400px;
            }
            .xola{
                width: 350px;
                height: 350px;
            }
             /* Toggle Container */
        .toggle-container {
            display: flex;
            gap: 15px;
            margin-bottom: 35px;
            flex-wrap: nowrap;
            justify-content: center;
        }

        /* Toggle Buttons */
        .toggle-button {
            flex: 1;
            min-width: 150px;
            max-width: 250px;
            padding: 15px 20px;
            background-color: #f5f5f5;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            white-space: nowrap;
        }

        .toggle-button:hover {
            background-color: #ebebeb;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(41, 149, 221, 0.08);
        }

        .toggle-button.active {
            background-color: #5bcbe3;
            color: white;
            border-color: #5bcbe3;
        }

        .toggle-button .icon {
            font-size: 24px;
        }

        /* Panels Wrapper */
        .panels-wrapper {
            position: relative;
            min-height: 400px;
        }

        /* Info Panels */
        .info-panel {
            display: none !important;
            visibility: hidden;
            opacity: 0;
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
        }

        .info-panel.active {
            display: flex !important;
            visibility: visible;
            opacity: 1;
            position: relative;
            justify-content: center;
            animation: fadeIn 0.3s ease-in-out;
        }

        /* Ensure panels are hidden by default */
        #residential:not(.active),
        #business:not(.active) {
            display: none !important;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Info Header */
        .info-header {
            display: flex;
            gap: 30px;
            align-items: center;
            background-color: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            max-width: 1000px;
            width: 100%;
        }

        /* Image Container */
        .image-info {
            flex: 0 0 auto;
            width: 250px;
        }

        .image-info img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-info img:hover {
            transform: scale(1.02);
        }

        /* Text Content */
        .text-info {
            flex: 1;
        }

        .info-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #2c3e50;
            line-height: 1.3;
        }

        .info-title h2{
            font-size: 14px;
        }

        .info-subtitle {
            
            color: #555;
            margin: 0;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }

            .toggle-container {
                gap: 10px;
                margin-bottom: 25px;
                justify-content: center;
            }

            .toggle-button {
                flex: 1;
                min-width: 0;
                max-width: 180px;
                padding: 12px 10px;
                font-size: 14px;
                border-radius: 10px;
            }

            .toggle-button .icon {
                font-size: 20px;
            }

            .panels-wrapper {
                min-height: 300px;
            }

            .info-panel {
                width: 100%;
            }

            .info-panel.active {
                display: flex !important;
                justify-content: center;
            }

            .info-header {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
                gap: 25px;
                max-width: 500px;
                margin: 0 auto;
                background-color: white;
                border-radius: 16px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            }

            .image-info {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }

            .image-info img {
                border-radius: 12px;
            }

            .info-title {
                font-size: 18px;
                margin-bottom: 15px;
                font-weight: 700;
            }

            .info-subtitle {
                font-size: 15px;
                line-height: 1.7;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .toggle-button {
                padding: 10px 8px;
                font-size: 13px;
                gap: 6px;
            }

            .toggle-button .icon {
                font-size: 18px;
            }

            .info-header {
                padding: 20px 15px;
                gap: 20px;
            }

            .image-info {
                max-width: 240px;
            }

            .info-title {
                font-size: 20px;
            }

            .info-subtitle {
                font-size: 14px;
            }

            .panels-wrapper {
                min-height: 320px;
            }
        }

        /* Extra Small Mobile Styles */
        @media (max-width: 360px) {
            .toggle-button {
                padding: 10px 6px;
                font-size: 12px;
            }

            .toggle-button .icon {
                display: none;
            }

            .panels-wrapper {
                min-height: 280px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .info-header {
                gap: 30px;
                max-width: 900px;
            }

            .image-info {
                width: 220px;
            }

            .info-title {
                font-size: 26px;
            }

            .info-subtitle {
                font-size: 16px;
            }

            .panels-wrapper {
                min-height: 350px;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1200px) {
            .container {
                padding: 40px 20px;
            }

            .toggle-container {
                margin-bottom: 40px;
            }

            .info-header {
                padding: 45px;
                gap: 45px;
            }

            .image-info {
                width: 320px;
            }

            .info-title {
                font-size: 32px;
            }

            .info-subtitle {
                font-size: 14px;
                line-height: 1.9;
            }
        }

        /* Print Styles */
        @media print {
            .toggle-container {
                display: none;
            }

            .panels-wrapper {
                min-height: auto;
            }

            .info-panel {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: relative !important;
                page-break-inside: avoid;
                margin-bottom: 30px;
            }

            .info-header {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
        .tret{
            font-size: 18px;
        }

        .main-heading1{
     font-size: 30px;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #000;
            letter-spacing: -1px;
            font-family: 'montserrat';
            text-align: left;

}
 @media (max-width: 768px) {
    .main-heading1{
        font-size: 18px;
        text-align: center;
    }
 }

   .main-heading {
            font-size: 30px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #000;
            letter-spacing: -1px;
            font-family: 'montserrat';
        }
 
 .heru-section{
    margin: 0 auto;
    width:850px;
    
 }
 @media (max-width: 768px) {
    .heru-section{
width: 100%;
padding:0 20px;
    }

}

 .spacer-div{
    padding-top: 20px;

}
.spacer-div-1{
    margin-top: 80px;
}
.tawa{
    height: 40px;
    width: 40px;
}

.section-space{
    padding-top:60px;
    padding-bottom: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.15);

}
/* Remove underline from all links */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none !important;
    color: #000;
}
