 Import clean professional font */ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: #333;
}

/* Navbar container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    position: relative;
    z-index: 1000;
    position: fixed;
}

/* Logo styling */
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
}

.logo .smart {
    color: #0c55f4;
    /* Blue */
}

.logo .iptv {
    color: #ff69b4;
    /* Dark pink */
}

/* Nav links container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    /* Center nav links on large screens */
    flex: 1;
}
/* Individual nav links */
.nav-links li {
    list-style: none;
    position: relative;
}

/* Nav links hover: blue, exclude buttons */
.nav-links li a:not(.btn-link):hover {
    background-color: #0c55f4;
    color: white;
}

.nav-links li a:not(.btn-link) {
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: 0.3s;
}


/* Buttons as links styling (Login & Sign Up) */
.btn-link {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    color: white;
    background-color: #ff69b4;
    /* Dark pink */
    display: inline-block;
    text-align: center;
}

.btn-link:hover {
    transform: scale(1.05);
    background-color: #ff69b4;
    /* Keep pink always */
}

.btn-link.signup {
    margin-left: 10px;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

/* Mobile responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        padding-bottom: 10px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        width: 90%;
        margin: 5px 0;
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
        padding-left: 40px;
    }

        /* Individual nav links */
        .nav-links li {
            list-style: none;
            position: relative;
        }

       

    /* Buttons same size on mobile */
    .btn-link {
        width: 80%;
        margin: 8px 0;
        box-sizing: border-box;
    }

    .btn-link.signup {
        margin-left: 0;
    }

    .nav-links.active {
        max-height: 700px;
    }

    /* Dropdown click for mobile */
    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
    }

    .dropdown-content.show {
        display: block;
    }
}

/* Dropdown show class for desktop click */
.dropdown-content.show {
    display: block;

}

    .nav-btn {
        font-size: 18px;
        padding: 2px 6px;
    }


/* 🌈 Slider Container */
.slider {
    position: relative;
    flex: 1;
    min-width: 350px;
    height: 380px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slides img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* 🔘 Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 25px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* 📋 Text Section */
.info {
    flex: 1;
    min-width: 350px;
    color: #333;
}

.info h2 {
    color: #007bff;
    font-size: 30px;
    margin-bottom: 15px;
}

.info p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

.info button {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.info button:hover {
    background-color: #e73370;
    transform: scale(1.05);
}

/* 💻 Equal Sections for Laptop */
@media (min-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .slider,
    .info {
        flex: 1;
        height: 400px;
    }

    .slides img {
        height: 400px;
    }
}

/* 📱 Responsive - Tablet */
@media (max-width: 991px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .slider {
        width: 100%;
        height: 300px;
    }

    .slides img {
        height: 300px;
    }
}

/* 📱 Mobile View */
@media (max-width: 400px) {
    .slider {
        width: 70%;
        margin-right: 20px;
        margin-left: 0%;
        aspect-ratio: 16 / 9;

    }

    .slides img {
        height: 250px;
    }

    .info {
        text-align: center;
        padding: 0 15px;
    }

    .info h2 {
        font-size: 24px;
    }

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

@media (max-width: 400px) {
    .slider {
        height: 220px;
    }

    .slides img {
        height: 220px;
    }
}















 /* channel css */
 .logo-marquee {
     overflow: hidden;
     white-space: nowrap;
     background: #0cabf4;
     padding: 20px 0;
     position: relative;
 }

 .logo-track {
     display: flex;
     flex-direction: row;
     gap: 50px;
     animation: scroll-left 25s linear infinite;
 }

 .logo-track img {
     height: 80px;
     width: auto;
     object-fit: contain;
     flex-shrink: 0;
     display: inline-block;
 }

 @keyframes scroll-left {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-100%);
     }
 }

 .logo-marquee:hover .logo-track {
     animation-play-state: paused;
 }


/* 🔽 Dropdown Container */
.nav-links .dropdown {
    position: relative;
}

/* 🔽 Hidden Dropdown Menu */
.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    min-width: 150px;
    z-index: 999;
}

/* 🔽 Dropdown Links */
.nav-links .dropdown-menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 6px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-links .dropdown-menu li a:hover {
    background: #f2f2f2;
    color: #e91e63;  /* pink hover color */
}

/* 🔽 Desktop hover show */
@media (hover: hover) {
    .nav-links .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* 🔽 Mobile (responsive behavior) */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #fafafa;
        border-left: 3px solid #e91e63;
        padding-left: 5px;
    }

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





 /* selection */



 h2 {
     font-size: 2.3rem;
     margin-bottom: 50px;
     color: #0c55f4;
     text-align: center;
     position: relative;
     letter-spacing: 1px;
     animation: fadeInDown 1s ease;
 }

 h2::after {
     content: "";
     display: block;
     width: 60px;
     height: 4px;
     background: linear-gradient(90deg, #ff69b4, #0c55f4);
     margin: 12px auto 0;
     border-radius: 5px;
 }

 /* Container */
 .server-container {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 35px;
     animation: fadeInUp 1s ease;
 }

 /* Modern Server Card */
 .server-card {
     background: rgba(255, 255, 255, 0.8);
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     backdrop-filter: blur(15px);
     width: 300px;
     padding: 30px 25px;
     text-align: center;
     position: relative;
     transition: all 0.4s ease;
     border: 1px solid rgba(12, 85, 244, 0.2);
     overflow: hidden;
 }

 .server-card:hover {
     transform: translateY(-10px) scale(1.03);
     box-shadow: 0 15px 35px rgba(12, 85, 244, 0.25);
     border-color: rgba(12, 85, 244, 0.5);
 }

 .server-card::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle at center, rgba(173, 216, 230, 0.2), transparent 60%);
     opacity: 0;
     transition: 0.4s;
 }

 .server-card:hover::before {
     opacity: 1;
     transform: scale(1.1);
 }

 .server-icon {
     font-size: 45px;
     color: #0c55f4;
     margin-bottom: 15px;
     transition: 0.3s;
 }

 .server-card:hover .server-icon {
     color: #80caff;
     /* Light blue */
     transform: rotate(10deg);
 }

 .server-card h3 {
     font-size: 1.4rem;
     color: #0c55f4;
     margin-bottom: 10px;
 }

 .server-card p {
     font-size: 0.95rem;
     color: #555;
     margin-bottom: 25px;
     line-height: 1.6;
 }

 /* Button Pink */
 .server-btn {
     background: #ff69b4;
     color: white;
     border: none;
     padding: 10px 25px;
     border-radius: 25px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
 }


 .server-btn:hover {
     background: #0c55f4;
     /* light blue hover */
     transform: scale(1.08);
     box-shadow: 0 6px 20px rgba(12, 85, 244, 0.25);
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .server-card {
         width: 90%;
     }
 }


 /* 🌍 Parallax Section Styling */
 .parallax-section {
     position: relative;
     height: 70vh;
     /* 🎬 Only 70% of screen height */
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     text-align: center;
     font-family: 'Poppins', sans-serif;
 }

 .parallax-section .bg-video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: -2;
 }

 .parallax-section .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: -1;
 }

 .parallax-section .content {
     position: relative;
     z-index: 2;
     padding: 40px 20px;
 }

 .main-heading {
     font-size: 42px;
     font-weight: 700;
     letter-spacing: 1px;
 }

 .row {
     display: flex;
     justify-content: center;
     gap: 100px;
     /* 💠 space between counters */
     flex-wrap: wrap;
     margin-top: 40px;
 }

 .col {
     flex: 0 0 180px;
 }

 .counter {
     font-size: 48px;
     font-weight: 800;
     color: #00c3ff;
     margin-bottom: 10px;
     transition: all 0.3s ease;
 }

 .stat-text {
     font-size: 18px;
     color: #fff;
 }

 /* 🌐 Responsive tweaks */
 @media (max-width: 768px) {
     .main-heading {
         font-size: 32px;
     }

     .counter {
         font-size: 36px;
     }

     .row {
         gap: 40px;
     }
 }









 /* 🌟 Section */
 .testimonial-section {
     padding: 70px 20px;
     text-align: center;
     background: #ffffff;
 }

 .testimonial-section h2 {
     font-size: 2.5rem;
     color: #0d47a1;
     margin-bottom: 20px;
     font-weight: 700;
     letter-spacing: 1px;
 }

 .testimonial-section p.section-subtitle {
     color: #444;
     font-size: 1.05rem;
     margin-bottom: 45px;
 }

 .testimonial-container {
     display: flex;
     gap: 25px;
     justify-content: center;
     flex-wrap: wrap;
     max-width: 1200px;
     margin: auto;
 }

 /* 🌟 Testimonial Card */
 .testimonial-card {
     background: #ffffff;
     border-radius: 18px;
     padding: 25px 20px;
     width: 260px;
     box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     border: 1px solid #e0e0e0;
     cursor: pointer;
 }

 /* Default blue cards (middle ones) */
 .testimonial-card:nth-child(2),
 .testimonial-card:nth-child(4),
 .testimonial-card:nth-child(6) {
     background: linear-gradient(135deg, #1976d2, #0d47a1);
     color: #fff;
     border: none;
     box-shadow: 0 8px 22px rgba(13, 71, 161, 0.3);
 }

 /* Hover effect for white cards */
 .testimonial-card:hover {
     background: linear-gradient(135deg, #1976d2, #0d47a1);
     color: #fff;
     transform: translateY(-8px);
     box-shadow: 0 8px 22px rgba(13, 71, 161, 0.3);
     border-color: transparent;
 }

 /* Keep blue cards blue even on hover */
 .testimonial-card:nth-child(2):hover,
 .testimonial-card:nth-child(4):hover,
 .testimonial-card:nth-child(6):hover {
     transform: translateY(-8px);
 }

 /* 🌟 Images */
 .testimonial-card img {
     width: 65px;
     height: 65px;
     border-radius: 50%;
     border: 3px solid #1976d2;
     object-fit: cover;
     margin-bottom: 12px;
     transition: 0.4s;
 }

 .testimonial-card:hover img {
     border-color: #fff;
     transform: scale(1.05);
 }

 /* 🌟 Text Styling */
 .testimonial-card h3 {
     color: #0d47a1;
     font-size: 1.15rem;
     margin-bottom: 8px;
     transition: 0.4s;
 }

 .testimonial-card:hover h3 {
     color: #fff;
 }

 .testimonial-card:nth-child(2) h3,
 .testimonial-card:nth-child(4) h3,
 .testimonial-card:nth-child(6) h3 {
     color: #fff;
 }

 .testimonial-card p {
     color: #444;
     font-size: 0.9rem;
     line-height: 1.5;
     transition: 0.4s;
 }

 .testimonial-card:hover p {
     color: #f1f1f1;
 }

 .testimonial-card:nth-child(2) p,
 .testimonial-card:nth-child(4) p,
 .testimonial-card:nth-child(6) p {
     color: #f1f1f1;
 }

 /* 🌟 Stars */
 .stars {
     color: #f72585;
     margin-top: 8px;
     letter-spacing: 2px;
 }

 /* 🌟 Responsive */
 @media (max-width: 768px) {
     .testimonial-card {
         width: 100%;
         max-width: 320px;
     }
 }

        /* Floating container */
        .wa-ext {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 10000;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
        }
    
        /* The round button */
        .wa-btn {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(18, 140, 126, 0.18);
            cursor: pointer;
            transition: transform .12s ease, box-shadow .12s ease;
            border: none;
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }
    
        .wa-btn:active {
            transform: scale(.96);
        }
    
        .wa-btn:hover {
            box-shadow: 0 12px 28px rgba(18, 140, 126, 0.22);
        }
    
        /* Whatsapp SVG icon */
        .wa-btn svg {
            width: 30px;
            height: 30px;
            display: block;
        }
    
        /* Tooltip label (small "Chat" bubble) */
        .wa-label {
            display: none;
            position: absolute;
            right: 76px;
            bottom: 28px;
            background: #fff;
            color: #0b5345;
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.04);
            white-space: nowrap;
        }
    
        .wa-ext:hover .wa-label {
            display: block;
        }
    
        /* Expanded quick-chat panel */
        .wa-panel {
            position: absolute;
            right: 0;
            bottom: 86px;
            /* above the button */
            width: 320px;
            max-width: calc(100vw - 40px);
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.12);
            overflow: hidden;
            transform-origin: bottom right;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px) scale(.98);
            transition: opacity .18s ease, transform .18s ease, visibility .18s;
            font-size: 14px;
        }
    
        .wa-panel.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
    
        .wa-panel .head {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-bottom: 1px solid #f1f1f1;
            background: linear-gradient(90deg, rgba(37, 211, 102, 0.06), rgba(18, 140, 126, 0.03));
        }
    
        .wa-panel .head .title {
            font-weight: 700;
            color: #0b5345;
        }
    
        .wa-panel .quick {
            padding: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
    
        .wa-quick-btn {
            background: #f6fdf9;
            border: 1px solid rgba(18, 140, 126, 0.06);
            padding: 10px 12px;
            border-radius: 10px;
            cursor: pointer;
            text-align: left;
            font-weight: 600;
            transition: background .12s ease, transform .08s ease;
        }
    
        .wa-quick-btn:active {
            transform: translateY(1px);
        }
    
        .wa-quick-btn:hover {
            background: #eaf9ef;
        }
    
        .wa-input-row {
            display: flex;
            gap: 8px;
            padding: 12px;
            border-top: 1px solid #f1f1f1;
            align-items: center;
        }
    
        .wa-input {
            flex: 1;
            padding: 10px 12px;
            border-radius: 10px;
            border: 1px solid #eee;
            font-size: 14px;
        }
    
        .wa-send {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #fff;
            padding: 9px 12px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-weight: 700;
        }
    
        /* Small screens make button slightly smaller */
        @media (max-width:420px) {
            .wa-btn {
                width: 56px;
                height: 56px;
            }
    
            .wa-btn svg {
                width: 26px;
                height: 26px;
            }
    
            .wa-panel {
                width: 90vw;
                right: 5vw;
                bottom: 82px;
            }
        }


                /* ✅ Footer */
                .iptv-footer {
                    background: linear-gradient(135deg, #0d47a1, #1976d2);
                    color: #f8f9fa;
                    padding-top: 60px;
                    padding-bottom: 20px;
                    width: 100%;
                    font-family: 'Poppins', sans-serif;
                    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
                    margin: 0;
                }
        
                .footer-container {
                    width: 100%;
                    margin: 0;
                    padding: 0 30px;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                }
        
                .footer-col {
                    flex: 1 1 300px;
                    margin: 10px;
                }
        
                .footer-heading {
                    font-weight: 600;
                    font-size: 1.4rem;
                    margin-bottom: 15px;
                    color: #fff;
                    position: relative;
                }
        
                .footer-heading::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -6px;
                    width: 40px;
                    height: 3px;
                    background: #f72585;
                }
        
                .footer-text {
                    color: #e0e0e0;
                    font-size: 0.95rem;
                    line-height: 1.7;
                }
        
                .footer-link {
                    display: block;
                    color: #e0e0e0;
                    text-decoration: none;
                    margin-bottom: 8px;
                    transition: 0.3s;
                }
        
                .footer-link:hover {
                    color: #fff;
                    transform: translateX(4px);
                }
        
                .footer-divider {
                    border-top: 1px solid rgba(255, 255, 255, 0.3);
                    margin: 20px auto;
                    width: 90%;
                }
        
                .footer-bottom {
                    text-align: center;
                    font-size: 0.9rem;
                    color: #e3f2fd;
                }
        
                /* 🌟 Responsive */
                @media (max-width: 768px) {
                    .footer-heading {
                        font-size: 1.2rem;
                    }
        
                    .footer-text,
                    .footer-link {
                        font-size: 0.9rem;
                    }
        
                    .footer-divider {
                        width: 100%;
                    }