*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body{
    color:#fff;
}
.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}
/* ================= HEADER ================= */
.submenu{
    position: relative;
}

.submenu-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.submenu-content{
    display:none;
    position:static;
    padding: 10px;
    width:100%;
    background:#3a3a3a;
    margin-top:0;
}

.submenu-content a{
    display:block;
    padding:12px 18px;
    color:#bdbdbd;
    border-bottom:1px solid #4a4a4a;
    text-transform:uppercase;
    font-size:12px;
    font-weight:600;
}

.submenu-content a:last-child{
    border-bottom:none;
}

.submenu-content{
    display:none;
}

.submenu.open .submenu-content{
    display:block;
}

/* Rotate arrow when open */
.submenu-toggle i{
    transition:.3s ease;
}

.submenu.open .submenu-toggle i{
    transform:rotate(90deg);
}
.new-launch{
    position:relative;
    display:inline-block;
}

.new-badge {
    position: absolute;
    top: -19px;
    right: -18px;
    background: #ff0000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}
.top-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.menu-toggle{
    background:none;
    border:0;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    line-height:1;
}

.top-links{
    display:flex;
    align-items:center;
    gap:40px;
    transition:.3s;
}

.top-bar.active .top-menu {
    display: none;
}


.site-header {
    width: 100%;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Top dark bar */
.top-bar {
    background: #263642;
    height: 54px;
    display: flex;
    align-items: center;
    
}

.top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trend {
    color: #fff;
    font-size: 13px;
}

.trend span {
    color: #42d85a;
    font-weight: 700;
    margin-right: 5px;
}
.top-links{
    display:flex;
    align-items:center;
    gap:235px;
}

/* Blog & Client Area */
.top-menu{
    display:flex;
    align-items:center;
    gap:25px;
}

.top-menu a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
}

.top-menu .client-area{
    color:#59d458;
    font-weight:600;
}

.top-menu a:hover{
    color:#59d458;
}
.social-icons{
    display:flex;
    align-items:center;
    gap:8px;
}

.social{
    width:30px;
    height:30px;
    background:#3c4954;
    border-radius:3px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:all .3s ease;
}

.social i{
    font-size:14px;
    color:#fff;
}

/* Hover Effects */
.social.facebook:hover{
    background:#39579a;
}

.social.instagram:hover{
    background:#517fa4; /* Instagram pink */
}

.social.youtube:hover{
    background:#a8240f;
}

/* Main nav */
.nav-bar {
  
    background: #fff;
    height: 96px;
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    z-index: 999;
    transition: all 0.3s ease;
}



.nav-bar.fixed {
    position: fixed;
    height: 80px;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.nav-fixed {
    padding-top: 80px; /* Change 80px to your navbar height */
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 320px;
    height: auto;
    display: block;
}
nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: #00152c;
    text-decoration: none;
    font-size: 13px;
    font-family: sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}
/* nav a:hover {
    border-bottom: 3px solid #2B3843;
    line-height: 33px;
} */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #222;
    padding: 22px 30px;
    display: none;
    z-index: 999;
    border-top: 3px solid #0b4aa2;
    border-radius: 0 0 3px 3px;
}

.dropdown-menu a {
    display: block;
    color: #aaa;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 0;
    border-bottom: 1px solid #3a3a3a;
    text-transform: uppercase;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

nav a.active {
    color: #00152c;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    background: #222;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 12px 20px 18px;
    border-top: 3px solid #16459b;
    z-index: 9999;
}

.mega-dropdown:hover .mega-menu {
    display: grid;
}

.mega-col h4 {
    background: #000;
    color: #bfc7cf;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 18px;
    margin: 0 0 2px;
    text-transform: uppercase;
}

.mega-col a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid #3b3b3b;
    text-transform: uppercase;
}

.mega-col a:hover {
    color: #fff;
}

.mega-col a.active-sub {
    background: #333;
    padding-left: 15px;
}
.nav-link i{
    font-size:10px;
    margin-top:4px;
    line-height:1;
}


/* ================= HERO ================= */


.hero{

    min-height:600px;
    background-image:url("../images/hero-banner.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;

}
.hero-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.hero-content{
    width:42%;

}
.hero-content h1{

    font-size:52px;
    line-height:1.08;
    font-weight:700;
    margin-bottom:20px;

}

.hero-content h1 span{
    color:#59c84c;
}
.hero-content p{

    font-size:16px;
    line-height:1.6;
    color:#ddd;
    max-width:380px;
    margin-bottom:25px;

}
.hero-features{

   display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 0px;
    margin:30px 0;
}
.feature-item{

    display:flex;
    align-items:center;
    color:#fff;
    font-size:15px;
    font-weight:500;

}

.feature-item::before{

    content:"✓";
    width:20px;
    height:20px;
    min-width:20px;
    border-radius:50%;
    background:#57c84d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
    margin-right:10px;

}


.hero-features div::first-letter{
    color:#58c64d;
}

.hero-buttons{
    margin-top:30px;

}

a.btn.blue {
    background: #024995;
}

.btn{
    padding: 14px 25px !important;
    text-decoration: none;
    border-radius: 9px !important;
    font-size: 15px;
    margin-right: 10px;
    display: inline-block;

}

.green{

    background:#59c84c;
    color:white;

}
.blue{
    background:#0757aa;
    color:white;
}

.hero-image{
    width:55%;
}

.hero-image img{
    width:100%;
    display:block;
}

/* ================= PRICING SECTION ================= */


.pricing-section{
    background:#fff;
    padding:70px 0;
}

.pricing-container{

    width:90%;
    max-width:1280px;
    margin:auto;

}
.pricing-title{

    text-align:center;
    margin-bottom:35px;

}
.pricing-title h2{
    color:#111;
    font-size:43px;
    font-weight:700;
    margin-bottom:10px;

}
.pricing-title p{
    color: #3C4A41;
    font-size: 20px;
   line-height: 22px;
}

.pricing-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:27px;
    align-items:stretch;
}

.price-card.first {
    border-top-left-radius: 41px;
    border-bottom-left-radius: 41px;
    border-bottom-right-radius: 41px;
}

.price-card.second {
    border-bottom-left-radius: 41px;
    border-bottom-right-radius: 41px;
    border-top-left-radius: 41px;
}
.price-card.third {
    border-radius: 41px;
}
.price-card{
    position:relative;
    display:flex;
    flex-direction:column;
    border:1px solid #62c85b;
    background:#f5f5f5;
    padding:24px 30px 34px;
}


.badge{

    position:absolute;
    right:0;
    top:0;
    background:#5fc554;
    color:white;
    font-size:15px;
    padding:10px 18px;
    border-radius:0 0 0 15px;

}
.icon{
    font-size:28px;
    margin-bottom:10px;

}

.price-card h3{
    color: #222;
    font-size: 36px;
    margin-bottom: 8px;
}
.price{
    color: #0B1C30;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
}
.price-card ul{
    padding:0;
    list-style:none;
    margin:0;
    flex:1;          /* Takes the remaining height */
}


.price-card li{
    color: #3C4A41;
    font-size: 15px;
    margin-bottom: 14px;
    padding-left: 14px;
    position: relative;

}


.price-card li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#58c64d;
    font-weight:bold;

}


.price-btn{
    display:block;
    text-align:center;
    background:#61c456;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:6px;
    font-size:15px;
    margin-top:20px;   /* Space above button */
}
.price-btn:hover{
   background:#45ae3b;

}
/* ================= WHITE LABEL OTT SECTION ================= */

.white-label-section{
    background:#061a30;
    padding:55px 0 70px;

}

.white-label-container{
    width:90%;
    max-width:1200px;
    margin:auto;

}
.white-label-title{
    text-align:center;
    color:white;
    margin-bottom:25px;

}
.white-label-title h2{
    font-size:43px;
    font-weight:700;
    margin-bottom:8px;
}



.white-label-title h2 span{
    color:#59c94c;
}
.white-label-title p{
   font-size:24px;
    margin-bottom:5px;

}

.white-label-title small{
    font-size:20px;
    color:#ddd;

}

/* IMAGE BOX */
.ott-showcase{
    position:relative;
    margin:auto;
    max-width:1280px;
}

.ott-showcase img{
   width:100%;
    display:block;
    border-radius:45px;
}

/* LABELS */


.tag{
    position:absolute;
    background:#59c94c;
    color:white;
    font-size:11px;
    font-weight:600;
    padding:8px 14px;
    border-radius:4px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.website{
    left:18%;
    top:27%;

}
.admin{
    right:10%;
    top:28%;

}
.apps{

    left:18%;

    bottom:15%;

}

.billing{

    right:13%;

    bottom:15%;

}
/* ================= OTT APPLICATION SECTION ================= */


.ott-app-section{
    padding:60px 0;
    background:#fff;

}

.ott-app-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    background:#f5f5f5;
    border-radius:25px;
    padding:30px 45px;
    display:flex;
    align-items:center;
    gap:50px;

}

/* IMAGE */

.ott-app-image{
  width:45%;

}
.ott-app-image img{
    width:100%;
    display:block;

}
/* CONTENT */
.ott-app-content{
    width:55%;
}

.ott-app-content h2{
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
    color: #0B1C30;
    margin-bottom: 18px;
}

.ott-app-content p{
    color: #3C4A41;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}

.ott-app-content h4{
    color: #3C4A41;
    margin-bottom: 15px;
    font-size: 22px;
}
/* PLATFORMS */
.platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    max-width: 500px; /* adjust as needed */
    margin-left: -40px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.platform span {
    margin-top: 10px;
    color: #3C4A41;
}
.icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.icon.apple img {
    width: 100%;
    height: 100%;
}
.icon.tv img {
    width: 100%;
    height: 100%;
}
.icon.android img {
    width: 100%;
    height: 100%;
}
.icon.web img {
    width: 100%;
    height: 100%;
}
/* ================= OTT WEBSITE SECTION ================= */


.ott-website-section{
    padding:50px 0;
    background:#fff;
}

.ott-website-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    background:#f5f5f5;
    border-radius:25px;
    padding:35px 45px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* CONTENT */
.ott-website-content{

    width:50%;

}

.ott-website-content h2{
    font-size:46px;

    line-height:52px;

    color:#10213b;

    margin-bottom:18px;

}



.ott-website-content h2 span{

    color:#5bc653;

}

.ott-website-content p{
    color:#3C4A41;
    font-size:20px;
    line-height:1.6;
   margin-bottom:18px;
}

.ott-website-content h4{
    color:#3C4A41;
    font-size:22px;
    margin-bottom:12px;

}


/* FEATURES */


.website-features{
    display:flex;
   gap:40px;

}



.website-features ul{
    padding:0;
    margin:0;
    list-style:none;

}



.website-features li{
    font-size:16px;
    color:#3C4A41;
    margin-bottom:8px;
}

.website-features li::before{
    content:"•";
    color:#58c64d;
    font-weight:bold;
    margin-right:7px;

}



/* IMAGE */


.ott-website-image{
    width:50%;

}

.ott-website-image img{
    width:100%;
    display:block;

}

/* ================= OTT BILLING SECTION ================= */


.ott-billing-section{
    padding:50px 0;
    background:#fff;
}

.ott-billing-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    background:#f5f5f5;
    border-radius:25px;
    padding:35px 45px;
    display:flex;
    align-items:center;
    gap:40px;

}

/* IMAGE */
.ott-billing-image{
    width:45%;
}

.ott-billing-image img{
    width:100%;
    display:block;
    border-radius:15px;

}


/* CONTENT */

.ott-billing-content{
    width:55%;
}

.ott-billing-content h2{
    font-size: 46px;
    color: #10213b;
    margin-bottom: 15px;
    line-height: 1.2;

}

.ott-billing-content h2 span{
    color:#5bc653;

}

.ott-billing-content p{
    color: #3C4A41;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;

}

.ott-billing-content h4{
    color: #3C4A41;
    font-size: 22px;
    margin-bottom: 12px;

}

/* FEATURES */


.billing-features{

    padding:0;

    margin:0;

    list-style:none;

}



.billing-features li{
    color: #3C4A41;
    font-size: 16px;
    margin-bottom: 11px;

}



.billing-features li::before{
    content:"•";
    color:#58c64d;
    font-weight:bold;
    margin-right:8px;

}
/* ================= OTT FEATURES ================= */

.feature-box img {
    width: 30px;
}

.ott-features-section{
    position:relative;
    padding:70px 0;
    background:#fff;
    overflow:hidden;

}

/* SIDE SHAPES */


.feature-green-shape{
    position: absolute;
    left: -80px;
    top: 183px;
    width: 150px;
    height: 244px;
    background: #d9f4d8;
    border-radius: 0 132px 121px 0;

}

.feature-blue-shape{

    position: absolute;
    right: -73px;
    top: 3px;
    width: 150px;
    height: 239px;
    background: #024995;
    opacity: 41%;
    border-radius: 132px 0 0 121px;

}


.features-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:2;

}

.features-title{
    text-align:center;
    margin-bottom:25px;

}

.features-title h2{
    color:#000;
    font-size:43px;
    margin-bottom:8px;

}

.features-title p{
    color:#3C4A41;
    font-size:20px;

}

/* GRID */


.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;

}


.feature-box{
    height: 42px;
    border: 1px solid #aaa;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 33px 24px;
    gap: 8px;
    color: #535353;
    font-size: 18px;
    background: white;
    transition: .3s;
}

.feature-box span{
    color:#59c94c;
    font-size:20px;
    font-weight:bold;

}

.feature-box:hover{
    border-color:#59c94c;
    transform:translateY(-3px);

}

/* ================= WHY CHOOSE SECTION ================= */

.why-choose-section{
    background:#fff;
    padding:60px 0;
}
.why-container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.why-title{
    text-align:center;
    margin-bottom:35px;
}


.why-title h2{
    color: #000;
    font-size: 43px;
    line-height: 48px;
}

/* CARDS */


.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;

}

.why-card{
    background: #F9FFF9;
    border: 1px solid #73d36c;
    border-radius: 16px;
    padding: 36px;
    min-height: 294px;
}

.why-card{
  
    padding: 30px;
    box-sizing: border-box;
}


.why-icon{
    font-size:30px;
    margin-bottom:8px;

}

.why-card h3{
    color: #17263B;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-card p{
    color: #6C6C6C;
    font-size: 18px;
    line-height: 1.5;
}


.why-card:hover{
    transform:translateY(-5px);
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* ================= HOW IT WORKS ================= */
.how-container h2 {
    font-size: 43px;
    color: #000;
    text-align: center;
}
.how-wrapper{
    max-width:1140px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 420px 1fr;
    align-items:center;
    gap:40px;
    padding:80px 20px;
}

/* Left & Right */
.how-left,
.how-right{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:390px;
}

.how-item{
    position:relative;
}

.how-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #222;
}

.how-item p {
    color: #777;
    line-height: 21px;
    max-width: 300px;
    font-size: 16px;
}

/* Green underline */
.how-item h3::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    background:#75c043;
    margin-top:12px;
}
.how-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.how-left,
.how-right{
    width:26%;
}

.how-image{
    width:40%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.brain-img{
    width:440px;      
    max-width:100%;
    height:auto;
    display:block;
    background:transparent;
}


 /* ================= FAQ SECTION ================= */


.faq-section{
    background:#fff;
    padding:70px 0;

}
.faq-container{
    width: 90%;
    max-width: 1280px;
    margin: auto;
}



.faq-container h2{
    text-align:center;
    color:#222;
    font-size:43px;
    margin-bottom:40px;

}

.faq-item{
    background:white;
    border-radius:18px;
    margin-bottom:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;

}


.faq-question{
    padding:26px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    color:#10213b;
    font-size:23px;
    font-weight:500;
}

.faq-question span{
    font-size:23px;
}

.faq-answer{

    display:none;
    padding: 0 20px 22px;
    color: #3C4A41;
    font-size: 18px;
    line-height: 1.6;

}



/* ACTIVE */

.faq-item.active {
    border: 1px solid rgba(172, 172, 172, 0.4); /* #ACACAC at 40% */
    background: #fff; /* Optional */
}

.faq-item.active .faq-question{

    color:#59c94c;

    font-weight:600;

}


.faq-item.active .faq-answer{

    display:block;

}

/* ================= CONTACT SECTION ================= */


.contact-section{
    padding:70px 0;
    background:#fff;

}

.contact-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;

}



/* LEFT */


.contact-content{

    width:50%;

}



.contact-content h2{

    font-size:43px;

    line-height:1.2;

    color:#10213b;

    margin-bottom:22px;

}



.contact-content p{
    color:#667;
    font-size:20px;
    line-height:24px;
    max-width:380px;
    margin-bottom:35px;

}





.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}



.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:13px;

    color:#425;

}
.mail-class {
    font-size: 16px;
}

.telegram-class {
    font-size: 16px;
}



/* FORM */

.contact-form{
    width:45%;
    background:#fff;
    padding:25px 20px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.10);

}



.form-row{
    display:flex;
    gap:12px;

}



.form-group{
    width:100%;
    margin-bottom:15px;

}



.form-group label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#26354a;
    margin-bottom:9px;

}



.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:8px;
    padding:12px;
    font-size:14px;
    outline:none;
    box-sizing:border-box;

}



.form-group textarea{

    height:80px;

    resize:none;

}


.contact-item a{

    color:#10213b;

    text-decoration:none;

    transition:.3s;

}

.contact-item a:hover{

    color:#5bc653;

    text-decoration:underline;

}

.contact-item strong{

    display:block;

    margin-bottom:3px;

    color:#10213b;

}


.contact-form button{
    width:100%;
    border:none;
    background:#62c657;
    color:white;
    padding:14px;
    border-radius:7px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;

}



.contact-form button:hover{
   background:#4db343;

}

/*================ CTA SECTION ================*/

.cta-section{
    background:#4DB343;
    padding:35px 0;

}

.cta-container{
    width:90%;
    max-width:1140px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

}


.cta-image{
    width:48%;

}


.cta-image img{
    width:100%;
    display:block;
    border-radius:22px;

}



.cta-content{

    width:52%;

    color:#fff;

}



.cta-content h2{

    font-size:38px;

    line-height:1.2;

    margin-bottom:15px;

}



.cta-content p{
       font-size: 18px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 20px;

}



.cta-form{
    width:100%;
    max-width:420px;
}

.cta-form input{
    flex:1;
    height:45px;
    border:none;
    outline:none;
    border-radius:5px;
    padding:0 15px;
    font-size:13px;

}

.cta-form button{
    height:45px;
    padding:0 22px;
    border:none;
    border-radius:5px;
    background:#63c657;
    color:#fff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;

}


.cta-form button:hover{
    background:#49b23d;

}

.email-box{
    display:flex;
    align-items:center;
    background:#fff;
    border:2px solid rgba(255,255,255,.6);
    border-radius:6px;
   padding:3px;
    overflow:hidden;

}

.email-box input{

    flex:1;
    border:none;
    outline:none;
    height:42px;
    padding:0 15px;
    font-size:13px;
    color:#555;
    background:transparent;

}

.email-box input::placeholder{
    color:#9a9a9a;

}

.email-box button{
    border:none;
    background:#63c657;
    color:#fff;
    padding:0 28px;
    height:42px;
    border-radius:4px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    transition:.3s;

}

.email-box button:hover{
    background:#4caf50;

}
/*================ FOOTER ================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.footer{
    background:#0d4f97;
    color:#fff;
}

.footer-top{
    width: 90%;
    max-width:1280px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:45px;
    padding:50px 0px;
}

.footer-column{
    flex:1;
}

.footer-column h3{
    font-size:17px;
    margin-bottom:30px;
    font-weight:700;
    letter-spacing:1px;
}

.logo img{
    max-width:320px;
}

.about p{
    line-height:23px;
    font-size:16px;
    color:#f4f4f4;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#53b515;
    color:#fff;
    padding:16px 28px;
    text-decoration:none;
    font-weight:bold;
    border-radius:3px;
    transition:.3s;
}

.btn:hover{
    background:#3f950f;
}

.links ul{
    list-style:none;
    margin-bottom:40px;
}

.links ul li{
    border-bottom:1px solid rgba(255,255,255,.2);
}

.links ul li a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:14px 0;
    font-weight:600;
    font-size: 15px;
    transition:.3s;
}

.links ul li a:hover{
    color:#7ddcff;
}

.connect h3{
    margin-bottom:20px;
}

.connect p{
    margin-bottom:15px;
    font-size:17px;
     display: flex;
    align-items: center;
    gap: 10px;
   
}


.connect p img {
    width: 20px;
    height: 20px;
}

.connect p a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.connect p a:hover {
    color: #7fd3ff;
}

.payment{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.payment img{
    width:100%;
    max-width:390px;
    border:8px solid rgba(255,255,255,.15);
    background:#fff;
}
.footer-bottom{
    background: rgba(0,0,0,.3);
    padding:18px 0;
}

.footer-container{
    width: 90%;
    max-width:1280px;
    margin:auto;
}

.footer-text{
    color:#fff;
    font-size:16px;
    font-weight:500;
    margin:0 0 12px;
}

.copyright{
    color:#fff;
    font-size:16px;
    margin:0 0 12px;
}

.footer-menu{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.footer-menu a{
    color: #b8c7db;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
    font-weight: 600;
}

.footer-menu a:hover{
    color:#fff;
}

.footer-social-icons{
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:10px;
}

.footer-social-icons a{
    color:#fff;
    font-size:18px;
    text-decoration:none;
}

.footer-social-icons a:hover{
    color:#38bdf8;
}

.mobile-toggle,
.mobile-menu,
.mobile-overlay {
    display: none;
}

.mobile-toggle {
    width: 30px;
    height: 26px;
    padding: 3px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

body.menu-open {
    overflow: hidden;
}

/* Popup Overlay */
.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-overlay.active{
    display:flex;
}

/* Popup Box */
.popup {
    position: relative;
    width: 500px;
    height: 100%;
    max-height: 526px;
    background: #050505;
    border-radius: 25px;
    padding: 35px;
    color: #fff;
    box-sizing: border-box;
}
.popup h2 {
    text-align: center;
    margin-bottom: 7px;
    font-size: 26px;
    font-weight: 700;
}

/* Close Button */
.close-btn{
    position:absolute;
    right:15px;
    top:15px;
    width:30px;
    height:30px;
    border:none;
    border-radius:50%;
    background:#444;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

/* Inputs */
.popup input, .popup select, .popup textarea {
    width: 100%;
    background: #1d1d1d;
    border: 1px solid #333;
    color: #fff;
    padding: 13px 15px;
    margin-bottom: 9px;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
}
.popup textarea{
    height:90px;
    resize:none;
}

.phone-row{
    display:flex;
    gap:10px;
}

.country-code{
    width:70px !important;
}

/* Button */
.submit-btn{
    width:100%;
    background:#68d15d;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
}

.submit-btn:hover{
    background:#57bf4d;
}

/* Footer */
.footer-text{
    margin-top:18px;
    color:#aaa;
    font-size:13px;
    line-height:1.5;
}

.footer-text a{
    color:#fff;
    text-decoration:underline;
}

/* Optional button styles */
.hero-buttons .btn{
    display:inline-block;
    padding:14px 28px;
    text-decoration:none;
    color:#fff;
    border-radius:6px;
    margin-right:10px;
}

.btn.green{
    background:#68d15d;
}

.btn.blue{
    background:#2b78ff;
}


@media (max-width: 1024px) {

    /* Every submenu is closed initially */
.mobile-dropdown > .mobile-submenu {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #303030;
}

/* Open only this dropdown's direct submenu */
.mobile-dropdown.open > .mobile-submenu {
    display: block;
}

/* Dropdown header containing title and arrow */
.mobile-dropdown-header {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-top: 1px solid #454545;
    background: #303030;
}

/* Clickable nested dropdown title */
.mobile-dropdown-header > .mobile-dropdown-title {
    flex: 1;
    min-width: 0;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    color: #bcbcbc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
}

/* Nested arrow button */
.mobile-dropdown-header > .mobile-dropdown-toggle {
    width: 50px;
    min-width: 50px;
    min-height: 47px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: #bcbcbc;
    cursor: pointer;
}

/* Arrow animation */
.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

/* All arrows point down by default */
.mobile-dropdown-toggle > i {
    transform: rotate(0deg) !important;
    transition: transform 0.3s ease;
}

/* Only the button that has aria-expanded=true points up */
.mobile-dropdown-toggle[aria-expanded="true"] > i {
    transform: rotate(180deg) !important;
}

/* Nested submenu links */
.mobile-dropdown-header + .mobile-submenu > li > a {
    display: block;
    padding: 12px 20px 12px 40px;
    border-top: 1px solid #454545;
    color: #bcbcbc;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
}


     .top-bar {
        display: none !important;
    }

    /* Hide desktop navigation */
    .nav-inner > nav {
        display: none !important;
    }

    /* Hide the old hamburger inside the top bar */
    #menuToggle {
        display: none !important;
    }

    /* Keep only logo and mobile hamburger */
    .nav-bar {
        height: 80px;
    }

    .nav-inner {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-toggle {
        display: flex;
        flex-shrink: 0;
    }


    .desktop-only,
    .desktop-nav {
        display: none;
    }


    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9997;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: #fff;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.35s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-head {
        height: 80px;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }

    .mobile-menu-head .brand {
        display: flex;
        align-items: center;
        text-decoration: none;
        font-size: 24px;
        font-weight: 700;
    }

    .brand-whmcs {
        color: #074a91;
    }

    .brand-smarters {
        color: #52c84f;
    }

    .mobile-close {
        width: 40px;
        height: 40px;
        background: transparent;
        border: 0;
        color: #333;
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-menu-content {
        min-height: calc(100vh - 80px);
        margin: 0 28px;
        padding: 44px 40px 30px;
        background: #222;
    }

    .mobile-socials {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        padding-left: 10px;
    }

    .mobile-socials a {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border-radius: 3px;
        background: #3b3b3b;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
    }

    .mobile-nav-list,
    .mobile-submenu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav-list > li {
        border-top: 1px solid #3b3b3b;
    }

    .mobile-nav-list > li:last-child {
        border-bottom: 1px solid #3b3b3b;
    }

    .mobile-nav-list > li > a,
    .mobile-dropdown-toggle {
        width: 100%;
        min-height: 47px;
        padding: 13px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        border: 0;
        color: #bcbcbc;
        text-align: left;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-dropdown-toggle i {
        margin-right: 20px;
        font-size: 12px;
        transition: transform 0.25s ease;
    }

    .mobile-dropdown.open .mobile-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        background: #303030;
        transition: max-height 0.3s ease;
        max-height: 0;
        margin: 0;
        padding: 0;
        list-style: none;
        visibility: hidden;
        opacity: 0;
        transition:
            max-height 0.3s ease,
            opacity 0.2s ease,
            visibility 0.2s ease;
    }

    .mobile-dropdown.open .mobile-submenu {
        max-height: 700px;
        visibility: visible;
        opacity: 1;
    }

    .mobile-submenu a {
        display: block;
        padding: 12px 20px;
        border-top: 1px solid #454545;
        color: #aaa;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
    }

    .mobile-new {
        margin-left: 8px;
        padding: 2px 4px;
        border-radius: 2px;
        background: red;
        color: #fff;
        font-size: 10px;
    }
}

@media (max-width: 520px) {
    .mobile-menu-head {
        padding: 0 20px;
    }

    .mobile-menu-head .brand {
        font-size: 21px;
    }

    .mobile-menu-content {
        margin: 0;
        padding: 40px 26px 28px;
    }

    .mobile-nav-list > li > a,
    .mobile-dropdown-toggle {
        font-size: 15px;
    }
}
@media(max-width:900px){



    .top-links {
    display: flex;
    align-items: center;
    gap: 122px;
}

    .footer-top{
    flex-direction:column;
    gap:40px;
}

.payment{
    justify-content:flex-start;
}

.bottom-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}
    .footer-container{

    grid-template-columns:1fr 1fr;

}
    
.cta-container{

    flex-direction:column;

    text-align:center;

}

.cta-image,
.cta-content{

    width:100%;

}

.cta-content h2{

    font-size:30px;

}

.cta-form{
    width: 100%;
    max-width: 518px;
    flex-direction:column;
}

.cta-form input, .cta-form button {
    width: 100%;
    max-width: 252px;
}
    
    
.contact-container{
    flex-direction:column;
    gap:30px;

}

.contact-content,
.contact-form{
    width:100%;

}

.contact-content h2{
    font-size:30px;

}

.how-wrapper{

    grid-template-columns:1fr;

}

.faq-box {
    padding: 0px 20px;
}
.footer-top {
    padding: 20px 20px;
}
.footer-bottom {
    padding: 20px;
}

.how-image{
    order: 0;
    margin-bottom:30px;
}

.how-left .how-item::after,
.how-right .how-item::before{
    display:none;
}

.how-item{
    text-align:center;
}

.how-item p{
   margin:auto;
}
.circle{
    width:220px;
    height:220px;
}   
.why-grid{
    grid-template-columns:repeat(2,1fr);
}    
.feature-grid{
    grid-template-columns:repeat(2,1fr);
}
.ott-billing-container{
    flex-direction:column;
    padding:25px;
}

.ott-billing-image,
.ott-billing-content{
    width:100%;
}

.ott-billing-content h2{
    font-size:26px;
}
.ott-website-container{
    flex-direction:column-reverse;
     padding:25px;
}

.ott-website-content,
.ott-website-image{

    width:100%;

}


.ott-website-content h2{

    font-size:26px;

}


.website-features{

    gap:20px;

}
    .ott-app-container{

    flex-direction:column;

    padding:25px;

}


.ott-app-image,
.ott-app-content{

    width:100%;

}



.ott-app-content h2{

    font-size:26px;

}



.platforms{

    grid-template-columns:repeat(3,1fr);

}

.white-label-title h2{

    font-size:25px;

}


.tag{

    font-size:8px;

    padding:5px 8px;

}
.pricing-cards{

    grid-template-columns:1fr;

}



.hero-wrapper{

    flex-direction:column;

}


.hero-content,
.hero-image{

    width:100%;

}


.hero-content h1{

    font-size:38px;

}


}

/* Prevent background scroll when popup is open */
body.popup-open {
    overflow: hidden;
}

/* Tablet */
@media (max-width: 768px) {

    .popup-overlay {
        padding: 20px;
        align-items: center;
        overflow-y: auto;
    }

    .popup {
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: calc(100vh - 40px);
        padding: 30px 24px;
        border-radius: 20px;
        overflow-y: auto;
    }

    .popup h2 {
        font-size: 24px;
        padding-right: 35px;
    }

    .phone-row {
        flex-wrap: wrap;
        gap: 0;
    }

    .country-code {
        width: 100% !important;
    }
}



@media (max-width: 767px) {

    
       .mobile-menu-head img {
    width: 100%;
    max-width: 252px !important;
}
    .footer-text {
    font-size: 15px;
}

.copyright {
    font-size: 14px;
}

.footer-menu a {
    font-size: 16px;
    font-weight: 500;
}

  body {
    overflow-x: hidden;
  }

  .container,
  .pricing-container,
  .white-label-container,
  .features-container,
  .why-container,
  .contact-container,
  .cta-container,
  .footer-container,
  .footer-top {
    width: 92%;
    max-width: 92%;
  }

.hero-content {
    margin-bottom: 226px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}
   .hero {
        min-height: 450px; /* Adjust as needed */
        background-image: url("../images/banner-mobile.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

  a.btn.green {
   padding: 10px;
    margin-bottom: 0px;
}
a.btn.blue {
    padding: 10px;
}

  .top-bar {
    height: auto;
    padding: 10px 0;
  }

  .top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-bar {
    height: auto;
    padding: 15px 0;
  }

.nav-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
  .logo img {
    width: 220px;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 50px 0;
    text-align: center;
  }

  .hero-wrapper,
  .ott-app-container,
  .ott-website-container,
  .ott-billing-container,
  .contact-container,
  .cta-container,
  .footer-top {
    flex-direction: column;
  }

  .hero-content,
  .hero-image,
  .ott-app-image,
  .ott-app-content,
  .ott-website-content,
  .ott-website-image,
  .ott-billing-image,
  .ott-billing-content,
  .contact-content,
  .contact-form,
  .cta-image,
  .cta-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-features,
  .pricing-cards,
  .feature-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title h2,
  .white-label-title h2,
  .features-title h2,
  .why-title h2,
  .how-container h2,
  .faq-container h2,
  .contact-content h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .pricing-title p,
  .white-label-title p,
  .white-label-title small,
  .features-title p {
    font-size: 16px;
  }

  .price-card {
    border-radius: 24px;
    padding: 24px;
  }

  .ott-app-container,
  .ott-website-container,
  .ott-billing-container {
    padding: 24px 18px;
    gap: 25px;
  }

  .ott-website-container {
    flex-direction: column-reverse;
  }

  .ott-app-content h2,
  .ott-website-content h2,
  .ott-billing-content h2,
  .cta-content h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .website-features,
  .form-row,
  .email-box {
    flex-direction: column;
  }

  .tag {
    display: none;
  }

  .how-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }

  .how-left,
  .how-right,
  .how-image {
    width: 100%;
    height: auto;
  }

  .how-item {
    text-align: center;
    margin-bottom: 30px;
  }

  .how-item p {
    margin: auto;
  }

  .faq-container {
    width: 92%;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 15px;
  }

  .email-box input,
  .email-box button {
    width: 100%;
  }

  .footer-top {
    padding: 35px 0;
  }
 .how-item h3::after {
    content: "";
    display: block;
    width: 729px;
    height: 2px;
    background: #75c043;
    margin-top: 12px;
}

.links ul li a {
    padding: 12px 0;
}
.footer-menu a {
    font-size: 14px;

}
  .payment {
    justify-content: flex-start;
  }

  .payment img {
    max-width: 100%;
  }
}

@media(max-width:500px){

 
      .how-item h3::after {
    content: "";
    display: block;
    width: 377px;
    height: 2px;
    background: #75c043;
    margin-top: 12px;
}

    .email-box{

    flex-direction:column;

    padding:8px;

}

.email-box input{

    width:100%;
    margin-bottom:8px;

}

.email-box button{

    width:100%;

}
.email-box {
    display: flex;
    flex-direction: row;
}

.cta-form input, .cta-form button {
    max-width: 178px;
}


.feature-grid{

    grid-template-columns:1fr;

}
.why-grid{

    grid-template-columns:1fr;

}



.why-title h2{

    font-size:26px;

}

.faq-container h2{

    font-size:25px;

}


.faq-question{

    font-size:16px;

}


.form-row{

    flex-direction:column;

}
.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-social{

    justify-content:center;

}

.footer-contact li{

    justify-content:center;

}

    .footer-menu{
        align-items:flex-start;
        gap:10px;
    }

    .footer-social-icons{
        margin-left:130px;
        margin-top:10px;
    }

}

/* Mobile */
@media (max-width: 480px) {

    .popup-overlay {
        padding: 12px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .popup {
        width: 100%;
        max-width: none;
        height: auto;
        max-height: calc(100dvh - 24px);
        margin: 12px 0;
        padding: 26px 16px 20px;
        border-radius: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .popup h2 {
        font-size: 21px;
        line-height: 1.3;
        margin: 4px 35px 16px 0;
        text-align: left;
    }

    .close-btn {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
        z-index: 2;
    }

    .popup input,
    .popup select,
    .popup textarea {
        min-height: 46px;
        padding: 12px 13px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .popup textarea {
        height: 90px;
        min-height: 90px;
    }

    .phone-row {
        display: block;
    }

    .country-code {
        width: 100% !important;
    }

    .submit-btn {
        min-height: 48px;
        margin-top: 4px;
        padding: 13px;
        font-size: 16px;
    }
}
