*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f8f9fc;
    color:#111;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* TOPBAR */

.topbar{
    background:#111;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
}

.top-right a:last-child{
    margin-right:0;
}

/* HEADER */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo img{
    height:65px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#e71d23;
}

.btn-primary{
    background:#e71d23;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    border:2px solid #e71d23;
    color:#e71d23;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
}

/* HERO */

.hero{
    padding:100px 0;
    overflow:hidden;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-left{
    flex:1;
}

.badge{
    display:inline-block;
    background:#ffe5e5;
    color:#e71d23;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-left h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-left p{
    font-size:18px;
    color:#666;
    max-width:650px;
    line-height:1.8;
    margin-bottom:30px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.features div{
    font-weight:600;
}

.features i{
    color:#e71d23;
    margin-right:8px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

/* RIGHT SIDE */

.hero-right{
    flex:1;
    position:relative;
    height:500px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.speed-card{
    width:340px;
    height:340px;
    background:linear-gradient(135deg,#e71d23,#ff5b61);
    border-radius:30px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 30px 60px rgba(231,29,35,.3);
    z-index:10;
}

.speed-card span{
    font-size:18px;
}

.speed-card h2{
    font-size:48px;
    margin:15px 0;
}

.speed-card p{
    font-size:18px;
}

.circle{
    position:absolute;
    border-radius:50%;
    background:#ffd6d7;
}

.circle1{
    width:220px;
    height:220px;
    top:30px;
    right:40px;
}

.circle2{
    width:150px;
    height:150px;
    bottom:40px;
    left:60px;
}

/* MOBILE */

@media(max-width:991px){

    nav{
        display:none;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-left h1{
        font-size:42px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        justify-content:center;
    }

    .topbar .container{
        flex-direction:column;
        gap:10px;
    }
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#e71d23;
    font-weight:700;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

/* PLANS */

.plans-section{
    padding:100px 0;
    background:#fff;
}

.plans-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.plan-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.featured{
    border:2px solid #e71d23;
}

.popular-tag{
    position:absolute;
    top:-12px;
    right:20px;
    background:#e71d23;
    color:#fff;
    padding:6px 16px;
    border-radius:20px;
    font-size:12px;
}

.price{
    font-size:50px;
    font-weight:700;
    color:#e71d23;
    margin:15px 0;
}

.plan-card ul{
    list-style:none;
    margin:25px 0;
}

.plan-card li{
    padding:10px 0;
}

/* OFFER */

.offer-section{
    padding:60px 0;
}

.offer-box{
    background:linear-gradient(135deg,#e71d23,#ff4f55);
    padding:60px;
    border-radius:25px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.offer-box h2{
    font-size:42px;
    margin:15px 0;
}

.offer-btn{
    background:#fff;
    color:#e71d23;
    padding:18px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

/* OTT */

.ott-section{
    padding:100px 0;
    background:#f8f9fc;
}

.ott-slider{
    overflow:hidden;
}

.ott-track{
    display:flex;
    gap:50px;
    width:max-content;
    animation:scrollOtt 25s linear infinite;
}

.ott-track img{
    width:130px;
    height:130px;
    object-fit:contain;
    background:#fff;
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@keyframes scrollOtt{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* FOOTER */

footer{
    background:#111;
    color:#fff;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer-col h4{
    margin-bottom:20px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col a{
    color:#ccc;
    text-decoration:none;
}

.footer-col p{
    color:#ccc;
    line-height:1.8;
}

.copyright{
    margin-top:60px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    padding:25px;
    color:#aaa;
}

/* MOBILE */

@media(max-width:991px){

    .plans-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .offer-box{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .offer-box h2{
        font-size:30px;
    }
}

/* CONTACT */

.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    margin-top:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    background:#f8f9fc;
    padding:25px;
    border-radius:20px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-card i{
    width:60px;
    height:60px;
    background:#e71d23;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:22px;
}

.contact-card h4{
    margin-bottom:8px;
}

.contact-card p{
    color:#666;
    line-height:1.7;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    padding:16px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color:#e71d23;
}

.contact-form-box button{
    border:none;
    cursor:pointer;
}

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

}

/* ABOUT SECTION */

.about-section{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    top:30px;
    left:-30px;
    background:#e71d23;
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(231,29,35,.3);
}

.experience-box h2{
    font-size:42px;
    margin-bottom:5px;
}

.section-tag{
    color:#e71d23;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.about-content h2{
    font-size:48px;
    line-height:1.2;
    margin:15px 0 25px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:35px 0;
}

.about-feature{
    font-weight:600;
}

.about-feature i{
    color:#e71d23;
    margin-right:8px;
}

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .experience-box{
        left:20px;
        top:20px;
    }

}

:root{
    --red:#ef1a1a;
    --green:#3fb05f;
    --dark:#111;
}

.stats-section{
    padding:80px 0;
    background:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat-card h2{
    color:var(--red);
    font-size:50px;
}

.why-section{
    padding:100px 0;
    background:#f8f9fc;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:45px;
    color:var(--red);
    margin-bottom:20px;
}

.enterprise-section{
    padding:100px 0;
}

.enterprise-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.enterprise-card{
    background:linear-gradient(135deg,#ef1a1a,#ff5050);
    color:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    font-weight:700;
}

.coverage-section{
    padding:100px 0;
    background:#f8f9fc;
}

.coverage-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.coverage-grid div{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.floating-card{
    position:absolute;
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    z-index:15;
}

.card1{
    top:40px;
    left:20px;
}

.card2{
    bottom:40px;
    right:20px;
}

.floating-card h3{
    color:#ef1a1a;
    margin-bottom:5px;
}

@media(max-width:991px){

    .stats-grid,
    .why-grid,
    .enterprise-grid,
    .coverage-grid{
        grid-template-columns:1fr;
    }

}