*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#1e2430;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

.header{
    padding:28px 0;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.header-logo{
    height:95px;
    width:auto;
    object-fit:contain;
}

nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    text-decoration:none;
    font-weight:600;
    color:#1e2430;
    transition:0.25s ease;
}

nav a:hover{
    color:#5b2fc0;
}

/* BUTTONS */

.btn{
    padding:14px 28px;
    border:none;
    background:linear-gradient(135deg,#5b2fc0,#3b82f6);
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    transition:0.25s ease;
    font-weight:700;
    font-size:15px;
}

.btn:hover{
    transform:translateY(-2px);
    opacity:0.94;
}

.white{
    background:#fff;
    color:#5b2fc0;
}

/* HERO */

.hero{
    padding:90px 0 100px;
    position:relative;
    overflow:hidden;
    background:#fff;
}

.hero-bg{
    position:absolute;
    right:20px;
    top:0;
    width:600px;
    z-index:0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
	max-width: 1550px;
}

.tag{
    color:#5b2fc0;
    font-weight:700;
    letter-spacing:1px;
    font-size:14px;
}

.hero h1{
    font-size:76px;
    line-height:1.05;
    margin:18px 0;
    font-weight:800;
}

.hero h1 span{
    color:#5b2fc0;
}

.hero p{
    font-size:20px;
    max-width:580px;
    margin-bottom:35px;
    color:#555;
    line-height:1.8;
}

/* HERO LOTTIE STYLE */

.hero-animation{
    position:relative;
    width:100%;
    max-width:500px;
    margin:auto;
}

.main-logo{
    width:100%;
    max-width:420px;
    position:relative;
    z-index:2;
    animation:floatLogo 6s ease-in-out infinite;
	margin-left: 140px;
}

@keyframes floatLogo{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }
}

.floating{
    position:absolute;
    width:18px;
    height:18px;
    border-radius:4px;
    background:linear-gradient(135deg,#5b2fc0,#3b82f6);
    opacity:0.8;
    filter:blur(0.2px);
}

.floating::before{
    content:'';
    position:absolute;
    inset:-6px;
    background:inherit;
    filter:blur(12px);
    opacity:0.4;
    z-index:-1;
}

.cube1{
    top:20%;
    left:10%;
    animation:float1 5s ease-in-out infinite;
}

.cube2{
    top:70%;
    right:10%;
    animation:float2 6s ease-in-out infinite;
}

.cube3{
    top:10%;
    right:20%;
    animation:float3 7s ease-in-out infinite;
}

@keyframes float1{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }
}

@keyframes float2{

    0%,100%{
        transform:translateY(0px) rotate(0deg);
    }

    50%{
        transform:translateY(-15px) rotate(180deg);
    }
}

@keyframes float3{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-25px);
    }
}

/* BRANDS */

.brands{
    padding:100px 0;
    background:#f4f7fb;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title span{
    color:#5b2fc0;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
}

.section-title h2{
    font-size:54px;
    margin:12px 0 12px;
    font-weight:800;
}

.title-line{
    width:70px;
    height:3px;
    background:#7c4dff;
    margin:0 auto 22px;
    border-radius:20px;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.brands-layout{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.brand-card,
.stronger-card{
    background:#fff;
    border-radius:14px;
    padding:34px 28px;
    text-align:center;
    transition:0.25s ease;
}

.brand-card:hover,
.stronger-card:hover{
    transform:translateY(-5px);
}

.brand-card img{
    width:100%;
    max-width:260px;
    height:110px;
    object-fit:contain;
    margin:0 auto 22px;
    display:block;
}

.brand-card p{
    color:#555;
    line-height:1.8;
    font-size:15px;
    margin-bottom:24px;
}

.brand-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:0.25s ease;
    border:2px solid;
}

.brand-button:hover{
    transform:translateY(-2px);
}

.brand-button.blue{
    color:#3498db;
    border-color:#3498db;
}

.brand-button.purple{
    color:#7c4dff;
    border-color:#7c4dff;
}

.brand-button.green{
    color:#59b84d;
    border-color:#59b84d;
}

.stronger-card{
    grid-column:span 2;
    background:#eaeaed;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.stronger-logo{
    width:90px;
    margin-bottom:18px;
}

.stronger-card h3{
    color:#5b2fc0;
    margin-bottom:16px;
    font-size:30px;
}

.stronger-card p{
    max-width:520px;
    line-height:1.9;
    color:#555;
    position:relative;
    z-index:2;
}

.floating-particles span{
    position:absolute;
    width:12px;
    height:12px;
    background:linear-gradient(
        135deg,
        #5b2fc0,
        #3b82f6
    );
    border-radius:4px;
    opacity:0.8;
}

.floating-particles span:nth-child(1){
    right:60px;
    top:40px;
}

.floating-particles span:nth-child(2){
    right:30px;
    top:90px;
}

.floating-particles span:nth-child(3){
    right:70px;
    bottom:60px;
}

.floating-particles span:nth-child(4){
    right:120px;
    bottom:30px;
}

.floating-particles span:nth-child(5){
    right:20px;
    bottom:120px;
}

/* ABOUT */

.about{
    padding-top :120px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 0.9fr;
    gap:100px;
	max-width: 100%;
}

.about-line{
    width:72px;
    height:3px;
    background:linear-gradient(
        90deg,
        #5b2fc0,
        #7c4dff
    );
    border-radius:50px;
    margin:4px 0 30px;
}

.about h2{
    font-size:52px;
    margin:16px 0 20px;
}

.about p{
    margin-bottom:20px;
    color:#555;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:35px;
}

.features h4{
    margin-bottom:8px;
}

.feature-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.feature-icon{
    width:58px;
    height:58px;
    object-fit:contain;

    margin-bottom:20px;

    transition:0.3s ease;
}

.feature-item:hover .feature-icon{
    transform:
    translateY(-4px)
    scale(1.05);
}

.feature-item h4{
    font-size:24px;
    margin-bottom:14px;
}

.feature-item p{
    margin:0 0 12px;
    line-height:1.7;
    max-width:220px;
}

.about-image{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    padding-top:120px;
    margin-right:-140px;
}
.about-left {
    margin-left: 150px;
}

.about-image img{
    width:100%;
    max-width:760px;

    display:block;

    object-fit:contain;
}

/* CTA */

.cta{
    padding:35px 0;
    background:linear-gradient(135deg,#5b2fc0,#3b82f6);
    color:#fff;
}

.cta-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.cta-logo{
    width:60px;
    opacity:0.95;
}

/* FOOTER */

footer{
    background:#111827;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    width:230px;
    margin-bottom:20px;
}

footer ul{
    list-style:none;
}

footer li{
    margin-bottom:10px;
}

footer a{
    text-decoration:none;
    color:#fff;
    transition:0.25s ease;
}

footer a:hover{
    color:#7c4dff;
}

.copyright{
    text-align:center;
    margin-top:40px;
    opacity:0.7;
}

/* MODAL */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.modal.active{
    display:flex;
}

.modal-content{
    background:#fff;
    padding:40px;
    border-radius:12px;
    width:90%;
    max-width:520px;
    position:relative;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    border:none;
    background:none;
    font-size:34px;
    cursor:pointer;
}

form{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:20px;
}

input,
textarea{
    padding:16px;
    border:1px solid #d7dbe4;
    border-radius:8px;
    font-family:'Inter',sans-serif;
}

textarea{
    min-height:140px;
    resize:vertical;
}

.captcha{
    display:flex;
    align-items:center;
    gap:10px;
    padding:16px;
    background:#f5f5f5;
    border-radius:8px;
}

.submit-btn{
    width:100%;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero-grid,
    .about-grid,
    .footer-grid,
    .features,
    .cta-wrap{
        grid-template-columns:1fr;
        display:grid;
    }

    .brands-layout{
        grid-template-columns:1fr;
    }

    .stronger-card{
        grid-column:span 1;
    }

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:50px;
    }

    .section-title h2{
        font-size:42px;
    }

    nav{
        display:none;
    }

    .hero-bg{
        width:100%;
        opacity:0.05;
    }

    .hero-animation{
        margin-top:40px;
    }
}

/* =========================
   ANIMATED CONTACT BUTTONS
========================= */

.animated-btn{
    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    isolation:isolate;

    transition:all .35s ease;
}

.animated-btn span{
    position:relative;
    z-index:5;
}

.animated-btn:hover{
    transform:
    translateY(-4px)
    scale(1.03);
}
.animated-btn,
.animated-btn:visited{
    color:#fff;
    text-decoration:none;
}

.animated-btn:hover,
.animated-btn:focus,
.animated-btn:active{
    color:#fff;
    text-decoration:none;
}

nav .animated-btn{
    color:#fff !important;
    text-decoration:none !important;
}

.cta .animated-btn{
    color:#5b2fc0;
}

.cta .animated-btn:hover{
    color:#5b2fc0;
}
/* Moving Glow */

.btn-glow{
    position:absolute;

    top:-50%;
    left:-120%;

    width:80%;
    height:200%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:rotate(20deg);

    animation:shine 4s linear infinite;

    z-index:2;
}

@keyframes shine{

    0%{
        left:-120%;
    }

    100%{
        left:140%;
    }
}

/* Floating Particles */

.btn-particles span{
    position:absolute;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#fff;

    opacity:.6;

    animation:floatParticle 3s ease-in-out infinite;
}

.btn-particles span:nth-child(1){
    top:10px;
    left:15px;
    animation-delay:0s;
}

.btn-particles span:nth-child(2){
    top:20px;
    right:20px;
    animation-delay:1s;
}

.btn-particles span:nth-child(3){
    bottom:10px;
    right:40px;
    animation-delay:2s;
}

@keyframes floatParticle{

    0%{
        transform:translateY(0px);
        opacity:.2;
    }

    50%{
        transform:translateY(-8px);
        opacity:1;
    }

    100%{
        transform:translateY(0px);
        opacity:.2;
    }
}