*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* NAVBAR */

.custom-navbar{
    background:#fff;
    padding:18px 0;
    transition:.4s;
}

.custom-navbar.scrolled{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar-brand img{
    height:48px;
}

.nav-link{
    color:#111;
    font-size:17px;
    font-weight:500;
    margin-left:25px;
}

.nav-link:hover{
    color:#4c50ff;
}

.dropdown-menu{
    border:none;
    border-radius:14px;
    padding:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.dropdown-item{
    padding:12px;
    border-radius:10px;
}

.dropdown-item:hover{
    background:#f5f5ff;
}

/* HERO */

.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:5;
    height:100%;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-bottom:120px;
}

.hero-btn{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.4s;
}

.hero-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-4px);
}

.hero-btn svg{
    transition:.4s;
}

.hero-btn:hover svg{
    transform:translateX(5px);
}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:25px;
        margin-top:15px;
        border-radius:16px;
    }

    .nav-link{
        margin-left:0;
        padding:12px 0;
    }

    .hero-content{
        padding-bottom:90px;
    }

}

@media(max-width:768px){

    .hero-btn{
        font-size:14px;
        padding:14px 26px;
    }

    .navbar-brand img{
        height:40px;
    }

}



/* brand*/

.brands-section{
    background:#fff;
    padding:40px 0 60px;
    overflow:hidden;
}

.brands-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:30px;
}

.scroll-wrapper{
    overflow:hidden;
    white-space:nowrap;
    width:100%;
    position:relative;
    margin:15px 0;
}

.scroll-content{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;
}

.scroll-content img{
    height:55px;
    width:auto;
    object-fit:contain;
    transition:.3s;
}

.scroll-content img:hover{
    transform:scale(1.08);
}

.left-to-right .scroll-content{
    animation:scrollLeft 25s linear infinite;
}

.right-to-left .scroll-content{
    animation:scrollRight 25s linear infinite;
}

@keyframes scrollLeft{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@keyframes scrollRight{

    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }

}

@media(max-width:768px){

    .brands-title{
        font-size:24px;
        padding:0 15px;
    }

    .scroll-content{
        gap:40px;
    }

    .scroll-content img{
        height:38px;
    }

}

/* service */


.services-section{
    padding:80px 0;
    background:#fff;
}

.service-heading{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.highlightss{
    color:#4f5eff;
}

.service-subtitle{
    max-width:900px;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.service-card{
    background:#eceaf8;
    padding:28px;
    border-radius:8px;
    height:100%;
    cursor:pointer;
    transition:.35s;
    overflow:hidden;
}

.service-card.active,
.service-card:hover{
    background:#4f5eff;
    color:#fff;
    transform:translateY(-5px);
}

.service-card h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
}

.service-card p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
}

.service-card span{
    font-size:13px;
    font-weight:500;
}

.service-card.active span,
.service-card:hover span{
    color:#fff;
}

@media(max-width:991px){

    .service-heading{
        font-size:32px;
        text-align:center;
    }

    .service-subtitle{
        text-align:center;
    }

}

@media(max-width:768px){

    .services-section{
        padding:60px 0;
    }

    .service-heading{
        font-size:26px;
    }

    .service-card{
        padding:22px;
    }

}

.approach-section{
    background:#fff;
    padding:80px 0;
}

.approach-title{
    font-size:42px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.approach-title span{
    color:#302cba;
}

.approach-text{
    color:#6c757d;
    line-height:1.9;
    font-size:15px;
    margin-bottom:30px;
}

.approach-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 28px;
    border:1px solid #111;
    border-radius:50px;
    color:#111;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.approach-btn:hover{
    background:#111;
    color:#fff;
}

.graph-card{
    background:#171c23;
    border-radius:16px;
    padding:20px;
    height:100%;
    width: 500px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.graph-card h5{
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
    font-weight:500;
}

.chart-wrapper{
    position:relative;
    height:350px;
}

#revenueChart{
    width:100% !important;
    height:100% !important;
}
@media(max-width:991px){

    .approach-title{
        font-size:32px;
        text-align:center;
    }

    .approach-text{
        text-align:center;
    }

    .approach-btn{
        display:flex;
        width:max-content;
        margin:auto;
    }

}

@media(max-width:768px){

    .approach-section{
        padding:60px 0;
    }

    .approach-title{
        font-size:26px;
    }

    .approach-text{
        font-size:14px;
    }

}
.stats-section{
    background:#f6fcff;
}

.section-title{
    font-size:42px;
    font-weight:700;
    text-transform:uppercase;
}

.section-title span{
    color:#302cba;
}

.main-stat h3{
    font-size:5rem;
    color:#302cba;
    font-weight:700;
}

.main-stat p{
    color:#777;
    border-bottom:1px solid #ddd;
    padding-bottom:15px;
}

.stat-box{
    margin-bottom:25px;
}

.stat-box h4{
    font-size:3rem;
    font-weight:700;
}

.stat-box:nth-child(1) h4{
    color:#5287e1;
}

.stat-box:nth-child(2) h4{
    color:#6f42c1;
}

.stat-box:nth-child(3) h4{
    color:#baeeb0;
}

.stat-box:nth-child(4) h4{
    color:#f284fc;
}

.stat-box p{
    color:#777;
    border-bottom:1px solid #ddd;
    padding-bottom:15px;
}


/* Growth Section */

.growth-title{
    font-size:42px;
    font-weight:700;
}

.growth-title span{
    color:#302cba;
}

.connect-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:12px 25px;
    border:1px solid #000;
    border-radius:50px;
    text-decoration:none;
    color:#000;
    margin-top:25px;
    box-shadow:0 6px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.connect-btn:hover{
    transform:translateY(-4px);
    color:#000;
}

.custom-accordion .accordion-item{
    border:none;
    border-bottom:1px solid #ddd;
}

.custom-accordion .accordion-button{
    background:none;
    box-shadow:none;
    font-weight:600;
    padding:20px 0;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:none;
    color:#000;
}

.custom-accordion .accordion-body{
    color:#666;
    padding:0 0 20px;
}

@media(max-width:768px){

    .main-stat h3{
        font-size:3.5rem;
    }

    .stat-box h4{
        font-size:2.4rem;
    }

    .growth-title{
        font-size:32px;
    }

}


.multichannel-section{
    background:#fff;
    overflow:hidden;
}

.mockup-img{
    max-width:420px;
    width:100%;
    animation:float 4s ease-in-out infinite;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title span{
    color:#302cba;
}

.section-text{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.audience-list{
    list-style:none;
    padding:0;
}

.audience-list li{
    margin-bottom:18px;
    line-height:1.8;
    color:#555;
}

.partner-logos{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    align-items:center;
    margin-top:30px;
}

.partner-logos img{
    height:40px;
    transition:.4s;
}

.partner-logos img:hover{
    transform:translateY(-5px);
}

.strategy-wrapper{
    padding:60px 20px;
    display:flex;
    justify-content:center;
}

.strategy-card{
    background:#4f5bd5;
    max-width:900px;
    width:100%;
    text-align:center;
    color:#fff;
    padding:45px;
    border-radius:12px;
    position:relative;
    overflow:hidden;
}

.strategy-card::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
}

.strategy-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.small-text{
    margin-bottom:5px;
}

.member-text{
    margin-bottom:25px;
}

.strategy-users{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.strategy-users img{
    width:42px;
    height:42px;
    border-radius:50%;
    border:3px solid #fff;
    margin-left:-10px;
    object-fit:cover;
}

.strategy-users span{
    margin-left:15px;
    font-size:14px;
}

.strategy-btn{
    display:inline-block;
    color:#fff;
    border:2px solid #fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
}

.strategy-btn:hover{
    background:#fff;
    color:#4f5bd5;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}

@media(max-width:991px){

    .section-title{
        font-size:34px;
        text-align:center;
    }

    .section-text{
        text-align:center;
    }

    .partner-logos{
        justify-content:center;
    }

    .strategy-card{
        padding:30px 20px;
    }

}

@media(max-width:576px){

    .section-title{
        font-size:28px;
    }

    .strategy-users{
        flex-wrap:wrap;
        gap:10px;
    }

    .strategy-users img{
        margin-left:0;
    }


}


/* ==========================
   BOOK STRATEGY CALL
========================== */

.cta-section{
    background:#f1f1f1;
}

.cta-title{
    font-size:42px;
    font-weight:700;
    color:#000;
    margin:0;
}

.cta-title span{
    color:#302CBA;
}

.cta-btn-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}

.cta-connect-btn{
    width:230px;
    height:58px;
    border:1px solid #000;
    border-radius:50px;
    background:#fff;
    text-decoration:none;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 8px 0 22px;
    box-shadow:0 4px 12px rgba(0,0,0,.20);
    transition:.35s;
}

.cta-connect-btn:hover{
    transform:translateY(-4px);
    color:#000;
}

.cta-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.cta-connect-btn:hover .cta-icon{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .cta-title{
        font-size:34px;
        text-align:center;
        margin-bottom:20px;
    }

    .cta-connect-btn{
        width:220px;
    }
}



.stats-slider-section{
    background:#fff;
}

.stats-slider{
    margin-top:20px;
}

.stats-slider .slick-slide{
    padding:15px;
}

.stat-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    min-height:230px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h2{
    font-size:52px;
    font-weight:800;
    color:#302CBA;
    margin-bottom:15px;
}

.stat-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.7;
    min-height:80px;
}

.logo-box{
    display:flex;
    justify-content:center;
    align-items:center;
    height:20px; /* apni requirement ke hisab se */
}

.logo-box img{
    width:100px;
    height:40px;
    object-fit:contain;
    display:block;
}

.slick-dots li button:before{
    font-size:12px;
    color:#302CBA;
}

.slick-dots li.slick-active button:before{
    color:#302CBA;
}

@media(max-width:768px){

    .stat-card{
        min-height:auto;
        padding:30px 20px;
    }

    .stat-card h2{
        font-size:40px;
    }
}


.highlightss{
    color:#302cba;
}

/* TESTIMONIAL */

.testimonials{
    background:#fff;
}

.client-img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    cursor:pointer;
    transition:.4s;
    opacity:.5;
}

.client-img.active{
    opacity:1;
    transform:scale(1.15);
    border:4px solid #302cba;
}

.testimonial-box{
    max-width:700px;
    margin:auto;
}

.testimonial-box p{
    font-size:28px;
    font-weight:600;
    margin-bottom:15px;
}

.testimonial-box h6{
    color:#302cba;
    font-weight:700;
}

/* NEWSLETTER */

.newsletter-section{
    padding:80px 0;
    background:#111827;
}

.newsletter-card{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.newsletter-card h3{
    font-size:38px;
    font-weight:700;
}

.newsletter-card p{
    opacity:.8;
    margin:20px 0;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:350px;
    padding:14px 18px;
    border:none;
    border-radius:10px;
}

.newsletter-form button{
    border:none;
    background:#302cba;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
}

/* FOOTER */

.main-footer{
    background:#0f172a;
    color:#fff;
    padding:80px 0 30px;
}

.main-footer h5,
.main-footer h4{
    margin-bottom:20px;
}

.main-footer ul{
    list-style:none;
    padding:0;
}

.main-footer ul li{
    margin-bottom:12px;
}

.main-footer a{
    color:#b8c1d1;
    text-decoration:none;
}

.main-footer a:hover{
    color:#fff;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1e293b;
    display:flex;
    align-items:center;
    justify-content:center;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:25px;
    color:#9ca3af;
}

/* PARTNERS */

.partners-section{
    background:#111827;
    padding:70px 0;
    text-align:center;
}

.partners-section h4{
    color:#fff;
    margin-bottom:50px;
}

.partners-section img{
    max-height:70px;
    object-fit:contain;
    transition:.4s;
    filter:grayscale(100%);
}

.partners-section img:hover{
    filter:none;
    transform:translateY(-5px);
}

@media(max-width:768px){

    .testimonial-box p{
        font-size:22px;
    }

    .client-img{
        width:60px;
        height:60px;
    }

    .newsletter-card h3{
        font-size:28px;
    }

    .newsletter-form input{
        width:100%;
    }

}