*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Syne', sans-serif;
    background:#f7f7f7;
    overflow-x:hidden;
}

/*==========================
NAVBAR
==========================*/

.navbar{

    position:fixed;

    top:20px;

    left:0;

    width:100%;

    display:flex;

    justify-content:center;

    z-index:999;

}

.navbar nav{

    width:min(1200px,92%);

    background:#fff;

    border-radius:16px;

    padding:14px 24px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    box-shadow:0 12px 40px rgba(0,0,0,.08);

}

.logo{

    font-family:"Syne",sans-serif;

    font-size:1.2rem;

    font-weight:700;

    color:#111;

    text-decoration:none;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:32px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#111;

    font-size:.9rem;

    transition:.3s;

}

.nav-links a:hover{

    color:#8B5CF6;

}

.contact-btn{

    background:#8B5CF6;

    color:#fff !important;

    padding:10px 18px;

    border-radius:10px;

}

.hamburger{

    display:none;

    flex-direction:column;

    justify-content:center;

    gap:6px;

    background:none;

    border:none;

    cursor:pointer;

}

.hamburger span{

    width:26px;

    height:2px;

    background:#111;

    transition:.35s;

}

@media (max-width:900px){

.navbar nav{

    padding:18px;

}

.hamburger{

    display:flex;

}

.nav-links{

    position:absolute;

    top:85px;

    left:50%;

    transform:translateX(-50%);

    width:min(92%,420px);

    background:white;

    border-radius:18px;

    padding:25px;

    display:flex;

    flex-direction:column;

    gap:18px;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.nav-links.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}

.contact-btn{

    width:100%;

    text-align:center;

}

}

.hamburger.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}

/* =========================
   LOGO
========================= */

.logo{

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

}

.logo img{

    height:42px;

    width:auto;

    display:block;

    transition:
        transform .3s ease,
        opacity .3s ease;

}

.logo:hover img{

    transform:scale(1.06);

    opacity:.9;

}

@media (max-width:768px){

    .logo img{

        height:34px;

    }

}


/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:
    120px
    8vw
    0;
}

/* =========================
   BACKGROUND
========================= */

.parallax-bg{

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at 75% 25%,
        rgba(191,155,255,.18),
        transparent 40%
    );

    z-index:0;

    overflow:hidden;

    will-change:transform;
}

.parallax-bg::after{

    content:"";

    position:absolute;

    top:50%;

    right:-8%;

    transform:translateY(-50%);

    width:min(1200px,65vw);

    aspect-ratio:1;

    background:
    url("image/Focus.png")
    center
    center /
    contain
    no-repeat;

    pointer-events:none;

    opacity:0;

    animation:
    revealShape
    1.8s
    cubic-bezier(.22,1,.36,1)
    forwards;

    animation:
        revealShape 1.8s cubic-bezier(.22,1,.36,1) forwards,
        frontParallax linear;

    animation-timeline:
        auto,
        scroll(root block);

    animation-range:
        normal,
        0 100vh;
}

/* =========================
   CONTENT
========================= */

.hero-content{
    max-width:600px;
    z-index:2;
}

.hero-content h1{
    font-size:clamp(3rem,4vw,5rem);
    line-height:.95;
    font-weight:700;
    color:#111;
}

.hero-content h1 span{
    display:block;
    font-weight:500;
}

.hero-content p{
    margin-top:28px;
    max-width:500px;
    line-height:1.5;
    color:#444;
    font-size:1.15rem;
}

.hero-actions{
    display:flex;
    gap:16px;
    margin-top:32px;
}

.btn-outline,
.btn-primary{
    text-decoration:none;
    padding:14px 24px;
    border-radius:10px;
    transition:.3s;
    font-size:.9rem;
}

.btn-outline{
    border:1px solid #8b5cf6;
    color:#8b5cf6;
}

.btn-outline:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:#8b5cf6;
    color:white;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

/* =========================
   FOREGROUND IMAGE
========================= */

/* .hero-visual{
    position:absolute;
    right:-40%;
    top:0;
    width:100vw;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

} */

.hero-visual img{
    width:100%;
    max-width:900px;

    transform:
    translateY(180px)
    scale(.9);

    opacity:0;

    animation:
    revealShape
    1.8s
    cubic-bezier(.22,1,.36,1)
    forwards;

    will-change:
    transform,
    opacity;
}

@keyframes revealShape{

    from{

        opacity:0;

        transform:
        translateY(180px)
        scale(.9);

    }

    to{

        opacity:1;

        transform:
        translateY(-50%)
        scale(1);

    }

}

/* =========================
   SCROLL TIMELINE
========================= */

@supports (animation-timeline: scroll()) {

    .parallax-bg{
        animation:bgParallax linear;
        animation-timeline:scroll(root block);
        animation-range:0 100vh;
    }

    .hero-content{
        animation:midParallax linear;
        animation-timeline:scroll(root block);
        animation-range:0 100vh;
    }

    .hero-visual{
        animation:frontParallax linear;
        animation-timeline:scroll(root block);
        animation-range:0 100vh;
    }

    @keyframes bgParallax{
        to{
            transform:translateY(20%);
        }
    }

    @keyframes midParallax{
        to{
            transform:translateY(50%);
        }
    }

    @keyframes frontParallax{
        to{
            transform:translateY(100%);
        }
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{

    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    background:#eef0fb;

    overflow:hidden;

    padding:120px 8%;
}

.about-container{

    width:100%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    align-items:center;

    gap:70px;
}

/* ==========================
   LEFT CONTENT
========================== */

.about-tag{

    display:inline-block;

    margin-bottom:18px;

    letter-spacing:2px;

    font-size:.8rem;

    font-weight:700;

    color:#7c6cf0;
}

.about-content h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(2rem,4vw,4.6rem);

    line-height:1;

    color:#111;

    margin-bottom:30px;
}

.about-content p{

    font-size: 1.05rem;

    line-height:1.9;

    color:#555;

    margin-bottom:18px;

    max-width:600px;
}

/* ==========================
   IMAGE SIDE
========================== */

.about-image{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{

    width:100%;

    max-width:700px;

    position:relative;

    z-index:2;

    animation:
    floatIllustration
    8s ease-in-out infinite;
}

.image-glow{

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(132,123,255,.22),
    transparent 70%
    );

    filter:blur(40px);

    z-index:1;
}

/* ==========================
   FLOATING EFFECT
========================== */

@keyframes floatIllustration{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* ==========================
   REVEAL STATES
========================== */
/*=========================================
UNIVERSAL REVEAL ANIMATION
=========================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s cubic-bezier(.22,1,.36,1),
        transform .8s cubic-bezier(.22,1,.36,1);

    will-change:
        transform,
        opacity;
}

.reveal.active{

    opacity:1;

    transform:translateY(0);
}

.delay-1{

    transition-delay:.1s;
}

.delay-2{

    transition-delay:.2s;
}

.delay-3{

    transition-delay:.3s;
}

.delay-4{

    transition-delay:.4s;
}

.delay-5{

    transition-delay:.5s;
}

/*======================
TOOLS SECTION==========*/

.tools-section{

    overflow:hidden;

    margin-top:80px;

    position:relative;
}

.tools-track{

    display:flex;
    gap:24px;
    width:max-content;

    animation:
    marquee 18s linear infinite;
}

.tool-card{

    width:170px;
    height:170px;

    flex-shrink:0;

    background:#dfe3f8;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.tool-card img{

    width:60px;
}

/*=================
AUTO SCROLL
===================*/

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

.tools-track:hover{
    animation-play-state:paused;
}

.tool-card{

    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.tool-card:hover{

    transform:
    translateY(-8px)
    scale(1.03);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}


/*=======================
EXPERIENCE SECTION
=========================
*/

.experience-section{

    padding:120px 8%;
    background:#f7f7f7;
}

.experience-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:500px 1fr;
    gap:80px;
    align-items:center;
}


/*===Card Gradients===*/

.experience-cards{

    display:flex;
    flex-direction:column;
    gap:18px;
}
.exp-card{

    padding:20px 25px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #5b43c5
    );

    color:white;

    box-shadow:
    0 20px 40px
    rgba(91,67,197,.18);

    transition:
    transform .4s ease;
}

.exp-card:hover{

    transform:
    translateY(-6px);
}

.exp-card h3{

    font-size:2rem;
    margin-bottom:8px;
}

.exp-card p{

    font-size:1.2rem;
    opacity:.95;
}

/*======CONTENT SIDE=======*/

.section-tag{

    display:inline-block;
    margin-bottom:14px;
    font-size:.8rem;
    letter-spacing:2px;
    color:#8b5cf6;
    font-weight:700;
}

.experience-content h2{

    font-size:
    clamp(1.5rem,3.25vw,4rem);
    margin-bottom:24px;
    color:#111;
}

.experience-content p{

    font-size:1.05rem;
    color:#555;
    line-height:1.9;
    margin-bottom:16px;
    max-width:650px;
}

/*====REVEAL ANIMATION=======*/

/*=====INITIAL STATE========*/

/* .reveal-card{

    opacity:0;

    transform:
    translateY(60px);

    transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal-content{

    opacity:0;

    transform:
    translateY(60px);

    transition:
    opacity .8s ease,
    transform .8s ease;
} */


/*====ACTIVE STATE======*/

/* .reveal-card.active,
.reveal-content.active{

    opacity:1;
    transform:translateY(0);
} */

/*=====STAGGER DELAYS=====*/

/* .exp-card:nth-child(1){
    transition-delay:.1s;
}

.exp-card:nth-child(2){
    transition-delay:.25s;
}

.exp-card:nth-child(3){
    transition-delay:.4s;
} */

/*====PROCESS SECTION======*/

.process-section{

    padding:120px 8%;
    background:#eef0fb;
}

.process-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:
        1fr
        1.2fr;

    gap:80px;
    align-items:center;
}


/*====PROCESS CONTENT======*/

.process-content h2{

    font-family:'Syne',sans-serif;

    font-size:
    clamp(2.5rem,4vw,4rem);

    margin-bottom:24px;

    color:#111;
}

.process-content p{

    color:#555;
    line-height:1.9;

    margin-bottom:20px;

    max-width:520px;
}

.section-tag{

    display:inline-block;

    margin-bottom:12px;

    font-size:.8rem;

    letter-spacing:2px;

    font-weight:700;

    color:#8b5cf6;
}


/*====CONTENT CARD GRID======*/

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(2, 1fr);

    gap:22px;

    align-items:start;
}

/*======ASYMMETRICAL ALIGNMENT====*/

.card-1{
    transform:translateY(-20px);
}

.card-2{
    transform:translateY(12px);
}

.card-3{
    transform:translateY(-15px);
}

.card-4{
    transform:translateY(-5px);
}

/*====CONTENT CARDS=====*/

.process-card{

    background:white;

    padding:28px;

    border-radius:18px;

    min-height:230px;

    transition:
    transform .35s ease,
    background .35s ease,
    box-shadow .35s ease;

    box-shadow:
    0 12px 30px
    rgba(0,0,0,.05);
}

.card-icon{

    width:54px;
    height:54px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    background:
    rgba(139,92,246,.12);

    color:#8b5cf6;

    font-size:1.2rem;
}

.process-card h3{

    font-size:1.1rem;

    margin-bottom:12px;

    color:#111;
}

.process-card p{

    color:#666;

    line-height:1.7;

    font-size:.95rem;
}

.process-card:hover{

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6f49f5
    );

    box-shadow:
    0 25px 50px
    rgba(139,92,246,.25);
}

.card-1:hover{
    transform:translateY(-12px);
}

.card-2:hover{
    transform:translateY(2px);
}

.card-3:hover{
    transform:translateY(-3px);
}

.card-4:hover{
    transform:translateY(-13px);
}

.process-card:hover h3,
.process-card:hover p{

    color:white;
}

.process-card:hover .card-icon{

    background:
    rgba(255,255,255,.18);

    color:white;
}


/*PORTFOLIO SECTION*/

.portfolio-section{

    padding:120px 8%;

    background:#f7f7f7;
}

.portfolio-header{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;
}

.portfolio-header h2{

    font-family:'Syne',sans-serif;

    font-size:clamp(2.5rem,4vw,4rem);

    margin-bottom:16px;
}

.portfolio-header p{

    color:#666;

    line-height:1.8;
}

/*PORTFOLIO GRID*/

.portfolio-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/*PORTFOLIO CARD*/

.portfolio-card{

    display:block;

    background:white;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    color:inherit;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);
}

/*IMAGE*/

.portfolio-image{

    overflow:hidden;

    height:240px;
}

.portfolio-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
    transform .5s ease;
}

/*CONTENT*/

.portfolio-content{

    padding:24px;
}

.portfolio-content h3{

    margin-bottom:12px;

    color:#111;
}

.portfolio-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:18px;
}

.project-link{

    color:#8b5cf6;

    font-weight:600;
}

/*HOVER STATES*/

/*FOR CARD LIFT*/

.portfolio-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);
}

/*FOR IMAGE ZOOM*/

.portfolio-card:hover img{

    transform:scale(1.08);
}

/*FOR LINK MOVEMENT*/

.project-link{

    display:inline-block;

    transition:
    transform .3s ease;
}

.portfolio-card:hover .project-link{

    transform:
    translateX(6px);
}


/*CTA SECTION*/

.cta-section{

    padding:140px 8%;

    background:#eef0fb;
}

/*CTA CONTAINER*/

.cta-container{

    max-width:1000px;

    margin:auto;

    text-align:center;
}

.cta-container h2{

    font-size:clamp(2rem,2.5vw,4rem);

    margin-bottom:24px;
}

.cta-container p{

    color:#666;

    max-width:650px;

    margin:
    0 auto 40px;

    line-height:1.8;
}

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    16px 34px;

    border-radius:12px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6f49f5
    );

    color:white;

    font-weight:600;

    transition:
    transform .3s ease,
    box-shadow .3s ease;
}

/*HOVER*/

.cta-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 35px
    rgba(139,92,246,.28);
}

/*CONTACT SECTION*/

.contact-section{

    position:relative;

    padding:140px 8%;

    background:
    linear-gradient(
        to bottom,
        #f7f7f7 0%,
        #eef0fb 55%,
        #2f008f 55%,
        #17004d 100%
    );
}

/*CONTACT CARD*/

.contact-card{

    max-width:1300px;

    margin:auto;

    background:white;

    border-radius:24px;

    padding:70px;

    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:80px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.08);
}

.contact-info h2{

    font-family:'Syne',sans-serif;

    font-size:
    clamp(2rem,4vw,3.5rem);

    margin-bottom:20px;

    color:#111;
}

.contact-info > p{

    color:#666;

    line-height:1.8;

    margin-bottom:40px;

    max-width:500px;
}

.info-list{

    display:flex;
    flex-direction:column;

    gap:18px;

    margin-bottom:40px;
}

.info-item{

    display:flex;
    align-items:center;

    gap:18px;

    padding:20px;

    border-radius:16px;

    background:#f8f8fc;

    transition:
        transform .3s ease,
        background .3s ease;
}

.info-item:hover{

    transform:translateX(8px);

    background:#f2ebff;
}

.info-icon{

    width:50px;
    height:50px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(139,92,246,.15);

    color:#8b5cf6;
}

.social-links{

    display:flex;
    gap:14px;
}

.social-links a{

    width:44px;
    height:44px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#8b5cf6;

    background:#f4f0ff;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

/*HOVER*/

.social-links a:hover{

    transform:
    translateY(-5px);

    background:#8b5cf6;

    color:white;
}

/*FORM STYLING*/

.contact-form form{

    display:flex;
    flex-direction:column;

    gap:28px;
}

/*INPUTS*/

.contact-form input,
.contact-form textarea{

    border:none;

    border-bottom:
    2px solid #e2e2e2;

    padding:14px 0;

    font-family:inherit;

    font-size:1rem;

    background:transparent;

    transition:
    border-color .3s ease;
}

/*FOCUS STATES*/

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#8b5cf6;
}

/*DOUBLE ROW*/

.double-field{

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    gap:24px;
}

/*SUBMIT BUTTON*/

.contact-form button{

    width:max-content;

    padding:
    16px 34px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6f49f5
    );

    color:white;

    font-weight:600;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

/*HOVER*/

.contact-form button:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 35px
    rgba(139,92,246,.35);
}

/*CONTACT RESPONSIVENESS TABLET*/


@media(max-width:992px){

    .contact-card{

        grid-template-columns:1fr;

        gap:60px;
    }
}

@media(max-width:768px){

    .contact-section{

        padding:100px 24px;
    }

    .contact-card{

        padding:40px 24px;
    }

    .double-field{

        grid-template-columns:1fr;
    }

    .contact-info h2{

        font-size:2rem;
    }
}


/*PORTFOLIO RESPONSIVENESS TABLET*/

@media(max-width:992px){

    .portfolio-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/*PORTFOLIO RESPONSIVENESS MOBILE*/

@media(max-width:768px){

    .portfolio-grid{

        grid-template-columns:1fr;
    }
}


@media (max-width:991px){

    .process-container{

        grid-template-columns:1fr;

        gap:60px;
    }

    .process-content{

        text-align:center;
    }

    .process-content p{

        margin-inline:auto;
    }
}

@media (max-width:768px){

    .process-grid{

        grid-template-columns:1fr;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4{

        transform:none;
    }

    .process-card{

        min-height:auto;
    }
}



/*=====TABLET RESPONSIVENESS FOR EXPERIENCE SECTION=====*/

@media(max-width:992px){

    .experience-container{

        grid-template-columns:1fr;

        gap:60px;
    }

    .experience-content{

        text-align:center;
    }

    .experience-content p{

        margin-inline:auto;
    }
}


/*=====MOBILE FOR EXPERIENCE SECTION=====*/

@media(max-width:768px){

    .experience-section{

        padding:80px 24px;
    }

    .exp-card{

        padding:20px;
    }

    .experience-content h2{

        font-size:2.2rem;
    }
}


/*================
MOBILE RESPONSIVENESS FOR TOOLS SECTION
======================*/

@media (max-width:991px){

    .experience-grid{

        display:flex;
        flex-direction:column;
        gap:40px;
    }
}

/* ==========================
   MOBILE FOR ABOUT SECTION
========================== */

@media(max-width:900px){

    .about-container{

        grid-template-columns:1fr;

        gap:60px;

        text-align:center;
    }

    .about-content p{

        margin-inline:auto;
    }

    .about-image img{

        max-width:450px;
    }
}

/* =========================
   MOBILE FOR HERO SECTION
========================= */

@media (max-width: 768px){

    .hero{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding-top:120px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content p{
        margin-inline:auto;
    }

    .hero-actions{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-visual{
        position:relative;
        width:100%;
        right:auto;
        margin-top:50px;
    }

    .hero-visual img{
        width:100%;
        max-width:450px;
    }

    /* Disable parallax */
    .parallax-bg,
    .hero-content,
    .hero-visual{
        animation:none !important;
        transform:none !important;
    }
}



/*================================================================================================
===================================CASE STUDY====================================================
===============================================================================================*/

/* ===================================
CASE STUDY HERO
=================================== */

.cs-hero-v2{

    min-height:70vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:start;

    gap:80px;

    
    padding-right:8%;
    padding-bottom:120px;
    padding-left:8%;

    overflow:hidden;

    position:relative;
}

.cs-hero-content{

    padding-top:180px;
}

/* =====================
LEFT CONTENT
===================== */

.cs-project-type{

    display:inline-block;

    font-size:.80rem;

    font-weight:700;

    letter-spacing:2px;

    color:#8B5CF6;

    margin-bottom:20px;
}

.cs-hero-content h1{

    font-size:
    clamp(3.5rem,5vw,3rem);

    line-height:.95;

    margin-bottom:24px;
}

.cs-hero-content h1 span{

    color:#8B5CF6;
}

.cs-hero-content p{

    max-width:550px;

    color:#666;

    line-height:1.9;

    margin-bottom:40px;
}

/* =====================
BUTTONS
===================== */

.cs-hero-buttons{

    display:flex;

    gap:18px;
}

.primary-btn{

    padding:
    16px 32px;

    border-radius:12px;

    text-decoration:none;

    color:white;

    background:
    linear-gradient(
    135deg,
    #8B5CF6,
    #6F49F5
    );

    transition:.3s;
}

.primary-btn:hover{

    transform:translateY(-4px);
}

.secondary-btn{

    padding:
    16px 32px;

    border-radius:12px;

    text-decoration:none;

    border:1px solid #8B5CF6;

    color:#8B5CF6;

    transition:.3s;
}

.secondary-btn:hover{

    background:#8B5CF6;

    color:white;
}

/* =====================
PHONE SHOWCASE
===================== */

.cs-phone-showcase{

    display:flex;

    justify-content:center;

    gap:28px;

    position:relative;

    height:450px;
}

/* Decorative Circle */

.cs-phone-showcase::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(139,92,246,.08);

    filter:blur(10px);

    z-index:-1;
}

/* =====================
COLUMN
===================== */

.phone-column{

    height:650px;

    overflow:hidden;
}

/* .offset{

    margin-top:120px;
} */

/* =====================
PHONE STACK
===================== */

.phone-stack{

    display:flex;

    flex-direction:column;

    gap:35px;

    animation:
    phoneColumnMove 18s linear infinite;
}

.reverse-stack{

    animation:
    phoneColumnReverse 18s linear infinite;
}

/* =====================
PHONE
===================== */

.phone-mockup{

    width:220px;
    height:460px;

    background:#111;

    border-radius:38px;

    padding:12px;

    position:relative;

    flex-shrink:0;

    box-shadow:
    0 30px 80px
    rgba(222, 149, 253, 0.1);
}

/* Notch */

.phone-mockup::before{

    content:"";

    position:absolute;

    top:10px;
    left:50%;

    transform:translateX(-50%);

    width:110px;
    height:24px;

    background:#111;

    border-radius:20px;

    z-index:5;
}

/* Screen */

.phone-screen{

    width:100%;
    height:100%;

    overflow:hidden;

    border-radius:28px;
}

.phone-screen img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* =====================
ANIMATION
===================== */

@keyframes phoneColumnMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-50%);
    }
}

@keyframes phoneColumnReverse{

    from{
        transform:translateY(-50%);
    }

    to{
        transform:translateY(0);
    }
}






/* ===================================
PROJECT OVERVIEW
=================================== */

/* .project-overview{

    padding:120px 8%;

    background:#EEF0FB;
}

.overview-wrapper{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:
    180px 1fr;

    gap:80px;

    align-items:start;
} */

/*====NUMBER=====*/

/* .overview-number{

    position:sticky;

    top:120px;
}

.overview-number span{

    font-family:'Syne',sans-serif;

    font-size:clamp(3rem,7vw,5.5rem);

    font-weight:800;

    line-height:1;

    color:#8B5CF6;
}

.overview-line{

    width:100px;
    height:4px;

    margin-top:25px;

    border-radius:20px;

    background:
    linear-gradient(
        90deg,
        #8B5CF6,
        #6F49F5
    );
} */

/*CONTENT*/

/* .section-tag{

    display:inline-block;

    color:#8B5CF6;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;
}

.overview-content h2{

    font-family:'Syne',sans-serif;

    font-size:
    clamp(2rem,4vw,3.2rem);

    margin-bottom:25px;
}

.overview-content p{

    max-width:850px;

    color:#666;

    line-height:2;
} */

/*====STAT CARDS=====*/

/* .overview-stats{

    display:flex;

    gap:24px;

    margin-top:50px;

    flex-wrap:wrap;
}

.stat-card{

    min-width:180px;

    padding:28px;

    border-radius:18px;

    background:white;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);

    transition:
    transform .35s ease,
    box-shadow .35s ease;
} */

/*===HOVER====*/

/* .stat-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 50px rgba(139,92,246,.15);
}

.stat-card h3{

    color:#111;

    margin-bottom:6px;

    font-size:1.2rem;
}

.stat-card span{

    color:#777;

    font-size:.9rem;
} */

/*========STORY SECTION =====*/

.story-section{

    min-height:650vh;

    display:grid;

    grid-template-columns:
    180px 1fr;

    gap:80px;

    padding:120px 8%;

    position:relative;
}

/*=====STICKY NUMBER=====*/

.story-left{

    position:sticky;

    top:120px;

    height:300px;
}

/*====COUNTER====*/

.story-left span{

    font-size:7rem;

    font-weight:700;

    color:#8B5CF6;
}

/*======CONTENT=====*/


.story-right{

    position:sticky;

    top:120px;

    height:650px;

    /* overflow:hidden; */
}

/*======SLIDES======*/

.story-slide{

    position:absolute;
    inset:0;

    opacity:0;
    transform:translateY(40px);

    transition:
        opacity .6s ease,
        transform .6s ease;

    z-index:0;

    pointer-events:none;
}

.story-slide.active{

    opacity:1;
    transform:translateY(0);

    z-index:2;

    pointer-events:auto;
}

.story-tag{

    color:#8B5CF6;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.story-slide h2{

    font-size:clamp(2rem,4vw,3rem);

    line-height:1.1;

    margin-bottom:24px;

    max-width:700px;
}

.story-slide p{

    max-width:900px;

    font-size:1.05rem;

    line-height:1.9;

    color:#555;

    margin-bottom:40px;
}

.overview-cards, 
.goal-grid, 
.results-grid {
    display: flex;
    gap: 20px; 
    margin-top: 30px;
    width: 100%;
}

/* Ensure individual cards are proportionate */
.info-card,
.goal-card,
.result-card {
    flex: 1; 
    background: #8a5cf61a; 
    border: 1px solid #8a5cf633;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    text-align: center; 
}

/* Base styles for the cards */
.info-card,
.goal-card,
.result-card {
    transition: all 0.3s ease-in-out; 
    cursor: pointer; 
}

/* Hover state */
.info-card:hover,
.goal-card:hover,
.result-card:hover {
    transform: translateY(-10px); 
    background: #8a5cf6; 
    box-shadow: 0 20px 30px rgba(138, 92, 246, 0.3); 
}


.info-card:hover h3,
.info-card:hover span,
.goal-card:hover,
.result-card:hover h3,
.result-card:hover span {
    color: #ffffff !important;
}


/*PROCESS TIMELINE*/

.process-timeline{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;
}

.timeline-step{

    position:relative;

    min-width:160px;

    padding:24px;

    background: #8a5cf61a;


    border:1px solid rgba(139,92,246,.12);

    border-radius:20px;

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.timeline-step span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        #8B5CF6,
        #6F49F5
    );

    color:white;

    font-size:.85rem;

    font-weight:700;

    margin-bottom:16px;
}

.timeline-step h4{

    font-family:'Syne',sans-serif;

    font-size:1rem;

    font-weight:600;

    color:#111;

    margin:0;
}

.timeline-step:hover{

    transform:
    translateY(-8px);

    border-color:#8B5CF6;

    box-shadow:
    0 20px 40px rgba(139,92,246,.15);
}

.timeline-step:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;

    right:-20px;

    width:20px;

    height:2px;

    background:#D8CCFF;
}

@media(max-width:768px){

    .process-timeline{

        flex-direction:column;

        align-items:stretch;
    }

    .timeline-step{

        width:100%;
    }

    .timeline-step::after{

        display:none;
    }

}

/*responsiveness*/

/* =========================
TABLET
========================= */

@media (max-width:1024px){

.story-section{

    grid-template-columns:120px 1fr;

    gap:50px;

    padding:100px 6%;

}

.story-left span{

    font-size:5rem;

}

.story-right{

    height:580px;

}

.story-slide h2{

    font-size:2.3rem;

}

}

/* =========================
MOBILE
========================= */

@media (max-width:768px){

.story-section{

    min-height:auto;

    display:block;

    padding:80px 24px;

}

.story-left{

    position:relative;

    top:auto;

    height:auto;

    margin-bottom:30px;

}

.story-left span{

    font-size:3rem;

}

.story-right{

    position:relative;

    top:auto;

    height:auto;

}

.story-slide{

    position:relative;

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:none;

    margin-bottom:70px;

}


.story-slide h2{

    font-size:2rem;

}

.story-slide p{

    font-size:1rem;

    line-height:1.8;

}

}

@media(max-width:768px){

.overview-cards,
.goal-grid,
.results-grid{

    flex-direction:column;

    gap:18px;

}

.info-card,
.goal-card,
.result-card{

    width:100%;

}

}

@media(max-width:768px){

.process-timeline{

    flex-direction:column;

    gap:18px;

}

.timeline-step{

    width:100%;

    min-width:unset;

}

}






/*========================
DESIGN ARTIFACTS
========================*/

.design-artifacts{

    padding:120px 8%;

    background:#EEF0FB;
}

.artifacts-header{

    max-width:750px;

    margin:0 auto 70px;

    text-align:center;
}

.section-tag{

    display:block;

    color:#8B5CF6;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:16px;
}

.artifacts-header h2{


    font-size:clamp(2.5rem,4vw,4rem);

    margin-bottom:20px;
}

.artifacts-header p{

    color:#666;

    line-height:1.8;
}

.artifacts-slider{

    position:relative;

    display:flex;

    align-items:center;

    gap:20px;
}

.artifacts-track{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding-bottom:10px;
}

.artifacts-track::-webkit-scrollbar{

    display:none;
}

/*======Cards=========*/

.artifact-card{

    min-width:420px;

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.35s ease;
}

.artifact-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 60px rgba(139,92,246,.15);
}

.artifact-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;
}

.artifact-content{

    padding:24px;
}

.artifact-content h3{

    font-family:'Syne',sans-serif;

    font-size:1.2rem;

    margin-bottom:10px;
}

.artifact-content p{

    color:#666;

    line-height:1.6;
}

.artifact-nav{

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:white;

    color:#8B5CF6;

    font-size:1.2rem;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s ease;
}

.artifact-nav:hover{

    background:#8B5CF6;

    color:white;
}


/*CASE STUDY CTA*/

.case-study-cta{

    padding:120px 8%;

    background:#DDE2F8;

    text-align:center;
}

.cta-content{

    max-width:900px;

    margin:auto;
}

.cta-content span{

    color:#8B5CF6;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;
}

.cta-content h2{

    font-size:clamp(2rem,4vw,2.25rem);

    margin:20px 0;
}

.cta-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:40px;
}


/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .overview-cards, 
    .goal-grid, 
    .results-grid {
        flex-direction: column; /* Stack on mobile */
    }
}


/* =====================
RESPONSIVE HERO 
===================== */

@media(max-width:991px){

    .cs-hero-v2{

        grid-template-columns:1fr;

        text-align:center;
    }

    .cs-hero-content{

        margin:auto;
    }

    .cs-hero-buttons{

        justify-content:center;
    }

    .cs-phone-showcase{

        height:600px;
    }

    .phone-column{

        height:600px;
    }

    .phone-mockup{

        width:180px;
        height:380px;
    }

}

@media(max-width:768px){

    .cs-phone-showcase{

        display:none;
    }

    .cs-hero-v2{

        min-height:auto;

        padding:
        140px 24px
        80px;
    }

}


/*=====================WEB APP HERO SECTION================================*/

.web-case-hero{

    min-height:90vh;

    padding:120px 8%;

    display:grid;

    grid-template-columns:
    40% 60%;

    align-items:center;

    gap:60px;

    position:relative;

    overflow:hidden;

    background:#EEF0FB;
}

.web-case-hero::after{

    content:"";

    position:absolute;

    right:-300px;

    top:-150px;

    width:900px;

    height:900px;

    background:#8B5CF6;

    border-radius:50%;

    opacity:.12;

    z-index:0;
}

.web-case-content{

    position:relative;

    z-index:2;
}

.project-tag{

    color:#8B5CF6;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    display:block;

    margin-bottom:16px;
}

.web-case-content h1{

    font-family:'Syne',sans-serif;

    font-size:
    clamp(3rem,5vw,5rem);

    margin-bottom:20px;
}

.web-case-content p{

    max-width:500px;

    line-height:1.8;

    color:#666;

    margin-bottom:40px;
}

.laptop-frame{

    width:100%;

    max-width:700px;

    aspect-ratio:16/10;

    background:#fff;

    border-radius:24px;

    padding:20px;

    box-shadow:
    0 40px 80px rgba(0,0,0,.12);

    position:relative;

    z-index:2;
}

.laptop-screen{

    width:100%;

    height:100%;

    overflow:hidden;

    border-radius:14px;
}

.laptop-screen img{

    width:100%;

    height:100%;

    object-fit:cover;
}


.mockup-showcase{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;
}

@media(max-width:991px){

    .web-case-hero{

        grid-template-columns:1fr;

        text-align:center;
    }

    .web-case-content p{

        margin-inline:auto;
    }

    .mockup-showcase{

        margin-top:40px;
    }

    .phone-frame{

        width:100px;

        height:220px;
    }

}