/* ===========================
        GOOGLE FONTS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ===========================
        ROOT VARIABLES
=========================== */

:root{

    --bg:#07070b;

    --bg2:#101018;

    --card:#151520;

    --card2:#1c1c2b;

    --primary:#8B5CF6;

    --primary-light:#a855f7;

    --secondary:#6D28D9;

    --text:#ffffff;

    --text2:#cfcfe4;

    --border:rgba(255,255,255,.08);

    --shadow:0 15px 40px rgba(0,0,0,.45);

    --radius:22px;

}


/* ===========================
        GLOBAL
=========================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

body::before{

    content:"";

    position:fixed;

    width:550px;

    height:550px;

    background:#7c3aed;

    border-radius:50%;

    filter:blur(180px);

    opacity:.12;

    top:-250px;

    right:-180px;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    width:420px;

    height:420px;

    background:#9333ea;

    border-radius:50%;

    filter:blur(170px);

    opacity:.08;

    bottom:-180px;

    left:-120px;

    z-index:-1;

}

.home{

    width:min(1280px,92%);

    margin:auto;

}


/* ===========================
      COMMON HEADINGS
=========================== */

.section-small{

    color:var(--primary-light);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

    text-align:center;

}

.section-title{

    font-size:46px;

    font-weight:700;

    margin-top:12px;

    text-align:center;

    margin-bottom:60px;

}


/* ===========================
          HERO
=========================== */


/* ===========================
          BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

    flex-wrap:wrap;

}

.btn-primary{

    border:none;

    cursor:pointer;

    background:linear-gradient(135deg,#7c3aed,#a855f7);

    color:white;

    padding:16px 34px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 30px rgba(124,58,237,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(124,58,237,.5);

}

.btn-secondary{

    text-decoration:none;

    color:white;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(15px);

    padding:16px 34px;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:rgba(139,92,246,.15);

    border-color:#8b5cf6;

}



/* ===========================
      CLIENT SECTION
=========================== */

.clients{

    padding:90px 0;

}

.client-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:45px;

}

.client-grid div{

    text-align:center;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.05);

    color:#cfcfe4;

    transition:.35s;

    font-weight:600;

}

.client-grid div:hover{

    transform:translateY(-6px);

    background:rgba(139,92,246,.12);

    border-color:#8b5cf6;

}


/* ===========================
        ANIMATIONS
=========================== */

@keyframes grow{

    from{

        height:0;

    }

}

/* =====================================================
                    SERVICES
===================================================== */

.services{

    padding:110px 0;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:linear-gradient(145deg,#13131d,#1d1d2d);

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px 35px;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:#8B5CF6;

    border-radius:50%;

    filter:blur(120px);

    opacity:0;

    right:-100px;

    top:-100px;

    transition:.45s;

}

.service-card:hover::before{

    opacity:.18;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#8B5CF6;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    background:linear-gradient(135deg,#7c3aed,#a855f7);

    color:white;

    margin-bottom:28px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

    font-weight:700;

}

.service-card p{

    color:#bdbdd0;

    line-height:1.8;

    margin-bottom:28px;

}

.service-card a{

    color:#a855f7;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.service-card a:hover{

    color:white;

}



/* =====================================================
                    WHY US
===================================================== */

.why{

    padding:100px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-card{

    background:linear-gradient(145deg,#141420,#1b1b2d);

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#8B5CF6;

    box-shadow:0 18px 45px rgba(0,0,0,.35);

}

.why-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#ffffff;

}

.why-card p{

    color:#c3c3d3;

    line-height:1.8;

}



/* =====================================================
                    PORTFOLIO
===================================================== */

.portfolio{

    padding:110px 0;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.portfolio-card{

    background:linear-gradient(145deg,#171726,#222238);

    border:1px solid rgba(255,255,255,.06);

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

}

.portfolio-card:hover{

    transform:translateY(-12px);

    border-color:#8B5CF6;

}

.portfolio-card h1{

    font-size:64px;

    color:#9f75ff;

    margin-bottom:20px;

}

.portfolio-card h3{

    font-size:25px;

    margin-bottom:12px;

}

.portfolio-card p{

    color:#c8c8d8;

}



/* =====================================================
                    PROCESS
===================================================== */

.process{

    padding:110px 0;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.process-card{

    background:linear-gradient(145deg,#151520,#212133);

    border:1px solid rgba(255,255,255,.05);

    border-radius:24px;

    padding:40px 30px;

    transition:.35s;

    position:relative;

}

.process-card:hover{

    transform:translateY(-12px);

    border-color:#8B5CF6;

}

.process-number{

    width:65px;

    height:65px;

    border-radius:50%;

    background:linear-gradient(135deg,#7c3aed,#a855f7);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

}

.process-card h3{

    font-size:24px;

    margin-bottom:16px;

}

.process-card p{

    color:#c5c5d7;

    line-height:1.8;

}



/* =====================================================
                    REVEAL ANIMATION
===================================================== */

.service-card,
.why-card,
.portfolio-card,
.process-card{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.visible{

    opacity:1;

    transform:translateY(0);

}



/* =====================================================
                    HOVER EFFECT
===================================================== */

.service-card:hover,
.why-card:hover,
.portfolio-card:hover,
.process-card:hover{

    background:linear-gradient(145deg,#19192b,#262640);

}

/* =====================================================
                    TESTIMONIALS
===================================================== */

.testimonials{

    padding:110px 0;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:linear-gradient(145deg,#151520,#202033);

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:38px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:#8B5CF6;

    box-shadow:0 20px 50px rgba(0,0,0,.4);

}

.stars{

    color:#FFD54F;

    font-size:20px;

    margin-bottom:22px;

    letter-spacing:3px;

}

.review{

    color:#d4d4e4;

    line-height:1.9;

    font-size:16px;

    margin-bottom:35px;

    font-style:italic;

}

.client{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:22px;

}

.client h4{

    font-size:19px;

    margin-bottom:6px;

}

.client span{

    color:#a5a5ba;

    font-size:14px;

}



/* =====================================================
                        FAQ
===================================================== */

.faq{

    padding:110px 0;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:18px;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    overflow:hidden;

    background:#151520;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    color:white;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    text-align:left;

    padding:24px 30px;

    transition:.3s;

}

.faq-question:hover{

    background:rgba(139,92,246,.08);

}

.faq-question.active{

    color:#a855f7;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

    color:#c6c6d8;

    line-height:1.8;

    padding:0 30px;

}

.faq-answer.show{

    max-height:250px;

    padding:0 30px 25px;

}



/* =====================================================
                    CTA
===================================================== */

.cta{

    margin:120px 0;

    padding:70px;

    border-radius:30px;

    background:linear-gradient(135deg,#7c3aed,#5b21b6);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    overflow:hidden;

    position:relative;

}

.cta::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:white;

    opacity:.08;

    border-radius:50%;

    right:-140px;

    top:-140px;

}

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content h2{

    font-size:46px;

    margin-bottom:18px;

}

.cta-content p{

    font-size:18px;

    color:#ece8ff;

    max-width:600px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    position:relative;

    z-index:2;

}

.cta .btn-primary{

    background:white;

    color:#6D28D9;

    box-shadow:none;

}

.cta .btn-primary:hover{

    transform:translateY(-5px);

}

.cta .btn-secondary{

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

}



/* =====================================================
                        FOOTER
===================================================== */

.footer{

    padding:70px 0 50px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.footer-logo{

    font-size:34px;

    font-weight:800;

    color:#a855f7;

    letter-spacing:2px;

    margin-bottom:30px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.footer-links a{

    color:#cfcfe4;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#a855f7;

}

.footer p{

    color:#8f8fa8;

    font-size:14px;

}



/* =====================================================
                    EXTRA EFFECTS
===================================================== */

.testimonial-card,
.faq-item,
.cta{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.visible{

    opacity:1;

    transform:translateY(0);

}

::selection{

    background:#8B5CF6;

    color:white;

}

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111118;

}

::-webkit-scrollbar-thumb{

    background:#7c3aed;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9f67ff;

}

/* =====================================================
                FLOATING ANIMATIONS
===================================================== */

.dashboard{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

.hero-tag{

    animation:fadeDown .8s ease;

}

.hero-title{

    animation:fadeDown 1s ease;

}

.hero-description{

    animation:fadeDown 1.2s ease;

}

.hero-buttons{

    animation:fadeDown 1.4s ease;

}

.hero-stats{

    animation:fadeDown 1.6s ease;

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(-30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.dashboard-card{

    animation:glow 3s ease infinite alternate;

}

@keyframes glow{

    from{

        box-shadow:0 0 0 rgba(139,92,246,.1);

    }

    to{

        box-shadow:0 0 35px rgba(139,92,246,.35);

    }

}

.service-icon{

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.12);

}

.process-number{

    transition:.35s;

}

.process-card:hover .process-number{

    transform:scale(1.1);

}

.portfolio-card h1{

    transition:.35s;

}

.portfolio-card:hover h1{

    transform:scale(1.08);

}

.btn-primary:active{

    transform:scale(.97);

}

.btn-secondary:active{

    transform:scale(.97);

}



/* =====================================================
                TABLET
===================================================== */

@media(max-width:1100px){

.hero{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-description{

    margin:auto;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

}

.dashboard{

    max-width:600px;

    margin:auto;

}

.service-grid{

    grid-template-columns:repeat(2,1fr);

}

.portfolio-grid{

    grid-template-columns:repeat(2,1fr);

}

.process-grid{

    grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

    grid-template-columns:repeat(2,1fr);

}

.client-grid{

    grid-template-columns:repeat(3,1fr);

}

.why-grid{

    grid-template-columns:1fr;

}

.cta{

    flex-direction:column;

    text-align:center;

}

}



/* =====================================================
                MOBILE
===================================================== */

@media(max-width:768px){

.home{

    width:92%;

}

.hero{

    padding:70px 0;

}

.hero-title{

    font-size:46px;

    line-height:1.15;

}

.hero-description{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.btn-primary,
.btn-secondary{

    width:230px;

    text-align:center;

}

.hero-stats{

    gap:20px;

}

.stat{

    min-width:120px;

}

.stat h2{

    font-size:32px;

}

.section-title{

    font-size:34px;

    margin-bottom:40px;

}

.service-grid{

    grid-template-columns:1fr;

}

.portfolio-grid{

    grid-template-columns:1fr;

}

.process-grid{

    grid-template-columns:1fr;

}

.testimonial-grid{

    grid-template-columns:1fr;

}

.client-grid{

    grid-template-columns:repeat(2,1fr);

}

.dashboard{

    padding:25px;

}

.graph{

    height:170px;

}

.bar{

    width:30px;

}

.dashboard-card h1{

    font-size:36px;

}

.dashboard-card{

    padding:20px;

}

.cta{

    padding:45px 30px;

}

.cta-content h2{

    font-size:34px;

}

.cta-content p{

    font-size:16px;

}

.footer-links{

    gap:18px;

}

}



/* =====================================================
            SMALL PHONES
===================================================== */

@media(max-width:480px){

.hero-title{

    font-size:38px;

}

.section-title{

    font-size:28px;

}

.client-grid{

    grid-template-columns:1fr;

}

.hero-tag{

    font-size:12px;

    padding:8px 16px;

}

.service-card,
.process-card,
.why-card,
.portfolio-card,
.testimonial-card{

    padding:28px;

}

.dashboard{

    border-radius:20px;

}

.bar{

    width:24px;

}

.graph{

    gap:10px;

}

.footer-logo{

    font-size:26px;

}

}



/* =====================================================
                SMOOTH HOVER
===================================================== */

a,
button{

    transition:all .3s ease;

}

.service-card,
.process-card,
.portfolio-card,
.why-card,
.testimonial-card{

    will-change:transform;

}



/* =====================================================
                OPTIONAL BACKGROUND GRID
===================================================== */

.home{

    position:relative;

}

.home::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size:55px 55px;

    pointer-events:none;

    z-index:-1;

}

.logo{
    width:180px;
}
.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:10px 20px;

    border-radius:999px;

    border:1px solid rgba(139,92,246,.3);

    background:rgba(139,92,246,.08);

    color:#d8c7ff;

    margin-bottom:30px;

    font-size:14px;

    font-weight:600;

}

.hero-logo{

    width:32px;

    height:32px;

    border-radius:50%;

}

.founders-section{

    width:100%;
    padding:120px 8%;
    background:#090909;
    color:white;

}

.founders-heading{

    text-align:center;
    max-width:900px;
    margin:auto;

}

.small-text{

    color:#9ca3af;
    letter-spacing:4px;
    font-size:.85rem;
    margin-bottom:18px;

}

.founders-heading h1{

    font-size:4rem;
    font-weight:700;
    margin-bottom:10px;

}

.founders-heading h2{

    font-size:1.5rem;
    color:#cfcfcf;
    font-weight:400;
    line-height:1.5;

}

.founders-container{
    display:flex;
    justify-content:center;
    gap:40px;
}
.founder-card{

    flex:1;
    max-width:550px;
    min-width:420px;

    min-height:520px;

    border-radius:32px;
    overflow:hidden;
    position:relative;

    padding:45px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    transition:.4s;

}

.founder-card:hover{

    transform:translateY(-10px);

}

.orange-card{

    background:
    radial-gradient(circle at 0% 0%,
    rgba(174, 0, 255, 0.75),
    rgba(32,32,32,.95) 70%);

}

.blue-card{

    background:
    radial-gradient(circle at 0% 0%,
    rgba(0,140,255,.75),
    rgba(32,32,32,.95) 70%);

}

.gradient-circle{

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    filter:blur(90px);

    opacity:.25;

    top:-120px;
    left:-120px;

    background:white;

}

.founder-card img{

    width:130px;
    height:130px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid rgba(255,255,255,.25);

    margin-bottom:30px;

}

.founder-card span{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    margin-bottom:20px;

    font-size:.9rem;

}

.founder-card h3{

    font-size:2rem;

    margin-bottom:18px;

}

.founder-card p{

    color:#ededed;

    line-height:1.8;

    font-size:1.05rem;

}

.founder-card a{

    display:inline-block;

    margin-top:35px;

    text-decoration:none;

    color:white;

    font-weight:600;

    font-size:1rem;

}

.founder-card a:hover{

    letter-spacing:1px;

}


@media(max-width:900px){

    .founders-container{

        display:flex;
        flex-direction:column;
        gap:25px;
        margin-top:10px;

    }

    .founder-card{

        display:block;

        width:100%;
        min-width:100%;
        max-width:100%;

    }

    .founders-heading{

        padding:0 10px;

    }

    .founders-heading h1{

        font-size:2.4rem;

    }

    .founders-heading h2{

        font-size:1rem;

    }

}

/* founder tag line divider */
.founders-divider{

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

    gap:20px;
    margin:70px 0;

}

.divider-line{

    flex:1;
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

}

.founders-divider p{

    color:var(--primary);   /* or #8B5CF6 */
    font-size:1.5rem;
    font-weight:600;
    letter-spacing:1px;
    margin:0;
    white-space:nowrap;

}

@media (max-width:900px){

    .founders-divider{

        flex-direction:column;
        gap:18px;
        margin:50px 0;

    }

    .divider-line{

        width:120px;
        flex:none;

    }

    .founders-divider p{

        white-space:normal;
        text-align:center;
        font-size:.95rem;
        padding:0 20px;
        line-height:1.5;

    }

}

/* image section */
.showcase{

    padding:120px 8%;

    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:70px;
    align-items:center;

    background:#09090f;

}

.showcase-content h2{

    font-size:3rem;
    margin:20px 0;

}

.showcase-content p{

    color:#cfcfe4;
    line-height:1.8;

}

.showcase-image{

    display:flex;
    justify-content:center;

}

.showcase-image img{

    width:100%;
    max-width:650px;

    border-radius:25px;

    border:1px solid rgba(139,92,246,.2);

    box-shadow:0 40px 100px rgba(139,92,246,.15);

}
@media (max-width:768px){

    .showcase-content h2{

        font-size:2rem;
        line-height:1.3;

    }
    .showcase{

        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
        font-size:1rem;

    }

    .showcase-image{

        display:flex;
        justify-content:center;

    }
    .showcase-image img{
        width:100%;
        max-width:100%;
        height:auto;
        display:block;
        margin:auto;
    }
}