/*=========================================
        GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
            RESET
=========================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#070B1D;
    color:#fff;
    overflow-x:hidden;
}

/*=========================================
            VARIABLES
=========================================*/
:root{

    --primary:#8B5CF6;
    --primary2:#A855F7;
    --dark:#070B1D;
    --glass:rgba(255,255,255,.06);
    --border:rgba(255,255,255,.08);
    --text:#D8D8D8;

}

/*=========================================
        BACKGROUND
=========================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(circle at 20% 15%,rgba(138,92,246,.28),transparent 35%),

    radial-gradient(circle at 85% 25%,rgba(168,85,247,.18),transparent 30%),

    radial-gradient(circle at bottom,rgba(98,55,200,.18),transparent 45%),

    #070B1D;

    z-index:-3;

}

/*=========================================
            STARS
=========================================*/

.stars{

    position:fixed;

    width:100%;

    height:100%;

    left:0;

    top:0;

    z-index:-2;

    pointer-events:none;

    background-image:

    radial-gradient(#ffffff 1px,transparent 1px),

    radial-gradient(#9f6bff 2px,transparent 2px);

    background-size:

    180px 180px,

    280px 280px;

    animation:starsMove 30s linear infinite;

    opacity:.55;

}

@keyframes starsMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-250px);

    }

}

/*=========================================
            HEADER
=========================================*/

header{

    width:100%;

    position:absolute;

    top:10px;

    left:0;

    display:flex;

    justify-content:center;

    z-index:1000;

}

/*=========================================
            NAVBAR
=========================================*/

.navbar{

    width:90%;

    max-width:1450px;

    height: 62px;

    padding:0 27px;

    display:flex;
    position: relative;

    justify-content:space-between;

    align-items:center;

    border-radius:45px;

    background:rgba(15,18,35,.72);

    backdrop-filter:blur(18px);

    border:1px solid var(--border);

    box-shadow:

    0 10px 35px rgba(0,0,0,.35);

}

/*=========================================
            LOGO
=========================================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width: 150px;

}

.logo h2{

    font-size:20px;

    font-weight:700;

    line-height:1;

}

.logo p{

    font-size:11px;

    color:#d7d7d7;

    margin-top:2px;

}

/*=========================================
            NAV LINKS
=========================================*/

nav{

    display:flex;

    gap:42px;

}

nav a{

    text-decoration:none;

    color:#fff;

    font-size:15px;

    font-weight:500;

    transition:.3s;

    position:relative;

}

nav a:hover{

    color:#B784FF;

}

nav a.active{

    color:#B784FF;

}

nav a.active::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    transform:translateX(-50%);

    width:6px;

    height:6px;

    border-radius:50%;

    background:#B784FF;

}

/*=========================================
        CONTACT BUTTON
=========================================*/

.contact-btn{

    text-decoration:none;

    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,#A855F7,#7C3AED);

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.contact-btn:hover{

    transform:translateY(-3px);

    box-shadow:

    0 0 25px rgba(168,85,247,.45);

}

/*=========================================
            HERO
=========================================*/

.hero{

    width:90%;

    max-width:1450px;

    margin:auto;

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    padding-top:70px;
     height:auto;
min-height:100vh;
     flex-wrap: wrap;

}

.hero-left{

    flex:1;

}

.hero-right{

    flex:1;

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:center;

}
/*=========================================
        HERO TAG
=========================================*/

.tag{

    display:inline-block;

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#C084FC;

    margin-top: 55px;

    font-weight:600;

}

/*=========================================
        HERO TITLE
=========================================*/

.hero-left h1{

    font-size:50px;

    font-weight:800;

    line-height:1.25;

    margin-bottom:22px;

    color:#fff;

}

.hero-left h1 span{

    display:block;

    margin-top:5px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #D8B4FE,
        #A855F7
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

}

/*=========================================
        DESCRIPTION
=========================================*/

.description{

    max-width:560px;

    font-size:18px;

    line-height:1.8;

    color:#CFCFCF;

    margin-bottom:40px;

}

/*=========================================
        BUTTON AREA
=========================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:60px;

}

/*=========================================
        PRIMARY BUTTON
=========================================*/

.btn-primary{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:#fff;

    background:linear-gradient(
        135deg,
        #A855F7,
        #7C3AED
    );

    padding:14px 24px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:
    0 12px 30px rgba(168,85,247,.35);

}

.btn-primary span{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#fff;

    color:#7C3AED;

    display:flex;

    justify-content:center;

    align-items:center;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(168,85,247,.50);

}

/*=========================================
        SECONDARY BUTTON
=========================================*/

.btn-secondary{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    color:#fff;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.btn-secondary span{

    width:42px;

    height:42px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.25);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.btn-secondary:hover{

    color:#C084FC;

}

.btn-secondary:hover span{

    background:#A855F7;

    border-color:#A855F7;

}

/*=========================================
        BUTTON ACTIVE
=========================================*/

.btn-primary:active,
.btn-secondary:active{

    transform:scale(.96);

}

/*=========================================
        HERO FADE ANIMATION
=========================================*/

.hero-left{

    animation:heroFade 1s ease;

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*=========================================
        HERO TITLE GLOW
=========================================*/

.hero-left h1{

    text-shadow:

    0 0 20px rgba(255,255,255,.06);

}

.hero-left h1 span{

    filter:drop-shadow(0 0 14px rgba(168,85,247,.45));

}
/*=========================================
        HERO RIGHT SECTION
=========================================*/

.hero-right{

    flex:1;

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

/*=========================================
        IMAGE GLOW
=========================================*/

.image-glow{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(168,85,247,.28),
    transparent 70%);

    filter:blur(35px);

    z-index:-1;

    animation:glowPulse 5s ease-in-out infinite;

}

@keyframes glowPulse{

    0%,100%{

        transform:scale(1);

        opacity:.7;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

}

/*=========================================
        HERO IMAGE
=========================================*/

.hero-right img{

    width:100%;

    max-width:650px;

    border-radius:24px;

    object-fit:cover;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

    0 25px 60px rgba(0,0,0,.45),

    0 0 35px rgba(168,85,247,.18);

    transition:.4s;

}

.hero-right img:hover{

    transform:scale(1.02);

}

/*=========================================
        RATING CARD
=========================================*/

.rating-card{

    position:absolute;

    right:-25px;

    bottom:0px;

    width:210px;

    padding:22px;

    border-radius:22px;

    background:rgba(18,20,40,.82);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    box-shadow:

    0 15px 35px rgba(0,0,0,.45);

    animation:cardFloat 4s ease-in-out infinite;

}

@keyframes cardFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

/*=========================================
        STAR ICON
=========================================*/

.rating-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    margin:auto;

    margin-bottom:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#A855F7,#7C3AED);

    color:#fff;

    font-size:24px;

    box-shadow:

    0 0 20px rgba(168,85,247,.5);

}

/*=========================================
        RATING TEXT
=========================================*/

.rating-card h2{

    font-size:24px;

    font-weight:700;

}

.rating-card h2 span{

    font-size:24px;

    color:#CFCFCF;

}

.rating-card p{

    margin:10px 0 16px;

    color:#D7D7D7;

    font-size:15px;

}

/*=========================================
        RATING STARS
=========================================*/

.rating-stars{

    display:flex;

    justify-content:center;

    gap:6px;

    color:#C084FC;

    font-size:18px;

}

/*=========================================
        HERO IMAGE ANIMATION
=========================================*/

.hero-right{

    animation:imageFade .9s ease;

}

@keyframes imageFade{

    from{

        opacity:0;

        transform:translateX(70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}
/*=========================================
            HERO BUTTONS
=========================================*/

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    margin:45px 0;
}

.btn-primary{

    display:flex;
    align-items:center;
    gap:15px;

    background:linear-gradient(135deg,#A855F7,#7C3AED);
    color:#fff;

    text-decoration:none;

    padding:16px 28px;

    border-radius:50px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(168,85,247,.35);

    transition:.35s;
}

.btn-primary span{

    width:38px;
    height:38px;

    background:#fff;

    color:#7C3AED;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(168,85,247,.55);

}

.btn-secondary{

    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.btn-secondary span{

    width:42px;
    height:42px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.18);

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;

}

.btn-secondary:hover{

    color:#B784FF;

}

.btn-secondary:hover span{

    background:#A855F7;

    border-color:#A855F7;

}

/*=========================================
            STATS
=========================================*/

.stats{

    display:flex;

    gap:35px;

    margin-top:10px;
    margin-right: 40px;

}

.stat-box{

    position:relative;

    padding-right:15px;

}

.stat-box:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:8px;

    width:1px;

    height:38px;

    background:transparent;

}

.stat-box i{

    font-size:18px;

    color:#A855F7;

    margin-bottom:12px;

}

.stat-box h3{

    font-size:25px;

    margin-bottom:5px;

}

.stat-box p{

    font-size:12px;

    color:#D1D1D1;

}

/*=========================================
            IMAGE GLOW
=========================================*/

.hero-right::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
    rgba(168,85,247,.30),
    transparent 70%);

    filter:blur(40px);

    z-index:-2;

}

/*=========================================
        FLOAT ANIMATION
=========================================*/

.hero-right img{

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

/*=========================================
        BUTTON SHINE
=========================================*/

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    left:-80px;

    top:0;

    width:40px;

    height:100%;

    background:rgba(255,255,255,.35);

    transform:skewX(-20deg);

    animation:shine 3.5s infinite;

}

@keyframes shine{

    100%{

        left:170%;

    }

}
/*=========================================
            STATS
=========================================*/

.stats{

    display:flex;

    align-items:center;

    gap:45px;

    margin-top:20px;

}

.stat-box{

    position:relative;

    padding-right:35px;

}

.stat-box:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:10px;

    width:1px;

    height:60px;

    background:rgba(255,255,255,.12);

}

.stat-box i{

    font-size:26px;

    color:#A855F7;

    margin-bottom:12px;

    display:block;

}

.stat-box h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:5px;

}

.stat-box p{

    font-size:14px;

    color:#CFCFCF;

}

/*=========================================
        SCROLL INDICATOR
=========================================*/

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.mouse{

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:20px;

    display:flex;

    justify-content:center;

}

.wheel{

    width:4px;

    height:10px;

    background:#A855F7;

    border-radius:10px;

    margin-top:8px;

    animation:wheelMove 2s infinite;

}

@keyframes wheelMove{

    from{

        opacity:1;

        transform:translateY(0);

    }

    to{

        opacity:0;

        transform:translateY(14px);

    }

}

.scroll-indicator p{

    font-size:11px;

    letter-spacing:3px;

    color:#AFAFAF;

}

/*=========================================
        HOVER EFFECTS
=========================================*/

.stat-box{

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-6px);

}

.stat-box:hover i{

    transform:scale(1.2);

    transition:.3s;

}

.contact-btn,
.btn-primary,
.btn-secondary{

    transition:all .35s ease;

}

.rating-card:hover{

    transform:translateY(-8px);

    transition:.35s;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

.hero{

    flex-direction:column;

    text-align:center;

    padding-top:140px;

}

.hero-left{

    order:2;

}

.hero-right{

    order:1;

    justify-content:center;

}

.description{

    margin:auto auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.stats{

    justify-content:center;

}

.rating-card{

    right:0;

}

}

@media(max-width:768px){

.navbar{

    flex-direction:column;

    height:auto;

    padding:20px;

    gap:20px;

}

nav{

    gap:18px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero{

    padding-top:180px;

}

.hero-left h1{

    font-size:46px;

}

.description{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.stats{

    flex-direction:column;

    gap:30px;

}

.stat-box{

    padding-right:0;

}

.stat-box::after{

    display:none;

}

.hero-right img{

    max-width:100%;

}

.rating-card{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:20px;

    width:100%;

    max-width:260px;

}

.scroll-indicator{

    display:none;

}

}

/*=========================================
        CUSTOM SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#070B1D;

}

::-webkit-scrollbar-thumb{

    background:#8B5CF6;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#A855F7;

}

/*=========================================
        SELECTION
=========================================*/

::selection{

    background:#8B5CF6;

    color:#fff;

}

/*=========================================
            ABOUT SECTION
=========================================*/

.about{

    position:relative;

    padding:120px 0;

    overflow:hidden;

}

.about-container{

    width:90%;

    max-width:1350px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

/*=========================================
            LEFT IMAGE
=========================================*/

.about-left{

    position:relative;

}

.about-image{

    position:relative;

    border-radius:32px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.about-image img{

    width:100%;

    display:block;

    border-radius:32px;

    object-fit:cover;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.04);

}

/*=========================================
        PURPLE BACKGROUND GLOW
=========================================*/

.about-left::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    background:radial-gradient(circle,
    rgba(140,82,255,.18),
    transparent 70%);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    filter:blur(80px);

    z-index:-1;

}

/*=========================================
            DOTS
=========================================*/

.dot-pattern{

    position:absolute;

    width:90px;

    height:90px;

    opacity:.25;

    background-image:radial-gradient(#8B5CF6 1.5px, transparent 1.5px);

    background-size:15px 15px;

}

.dots-left{

    left:-35px;

    top:90px;

}

.dots-bottom{

    right:40px;

    bottom:-35px;

}

/*=========================================
            RIGHT CONTENT
=========================================*/

.about-right{

    color:#fff;

}

.about-tag{

    display:inline-block;

    color:#A855F7;

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.about-right h2{

    font-size:40px;

    line-height:1.12;

    font-weight:800;

    margin-bottom:22px;

}

.about-right h2 span{

    display:block;

    background:linear-gradient(90deg,#ffffff,#D8B4FE,#A855F7);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.title-line{

    width:70px;

    height:4px;

    border-radius:20px;

    background:#A855F7;

    margin:28px 0;

}

.about-right>p{

    font-size:15px;

    line-height:1.8;

    color:#CFCFCF;

    max-width:560px;

    margin-bottom:45px;

}
/*=========================================
        ABOUT FEATURE CARDS
=========================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

/*=========================================
        FEATURE CARD
=========================================*/

.feature-card{

    display:flex;

    align-items:flex-start;

    gap:15px;
      min-height:125px;

    padding:20px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    backdrop-filter:blur(18px);

    transition:.35s ease;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:#A855F7;

    background:rgba(168,85,247,.08);

}

/*=========================================
        FEATURE ICON
=========================================*/

.feature-icon{

    width:48px;

    height:48px;

    min-width:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        rgba(168,85,247,.35),
        rgba(124,58,237,.18)
    );

    border:1px solid rgba(168,85,247,.25);

}

.feature-icon i{

    font-size:18px;

    color:#C084FC;

}

/*=========================================
        FEATURE TEXT
=========================================*/

.feature-card h4{

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin-bottom:5px;

}

.feature-card p{

    color:#CFCFCF;

    font-size:12px;

    line-height:1.5;

}

/*=========================================
        ANIMATION
=========================================*/

.feature-card{

    opacity:0;

    transform:translateY(40px);

    animation:aboutFade .8s forwards;

}

.feature-card:nth-child(2){

    animation-delay:.15s;

}

.feature-card:nth-child(3){

    animation-delay:.30s;

}

.feature-card:nth-child(4){

    animation-delay:.45s;

}

@keyframes aboutFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

.about-container{

    grid-template-columns:1fr;

    gap:60px;

}

.about-right{

    text-align:center;

}

.about-right>p{

    margin:auto auto 45px;

}

.title-line{

    margin:28px auto;

}

.about-features{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.about{

    padding:90px 0;

}

.about-right h2{

    font-size:40px;

}

.about-right>p{

    font-size:16px;

}

.about-features{

    grid-template-columns:1fr;

}

.feature-card{

    padding:22px;

}

.feature-card h4{

    font-size:20px;

}

.feature-card p{

    font-size:15px;

}

}
/*=========================================
            SERVICES SECTION
=========================================*/

.services{

    position: relative;

    padding:120px 0;

    overflow:hidden;

}

.services::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-150px;

    right:-150px;

    background:radial-gradient(circle,
    rgba(139,92,246,.10),
    transparent 70%);

    filter:blur(80px);

    z-index:-1;

}

.services .container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

/*=========================================
            SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:#A855F7;

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title h2{

    color:#fff;

    font-size:56px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:20px;

}

.section-title h2 span{

    display:block;

    background:linear-gradient(
    90deg,
    #ffffff,
    #d8b4fe,
    #8b5cf6);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#cfcfcf;

    font-size:18px;

    line-height:1.8;

}

/*=========================================
            SERVICES GRID
=========================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}/*=========================================
            SERVICE CARD
=========================================*/

.service-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s ease;

    cursor:pointer;
    

    text-decoration:none;

    color:inherit;

    display:block;

    cursor:pointer;



}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#A855F7;

    background:rgba(168,85,247,.06);

}

/*=========================================
            IMAGE
=========================================*/

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.6s ease;

}

.service-card:hover img{

    transform:scale(1.08);

}

/*=========================================
        IMAGE OVERLAY
=========================================*/

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(6,8,24,.92),
        rgba(6,8,24,.15),
        transparent
    );

    opacity:.85;

    transition:.4s;

    pointer-events:none;

}

.service-card:hover::before{

    opacity:1;

}

/*=========================================
        CONTENT
=========================================*/

.service-content{

    position:absolute;

    left:28px;

    right:28px;

    bottom:28px;

    z-index:2;

}

.service-content h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:12px;

}

.service-content p{

    color:#d5d5d5;

    font-size:16px;

    line-height:1.7;

    max-width:90%;

}

/*=========================================
        SMALL PURPLE BAR
=========================================*/

.service-content h3::after{

    content:"";

    display:block;

    width:55px;

    height:3px;

    border-radius:10px;

    margin-top:12px;

    background:#A855F7;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.services-grid{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:42px;

}

.service-card img{

    height:240px;

}

}

@media(max-width:768px){

.services{

    padding:90px 0;

}

.section-title{

    margin-bottom:50px;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

}

.service-card img{

    height:220px;

}

.service-content{

    left:20px;

    right:20px;

    bottom:20px;

}

.service-content h3{

    font-size:22px;

}

.service-content p{

    font-size:15px;

}

}

/*=========================================
            PORTFOLIO SECTION
=========================================*/

/*======================================
        PREMIUM PORTFOLIO
======================================*/

.portfolio-section{
    width:90%;
    max-width:1400px;
    margin:120px auto;
}

.portfolio-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    margin:120px 0;
}

.portfolio-row.reverse{
    flex-direction:row-reverse;
}

.portfolio-image{
    flex:1;
    position:relative;
}

.portfolio-image img{
    width:100%;
    border-radius:30px;
    display:block;
    transition:.6s;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.portfolio-image:hover img{
    transform:scale(1.04);
}

.portfolio-content{
    position: relative;
    padding: 20px 0;
}
.portfolio-number{
    position:absolute;
    top:-90px;
    left:0;

    font-size:125px;
    font-weight:800;

    color:#8B5CF6;
    opacity:.08;

    line-height:1;
    user-select:none;
}

.portfolio-content h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.15;
}

.portfolio-content p{
    font-size:20px;
    line-height:2;
    color:#b8b8c5;
    margin-bottom:45px;
    max-width:580px;
}
/*======================================
      PORTFOLIO BUTTON
======================================*/

.portfolio-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 34px;

    text-decoration:none;

    color:#fff;

    font-size:16px;
    font-weight:600;

    border-radius:50px;

    background:linear-gradient(135deg,#8B5CF6,#6D28D9);

    box-shadow:0 15px 40px rgba(139,92,246,.35);

    transition:.4s;
}

.portfolio-btn i{
    transition:.4s;
}

.portfolio-btn:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(139,92,246,.45);

}

.portfolio-btn:hover i{

    transform:translateX(8px);

}


/*======================================
      IMAGE GLOW
======================================*/

.portfolio-image::before{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    background:#8B5CF6;

    border-radius:50%;

    filter:blur(120px);

    opacity:.18;

    top:-40px;
    left:-40px;

    z-index:-1;

}


/*======================================
      IMAGE BORDER
======================================*/

.portfolio-image{

    overflow:hidden;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

}


/*======================================
      CONTENT ANIMATION
======================================*/

.portfolio-content{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(60px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


/*======================================
      MOBILE
======================================*/

@media(max-width:991px){

    .portfolio-row{

        flex-direction:column;
        gap:50px;

    }

    .portfolio-row.reverse{

        flex-direction:column;

    }

    .portfolio-content{

        text-align:center;

    }

    .portfolio-number{

        position:relative;

        top:0;

        display:block;

        font-size:80px;

        margin-bottom:20px;

    }

    .portfolio-content h2{

        font-size:38px;

    }

    .portfolio-content p{

        font-size:16px;

        max-width:100%;

    }

    .portfolio-btn{

        margin:auto;

    }

}

@media(max-width:576px){

    .portfolio-section{

        width:92%;

    }

    .portfolio-row{

        margin:80px 0;

    }

    .portfolio-image img{

        border-radius:20px;

    }

    .portfolio-content h2{

        font-size:30px;

    }

    .portfolio-content p{

        font-size:15px;

        line-height:1.8;

    }

    .portfolio-btn{

        padding:14px 28px;

        font-size:15px;

    }

}
/*======================================
      PREMIUM PORTFOLIO EFFECTS
======================================*/

/* Floating Animation */

.portfolio-image{

    animation: floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}
.portfolio-section{

    position:relative;

    overflow:hidden;

}

.portfolio-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:#8B5CF6;

    filter:blur(220px);

    opacity:.15;

    top:-250px;
    left:-250px;

    animation:auroraMove 12s ease-in-out infinite alternate;

}

.portfolio-section::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:#2563EB;

    filter:blur(220px);

    opacity:.12;

    right:-200px;
    bottom:-200px;

    animation:auroraMove2 10s ease-in-out infinite alternate;

}

@keyframes auroraMove{

0%{

transform:translate(0,0);

}

100%{

transform:translate(180px,120px);

}

}

@keyframes auroraMove2{

0%{

transform:translate(0,0);

}

100%{

transform:translate(-180px,-120px);

}

}
.portfolio-image{

position:relative;

overflow:hidden;

}

.portfolio-image::after{

content:"";

position:absolute;

width:320px;
height:320px;

border-radius:50%;

background:rgba(255,255,255,.18);

filter:blur(80px);

left:var(--x);

top:var(--y);

transform:translate(-50%,-50%);

opacity:0;

transition:.2s;

pointer-events:none;

}

.portfolio-image:hover::after{

opacity:1;

}
.portfolio-image::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:

linear-gradient(

120deg,

transparent,

rgba(255,255,255,.5),

transparent

);

transition:1s;

}

.portfolio-image:hover::before{

left:150%;

}
#scrollBar{

position:fixed;

top:0;

left:0;

height:4px;

width:0;

background:linear-gradient(90deg,#8B5CF6,#00E5FF);

z-index:999999;

}




/* Gradient Heading */

.portfolio-content h2{

    background:linear-gradient(90deg,#fff,#B784FF);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}


/* Line */

.portfolio-content::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin-top:25px;

    border-radius:20px;

    background:linear-gradient(90deg,#8B5CF6,#B784FF);

}


/* Image Shine */

.portfolio-image::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:

    linear-gradient(

    120deg,

    transparent,

    rgba(255,255,255,.35),

    transparent

    );

    transition:1s;

}

.portfolio-image:hover::after{

    left:150%;

}


/* Hover Zoom */

.portfolio-image{

    overflow:hidden;

}

.portfolio-image img{

    transition:.8s;

}

.portfolio-image:hover img{

    transform:scale(1.08);

}


/* Background Glow */

.portfolio-row{

    position:relative;

}

.portfolio-row::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:#8B5CF6;

    filter:blur(140px);

    opacity:.08;

    z-index:-1;

}

.portfolio-row:nth-child(even)::before{

    right:-120px;

}

.portfolio-row:nth-child(odd)::before{

    left:-120px;

}


/* Scroll Reveal */

.portfolio-row{

    opacity:0;

    transform:translateY(80px);

    animation:portfolioReveal .9s forwards;

}

.portfolio-row:nth-child(2){

    animation-delay:.2s;

}

.portfolio-row:nth-child(3){

    animation-delay:.4s;

}

.portfolio-row:nth-child(4){

    animation-delay:.6s;

}

.portfolio-row:nth-child(5){

    animation-delay:.8s;

}

@keyframes portfolioReveal{

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* Mobile */

@media(max-width:768px){

    .portfolio-content{

        padding:30px 20px;

    }

    .portfolio-number{

        font-size:60px;

    }

    .portfolio-content h2{

        font-size:28px;

    }

    .portfolio-content p{

        font-size:15px;

        line-height:1.8;

    }

    .portfolio-content::after{

        margin:20px auto 0;

    }

}
.gallery-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}
/* ===== GALLERY PAGE ===== */

.gallery-page {
  padding: 60px 10%;
  background: #0b0f2a;
  color: white;
}

.gallery-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

/* Category headings */
.category-title {
  font-size: 26px;
  margin: 40px 0 20px;
  color: #ff8a00;
  border-left: 5px solid #ff4d6d;
  padding-left: 10px;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Images */
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

/* Hover effect */
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.gallery-grid img {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.gallery-grid img.show {
  opacity: 1;
  transform: translateY(0);
}
.filter-btns {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btns button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: #ff4d6d;
  color: white;
}
@media (max-width: 768px) {
  .gallery-title {
    font-size: 28px;
  }

  .category-title {
    font-size: 20px;
  }

  .filter-btns button {
    padding: 8px 14px;
    font-size: 14px;
  }

  .lightbox-img {
    max-width: 95%;
  }
}
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #0b0f2a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #333;
  border-top: 5px solid #ff4d6d;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.gallery-grid img,
.category-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
.gallery-grid img {
  transition: 0.4s ease;
  border-radius: 12px;
}

.gallery-grid img:hover {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 15px 35px rgba(255, 77, 109, 0.3);
  filter: brightness(1.1);
}
.workflow-section {
  padding: 80px 10%;
  background: #0b0f2a;
  color: white;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title p {
  color: #aaa;
  margin-bottom: 50px;
}

/* simple grid */
.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: left;
}

.step {
  padding: 10px;
}

.step-number {
  font-size: 28px;
  font-weight: bold;
  color:var(--primary);
  margin-bottom: 10px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step p {
  color: #aaa;
  line-height: 1.5;
}
/* .stats {
  padding: 50px 20%;
  background: #070a1c;
  text-align: center;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat h2 {
  font-size: 40px;
  color: var(--primary2);
  margin-bottom: 5px;
}

.stat p {
  color: #aaa;
} */
.step:hover h3 {
  color: var(--primary2);
  transition: 0.3s;
}

.step:hover .step-number {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
  }
} 
/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding: 90px 10%;
    background: #0a0f1f;
    color: #fff;
}

.contact-wrapper{
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info{
    flex: 1;
}

.contact-tag{
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 188, 212, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.contact-info h2{
    font-size: 34px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-info p{
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-box{
    background: #111a33;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: 0.3s;
}

.contact-box:hover{
    transform: translateX(5px);
    background: #121f3d;
}

/* =========================
   RIGHT FORM
========================= */

.contact-form-box{
    flex: 1;
    background: #111a33;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#contactForm{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contactForm input,
#contactForm select,
#contactForm textarea{
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    outline: none;
    background: #0a0f1f;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus{
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0,229,255,0.2);
}

#contactForm textarea{
    resize: none;
}

/* BUTTON */
#contactForm .btn{
    padding: 12px;
    background: linear-gradient(135deg,var(--primary));
    color: var(--text);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#contactForm .btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,229,255,0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px){
    .contact-wrapper{
        flex-direction: column;
        gap: 30px;
    }

    .contact-info h2{
        font-size: 26px;
    }

    .contact-form-box{
        width: 100%;
    }
}/* =========================
   SUCCESS POPUP
========================= */

.success-popup{
    position: fixed;
    top: 20px;
    right: -300px;
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: #000;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s ease;
    z-index: 9999;
}

/* show state */
.success-popup.show{
    right: 20px;
}
/* =========================
   ERROR POPUP
========================= */

.error-popup{
    position: fixed;
    top: 20px;
    right: -350px;
    background: linear-gradient(135deg, #ff5252, #ff1744);
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.4s ease;
    z-index: 9999;
}

.error-popup.show{
    right: 20px;
}
/* =========================
   FOOTER SECTION
========================= */

/*==================================
        PREMIUM FOOTER
==================================*/

.footer{

    position:relative;
    overflow:hidden;

    background:#0b0618;

    padding:70px 8% 30px;

    text-align:center;

    color:#fff;

}

/* Purple Glow */

.footer-glow{

    position:absolute;

    top:-180px;
    left:50%;

    transform:translateX(-50%);

    width:700px;
    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(147,51,234,.35),
    transparent 70%);

    filter:blur(90px);

    z-index:0;

}

.footer .container{

    position:relative;

    z-index:2;

    max-width:1200px;

    margin:auto;

}

/*=========================
        Logo
=========================*/

.footer-logo{

    margin-bottom:20px;

}

.footer-logo img{

    width:100px;

    animation:floatLogo 4s ease-in-out infinite;

}

@keyframes floatLogo{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

/*=========================
        Heading
=========================*/

.footer h3{

    font-size:26px;

    line-height:1.3;

    max-width:800px;

    margin:auto;

    margin-bottom:35px;

    font-weight:700;

}

/*=========================
        Contact
=========================*/

.footer-contact{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.footer-contact a{

    color:#d8d8d8;

    text-decoration:none;

    font-size:17px;

    transition:.35s;

}

.footer-contact a:hover{

    color:#b56cff;

}

/*=========================
        Divider
=========================*/

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    padding:30px 0;

    border-top:1px solid rgba(255,255,255,.08);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-links a{

    color:#fff;

    text-decoration:none;

    font-size:17px;

    position:relative;

    transition:.35s;

}

.footer-links a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    transform:translateX(-50%);

    width:0;

    height:2px;

    background:#b56cff;

    transition:.35s;

}

.footer-links a:hover{

    color:#b56cff;

}

.footer-links a:hover::after{

    width:100%;

}

/*=========================
        Social
=========================*/

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:35px 0;

}

.footer-social a{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    color:#fff;

    text-decoration:none;

    transition:.4s;

    font-weight:600;

}

.footer-social a:hover{

    background:#a855f7;

    transform:translateY(-8px);

    box-shadow:0 0 25px rgba(168,85,247,.5);

}

/*=========================
        Copyright
=========================*/

.footer-bottom{

    margin-top:20px;

    color:#999;

    font-size:15px;

}

/*=========================
        Responsive
=========================*/

@media(max-width:992px){

.footer h3{

font-size:32px;

}

.footer-contact{

flex-direction:column;

gap:15px;

}

.footer-links{

gap:20px;

}

}

@media(max-width:576px){

.footer{

padding:50px 20px 25px;

}

.footer h3{

font-size:26px;

}

.footer-links{

flex-direction:column;

gap:15px;

}

.footer-social{

gap:12px;

}

.footer-social a{

width:48px;
height:48px;

}

}
/* ==========================
   BACK TO TOP BUTTON
========================== */

.back-to-top{
    position: fixed;
    left: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,#8b5cf6,#6d28d9);
    color: #fff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 22px;

    box-shadow: 0 10px 30px rgba(139,92,246,.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: .35s ease;

    z-index: 9999;
}

.back-to-top.show{

    opacity: 1;
    visibility: visible;

    transform: translateY(0);

}

.back-to-top:hover{

    transform: translateY(-6px) scale(1.08);

    box-shadow: 0 15px 35px rgba(139,92,246,.55);

}

.back-to-top i{

    transition:.3s;

}

.back-to-top:hover i{

    transform: translateY(-3px);

}
/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
    animation: pulse 1.8s infinite;
}

/* icon image */
.whatsapp-float img{
    width: 35px;
    height: 35px;
}

/* hover effect */
.whatsapp-float:hover{
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* pulse animation */
@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.lightbox{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.lightbox-img{
  max-width:80%;
  max-height:80%;
  border-radius:10px;
  transition:0.3s;
}

/* close button */
.close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

/* arrows */
.lb-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.1);
  border:none;
  color:#fff;
  font-size:40px;
  width:60px;
  height:60px;
  cursor:pointer;
  border-radius:50%;
  transition:0.3s;
}

.lb-arrow:hover{
  background:#00e5ff;
  color:#000;
}

.lb-arrow.left{ left:30px; }
.lb-arrow.right{ right:30px; }
.filter-btns button.active{
  background:#00e5ff;
  color:#000;
}
.lightbox-img{
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* mbl veie */
@media(max-width:768px){
  nav{
    flex-direction: column;
    gap: 15px;
  }
}
@media(max-width:768px){
  .hero-left h1{
    font-size: 32px;
  }

  .description{
    font-size: 14px;
  }
}
@media(max-width:768px){
  .services-grid,
  .portfolio-grid{
    grid-template-columns: 1fr;
  }
}
@media(max-width:768px){
  .stats{
    flex-direction: column;
    align-items: center;
  }
}
@media(max-width:768px){
  .contact-wrapper{
    flex-direction: column;
  }

  .contact-form-box{
    width: 100%;
  }
}
/* ==========================
      MOBILE MENU TOGGLE
========================== */

.menu-toggle{
    display: none;
    width: 45px;
    height: 45px;

    justify-content: center;
    align-items: center;

    font-size: 32px;
    font-weight: bold;
    color: #fff;

    cursor: pointer;

    border-radius: 10px;

    transition: .3s ease;

    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);

    z-index: 10001;
}

.menu-toggle:hover{
    color: #B784FF;
}

/* ==========================
        MOBILE VIEW
========================== */

@media (max-width:768px){

    .menu-toggle{
        display: flex;
    }

    .contact-btn{
        display: none;
    }

    nav{
        position: absolute;
        top: 80px;
        left: 5%;
        width: 90%;

        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 22px;

        padding: 30px 0;

        background: rgba(15,18,35,.98);
        backdrop-filter: blur(20px);

        border: 1px solid rgba(255,255,255,.08);
        border-radius: 20px;

        z-index: 9999;
    }

    nav.active{
        display: flex;
    }

    nav a{
        font-size: 20px;
        font-weight: 600;
    }
}
/* ==========================
      HERO MOBILE
========================== */

@media (max-width:768px){

.hero{
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 60px;
    gap: 50px;
}

.hero-left{
    width:100%;
}

.hero-left h1{
    font-size:42px;
    line-height:1.2;
}

.description{
    font-size:16px;
    line-height:28px;
    max-width:100%;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.stats{
    flex-direction:column;
    gap:20px;
    align-items:center;
}

.stat-box{
    width:100%;
    max-width:300px;
}

.hero-right{
    width:100%;
}

.hero-right img{
    width:100%;
    max-width:420px;
    margin:auto;
    display:block;
}

.scroll-indicator{
    display:none;
}

}

/* new animation */
#particles{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

z-index:-1;

}

.reveal-text{

opacity:0;

transform:translateY(50px);

transition:1s;

}

.reveal-text.show{

opacity:1;

transform:translateY(0);

}
/*=========================
WHY CHOOSE US
=========================*/

.why-section{
    width:90%;
    max-width:1400px;
    margin:120px auto;
}

.section-title{
    text-align:center;
    margin-bottom:80px;
}

.section-title span{
    color:var(--primary2);
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-size:35px;
    margin:15px 0;
    line-height:1.2;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
    line-height:1.8;
}

.why-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.why-image{

    position:sticky;
    top:100px;

}

.why-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,255,255,.15);
    transition:.5s;

}

.why-image img:hover{

    transform:scale(1.03);

}

.why-item{

    display:flex;
    gap:25px;
    padding:30px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    transition:.4s;
    position:relative;

}

.why-item::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:0;
    height:2px;
    background:var(--primary2);
    transition:.5s;

}

.why-item:hover::after{

    width:100%;

}

.why-item span{

    font-size:40px;
    color:var(--primary2);
    font-weight:700;
    min-width:70px;

}

.why-item h3{

    font-size:24px;
    margin-bottom:10px;

}

.why-item p{

    color:#a9a9a9;
    line-height:1.7;

}

.why-item:hover{

    transform:translateX(15px);

}

@media(max-width:991px){

.why-container{

grid-template-columns:1fr;

}

.why-image{

position:relative;
top:0;

}

.section-title h2{

font-size:36px;

}

}
/*==============================
      BACK TO HOME BUTTON
==============================*/

.back-home{

    position:fixed;

    top:25px;

    left:25px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    z-index:9999;

    transition:.35s;

}

.back-home:hover{

    background:linear-gradient(135deg,#9333ea,#6366f1);

    transform:translateX(-5px);

    box-shadow:0 0 25px rgba(147,51,234,.5);

}

.back-home i{

    font-size:18px;

}

/* Mobile */

@media(max-width:768px){

.back-home{

padding:12px 18px;

font-size:14px;

}

.back-home span{

display:none;

}

}