* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

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

/* Top Header */
.top-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.top-header .container {
    display: flex;
    flex-direction: row;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-nav-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

/* Desktop - Show menu next to logo, hide hamburger */
@media (min-width: 769px) {
    .logo-nav-section .main-nav {
        display: block !important;
    }
    
    .logo-nav-section .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 30px !important;
        align-items: center !important;
    }
    
    .logo-nav-section .nav-menu::before {
        display: none !important;
    }
    
    .logo-nav-section .nav-menu li {
        width: auto !important;
        border-bottom: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .logo-nav-section .nav-menu a {
        padding: 0 !important;
        width: auto !important;
        display: flex !important;
        font-size: 14px !important;
        border-bottom: none !important;
    }
    
    .logo-nav-section .nav-menu a:hover {
        padding-left: 0 !important;
        color: #ff6600 !important;
    }
    
    .hamburger-menu {
        display: none !important;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    height: 50px;
    flex-shrink: 0;
}

.logo-section a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-image {
    height: 100%;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

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

.btn-connection {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-connection:hover {
    background: #e55a00;
}

.customer-login {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.customer-login:hover {
    color: #ff6600;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    pointer-events: auto;
}

.hamburger-menu:hover {
    color: #ff6600;
    background: #f8f9fa;
}

.hamburger-menu:active {
    transform: scale(0.95);
}

.hamburger-menu i {
    font-size: 22px;
    pointer-events: none;
}

/* Navigation Bar */
.main-nav {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
}

.logo-nav-section .main-nav {
    border: none;
    padding: 0;
    margin: 0;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

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

.nav-menu a:hover {
    color: #ff6600;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
}

.location-selector {
    display: flex;
    align-items: center;
}

.location-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.location-btn:hover {
    background: #e8e8e8;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 450px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.slider-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.8);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* About Section */
.about-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

.about-heading {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-text {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Power Factors Section */
.power-factors-section {
    background: #ff6600;
    padding: 80px 20px;
    text-align: center;
}

.power-factors-heading {
    font-size: 42px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.power-factors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.power-factor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.power-factor-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.power-factor-icon i {
    font-size: 50px;
    color: #0066cc;
}

.power-factor-text {
    font-size: 16px;
    color: white;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

/* Broadband Plans Section */
.broadband-plans-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.broadband-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6600, #0066cc, #ff6600);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.plans-heading {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
}

.location-selector-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.location-label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.location-dropdown {
    border: 2px solid #0066cc;
    padding: 12px 45px 12px 20px;
    font-size: 16px;
    color: #000;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    font-weight: 600;
    transition: all 0.3s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230066cc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.location-dropdown:hover {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.tagline {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.cable-cutter-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 20px;
    position: relative;
}

.cable-cutter-icon {
    font-size: 90px;
    color: #ff6600;
    transform: rotate(-45deg);
    filter: drop-shadow(0 5px 15px rgba(255, 102, 0, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.1); }
}

.cable-cutter-text {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 102, 204, 0.2);
}

.cable-cutter-text sup {
    font-size: 24px;
    vertical-align: super;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid transparent;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #0066cc, #ff6600);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-top {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blue-bg {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    position: relative;
}

.plan-upto {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-speed {
    font-size: 56px;
    font-weight: 900;
    color: #ffd700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.plan-middle {
    padding: 35px 20px;
    text-align: center;
    position: relative;
}

.orange-bg {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    position: relative;
}

.plan-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.plan-icons i {
    font-size: 38px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.plus-icon {
    font-size: 28px;
    color: white;
    font-weight: 900;
    margin: 0 8px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ott-icon-box {
    width: 50px;
    height: 50px;
    background: white;
    color: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.ott-icon-box:hover {
    transform: scale(1.1) rotate(5deg);
}

.plan-feature-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.plan-bottom {
    padding: 40px 25px;
    background: white;
    position: relative;
}

.plan-pricing {
    margin-bottom: 30px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    border-bottom: 2px dashed #e0e0e0;
    transition: all 0.3s;
    border-radius: 8px;
    margin-bottom: 8px;
}

.pricing-item:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-bottom-color: #ff6600;
    transform: translateX(5px);
}

.pricing-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pricing-duration {
    font-size: 17px;
    color: #333;
    font-weight: 600;
}

.pricing-amount {
    font-size: 20px;
    color: #ff6600;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-ott {
    margin-bottom: 20px;
}

.ott-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.ott-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.ott-logo-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.ott-logo-item:hover {
    transform: scale(1.1);
}

.ott-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.plan-channels {
    margin-bottom: 25px;
}

.plan-channels p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.buy-now-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-now-btn:hover::before {
    width: 300px;
    height: 300px;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #e55a00 0%, #ff6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

.buy-now-btn:active {
    transform: translateY(0);
}

/* WIFI ONLY Section */
.wifi-only-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.wifi-only-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #ff6600, #0066cc);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.wifi-only-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wifi-header-icon {
    font-size: 40px;
    color: #ff6600;
    filter: drop-shadow(0 3px 10px rgba(255, 102, 0, 0.3));
    animation: wifiPulse 2s ease-in-out infinite;
}

@keyframes wifiPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.wifi-only-heading {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.wifi-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.wifi-plan-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid transparent;
}

.wifi-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #0066cc, #ff6600);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.wifi-plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.wifi-plan-card:hover::before {
    opacity: 1;
}

.wifi-plan-top {
    padding: 40px 20px;
    text-align: center;
    border-radius: 25px 25px 0 0;
    position: relative;
    overflow: hidden;
}

.wifi-plan-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.wifi-plan-upto {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wifi-plan-speed {
    font-size: 56px;
    font-weight: 900;
    color: #ffd700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.wifi-plan-middle {
    padding: 35px 20px;
    text-align: center;
    margin-top: -10px;
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 1;
}

.wifi-plan-icon {
    font-size: 50px;
    color: white;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.wifi-plan-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wifi-plan-bottom {
    padding: 40px 25px;
    border-radius: 0 0 25px 25px;
    position: relative;
}

.wifi-plan-pricing {
    margin-bottom: 30px;
}

.wifi-pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    border-bottom: 2px dashed rgba(255,255,255,0.4);
    color: white;
    transition: all 0.3s;
    border-radius: 8px;
    margin-bottom: 8px;
}

.wifi-pricing-item:hover {
    background: rgba(255,255,255,0.1);
    border-bottom-color: rgba(255,255,255,0.6);
    transform: translateX(5px);
}

.wifi-pricing-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wifi-pricing-duration {
    font-size: 17px;
    color: white;
    font-weight: 600;
}

.wifi-pricing-amount {
    font-size: 20px;
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wifi-buy-now-btn {
    width: 100%;
    background: rgba(255,255,255,0.25);
    color: white;
    border: 3px solid white;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255,255,255,0.2);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.wifi-buy-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wifi-buy-now-btn:hover::before {
    width: 300px;
    height: 300px;
}

.wifi-buy-now-btn:hover {
    background: white;
    color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
    border-color: white;
}

.wifi-buy-now-btn:active {
    transform: translateY(0);
}

/* We Always Deliver Section */
.deliver-section {
    background: white;
    padding: 80px 20px;
}

.deliver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.deliver-image,
.empathy-image {
    width: 100%;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.deliver-text,
.empathy-text {
    padding: 20px;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
}

.section-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* We Practice Empathy Section */
.empathy-section {
    background: white;
    padding: 80px 20px;
}

.empathy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Network Coverage & App Section */
.network-app-section {
    background: #ff6600;
    padding: 80px 20px;
}

.network-coverage {
    text-align: center;
    margin-bottom: 60px;
}

.network-heading {
    font-size: 42px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.network-subtitle {
    font-size: 16px;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.network-location-select {
    background: white;
    border: none;
    padding: 15px 50px 15px 20px;
    font-size: 16px;
    color: #000;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.app-promotion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.app-content {
    color: white;
}

.app-title {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    color: white;
}

.app-features span {
    display: block;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-store-btn,
.google-play-btn {
    background: white;
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.app-store-btn i,
.google-play-btn i {
    font-size: 24px;
}

/* Why Choose Minetworks Section */
.why-choose-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6600, #0066cc, #ff6600);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.why-choose-heading {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #0066cc, #ff6600);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.why-choose-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6600 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.3s;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.why-choose-icon i {
    font-size: 45px;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.why-choose-title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.why-choose-item:hover .why-choose-title {
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.why-choose-item:hover .why-choose-text {
    color: #555;
}

/* User Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 20px;
}

.testimonials-heading {
    font-size: 36px;
    font-weight: bold;
    color: #0066cc;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #0066cc;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    margin: 0;
}

/* Blogs Section */
.blogs-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #ff6600, #0066cc);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.blogs-heading {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.blogs-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #0066cc, #ff6600);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.blog-card:hover .blog-img {
    transform: scale(1.15) rotate(2deg);
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: white;
}

.blog-date {
    font-size: 12px;
    color: #ff6600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 20px;
    width: fit-content;
}

.blog-title {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 60px;
    transition: all 0.3s;
}

.blog-card:hover .blog-title {
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    transition: color 0.3s;
}

.blog-card:hover .blog-excerpt {
    color: #555;
}

.read-more-btn {
    color: #ff6600;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 25px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #0066cc 100%);
    transition: left 0.3s;
    z-index: -1;
}

.read-more-btn:hover {
    gap: 15px;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.read-more-btn:hover::before {
    left: 0;
}

.read-more-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Services Section */
.services-hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 50%, #ff6600 100%);
    padding: 120px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.15)"/></svg>');
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.services-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(248, 249, 250, 0.3));
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-heading {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse 4s ease-in-out infinite;
}

.decoration-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.decoration-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.services-section {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #ff6600, #0066cc);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.services-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-section-title {
    font-size: 42px;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #ff6600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-inner {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.service-image-side {
    flex: 0 0 300px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-content-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 50px;
}

.service-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-icon-wrapper {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.service-icon-wrapper i {
    font-size: 64px;
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
}

.service-card:hover .service-icon-wrapper i {
    -webkit-text-fill-color: white;
    background: transparent;
    transform: scale(1.1);
}

.service-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    line-height: 1.3;
}

.service-card:hover .service-title {
    background: linear-gradient(135deg, #0066cc 0%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-card:hover .service-description {
    color: #555;
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
    transition: all 0.3s;
}

.service-read-more i {
    transition: transform 0.3s;
}

.service-card:hover .service-read-more {
    color: #ff6600;
}

.service-card:hover .service-read-more i {
    transform: translateX(5px);
}

.no-services-message {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 18px;
}

.no-services-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-services-icon i {
    opacity: 0.5;
}

/* Service Detail Page */
.service-detail-hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 50%, #ff6600 100%);
    padding: 100px 20px 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s;
}

.service-back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.service-detail-header {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.service-detail-icon i {
    font-size: 48px;
    color: white;
}

.service-detail-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-detail-subtitle {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.service-detail-section {
    background: #ffffff;
    padding: 80px 20px;
    min-height: 60vh;
}

.service-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-image-wrapper {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.service-detail-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
    color: #0066cc;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}

.service-detail-content h2 {
    font-size: 32px;
}

.service-detail-content h3 {
    font-size: 26px;
}

.service-detail-content h4 {
    font-size: 22px;
}

.service-detail-content p {
    margin-bottom: 25px;
}

.service-detail-content ul,
.service-detail-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.service-detail-content li {
    margin-bottom: 12px;
}

.service-detail-content strong {
    color: #0066cc;
    font-weight: 700;
}

.service-detail-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.service-detail-content a:hover {
    border-bottom-color: #ff6600;
    color: #ff6600;
}

/* Fiber Hero Section */
.fiber-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.fiber-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.fiber-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fiber-text-content {
    padding: 40px 20px;
}

.fiber-main-heading {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fiber-heading-orange {
    color: #ff6600;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fiber-heading-gray {
    color: #333;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fiber-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.fiber-image-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fiber-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.fiber-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Fiber Features Section */
.fiber-features-section {
    background: #ff6600;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.fiber-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fiber-feature-item {
    background: transparent;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.fiber-feature-item:hover {
    transform: translateY(-5px);
}

.fiber-feature-icon {
    width: 100px;
    height: 100px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.fiber-feature-icon:hover {
    transform: scale(1.1);
}

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

.fiber-feature-icon-square {
    border-radius: 15px;
    background: #0066cc;
}

.fiber-feature-icon-square span {
    font-size: 32px;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
}

.fiber-feature-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fiber-feature-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-align: justify;
}

/* What Does Minetworks Fibernet Do Section */
.fibernet-do-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.fibernet-do-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 600px;
    align-items: stretch;
}

.fibernet-do-text {
    background: white;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fibernet-do-heading {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fibernet-heading-blue {
    color: #0066cc;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fibernet-heading-orange {
    color: #ff6600;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fibernet-do-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.fibernet-do-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: #0066cc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fibernet-do-image::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 150%;
    height: 160%;
    background: 
        radial-gradient(ellipse 60% 25% at 75% 20%, white 0%, white 18%, transparent 18%),
        radial-gradient(ellipse 50% 20% at 80% 45%, white 0%, white 15%, transparent 15%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 1;
}

.fibernet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
}

/* Contact Us Section */
.contact-us-section {
    background: #f8f9fa;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.contact-stripe-1,
.contact-stripe-2,
.contact-stripe-3 {
    position: absolute;
    background: #ff6600;
    z-index: 1;
}

.contact-stripe-1 {
    width: 250px;
    height: 35px;
    transform: rotate(45deg);
    top: 30px;
    left: 30px;
}

.contact-stripe-2 {
    width: 250px;
    height: 35px;
    transform: rotate(45deg);
    top: 85px;
    left: 30px;
}

.contact-stripe-3 {
    width: 250px;
    height: 35px;
    transform: rotate(45deg);
    top: 140px;
    left: 30px;
}

.contact-us-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-us-heading {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.contact-intro-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hashtag {
    font-size: 18px;
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-support-icon {
    width: 100px;
    height: 100px;
    border: 3px solid #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    background: white;
}

.contact-support-icon i {
    font-size: 40px;
    color: #ff6600;
    position: relative;
    z-index: 2;
}

.contact-icon-bubbles {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.bubble {
    width: 25px;
    height: 25px;
    border: 2px solid #ff6600;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ff6600;
    font-weight: bold;
}

.bubble-1 {
    position: relative;
    left: -8px;
}

.bubble-2 {
    position: relative;
    right: -8px;
    background: transparent;
}

.contact-ladder-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 24px;
    color: #ff6600;
    transform: rotate(-45deg);
    z-index: 3;
}

.contact-support-title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-email {
    font-size: 16px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Our Core Values Section */
.core-values-section {
    background: #f8f9fa;
    padding: 100px 20px;
    position: relative;
}

.core-values-heading {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.core-values-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.core-values-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 60px;
}

.core-value-card {
    background: #f5f5dc;
    border-top: 5px solid #ff6600;
    border-radius: 15px 15px 10px 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.core-value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-value-icon i {
    font-size: 60px;
    color: #000;
    position: relative;
    z-index: 2;
}

.growing-icon {
    position: relative;
}

.growing-icon i.fa-seedling {
    color: #000;
    position: relative;
    z-index: 2;
    filter: drop-shadow(2px 2px 0px #ff6600);
}

.icon-soil {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: #000;
    border-radius: 6px;
    z-index: 1;
}

.icon-dots {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.icon-dots .dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.icon-dots .dot:nth-child(2) {
    position: relative;
    top: 5px;
    left: -5px;
}

.icon-dots .dot:nth-child(3) {
    position: relative;
    top: 5px;
    right: -5px;
}

.empathy-icon {
    position: relative;
}

.empathy-icon i.fa-hands {
    color: #000;
    position: relative;
    z-index: 2;
}

.icon-heart-circle {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.icon-heart-circle i {
    font-size: 22px;
    color: white;
}

.integrity-icon {
    position: relative;
}

.integrity-icon i.fa-user {
    color: #000;
    position: relative;
    z-index: 2;
}

.icon-shield {
    position: absolute;
    right: 5px;
    top: 15px;
    width: 45px;
    height: 45px;
    background: #ff6600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.icon-shield i {
    font-size: 22px;
    color: white;
}


.core-value-title {
    font-size: 20px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-value-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.core-values-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ff6600;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.core-values-nav:hover {
    background: #e55a00;
    transform: translateY(-50%) scale(1.1);
}

.core-values-nav.prev {
    left: 0;
}

.core-values-nav.next {
    right: 0;
}

/* Help Section */
.help-section {
    background: #ffffff;
    padding: 100px 20px;
    min-height: 80vh;
}

.help-heading {
    font-size: 20px;
    font-weight: 900;
    color: #003366;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background: #003366;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.2);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.3);
}

.help-card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-card-icon i {
    font-size: 50px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.help-icon-overlay {
    position: absolute;
    bottom: -8px;
    right: -8px;
    font-size: 18px;
    color: #ffffff;
    z-index: 3;
    background: #003366;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.signal-icon {
    position: relative;
}

.signal-icon i.fa-signal {
    position: relative;
    z-index: 2;
}

.help-icon-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #ffffff;
    z-index: 3;
    font-weight: bold;
}

.help-card-text {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Privacy Policy Section */
.privacy-policy-section {
    background: #f8f9fa;
    padding: 100px 20px;
    min-height: 80vh;
}

.privacy-policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-policy-heading {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-section-heading {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section-heading:first-of-type {
    margin-top: 0;
}

.privacy-policy-text {
    margin-bottom: 30px;
}

.privacy-policy-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-policy-text p:last-child {
    margin-bottom: 0;
}

/* Legal Section */
.legal-section {
    background: #f8f9fa;
    padding: 100px 20px;
    min-height: 80vh;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-heading {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-intro {
    margin-bottom: 40px;
}

.legal-intro p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-notice {
    background: #fff3cd;
    border-left: 4px solid #ff6600;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 16px;
    color: #856404;
}

.legal-section-heading {
    font-size: 18px;
    font-weight: 800;
    color: #0066cc;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.legal-section-heading:first-of-type {
    margin-top: 0;
}

.legal-text {
    margin-bottom: 30px;
}

.legal-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}

.legal-text a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.legal-text a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Terms & Conditions Section */
.terms-section {
    background: #f8f9fa;
    padding: 100px 20px;
    min-height: 80vh;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-heading {
    font-size: 20px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-intro {
    margin-bottom: 40px;
}

.terms-notice {
    background: #fff3cd;
    border-left: 4px solid #ff6600;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 16px;
    color: #856404;
    text-align: center;
}

.terms-section-heading {
    font-size: 18px;
    font-weight: 800;
    color: #0066cc;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.terms-sub-heading {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.terms-text {
    margin-bottom: 30px;
}

.terms-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.terms-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.terms-text li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}

.terms-text a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
     
}

.footer-tagline {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.footer-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6600;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #ff6600;
    width: 20px;
    text-align: center;
}

.app-download-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn-footer {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s;
}

.app-btn-footer:hover {
    background: #ff6600;
}

.app-btn-footer i {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff6600;
}

.footer-bottom-links span {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .top-header {
        padding: 15px 0 !important;
    }
    
    .top-header .container {
        flex-direction: row !important;
    }
    
    .header-content {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .logo-nav-section {
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    .logo-section {
        flex-shrink: 0 !important;
    }
    
    .logo-nav-section .main-nav {
        display: none !important; /* Hide menu on mobile - hamburger will show it */
    }
    
    .main-nav {
        position: relative;
    }
    
    /* Mobile menu styling - shown via hamburger */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 80px 20px 20px !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0 !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transition: right 0.3s ease !important;
        -webkit-overflow-scrolling: touch !important;
        transform: none !important;
    }
    
    .nav-menu.mobile-active {
        right: 0 !important;
        display: flex !important;
    }
    
    .nav-menu::before {
        content: 'Menu' !important;
        position: absolute !important;
        top: 20px !important;
        left: 20px !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #ff6600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        z-index: 1 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu a {
        padding: 15px 0 !important;
        width: 100% !important;
        display: block !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #333 !important;
        -webkit-tap-highlight-color: rgba(255, 102, 0, 0.2) !important;
        touch-action: manipulation !important;
        text-decoration: none !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: #ff6600 !important;
        padding-left: 10px !important;
        transition: all 0.3s ease !important;
    }
    
    /* Body overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes slideIn {
        from {
            right: -100%;
        }
        to {
            right: 0;
        }
    }
    
    .nav-menu.mobile-active {
        animation: slideIn 0.3s ease;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .power-factors-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .power-factors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .power-factor-icon {
        width: 100px;
        height: 100px;
    }
    
    .power-factor-icon i {
        font-size: 40px;
    }
    
    .power-factor-text {
        font-size: 14px;
    }
    
    .plans-heading {
        font-size: 28px;
    }
    
    .cable-cutter-text {
        font-size: 36px;
    }
    
    .cable-cutter-icon {
        font-size: 60px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plan-speed {
        font-size: 36px;
    }
    
    .wifi-only-heading {
        font-size: 28px;
    }
    
    .wifi-plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wifi-plan-speed {
        font-size: 36px;
    }
    
    .deliver-content,
    .empathy-content,
    .fiber-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fiber-hero-section {
        padding: 80px 20px;
        min-height: auto;
    }
    
    .fiber-main-heading {
        font-size: 28px;
    }
    
    .fiber-description {
        font-size: 16px;
    }
    
    .fiber-features-section {
        padding: 60px 20px;
    }
    
    .fiber-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fiber-feature-item {
        padding: 40px 25px;
    }
    
    .fiber-feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .fiber-feature-icon i {
        font-size: 40px;
    }
    
    .fiber-feature-icon-square span {
        font-size: 28px;
    }
    
    .fiber-feature-title {
        font-size: 20px;
    }
    
    .fiber-feature-text {
        font-size: 16px;
    }
    
    .fibernet-do-content {
        grid-template-columns: 1fr;
    }
    
    .fibernet-do-text {
        padding: 60px 30px;
    }
    
    .fibernet-do-heading {
        font-size: 24px;
    }
    
    .fibernet-do-description {
        font-size: 16px;
    }
    
    .fibernet-do-image {
        min-height: 400px;
    }
    
    .contact-support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-us-heading {
        font-size: 18px;
    }
    
    .contact-hashtag {
        font-size: 16px;
    }
    
    .contact-support-icon {
        width: 90px;
        height: 90px;
    }
    
    .contact-support-icon i {
        font-size: 35px;
    }
    
    .contact-support-title {
        font-size: 16px;
    }
    
    .contact-email {
        font-size: 15px;
    }
    
    .core-values-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 50px;
    }
    
    .core-values-heading {
        font-size: 18px;
    }
    
    .core-value-icon {
        width: 100px;
        height: 100px;
    }
    
    .core-value-icon i {
        font-size: 50px;
    }
    
    .core-value-title {
        font-size: 18px;
    }
    
    .core-value-description {
        font-size: 15px;
    }
    
    .core-values-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .help-heading {
        font-size: 18px;
    }
    
    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .help-card {
        padding: 40px 25px;
    }
    
    .help-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .help-card-icon i {
        font-size: 45px;
    }
    
    .help-card-text {
        font-size: 15px;
    }
    
    .privacy-policy-heading {
        font-size: 18px;
    }
    
    .privacy-section-heading {
        font-size: 16px;
    }
    
    .privacy-policy-text p {
        font-size: 15px;
    }
    
    .legal-heading,
    .terms-heading {
        font-size: 18px;
    }
    
    .legal-section-heading,
    .terms-section-heading {
        font-size: 16px;
    }
    
    .terms-sub-heading {
        font-size: 15px;
    }
    
    .legal-text p,
    .legal-text li,
    .terms-text p,
    .terms-text li {
        font-size: 15px;
    }
    
    .legal-notice,
    .terms-notice {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .network-heading {
        font-size: 28px;
    }
    
    .app-promotion {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .app-title {
        font-size: 28px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-choose-heading {
        font-size: 36px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-heading {
        font-size: 28px;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blogs-heading {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .power-factors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-section{
        align-items: center;
    }
    
    .about-heading {
        font-size: 24px;
    }
    
    .power-factors-heading {
        font-size: 24px;
    }
    
    .plans-heading {
        font-size: 24px;
    }
    
    .cable-cutter-text {
        font-size: 28px;
    }
    
    .cable-cutter-icon {
        font-size: 50px;
    }
    
    .location-selector-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tagline {
        font-size: 22px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .network-heading {
        font-size: 24px;
    }
    
    .fiber-hero-section {
        padding: 60px 15px;
    }
    
    .fiber-text-content {
        padding: 20px 10px;
    }
    
    .fiber-main-heading {
        font-size: 22px;
    }
    
    .fiber-description {
        font-size: 15px;
    }
    
    .fiber-features-section {
        padding: 50px 15px;
    }
    
    .fiber-feature-item {
        padding: 30px 20px;
    }
    
    .fiber-feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .fiber-feature-icon i {
        font-size: 35px;
    }
    
    .fiber-feature-icon-square span {
        font-size: 24px;
    }
    
    .fiber-feature-title {
        font-size: 18px;
    }
    
    .fiber-feature-text {
        font-size: 15px;
    }
    
    .fibernet-do-text {
        padding: 50px 25px;
    }
    
    .fibernet-do-heading {
        font-size: 20px;
    }
    
    .fibernet-do-description {
        font-size: 15px;
    }
    
    .fibernet-do-image {
        min-height: 350px;
    }
    
    .fibernet-do-text {
        padding: 40px 20px;
    }
    
    .fibernet-do-heading {
        font-size: 16px;
    }
    
    .fibernet-do-description {
        font-size: 14px;
    }
    
    .fibernet-do-image {
        min-height: 350px;
    }
    
    .contact-us-heading {
        font-size: 16px;
    }
    
    .contact-intro-text {
        font-size: 14px;
    }
    
    .contact-hashtag {
        font-size: 14px;
    }
    
    .contact-support-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-support-icon i {
        font-size: 30px;
    }
    
    .contact-support-title {
        font-size: 14px;
    }
    
    .contact-email {
        font-size: 14px;
    }
    
    .contact-stripe-1,
    .contact-stripe-2,
    .contact-stripe-3 {
        width: 150px;
        height: 25px;
    }
    
    .help-heading {
        font-size: 16px;
    }
    
    .help-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .help-card {
        padding: 35px 20px;
    }
    
    .help-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .help-card-icon i {
        font-size: 40px;
    }
    
    .help-icon-overlay {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }
    
    .help-card-text {
        font-size: 14px;
    }
    .main-nav{
        display: none;
    }
}
@media (max-width: 768px) {
    .career-form-section {
        padding: 60px 20px;
    }
    .footer-section{
        align-items: center;
    }
    
    .career-form-heading,
    .contact-form-heading {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .career-application-form,
    .contact-form {
        padding: 30px 20px;
    }

.career-form-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.career-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.career-application-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed #0066cc;
    background: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.checkbox-group a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
}

.checkbox-group a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.career-submit-btn,
.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.career-submit-btn:hover,
.contact-submit-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.career-submit-btn i,
.contact-submit-btn i {
    margin-right: 10px;
}

.form-message {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.form-error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.form-message i {
    font-size: 20px;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    border-top: 2px solid #ddd;
}

.contact-form-heading {
    font-size: 20px;
    font-weight: 900;
    color: #0066cc;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-heading {
        font-size: 18px;
    }
    
    .privacy-section-heading {
        font-size: 16px;
    }
    
    .privacy-policy-text p {
        font-size: 15px;
    }
    
    .legal-heading,
    .terms-heading {
        font-size: 18px;
    }
    
    .legal-section-heading,
    .terms-section-heading {
        font-size: 16px;
    }
    
    .terms-sub-heading {
        font-size: 15px;
    }
    
    .legal-text p,
    .legal-text li,
    .terms-text p,
    .terms-text li {
        font-size: 15px;
    }
    
    .legal-notice,
    .terms-notice {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .core-values-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .career-application-form,
    .contact-form {
        padding: 30px 20px;
    }
    
    .career-form-heading,
    .contact-form-heading {
        font-size: 18px;
    }
    
    .core-values-heading {
        font-size: 18px;
    }
    
    .core-value-title {
        font-size: 18px;
    }
    
    .core-value-description {
        font-size: 15px;
    }
    
    .core-values-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .app-title {
        font-size: 24px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-heading {
        font-size: 28px;
    }
    
    .why-choose-icon {
        width: 80px;
        height: 80px;
    }
    
    .why-choose-icon i {
        font-size: 35px;
    }
    
    .why-choose-title {
        font-size: 18px;
    }
    
    .testimonials-heading {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blogs-heading {
        font-size: 24px;
    }
    
    .services-hero-section {
        padding: 80px 20px 60px;
        min-height: 300px;
    }
    
    .services-hero-heading {
        font-size: 36px;
    }
    
    .services-hero-subtitle {
        font-size: 18px;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .services-section-title {
        font-size: 32px;
    }
    
    .services-section-subtitle {
        font-size: 16px;
    }
    
    .services-list {
        gap: 25px;
    }
    
    .service-card-inner {
        flex-direction: column;
    }
    
    .service-image-side {
        flex: 0 0 auto;
        min-height: 250px;
    }
    
    .service-content-side {
        padding: 30px 25px;
    }
    
    .service-icon-wrapper {
        min-height: 250px;
    }
    
    .service-icon-wrapper i {
        font-size: 48px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .service-detail-hero-section {
        padding: 80px 20px 60px;
    }
    
    .service-detail-title {
        font-size: 36px;
    }
    
    .service-detail-subtitle {
        font-size: 18px;
    }
    
    .service-detail-image {
        height: 350px;
    }
    
    .service-detail-content {
        font-size: 16px;
    }
    
    .blog-title {
        font-size: 16px;
        min-height: auto;
    }
    
    .wifi-only-heading {
        font-size: 24px;
    }
    
    .wifi-plan-speed {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .app-download-footer {
        align-items: center;
    }
    
    /* Careers Page Responsive */
    .career-hero-section h1 {
        font-size: 32px !important;
    }
    
    .career-hero-section > div > div {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .career-hero-section img {
        margin-top: 30px !important;
        max-width: 100% !important;
    }
    
    .section-title {
        font-size: 28px !important;
        margin-bottom: 40px !important;
    }
    
    .job-listing-card > div {
        flex-direction: column !important;
    }
    
    .job-listing-card .btn {
        width: 100% !important;
        margin-top: 20px !important;
        justify-content: center !important;
    }
    
    /* Contact Us Page Responsive */
    .contact-us-heading {
        font-size: 28px !important;
    }
    
    .contact-intro-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    .contact-support-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .contact-support-item {
        padding: 25px 20px !important;
    }
    
    .contact-form-section {
        padding: 25px 20px !important;
        margin-top: 30px !important;
    }
    
    .contact-form-section h2 {
        font-size: 24px !important;
    }
    
    .contact-form-section form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Fiber Page Responsive */
    .fiber-hero-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .fiber-text-content {
        margin-bottom: 30px !important;
        max-width: 100% !important;
    }
    
    .fiber-main-heading {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    
    .fiber-description {
        font-size: 16px !important;
    }
    
    .fiber-image-content {
        justify-content: center !important;
        margin-top: 30px !important;
    }
    
    .fiber-image-content img {
        max-width: 100% !important;
    }
    
    .deliver-content {
        flex-direction: column !important;
    }
    
    .deliver-image {
        order: -1 !important;
        margin-bottom: 30px !important;
    }
    
    .deliver-text {
        text-align: center !important;
    }
    
    .section-heading {
        font-size: 28px !important;
    }
    
    .empathy-content {
        flex-direction: column !important;
    }
    
    .empathy-text {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    /* Index Page Responsive */
    .about-heading {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
    
    .about-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    .power-factors-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .power-factor-item {
        padding: 25px 20px !important;
    }
    
    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .plan-card {
        padding: 25px 20px !important;
    }
    
    .plan-speed {
        font-size: 32px !important;
    }
    
    .wifi-plans-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .wifi-plan-card {
        padding: 25px 20px !important;
    }
    
    .network-app-section .container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .network-coverage {
        text-align: center !important;
    }
    
    .app-promotion {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
    
    .app-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .app-store-btn,
    .google-play-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Blogs List Page Responsive */
    .blogs-section {
        padding: 60px 20px !important;
    }
    
    .blogs-heading {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .blogs-subtitle {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .blog-card {
        padding: 20px !important;
    }
    
    /* Form Responsive Improvements */
    form[style*="grid-template-columns: 1fr 1fr"],
    .career-application-form-grid,
    .contact-form-responsive,
    form[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
    
    form > div[style*="display: grid"],
    .contact-form-row,
    .career-application-form-grid > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Button Responsive */
    .btn {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    
    /* Careers Page */
    .career-hero-section {
        padding: 60px 0 40px !important;
    }
    
    .career-hero-section h1 {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }
    
    .career-hero-section p {
        font-size: 15px !important;
    }
    
    .section-title {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .job-listing-card {
        padding: 20px 15px !important;
    }
    
    .job-listing-card h3 {
        font-size: 18px !important;
    }
    
    .job-listing-card > div > div > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .job-listing-card span {
        font-size: 12px !important;
        padding: 4px 12px !important;
    }
    
    /* Contact Us Page */
    .contact-us-heading {
        font-size: 24px !important;
    }
    
    .contact-hashtag {
        font-size: 16px !important;
        margin: 15px 0 !important;
    }
    
    .contact-support-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .contact-support-icon i {
        font-size: 28px !important;
    }
    
    .contact-form-section {
        padding: 20px 15px !important;
    }
    
    .contact-form-section h2 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .contact-form-section p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    /* Fiber Page */
    .fiber-hero-section {
        padding: 60px 0 40px !important;
    }
    
    .fiber-main-heading {
        font-size: 24px !important;
    }
    
    .fiber-main-heading span {
        font-size: 20px !important;
    }
    
    .fiber-description {
        font-size: 15px !important;
    }
    
    .feature-card {
        padding: 25px 15px !important;
    }
    
    .feature-card h3 {
        font-size: 18px !important;
    }
    
    .feature-card p {
        font-size: 14px !important;
    }
    
    .deliver-section {
        padding: 60px 0 !important;
    }
    
    .section-heading {
        font-size: 24px !important;
    }
    
    .section-description {
        font-size: 15px !important;
    }
    
    .deliver-image img {
        border-radius: 10px !important;
    }
    
    .deliver-image > div[style*="position: absolute"] {
        width: 80px !important;
        height: 80px !important;
        bottom: -20px !important;
        right: -20px !important;
    }
    
    .deliver-image > div[style*="position: absolute"] > div {
        font-size: 20px !important;
        padding: 10px !important;
    }
    
    /* Index Page */
    .hero-slider {
        height: 300px !important;
    }
    
    .slider-image {
        object-fit: cover !important;
        height: 100% !important;
    }
    
    .about-section {
        padding: 40px 0 !important;
    }
    
    .about-heading {
        font-size: 20px !important;
    }
    
    .about-text {
        font-size: 15px !important;
    }
    
    .power-factors-section {
        padding: 50px 0 !important;
    }
    
    .power-factors-heading {
        font-size: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .power-factor-icon {
        width: 80px !important;
        height: 80px !important;
    }
    
    .power-factor-icon i {
        font-size: 32px !important;
    }
    
    .power-factor-text {
        font-size: 13px !important;
    }
    
    .broadband-plans-section {
        padding: 50px 0 !important;
    }
    
    .plans-heading {
        font-size: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .location-selector-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .location-label {
        font-size: 14px !important;
    }
    
    .tagline {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .cable-cutter-section {
        margin-bottom: 30px !important;
    }
    
    .cable-cutter-text {
        font-size: 24px !important;
    }
    
    .plan-card {
        padding: 20px 15px !important;
    }
    
    .plan-top {
        padding: 20px 15px !important;
    }
    
    .plan-upto {
        font-size: 12px !important;
    }
    
    .plan-speed {
        font-size: 28px !important;
    }
    
    .plan-middle {
        padding: 20px 15px !important;
    }
    
    .plan-bottom {
        padding: 20px 15px !important;
    }
    
    .plan-pricing {
        gap: 10px !important;
    }
    
    .pricing-item {
        padding: 10px !important;
        flex-direction: column !important;
        gap: 5px !important;
    }
    
    .pricing-duration {
        font-size: 12px !important;
    }
    
    .pricing-amount {
        font-size: 16px !important;
    }
    
    .ott-logos {
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .ott-logo-item {
        width: 40px !important;
        height: 40px !important;
    }
    
    .wifi-only-section {
        padding: 50px 0 !important;
    }
    
    .wifi-only-heading {
        font-size: 20px !important;
    }
    
    .wifi-plan-card {
        padding: 20px 15px !important;
    }
    
    .wifi-plan-top {
        padding: 20px 15px !important;
    }
    
    .wifi-plan-speed {
        font-size: 24px !important;
    }
    
    .wifi-plan-middle {
        padding: 20px 15px !important;
    }
    
    .wifi-plan-bottom {
        padding: 20px 15px !important;
    }
    
    .wifi-plan-pricing {
        gap: 10px !important;
    }
    
    .wifi-pricing-item {
        padding: 10px !important;
        flex-direction: column !important;
        gap: 5px !important;
    }
    
    .buy-now-btn,
    .wifi-buy-now-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .deliver-section {
        padding: 50px 0 !important;
    }
    
    .deliver-content {
        gap: 30px !important;
    }
    
    .empathy-section {
        padding: 50px 0 !important;
    }
    
    .network-app-section {
        padding: 50px 0 !important;
    }
    
    .network-heading {
        font-size: 20px !important;
    }
    
    .network-subtitle {
        font-size: 14px !important;
    }
    
    .app-title {
        font-size: 18px !important;
    }
    
    .app-features {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .app-store-btn,
    .google-play-btn {
        padding: 12px 15px !important;
        font-size: 12px !important;
    }
    
    /* Blogs Page */
    .blogs-section {
        padding: 40px 0 !important;
    }
    
    .blogs-heading {
        font-size: 24px !important;
    }
    
    .blogs-subtitle {
        font-size: 14px !important;
    }
    
    .blog-card {
        padding: 15px !important;
    }
    
    .blog-title {
        font-size: 16px !important;
    }
    
    .blog-excerpt {
        font-size: 14px !important;
    }
    
    /* Services Responsive */
    .services-hero-section {
        padding: 60px 20px 50px !important;
        min-height: 250px !important;
    }
    
    .services-hero-heading {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .services-hero-subtitle {
        font-size: 15px !important;
    }
    
    .services-section {
        padding: 50px 20px !important;
    }
    
    .services-section-header {
        margin-bottom: 40px !important;
    }
    
    .services-section-title {
        font-size: 26px !important;
        margin-bottom: 12px !important;
    }
    
    .services-section-subtitle {
        font-size: 14px !important;
    }
    
    .services-list {
        gap: 20px !important;
    }
    
    .service-card-inner {
        flex-direction: column !important;
    }
    
    .service-image-side {
        flex: 0 0 auto !important;
        min-height: 200px !important;
    }
    
    .service-content-side {
        padding: 25px 20px !important;
    }
    
    .service-icon-wrapper {
        min-height: 200px !important;
    }
    
    .service-icon-wrapper i {
        font-size: 40px !important;
    }
    
    .service-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .service-description {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .service-detail-hero-section {
        padding: 60px 20px 50px !important;
    }
    
    .service-detail-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 20px !important;
    }
    
    .service-detail-icon i {
        font-size: 36px !important;
    }
    
    .service-detail-title {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .service-detail-subtitle {
        font-size: 16px !important;
    }
    
    .service-detail-section {
        padding: 50px 20px !important;
    }
    
    .service-detail-image {
        height: 250px !important;
    }
    
    .service-detail-content {
        font-size: 15px !important;
    }
    
    .service-detail-content h2 {
        font-size: 24px !important;
    }
    
    .service-detail-content h3 {
        font-size: 20px !important;
    }
    
    .service-detail-content h4 {
        font-size: 18px !important;
    }
    
    /* Forms */
    .career-application-form,
    .contact-form {
        padding: 20px 15px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
    
    .form-group label {
        font-size: 14px !important;
    }
    
    .career-submit-btn,
    .contact-submit-btn {
        padding: 14px 20px !important;
        font-size: 16px !important;
    }
    
    /* Success/Error Messages */
    .form-message {
        padding: 12px 15px !important;
        font-size: 14px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }
    
    .form-message i {
        font-size: 24px !important;
    }
}

/* Comprehensive Responsive Design for All Pages */
@media (max-width: 992px) {
    /* Common responsive adjustments */
    .container {
        padding: 0 20px !important;
    }
    
    /* Index Page - Hero Slider */
    .hero-slider {
        height: 400px !important;
    }
    
    .slider-nav {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 0 !important;
    }
    
    .about-heading {
        font-size: 32px !important;
    }
    
    .about-text {
        font-size: 17px !important;
    }
    
    /* Power Factors */
    .power-factors-section {
        padding: 60px 0 !important;
    }
    
    .power-factors-heading {
        font-size: 32px !important;
    }
    
    .power-factors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    /* Plans Section */
    .broadband-plans-section {
        padding: 60px 0 !important;
    }
    
    .plans-heading {
        font-size: 32px !important;
    }
    
    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .plan-card {
        padding: 25px 20px !important;
    }
    
    .wifi-plans-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Deliver Section */
    .deliver-section {
        padding: 70px 0 !important;
    }
    
    .deliver-content {
        gap: 40px !important;
    }
    
    .deliver-image {
        order: -1 !important;
        margin-bottom: 40px !important;
    }
    
    .deliver-text {
        text-align: center !important;
    }
    
    .section-heading {
        font-size: 32px !important;
    }
    
    /* Empathy Section */
    .empathy-section {
        padding: 70px 0 !important;
    }
    
    .empathy-content {
        gap: 40px !important;
    }
    
    .empathy-text {
        text-align: center !important;
        margin-bottom: 40px !important;
    }
    
    /* Network Section */
    .network-app-section {
        padding: 60px 0 !important;
    }
    
    .network-coverage {
        margin-bottom: 30px !important;
    }
    
    .app-promotion {
        flex-direction: column !important;
        text-align: center !important;
        gap: 25px !important;
    }
    
    .app-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
    }
    
    .app-store-btn,
    .google-play-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Blogs Section */
    .blogs-section {
        padding: 60px 0 !important;
    }
    
    .blogs-heading {
        font-size: 32px !important;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    /* Fiber Page */
    .fiber-hero-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .fiber-text-content {
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .fiber-main-heading {
        font-size: 36px !important;
    }
    
    .fiber-image-content {
        justify-content: center !important;
    }
    
    .feature-card {
        padding: 30px 25px !important;
    }
    
    /* Contact Us Page */
    .contact-us-section {
        padding: 60px 0 !important;
    }
    
    .contact-us-heading {
        font-size: 32px !important;
        margin-bottom: 25px !important;
    }
    
    .contact-intro-text {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }
    
    .contact-support-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }
    
    /* Careers Page */
    .career-hero-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .career-hero-text {
        max-width: 100% !important;
    }
    
    .career-hero-title {
        font-size: 36px !important;
    }
    
    .career-hero-description {
        font-size: 17px !important;
    }
    
    .career-hero-buttons {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .career-hero-image {
        justify-content: center !important;
    }
    
    .why-join-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .why-join-section {
        padding: 60px 0 !important;
    }
    
    .open-positions-section {
        padding: 60px 0 !important;
    }
    
    .application-form-section {
        padding: 60px 0 !important;
    }
    
    .application-form-wrapper {
        margin: 0 20px !important;
    }
    
    .form-header {
        padding: 25px 20px !important;
    }
    
    .form-header-title {
        font-size: 28px !important;
    }
    
    .form-header-subtitle {
        font-size: 15px !important;
    }
    
    .form-body {
        padding: 30px 25px !important;
    }
    
    .career-application-form-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .job-listings-container {
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Header and Navigation */
    .header-content {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .header-actions {
        width: auto !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 15px !important;
        position: relative;
        z-index: 1002;
    }
    
    .btn-connection {
        display: none !important;
    }
    
    .top-header {
        position: relative;
        z-index: 1000;
    }
    
    .header-content {
        position: relative;
        z-index: 1001;
    }
    
    .header-actions {
        position: relative;
        z-index: 1002;
    }
    
    .hamburger-menu {
        display: flex !important;
        position: relative !important;
        z-index: 1003 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        -webkit-tap-highlight-color: rgba(255, 102, 0, 0.3) !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
    }
    
    .hamburger-menu:focus {
        outline: 2px solid #ff6600 !important;
        outline-offset: 2px !important;
    }
    
    .hamburger-menu:active {
        transform: scale(0.95) !important;
        background: rgba(255, 102, 0, 0.1) !important;
    }
    
    /* Index Page */
    .hero-slider {
        height: 350px !important;
    }
    
    .about-heading {
        font-size: 28px !important;
    }
    
    .power-factors-heading {
        font-size: 28px !important;
    }
    
    .power-factors-grid {
        grid-template-columns: 1fr !important;
    }
    
    .plans-heading {
        font-size: 28px !important;
    }
    
    .section-heading {
        font-size: 28px !important;
    }
    
    .network-heading {
        font-size: 28px !important;
    }
    
    /* Blogs */
    .blogs-grid {
        grid-template-columns: 1fr !important;
    }
    
    .blogs-heading {
        font-size: 28px !important;
    }
    
    /* Fiber Page */
    .fiber-hero-section {
        padding: 70px 0 50px !important;
    }
    
    .fiber-main-heading {
        font-size: 28px !important;
    }
    
    .fiber-main-heading span {
        font-size: 24px !important;
    }
    
    .fiber-description {
        font-size: 16px !important;
    }
    
    .fiber-features-section {
        padding: 60px 0 !important;
    }
    
    .feature-card {
        padding: 25px 20px !important;
    }
    
    .feature-card h3 {
        font-size: 20px !important;
    }
    
    .feature-card p {
        font-size: 15px !important;
    }
    
    /* Deliver and Empathy Sections */
    .deliver-section {
        padding: 60px 0 !important;
    }
    
    .empathy-section {
        padding: 60px 0 !important;
    }
    
    .deliver-image > div[style*="position: absolute"] {
        display: none !important;
    }
    
    /* Contact Us */
    .contact-us-heading {
        font-size: 28px !important;
    }
    
    .contact-support-item {
        padding: 25px 20px !important;
    }
    
    .contact-support-title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .contact-email {
        font-size: 15px !important;
    }
    
    .contact-form-section {
        padding: 25px 20px !important;
        margin-top: 30px !important;
    }
    
    .contact-form-section h2 {
        font-size: 24px !important;
    }
    
    .contact-form-section > form > div[style*="grid-template-columns"],
    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-form-section form {
        max-width: 100% !important;
    }
    
    /* Careers */
    .career-hero-section {
        padding: 70px 0 50px !important;
    }
    
    .career-hero-title {
        font-size: 28px !important;
    }
    
    .career-hero-title span {
        font-size: 24px !important;
        display: block !important;
        margin-bottom: 5px !important;
    }
    
    .career-hero-description {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }
    
    .career-hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .career-hero-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .why-join-section {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 24px !important;
        margin-bottom: 35px !important;
    }
    
    .section-title span {
        display: block !important;
    }
    
    .open-positions-section {
        padding: 60px 0 !important;
    }
    
    .job-listing-card {
        padding: 25px 20px !important;
    }
    
    .job-listing-card > div {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .job-listing-card h3 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .job-listing-card > div > div[style*="display: flex"] {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    .job-listing-card span {
        font-size: 12px !important;
        padding: 4px 12px !important;
    }
    
    .job-listing-card p {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .job-listing-card .btn {
        width: 100% !important;
        margin-top: 15px !important;
    }
    
    .application-form-section {
        padding: 50px 0 !important;
    }
    
    .application-form-wrapper {
        margin: 0 15px !important;
    }
    
    .form-header {
        padding: 20px 15px !important;
    }
    
    .form-header-title {
        font-size: 24px !important;
    }
    
    .form-header-subtitle {
        font-size: 14px !important;
    }
    
    .form-body {
        padding: 25px 20px !important;
    }
    
    .form-body > form > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .form-body h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .form-group {
        margin-bottom: 20px !important;
    }
    
    .form-group label {
        font-size: 14px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px !important;
        padding: 12px 15px !important;
    }
    
    #file-upload-area {
        padding: 20px 15px !important;
    }
    
    #upload-icon {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
    
    #upload-text {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    
    .form-body button[type="submit"] {
        width: 100% !important;
        padding: 14px 25px !important;
        font-size: 16px !important;
    }
    
    /* Broadband Plans */
    .broadband-plans-section {
        padding: 50px 0 !important;
    }
    
    .plans-heading {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .location-selector-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
    }
    
    .location-label {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }
    
    .location-dropdown {
        width: 100% !important;
        padding: 12px 15px !important;
    }
    
    .tagline {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .cable-cutter-section {
        margin-bottom: 30px !important;
    }
    
    .cable-cutter-text {
        font-size: 28px !important;
    }
    
    .cable-cutter-icon {
        font-size: 50px !important;
    }
    
    .plan-card {
        padding: 25px 20px !important;
    }
    
    .plan-top {
        padding: 25px 20px !important;
    }
    
    .plan-upto {
        font-size: 13px !important;
    }
    
    .plan-speed {
        font-size: 30px !important;
    }
    
    .plan-middle {
        padding: 25px 20px !important;
    }
    
    .plan-icons {
        margin-bottom: 10px !important;
    }
    
    .plan-icons i {
        font-size: 24px !important;
    }
    
    .plan-feature-text {
        font-size: 14px !important;
    }
    
    .plan-bottom {
        padding: 25px 20px !important;
    }
    
    .plan-pricing {
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    
    .pricing-item {
        padding: 12px 15px !important;
    }
    
    .pricing-duration {
        font-size: 13px !important;
    }
    
    .pricing-amount {
        font-size: 18px !important;
    }
    
    .plan-ott {
        margin-bottom: 20px !important;
    }
    
    .ott-label {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .ott-logos {
        gap: 12px !important;
        justify-content: center !important;
    }
    
    .ott-logo-item {
        width: 50px !important;
        height: 50px !important;
    }
    
    .ott-logo-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    
    .plan-channels {
        margin-bottom: 20px !important;
    }
    
    .plan-channels p {
        font-size: 14px !important;
    }
    
    .buy-now-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
    
    /* WiFi Only Section */
    .wifi-only-section {
        padding: 50px 0 !important;
    }
    
    .wifi-only-header {
        margin-bottom: 30px !important;
    }
    
    .wifi-header-icon {
        font-size: 40px !important;
        margin-bottom: 10px !important;
    }
    
    .wifi-only-heading {
        font-size: 24px !important;
    }
    
    .wifi-plan-card {
        padding: 25px 20px !important;
    }
    
    .wifi-plan-top {
        padding: 25px 20px !important;
    }
    
    .wifi-plan-upto {
        font-size: 13px !important;
    }
    
    .wifi-plan-speed {
        font-size: 30px !important;
    }
    
    .wifi-plan-middle {
        padding: 25px 20px !important;
    }
    
    .wifi-plan-icon {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
    
    .wifi-plan-text {
        font-size: 14px !important;
    }
    
    .wifi-plan-bottom {
        padding: 25px 20px !important;
    }
    
    .wifi-plan-pricing {
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    
    .wifi-pricing-item {
        padding: 12px 15px !important;
    }
    
    .wifi-pricing-duration {
        font-size: 13px !important;
    }
    
    .wifi-pricing-amount {
        font-size: 18px !important;
    }
    
    .wifi-buy-now-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    /* Ultra small devices */
    .container {
        padding: 0 15px !important;
    }
    
    /* Hamburger Menu for ultra small screens */
    .top-header {
        position: relative !important;
        z-index: 1000 !important;
    }
    
    .header-content {
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .header-actions {
        position: relative !important;
        z-index: 1002 !important;
    }
    
    .hamburger-menu {
        display: flex !important;
        position: relative !important;
        z-index: 1003 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        width: 44px !important;
        height: 44px !important;
        padding: 10px !important;
        -webkit-tap-highlight-color: rgba(255, 102, 0, 0.3) !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
    }
    
    .hamburger-menu i {
        pointer-events: none !important;
        font-size: 22px !important;
    }
    
    .hamburger-menu:focus {
        outline: 2px solid #ff6600 !important;
        outline-offset: 2px !important;
    }
    
    .hamburger-menu:active {
        transform: scale(0.95) !important;
        background: rgba(255, 102, 0, 0.1) !important;
    }
    
    .hamburger-menu:hover {
        background: rgba(255, 102, 0, 0.05) !important;
    }
    
    /* Navigation menu for ultra small screens */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 80px 20px 20px !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0 !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        transition: right 0.3s ease !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .nav-menu.mobile-active {
        right: 0 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .nav-menu a {
        padding: 15px 0 !important;
        width: 100% !important;
        display: block !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        -webkit-tap-highlight-color: rgba(255, 102, 0, 0.2) !important;
        touch-action: manipulation !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
    
    body.menu-open::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
        animation: fadeIn 0.3s ease !important;
    }
    
    /* Hero sections */
    .hero-slider {
        height: 280px !important;
    }
    
    /* Headings */
    .about-heading,
    .power-factors-heading,
    .plans-heading,
    .section-heading,
    .network-heading,
    .blogs-heading,
    .contact-us-heading,
    .fiber-main-heading,
    .career-hero-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    .section-title {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    
    /* Text */
    .about-text,
    .power-factor-text,
    .fiber-description,
    .career-hero-description,
    .contact-intro-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* Sections padding */
    .about-section,
    .power-factors-section,
    .broadband-plans-section,
    .deliver-section,
    .empathy-section,
    .network-app-section,
    .blogs-section,
    .contact-us-section,
    .fiber-hero-section,
    .fiber-features-section,
    .career-hero-section,
    .why-join-section,
    .open-positions-section,
    .application-form-section {
        padding: 40px 0 !important;
    }
    
    /* Cards and Items */
    .power-factor-item,
    .feature-card,
    .plan-card,
    .wifi-plan-card,
    .blog-card,
    .contact-support-item,
    .job-listing-card {
        padding: 20px 15px !important;
    }
    
    /* Icons */
    .power-factor-icon,
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .power-factor-icon i,
    .feature-icon i {
        font-size: 28px !important;
    }
    
    /* Forms */
    .form-header {
        padding: 20px 15px !important;
    }
    
    .form-header-title {
        font-size: 20px !important;
    }
    
    .form-body {
        padding: 20px 15px !important;
    }
    
    .form-body h2,
    .form-body h3 {
        font-size: 18px !important;
    }
    
    .form-group {
        margin-bottom: 18px !important;
    }
    
    .form-group label {
        font-size: 13px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
    
    #file-upload-area {
        padding: 15px 12px !important;
    }
    
    #upload-icon {
        font-size: 28px !important;
    }
    
    #upload-text {
        font-size: 12px !important;
    }
    
    .form-body button[type="submit"],
    .buy-now-btn,
    .wifi-buy-now-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .career-hero-buttons,
    .cta-buttons {
        gap: 12px !important;
    }
    
    /* Hamburger Menu - Ultra small screens specific fixes */
    .hamburger-menu {
        display: flex !important;
        position: relative !important;
        z-index: 1003 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 10px !important;
        margin: 0 !important;
        -webkit-tap-highlight-color: rgba(255, 102, 0, 0.3) !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
        touch-action: manipulation !important;
        flex-shrink: 0 !important;
    }
    
    .hamburger-menu i {
        pointer-events: none !important;
        font-size: 22px !important;
        display: block !important;
        margin: 0 !important;
    }
    
    .hamburger-menu:focus,
    .hamburger-menu:active {
        outline: 2px solid #ff6600 !important;
        outline-offset: 2px !important;
        background: rgba(255, 102, 0, 0.1) !important;
    }
    
    .hamburger-menu:active {
        transform: scale(0.95) !important;
    }
    
    .hamburger-menu:hover {
        background: rgba(255, 102, 0, 0.05) !important;
    }
    
    /* Ensure header actions container doesn't interfere */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        position: relative !important;
        z-index: 1002 !important;
        flex-shrink: 0 !important;
    }
    
    .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 1001 !important;
        width: 100% !important;
    }
    
    .top-header {
        position: relative !important;
        z-index: 1000 !important;
        width: 100% !important;
    }
    
    /* Navigation menu for ultra small screens - ensure it works */
    .main-nav {
        position: relative !important;
        z-index: 999 !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 80px 20px 20px !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 0 !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transition: right 0.3s ease !important;
        -webkit-overflow-scrolling: touch !important;
        transform: none !important;
    }
    
    .nav-menu.mobile-active {
        right: 0 !important;
        display: flex !important;
    }
    
    .nav-menu::before {
        content: 'Menu' !important;
        position: absolute !important;
        top: 20px !important;
        left: 20px !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #ff6600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        z-index: 1 !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu a {
        padding: 15px 0 !important;
        width: 100% !important;
        display: block !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #333 !important;
        -webkit-tap-highlight-color: rgba(255, 102, 0, 0.2) !important;
        touch-action: manipulation !important;
        text-decoration: none !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: #ff6600 !important;
        padding-left: 10px !important;
        transition: all 0.3s ease !important;
    }
    
    /* Body overlay when menu is open - ultra small screens */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    body.menu-open::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
        animation: fadeIn 0.3s ease !important;
        display: block !important;
    }
    
    /* Plans */
    .plan-speed,
    .wifi-plan-speed {
        font-size: 24px !important;
    }
    
    .pricing-amount,
    .wifi-pricing-amount {
        font-size: 16px !important;
    }
    
    .ott-logos {
        gap: 8px !important;
    }
    
    .ott-logo-item {
        width: 45px !important;
        height: 45px !important;
    }
    
    /* Location selector */
    .location-selector-wrapper {
        margin-bottom: 20px !important;
    }
    
    .tagline {
        font-size: 18px !important;
    }
    
    .cable-cutter-text {
        font-size: 22px !important;
    }
    
    /* Network section */
    .app-title {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .app-features {
        font-size: 13px !important;
    }
    
    .app-store-btn,
    .google-play-btn {
        padding: 12px 15px !important;
        font-size: 11px !important;
    }
    
    .app-store-btn span,
    .google-play-btn span {
        font-size: 10px !important;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .footer-section {
        margin-bottom: 25px !important;
    }
    
    .footer-section h4 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .footer-section a,
    .footer-section p {
        font-size: 13px !important;
    }
    
    .social-links {
        justify-content: center !important;
        gap: 12px !important;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
}