
body{margin:0;font-family:Poppins,Arial;background:#eef3f9;}
header{background:#0056d6;color:#fff;padding:18px 35px;display:flex;justify-content:space-between;align-items:center;box-shadow:0 4px 14px rgba(0,0,0,0.2);}
header nav ul{list-style:none;margin:0;padding:0;display:flex;}
header nav ul li{position:relative;margin-left:25px;}
header nav ul li a{color:white;text-decoration:none;font-size:17px;font-weight:600;}
header nav ul li:hover .dropdown{display:block;}
.dropdown{display:none;position:absolute;background:#fff;border-radius:10px;top:30px;min-width:180px;box-shadow:0 5px 15px rgba(0,0,0,0.2);}
.dropdown a{display:block;color:#0056d6;padding:10px 15px;}
.dropdown a:hover{background:#eef3f9;}

.logo{font-size:26px;font-weight:800;}

.hero{position:relative;width:100%;height:420px;overflow:hidden;}
.slide{position:absolute;width:100%;height:100%;object-fit:cover;animation:slider 18s infinite;}
@keyframes slider{0%{opacity:1;}40%{opacity:0;}70%{opacity:1;}}

.hero-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:white;text-align:center;padding:30px 45px;background:rgba(0,0,0,0.45);border-radius:16px;}
.hero-text h1{font-size:44px;font-weight:800;margin:0;}
.hero-text p{font-size:20px;margin-top:12px;font-weight:500;}

.container{max-width:95%;margin:40px auto;padding:30px;background:white;border-radius:16px;box-shadow:0 6px 20px rgba(0,0,0,0.15);}
.section-title{text-align:center;font-size:30px;font-weight:800;margin-bottom:25px;}
.section-sub{font-size:18px;text-align:center;color:#666;margin-bottom:25px;}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px;}
.card{background:white;padding:28px;text-align:center;border-radius:16px;box-shadow:0 5px 20px rgba(0,0,0,0.12);transition:.3s;}
.card:hover{transform:translateY(-6px);box-shadow:0 10px 26px rgba(0,0,0,0.2);}
.card i{font-size:50px;color:#0056d6;margin-bottom:12px;}

.faq{margin-top:20px;}
.faq-item{background:#f7f9fc;padding:20px;border-radius:12px;margin-bottom:12px;cursor:pointer;box-shadow:0 2px 10px rgba(0,0,0,0.05);}
.faq-answer{display:none;padding-top:10px;color:#444;}

.testimonials{margin-top:20px;}
.test-card{background:#f2f6fc;padding:22px;border-radius:14px;box-shadow:0 3px 12px rgba(0,0,0,0.1);}
.test-name{font-weight:700;margin-top:10px;}

footer{background:#1c1c1c;color:#ccc;text-align:center;padding:22px;margin-top:40px;}

.floating{position:fixed;bottom:22px;right:22px;display:flex;flex-direction:column;gap:14px;}
.floating a{background:#0056d6;padding:15px 20px;color:white;text-decoration:none;border-radius:50px;font-size:20px;font-weight:600;box-shadow:0 5px 18px rgba(0,0,0,0.3);}
.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hero-slider img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0;
}

.slide-item {
    display: none;
    width: 100%;
    height: 100%;
    animation: fade 1.2s ease-in-out;
}

@keyframes fade {
    from { opacity: .4 }
    to { opacity: 1 }
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 25px 40px;
    background: rgba(0,0,0,0.45);
    border-radius: 16px;
}
/* ===== HERO SLIDER ===== */
#heroSlider{
    position:relative;
    width:100%;
    height:520px;
    overflow:hidden;
}

/* Slides */
.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}
.slide.active{opacity:1}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay for better readability */
#heroSlider::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.25)
    );
    z-index:1;
}

/* Slider Text */
.slider-text{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:520px;
    color:#fff;
    z-index:2;
}

.slider-text h1{
    font-size:46px;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.2;
}

.slider-text p{
    font-size:18px;
    margin-bottom:8px;
}

/* CTA */
.slider-text a{
    display:inline-block;
    margin-top:15px;
    padding:14px 26px;
    background:#2b2eda;
    color:#fff;
    font-weight:700;
    border-radius:30px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
    #heroSlider{height:460px}
    .slider-text h1{font-size:38px}
}

@media(max-width:768px){
    #heroSlider{height:420px}
    .slider-text{
        left:50%;
        transform:translate(-50%,-50%);
        text-align:center;
        padding:0 20px;
    }
    .slider-text h1{font-size:32px}
    .slider-text p{font-size:16px}
}

@media(max-width:480px){
    #heroSlider{height:360px}
    .slider-text h1{font-size:26px}
    .slider-text p{font-size:14px}
}
/* ===== TOP BAR ===== */
.top-bar{
    background:#222;
    color:#fff;
    font-size:14px;
}

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

.top-left a{
    color:#fff;
    margin-right:18px;
    font-weight:500;
}

.top-left a:hover{
    text-decoration:underline;
}

.top-right{
    font-size:13px;
    color:#ffd166;
    font-weight:600;
}

/* ===== HEADER ===== */
.main-header{
    background:#ffffff;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

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

/* Logo */
.logo{
    font-size:30px;
    font-weight:800;
    color:#222;
}

.logo span{
    color:#e63946;
}

.logo small{
    font-size:14px;
    color:#666;
    font-weight:600;
    margin-left:6px;
}

/* CTA Button */
.header-cta a{
    background:#e63946;
    color:#fff;
    padding:10px 24px;
    border-radius:30px;
    font-weight:700;
    transition:0.3s;
}

.header-cta a:hover{
    background:#660e14;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .top-container{
        justify-content:center;
        text-align:center;
    }

    .top-left a{
        display:block;
        margin:4px 0;
    }

    .header-container{
        flex-direction:column;
        gap:10px;
    }

    .logo{
        font-size:24px;
    }
}
/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* ================= HEADER ================= */
.main-header{
    background:#ffffff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:9999;
}

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

/* LOGO */
.logo{
    font-size:26px;
    font-weight:800;
    color:#111;
}
.logo span{
    color:#e63946;
}
.logo small{
    font-size:14px;
    font-weight:600;
}

/* HAMBURGER */
.menu-toggle{
    font-size:30px;
    cursor:pointer;
    display:none;
}

/* ================= NAV ================= */
#mainNav{
    display:block;
}

.menu{
    list-style:none;
    display:flex;
    gap:30px;
}

.menu li a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    padding:10px 0;
    display:block;
}

/* ================= DROPDOWN DESKTOP ================= */
.has-dropdown{
    position:relative;
}

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    display:none;
}

.dropdown li{
    border-bottom:1px solid #eee;
}

.dropdown li a{
    padding:12px 15px;
    color:#333;
}

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

/* ================= MOBILE ================= */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    #mainNav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#ffffff;
        display:none;
        border-top:1px solid #eee;
    }

    #mainNav.active{
        display:block;
    }

    .menu{
        flex-direction:column;
        gap:0;
    }

    .menu li{
        border-bottom:1px solid #eee;
    }

    .menu li a{
        padding:15px 20px;
        font-size:16px;
    }

    /* MOBILE DROPDOWN */
    .dropdown{
        position:static;
        box-shadow:none;
        display:none;
        background:#f7f7f7;
    }

    .has-dropdown.active .dropdown{
        display:block;
    }
}
/* ================= BRANDS ================= */
.brands-section{
    padding:50px 20px;
    text-align:center;
    background:#f9f9f9;
}

.section-title{
    font-size:32px;
    margin-bottom:25px;
    font-weight:700;
    color:#111;
}

.brands-wrapper{
    max-width:1000px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.brand{
    background:#ffffff;
    padding:12px 22px;
    border-radius:30px;
    font-weight:600;
    font-size:15px;
    color:#333;
    border:1px solid #e5e5e5;
    box-shadow:0 6px 15px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

/* Hover Effect */
.brand:hover{
    background:#111;
    color:#fff;
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:768px){
    .section-title{
        font-size:26px;
    }
    .brand{
        font-size:14px;
        padding:10px 18px;
    }
}
/* ================= ABOUT SECTION ================= */
.about-section{
    padding:70px 20px;
    background:#f9f9f9;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.section-title{
    font-size:34px;
    margin-bottom:20px;
    font-weight:800;
    color:#111;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#444;
    margin-bottom:15px;
}

/* IMAGE */
.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .about-container{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:28px;
        text-align:center;
    }

    .about-content p{
        font-size:15px;
        text-align:justify;
    }

    .about-image{
        order:-1;
    }
}
/* ================= TV SERVICES ================= */
.tv-services-section{
    padding:70px 20px;
    background:#ffffff;
    text-align:center;
}

.section-subtitle{
    max-width:800px;
    margin:10px auto 40px;
    color:#555;
    font-size:16px;
    line-height:1.7;
}

.tv-services-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.tv-service-box{
    background:#f9f9f9;
    padding:25px 22px;
    border-radius:16px;
    text-align:left;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.tv-service-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.tv-service-box h3{
    font-size:18px;
    margin-bottom:12px;
    color:#111;
}

.tv-service-box ul{
    padding-left:18px;
}

.tv-service-box ul li{
    font-size:14.5px;
    line-height:1.8;
    color:#444;
}

/* ================= MOBILE ================= */
@media(max-width:992px){
    .tv-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .tv-services-grid{
        grid-template-columns:1fr;
    }

    .section-subtitle{
        font-size:15px;
    }
}

.section-row{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:70px;
}

.section-row.reverse{
    flex-direction:row-reverse;
}

.section-image{
    flex:1;
}

.section-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.section-content{
    flex:1;
}

.section-title{
    font-size:32px;
    margin-bottom:15px;
}

.long-content{
    font-size:16px;
    line-height:1.8;
    color:#444;
}

/* Responsive */
@media(max-width:900px){
    .section-row,
    .section-row.reverse{
        flex-direction:column;
    }
}
/* ================= FLOATING BUTTONS ================= */
.floating-buttons{
    position:fixed;
    right:2px;
    bottom:180px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:99999;
}

.call-btn,
.whatsapp-btn{
    text-decoration:none;
    color:#fff;
    font-weight:700;
    padding:14px 22px;
    border-radius:50px;
    font-size:16px;
    box-shadow:0 8px 22px rgba(0,0,0,0.25);
    transition:0.3s;
}

.call-btn{
    background:#38708a;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:480px){
    .call-btn,
    .whatsapp-btn{
        font-size:14px;
        padding:12px 18px;
    }
}
/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===== TOP BAR ===== */
.top-bar{
    background:#111;
    color:#fff;
    font-size:14px;
}
.top-container{
    max-width:1200px;
    margin:auto;
    padding:8px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.top-left a{
    color:#fff;
    text-decoration:none;
    margin-right:15px;
}
.top-right{
    color:#ffd166;
    font-weight:600;
}

/* ===== HEADER ===== */
.main-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.header-container{
    max-width:1200px;
    margin:auto;
    padding:14px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.logo{
    font-size:28px;
    font-weight:800;
    color:#111;
}
.logo span{color:#e63946;}
.logo medium{
    font-size:14px;
    color:#666;
}

/* ===== NAV DESKTOP ===== */
#mainNav{
    display:block;
}
.menu{
    list-style:none;
    display:flex;
    gap:28px;
}
.menu li a{
    text-decoration:none;
    color:#111;
    font-weight:600;
}

/* ===== DROPDOWN DESKTOP ===== */
.has-dropdown{position:relative;}
.dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:none;
}
.has-dropdown:hover .dropdown{
    display:block;
}
.dropdown li a{
    display:block;
    padding:12px 16px;
}

/* ===== HAMBURGER ===== */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}
.hamburger span{
    width:26px;
    height:3px;
    background:#111;
    margin:4px 0;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    /* TOP BAR */
    .top-container{
        flex-direction:column;
        text-align:center;
        gap:5px;
    }

    /* SHOW HAMBURGER */
    .hamburger{
        display:flex;
    }

    /* NAV MOBILE */
    #mainNav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        border-top:1px solid #eee;
    }
    #mainNav.active{
        display:block;
    }

    .menu{
        flex-direction:column;
        gap:0;
    }
    .menu li{
        border-bottom:1px solid #eee;
    }
    .menu li a{
        padding:15px 20px;
        display:block;
    }

    /* MOBILE DROPDOWN */
    .dropdown{
        position:static;
        display:none;
        background:#f7f7f7;
        box-shadow:none;
    }
    .has-dropdown.active .dropdown{
        display:block;
    }
}
/* ===== TOP BAR ===== */
.top-bar{
    background:linear-gradient(90deg,#0f172a,#020617);
    color:#fff;
    font-size:14px;
}

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

/* LEFT SIDE */
.top-left{
    display:flex;
    gap:20px;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 14px;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    transition:all .3s ease;
}

.top-left a:hover{
    background:#2563eb;
}

/* ICON STYLE */
.top-left .icon{
    font-size:15px;
}

/* RIGHT SIDE BADGE */
.top-right span{
    background:#facc15;
    color:#111;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

/* ===== MOBILE VIEW ===== */
@media(max-width:768px){
    .top-container{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .top-left{
        flex-direction:column;
        gap:8px;
    }

    .top-left a{
        justify-content:center;
    }
}
