/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111;
}

/* ===========================
   HEADER
=========================== */

header{
    width:100%;
    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 70px;

    position:fixed;
    top:0;
    left:0;

    background:#fff;
    z-index:999;
}

/* Logo */

.logo{
    font-size:44px;
    font-weight:900;
    letter-spacing:-2px;
}

.logo span{
    font-weight:400;
}

/* Navigation */

nav{
    display:flex;
    gap:42px;
}

nav a{

    text-decoration:none;
    color:#222;

    font-size:17px;
    font-weight:500;

    transition:.3s;
}

nav a:hover{
    color:#6246ff;
}

/* Contact Button */

.contact-btn{

    text-decoration:none;

    background:#5b3df5;
    color:#fff;

    padding:16px 32px;

    border-radius:10px;

    font-weight:600;

    display:flex;
    align-items:center;
    gap:8px;

    transition:.3s;
}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(91,61,245,.25);

}

/* Mobile Menu */

.menu{

    display:none;

    font-size:34px;

    cursor:pointer;

}

/* ===========================
   HERO
=========================== */

.hero{

    width:100%;
    min-height:100vh;

    padding:170px 70px 80px;

    display:grid;

    grid-template-columns:1.4fr .9fr;

    gap:90px;

    align-items:center;

}

/* Badge */

.badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:14px 22px;

    border-radius:50px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    margin-bottom:35px;

    font-size:15px;

}

.dot{

    width:10px;

    height:10px;

    background:#31c72c;

    border-radius:50%;

}

/* Heading */

.hero h1{

    font-size:92px;

    line-height:1.03;

    letter-spacing:-5px;

    font-weight:800;

}

.gradient{

    background:linear-gradient(
        90deg,
        #ff914d,
        #ff4da6,
        #8a2be2,
        #4f46e5
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* Buttons */

.buttons{

    display:flex;

    gap:18px;

    margin-top:50px;

}

.btn-primary{

    background:#000;

    color:#fff;

    text-decoration:none;

    padding:22px 38px;

    border-radius:12px;

    font-size:19px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:12px;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,0,0,.22);

}

.btn-secondary{

    border:1px solid #ddd;

    text-decoration:none;

    color:#111;

    padding:22px 38px;

    border-radius:12px;

    font-size:19px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#f7f7f7;

}

/* ===========================
   RIGHT SIDE
=========================== */

.hero-right{

    margin-top:70px;

}

.hero-right p{

    font-size:26px;

    line-height:1.7;

    color:#333;

}

.review{

    margin-top:55px;

    display:flex;

    align-items:center;

    gap:22px;

}

.avatars{

    display:flex;

}

.avatars img{

    width:58px;

    height:58px;

    border-radius:50%;

    border:3px solid #fff;

    margin-left:-12px;

}

.avatars img:first-child{

    margin-left:0;

}

.review-text h4{

    font-size:18px;

    margin-bottom:6px;

}

.review-text span{

    color:#666;

    font-size:16px;

}
/*=========================================
        HOVER EFFECTS
=========================================*/

nav a{
    position: relative;
}

nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #5B3DF5;
    transition: .35s;
}

nav a:hover::after{
    width: 100%;
}

.logo{
    cursor: pointer;
    transition: .3s;
}

.logo:hover{
    transform: scale(1.04);
}

.badge{
    transition: .3s;
}

.badge:hover{
    transform: translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.hero h1{
    animation: fadeUp .8s ease;
}

.hero-right{
    animation: fadeLeft 1s ease;
}

.buttons{
    animation: fadeUp 1.2s ease;
}

/*=========================================
            ANIMATIONS
=========================================*/

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(60px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1200px){

.hero{

grid-template-columns:1fr;

gap:60px;

}

.hero h1{

font-size:72px;

}

.hero-right{

margin-top:0;

}

}

@media(max-width:992px){

header{

padding:0 35px;

}

.hero{

padding:140px 35px 60px;

}

nav{

display:none;

}

.menu{

display:block;

}

.contact-btn{

display:none;

}

.hero h1{

font-size:60px;

letter-spacing:-3px;

}

.hero-right p{

font-size:20px;

}

.buttons{

flex-wrap:wrap;

}

}

@media(max-width:768px){

.hero{

padding:130px 25px 50px;

}

.hero h1{

font-size:48px;

line-height:1.08;

}

.hero-right p{

font-size:18px;

line-height:1.8;

}

.btn-primary,
.btn-secondary{

width:100%;

justify-content:center;

}

.badge{

font-size:14px;

}

.review{

flex-direction:column;
align-items:flex-start;

}

}

@media(max-width:480px){

.logo{

font-size:34px;

}

.hero h1{

font-size:38px;

letter-spacing:-2px;

}

.hero-right p{

font-size:16px;

}

header{

height:80px;

padding:0 20px;

}

.hero{

padding:110px 20px 40px;

}

}


/* section no 2*/
/*===============================
        VIDEO SECTION
================================*/

.video-section{

    width:100%;

    padding:120px 70px;

    background:#fff;

}

.video-container{

    max-width:1450px;

    margin:auto;

}

.video-top{

    text-align:center;

    margin-bottom:60px;

}

.video-top span{

    color:#6b4eff;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

}

.video-top h2{

    margin-top:18px;

    font-size:55px;

    line-height:1.2;

    font-weight:800;

    color:#111;

}

.video-box{

    width:100%;

    height:720px;

    overflow:hidden;

    border-radius:30px;

    position:relative;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

}

.video-box video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.video-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.18);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.video-overlay:hover{

    background:rgba(0,0,0,.35);

}

.play-btn{

    width:90px;

    height:90px;

    background:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    color:#111;

    cursor:pointer;

    transition:.35s;

}

.play-btn:hover{

    transform:scale(1.12);

    background:#5B3DF5;

    color:#fff;

}

@media(max-width:768px){

.video-section{

padding:80px 20px;

}

.video-top h2{

font-size:34px;

}

.video-box{

height:280px;

border-radius:18px;

}

.play-btn{

width:65px;

height:65px;

font-size:28px;

}

}

/* Section 3*/
.trusted-section{
    width:100%;
    padding:100px 8%;
    background:#fff;
}

.trusted-title{
    text-align:center;
    font-size:30px;
    font-weight:600;
    color:#111;
    margin-bottom:70px;
    letter-spacing:.5px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:70px 60px;
    align-items:center;
    justify-items:center;
}

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo img{
    max-width:180px;
    width:100%;
    max-height:60px;
    object-fit:contain;
    transition:.4s ease;
    filter:grayscale(100%);
    opacity:.8;
}

.logo img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

@media(max-width:1200px){
.trusted-grid{
    grid-template-columns:repeat(4,1fr);
}
}

@media(max-width:768px){
.trusted-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}
.trusted-title{
    font-size:24px;
}
}

@media(max-width:480px){
.trusted-grid{
    grid-template-columns:1fr;
}
}


/* Section 3 */


.about-section{
    width:100%;
    padding:120px 8%;
    background:#fff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about-video{
    flex:1;
}

.about-video video{
    width:100%;
    border-radius:25px;
    display:block;
}

.about-content{
    flex:1;
}

.about-tag{
    display:inline-block;
    margin-bottom:20px;
    font-size:15px;
    letter-spacing:2px;
    color:#888;
    text-transform:uppercase;
}

.about-content h2{
    font-size:52px;
    line-height:1.2;
    font-weight:500;
    color:#111;
    margin-bottom:30px;
}

.about-content p{
    font-size:19px;
    color:#666;
    line-height:1.8;
    margin-bottom:45px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:250px;
    height:80px;

    border:2px solid #111;
    border-radius:60px;

    text-decoration:none;
    color:#111;
    font-size:24px;
    font-weight:500;

    transition:.4s;
}

.about-btn:hover{
    background:#111;
    color:#fff;
}




@media(max-width:991px){

.about-container{
    flex-direction:column;
}

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:38px;
}

.about-btn{
    width:220px;
    height:70px;
    font-size:22px;
}

}


.footer{

    width:100%;
    padding:80px 7%;
    background:#fff;

}

.newsletter{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#f5f5f5;

    border-radius:20px;

    padding:45px 55px;

    margin-bottom:80px;

}

.newsletter h2{

    font-size:42px;
    margin-bottom:12px;
    color:#111;

}

.newsletter p{

    font-size:20px;
    color:#666;

}

.subscribe-btn{

    width:220px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:2px solid #111;

    border-radius:60px;

    text-decoration:none;

    color:#111;

    font-size:22px;

    transition:.4s;

}

.subscribe-btn:hover{

    background:#111;
    color:#fff;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:50px;

}

.footer-column h4{

    font-size:20px;
    margin-bottom:25px;
    color:#777;
    font-weight:500;

}

.footer-column a,
.footer-column p{

    display:block;

    margin-bottom:18px;

    color:#111;

    text-decoration:none;

    font-size:19px;

    transition:.3s;

}

.footer-column a:hover{

    padding-left:8px;

}

.footer hr{

    margin:70px 0 35px;

    border:none;

    height:1px;

    background:#ddd;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#777;
    font-size:18px;

}

.footer-menu{

    display:flex;
    gap:35px;

}

.footer-menu a{

    text-decoration:none;

    color:#777;

    font-size:18px;

}

.footer-menu a:hover{

    color:#111;

}

@media(max-width:991px){

.newsletter{

    flex-direction:column;
    gap:30px;
    text-align:center;

}

.footer-links{

grid-template-columns:repeat(2,1fr);

}

.footer-bottom{

    flex-direction:column;
    gap:25px;

}

}

@media(max-width:600px){

.footer-links{

grid-template-columns:1fr;

}

.newsletter h2{

font-size:30px;

}

.newsletter p{

font-size:16px;

}

.subscribe-btn{

width:180px;
height:60px;
font-size:18px;

}

}



/* last section*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.video-section{
    width:100%;
    padding:100px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.video-box{
    width:100%;
    height:700px;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:768px){

.video-box{
    height:350px;
}

}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.stats-section{
    padding:90px 6%;
    background:#fff;
}

.container{
    max-width:1500px;
    margin:auto;
}

.title{
    font-size:68px;
    font-weight:700;
    line-height:1.1;
    color:#111;
    margin-bottom:60px;
    max-width:1200px;
}

.title span{
    color:#8a8a8a;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:2px;
    background:#e8e8e8;
    border-radius:25px;
    overflow:hidden;
}

.card{
    background:#fff;
    min-height:330px;
    padding:25px;
    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    transition:.4s;
}

.card:hover{
    background:#fafafa;
    transform:translateY(-5px);
}

.card:nth-child(1),
.card:nth-child(2),
.card:nth-child(3){
    grid-column:span 2;
}

.wide{
    grid-column:span 3;
}

.number{
    font-size:15px;
    color:#888;
}

.content h3{
    font-size:60px;
    color:#111;
    margin-bottom:12px;
    font-weight:600;
}

.content p{
    color:#555;
    font-size:19px;
    line-height:1.7;
}

@media(max-width:991px){

.title{
    font-size:42px;
}

.stats-grid{
    grid-template-columns:1fr;
}

.card,
.wide{
    grid-column:span 1;
    min-height:240px;
}

.content h3{
    font-size:42px;
}

}

.card-image video{
    width:100%;
    height:100%;
    object-fit:cover;
}



.services{

    padding:120px 8%;
    background:#fff;

}

.services-wrapper{

    display:flex;
    justify-content:space-between;
    gap:80px;
}

.services-content{

    width:42%;
}

.services-right{

    width:42%;

    display:flex;
    flex-direction:column;
}

.services-content h2{

    font-size:65px;
    margin-bottom:30px;
}

.services-content>p{

    width:260px;
    line-height:1.6;
    margin-bottom:60px;
}

.service-card{

    width:100%;
}

.video-box{

    width:100%;
    height:420px;

    border-radius:18px;
    overflow:hidden;
}

.video-box video{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;
}

.service-card:hover video{

    transform:scale(1.08);
}

.service-card h3{

    margin-top:18px;
    font-size:32px;
    font-weight:600;
}

.service-card p{

    margin-top:12px;
    color:#666;
    line-height:1.7;
}

.second{

    margin-top:90px;
}

@media(max-width:991px){

.services-wrapper{

flex-direction:column;

}

.services-content,
.services-right{

width:100%;

}

.second{

margin-top:40px;

}

.video-box{

height:300px;

}

}