/*==================================================
CodeWithArsalan Portfolio
Version: 3.0
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');


/*==================================================
Variables
==================================================*/

:root{

    --primary:#7C5CFF;
    --primary-light:#9B82FF;

    --white:#ffffff;
    --text:#B8B8B8;

    --black:#090909;
    --black-2:#111111;
    --black-3:#181818;

    --border:rgba(255,255,255,.08);

    --container:1320px;

    --radius:20px;

    --transition:.35s ease;

}


/*==================================================
Reset
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--black);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

    position:relative;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea{

    outline:none;

    border:none;

    font-family:inherit;

}


/*==================================================
Selection
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
Scrollbar
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

}


/*==================================================
Container
==================================================*/

.container{

    width:min(calc(100% - 40px),var(--container));

    margin:auto;

}


/*==================================================
Typography
==================================================*/

h1,
h2,
h3,
h4{

    font-family:'Space Grotesk',sans-serif;

    font-weight:700;

    line-height:1.1;

}

h1{

    font-size:clamp(78px,8vw,122px);

}

h2{

    font-size:clamp(40px,5vw,60px);

}

h3{

    font-size:32px;

}

p{

    color:var(--text);

}


/*==================================================
Section
==================================================*/

section{

    position:relative;

    padding:120px 0;

}


/*==================================================
Buttons
==================================================*/

.btn{

    height:66px;

    padding:0 42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    border-radius:100px;

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

    overflow:hidden;

    position:relative;

}

.btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    120deg,

    transparent,

    rgba(255,255,255,.18),

    transparent);

    transform:translateX(-130%);

    transition:.8s;

}

.btn:hover::before{

    transform:translateX(130%);

}

.btn-primary{

    background:linear-gradient(

    135deg,

    #7C5CFF,

    #9477FF);

    color:#fff;

    box-shadow:

    0 20px 45px rgba(124,92,255,.35);

}

.btn-primary:hover{

    transform:translateY(-6px);

}

.btn-outline{

    border:1px solid var(--border);

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#000;

}


/*==================================================
Background
==================================================*/

body::before{

    content:"";

    position:fixed;

    width:520px;

    height:520px;

    left:-220px;

    top:-220px;

    background:rgba(124,92,255,.14);

    filter:blur(180px);

    border-radius:50%;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:520px;

    height:520px;

    right:-220px;

    bottom:-220px;

    background:rgba(124,92,255,.10);

    filter:blur(180px);

    border-radius:50%;

    z-index:-2;

}


/*==================================================
Utilities
==================================================*/

.text-center{

    text-align:center;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-between{

    justify-content:space-between;

}


/*==================================================
Navbar
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.35s;

}

.header.scrolled{

    background:rgba(9,9,9,.72);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.navbar{

    height:95px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    transition:.35s;

}

.logo:hover{

    transform:scale(1.05);

}

.logo img{

width: 78px;
}

.nav-menu{

    display:flex;

    align-items:center;

    gap:42px;

}

.nav-menu a{

    position:relative;

    color:#d5d5d5;

    font-size:15px;

    font-weight:500;

    transition:.35s;

}

.nav-menu a:hover{

    color:#fff;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-menu a:hover::after,

.nav-menu a.active::after{

    width:100%;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.menu-toggle{

    width:52px;

    height:52px;

    border-radius:14px;

    display:none;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:6px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    cursor:pointer;

}

.menu-toggle span{

    width:22px;

    height:2px;

    background:#fff;

    border-radius:10px;

    transition:.35s;

}


.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    height:3px;

    width:0;

    background:var(--primary);

    z-index:10000;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}


/*==================================================
Hero
==================================================*/

.hero{

position:relative;

min-height:100vh;

padding-bottom: 140px;

display:flex;

align-items:center;

overflow:hidden;

border-bottom:1px solid rgba(255,255,255,.05);
}

.hero::before{

    content:"";

    position:absolute;

    right:-180px;

    top:-180px;

    width:720px;

    height:720px;

    background:radial-gradient(circle,
    rgba(124,92,255,.20),
    transparent 70%);

    pointer-events:none;

    z-index:0;

}

.hero-wrapper{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    min-height:calc(100vh - 170px);

}


/*==================================================
Hero Background
==================================================*/

.hero-grid-bg{

    position:absolute;

    right:0;

    top:0;

    width:48%;

    height:100%;

    opacity:.18;

    background-image:

    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);

    background-size:42px 42px;

    pointer-events:none;

}

/*==================================================
Hero Content
==================================================*/

.hero-content{

    position:relative;

    z-index:10;

    max-width:620px;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    height:48px;

    padding:0 20px;

    margin-bottom:30px;

    border-radius:100px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    color:#d8d8d8;

    font-size:15px;

    font-weight:500;

}

.hero-tag i{

    color:var(--primary);

}

.hero h1{

    margin-bottom:28px;

    line-height:.88;

    letter-spacing:-5px;

}

.hero h1 span{

    display:block;

    color:var(--primary);

}


/*==================================================
Hero Designation
==================================================*/

.hero-designation{

    position:relative;

    margin-bottom:34px;

    padding-left:24px;

}

.hero-designation::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:3px;

    height:100%;

    border-radius:10px;

    background:linear-gradient(

    to bottom,

    var(--primary),

    transparent);

}

.hero-designation h2{

    font-size:34px;

    margin-bottom:10px;

}

.hero-designation p{

    color:#B8B8B8;

    font-size:18px;

    line-height:1.8;

}


/*==================================================
Hero Description
==================================================*/

.hero-description{

    max-width:560px;

    font-size:18px;

    color:#B8B8B8;

    line-height:1.9;

    margin-bottom:45px;

}


/*==================================================
Hero Buttons
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-buttons .btn{

    min-width:215px;

}


/*==================================================
Hero Social
==================================================*/

.hero-social{

    display:flex;

    align-items:center;

    gap:16px;

}

.hero-social li{

    list-style:none;

}

.hero-social a{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.hero-social a:hover{

    background:var(--primary);

    transform:translateY(-8px);

    border-color:transparent;

}

.hero-social i{

    font-size:18px;

}


/*==================================================
Hero Image
==================================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:760px;

}

.image-wrapper{

    position:relative;

    width:620px;

    height:720px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image-frame{

 position:relative;

    width:500px;

    height:620px;

    overflow:hidden;

    border-radius:28px;

    border:1px solid rgba(255,255,255,.08);

    background:#0f0f0f;

    box-shadow:

        0 45px 100px rgba(0,0,0,.45),

        0 0 80px rgba(124,92,255,.10);

    z-index:5;

}

.hero-image-frame img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

}

.hero-portal{

  position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

    radial-gradient(

        circle at center,

        rgba(124,92,255,.35) 0%,

        rgba(124,92,255,.18) 28%,

        rgba(124,92,255,.08) 48%,

        transparent 72%

    );

    filter:blur(55px);

    z-index:0;

    animation:portalPulse 6s ease-in-out infinite;

}


.hero-rings span:nth-child(1){

    width:430px;
    height:430px;

}

.hero-rings span:nth-child(2){

    width:520px;
    height:520px;

    opacity:.5;

}

.hero-rings span:nth-child(3){

    width:620px;
    height:620px;

    opacity:.25;

}

@keyframes portalPulse{

    0%,100%{

        transform:scale(1);

        opacity:.7;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

}



/*==================================================
Floating Cards
==================================================*/

.floating-card{

      position:absolute;

    width:240px;

    padding:30px;

    border-radius:24px;

    background:rgba(23,23,23,.72);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 30px 60px rgba(0,0,0,.35);

    transition:.35s;

    z-index:20;

}

.floating-card:hover{

    transform:translateY(-10px);

    border-color:rgba(124,92,255,.35);

}

.card-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:18px;

    border-radius:18px;

    background:linear-gradient(
    135deg,
    #7C5CFF,
    #9B82FF);

    color:#fff;

    font-size:20px;

}

.card-icon i{

    line-height:1;

}

.floating-card h3{

    font-size:42px;

    line-height:1;

    margin-bottom:10px;

    color:#fff;

}

.floating-card p{

    margin:0;

    color:#B9B9B9;

    font-size:15px;

    line-height:1.7;

}


/*==================================================
Experience Card
==================================================*/

.experience-card{
    position:absolute;

    top:60px;

    left:-70px;
}


/*==================================================
Projects Card
==================================================*/

.projects-card{
  position:absolute;

    right:-70px;

    top:55%;

    transform:translateY(-50%);

}


/*==================================================
Company Card
==================================================*/

.company-card{
    position:absolute;

    left:-40px;

    bottom:30px;

}

.company-card small{

    display:block;

    margin-bottom:10px;

    color:#8D8D8D;

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.company-card strong{

display:block;

font-size:22px;

margin-bottom:8px;

line-height: 29px;
}

.company-card span{

    display:block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

}


/*==================================================
Tech Marquee
==================================================*/

.hero-tech{

position:absolute;

left:0;

bottom:0;

width:100%;

height:90px;

overflow:hidden;

background:rgba(255,255,255,.02);

border-top:1px solid rgba(255,255,255,.05);

backdrop-filter:blur(14px);
}

.hero-tech::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:160px;

    height:100%;

    background:linear-gradient(
    to right,
    #090909,
    transparent);

    z-index:2;

}

.hero-tech::after{

    content:"";

    position:absolute;

    right:0;

    top:0;

    width:160px;

    height:100%;

    background:linear-gradient(
    to left,
    #090909,
    transparent);

    z-index:2;

}

.tech-track{

    display:flex;

    align-items:center;

    gap:65px;

    width:max-content;

    height:100%;

    animation:marquee 28s linear infinite;

}

.tech-item{

    display:flex;

    align-items:center;

    gap:12px;

    white-space:nowrap;

    font-size:16px;

    font-weight:600;

    color:#D2D2D2;

}

.tech-item i{

    font-size:22px;

    color:var(--primary);

}

.tech-track:hover{

    animation-play-state:paused;

}


/*==================================================
Image Effects
==================================================*/

.image-wrapper{

    filter:drop-shadow(
    0 35px 70px rgba(0,0,0,.35));

}

/*==================================================
Hero Button Effects
==================================================*/

.hero-buttons .btn{

    min-width:220px;

}

.hero-buttons .btn i{

    transition:.35s;

}

.hero-buttons .btn:hover i{

    transform:translateX(5px);

}

.hero-buttons .btn:active{

    transform:scale(.97);

}

.btn-primary:hover{

    box-shadow:

    0 20px 60px rgba(124,92,255,.45);

}

.btn-outline{

    background:rgba(255,255,255,.03);

}

.btn-outline:hover{

    border-color:#fff;

}


/*==================================================
Hero Social
==================================================*/

.hero-social a{

    position:relative;

    overflow:hidden;

}

.hero-social a::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    rgba(124,92,255,.25),
    transparent);

    opacity:0;

    transition:.35s;

}

.hero-social a:hover::before{

    opacity:1;

}

.hero-social a i{

    position:relative;

    z-index:2;

}


/*==================================================
Hero Card Hover
==================================================*/

.floating-card{

    cursor:default;

}

.floating-card:hover{

    box-shadow:

    0 30px 80px rgba(124,92,255,.15);

}

.floating-card:hover .card-icon{

    transform:rotate(-8deg) scale(1.08);

}

.card-icon{

    transition:.35s;

}


/*==================================================
Hero Image Polish
==================================================*/

.image-wrapper img{

   width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    transition:.6s;

}

.image-wrapper::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:85%;

    height:30px;

    border-radius:50%;

    background:rgba(0,0,0,.45);

    filter:blur(20px);

    z-index:1;

}


/*==================================================
Tech Marquee
==================================================*/

.tech-track{

    will-change:transform;

}

.tech-item{

    transition:.35s;

}

.tech-item:hover{

    color:#fff;

    transform:translateY(-3px);

}

.tech-item:hover i{

    transform:scale(1.15);

}

.tech-item i{

    transition:.35s;

}


/*==================================================
Animations
==================================================*/

@keyframes rotateRing{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes rotateRingReverse{

    from{

        transform:rotate(360deg);

    }

    to{

        transform:rotate(0deg);

    }

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}



/*==================================================
Performance
==================================================*/

.hero,
.hero-image,
.image-wrapper,
.floating-card,
.hero-glow{

    will-change:transform;

}

.hero-image::before,
.hero-image::after{

    pointer-events:none;

}

.hero-noise,
.hero-grid-bg{

    user-select:none;

}


.hero-image-frame::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        180deg,

        transparent 55%,

        rgba(0,0,0,.25)

    );

    z-index:3;

}

.hero-image-frame::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-30%;

    width:40%;

    height:300%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

    transform:rotate(18deg);

}

.hero-image:hover .hero-image-frame::after{

    animation:lightSweep 1.4s;

}

@keyframes lightSweep{

    from{

        left:-40%;

    }

    to{

        left:140%;

    }

}

/*==================================================
About
==================================================*/

.about{

position:relative;

overflow:hidden;

padding: 100px 0;
}

.about::before{

    content:"";

    position:absolute;

    left:-220px;

    top:80px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.12);

    filter:blur(180px);

    pointer-events:none;

}

.about-grid-bg{

    position:absolute;

    inset:0;

    opacity:.05;

    background-image:

        linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:44px 44px;

}

.about-wrapper{
 position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:460px 1fr;

    align-items:center;

    gap:100px;

}

.about::after{

    content:"";

    position:absolute;

    right:-260px;

    bottom:-120px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.08);

    filter:blur(180px);

    pointer-events:none;

}


/*==================================================
About Image
==================================================*/

.about-image{

    display:flex;

    justify-content:center;

}

.about-image-wrapper{

     position:relative;

    width:430px;

    border-radius:30px;

    transform:rotate(-2deg);

    transition:.45s cubic-bezier(.22,.61,.36,1);
}

.about-image-wrapper img{

    width:100%;

    display:block;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 0 0 1px rgba(255,255,255,.04),

        0 35px 90px rgba(0,0,0,.50),

        0 0 70px rgba(124,92,255,.10);

}

.about-glow{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:420px;

    height:420px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(124,92,255,.45),

    transparent 70%);

    filter:blur(80px);

    z-index:-1;

}

.experience-badge{

    position:absolute;

    right:-30px;

    bottom:40px;

    width:170px;

    height:170px;

    border-radius:24px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    background:rgba(22,22,22,.82);

    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 30px 60px rgba(0,0,0,.35);

}

.experience-badge span{

     font-size:64px;

    line-height:1;

    font-weight:700;

    font-family:'Space Grotesk',sans-serif;

    color:#fff;

}

.experience-badge small{

     margin-top:10px;

    font-size:14px;

    line-height:1.4;

    text-align:center;

    color:#B8B8B8;


}


/*==================================================
About Content
==================================================*/

.about-content{

    max-width:650px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    height:46px;

    padding:0 20px;

    margin-bottom:25px;

    border-radius:100px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:var(--primary);

    font-weight:600;

    letter-spacing:.5px;

}

.about-content h2{

   font-size:54px;

    line-height:1.08;

    letter-spacing:-2px;

    margin-bottom:24px;

    max-width:620px;

}

.about-content p{

    font-size:17px;

    line-height:1.85;

    color:#AFAFAF;

    max-width:560px;

    margin-bottom:38px;

}


/*==================================================
Stats
==================================================*/

.about-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:40px;

}

.stat-card{

  
    padding:24px 26px;

    border-radius:22px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(124,92,255,.35);

    box-shadow:

        0 25px 60px rgba(124,92,255,.12);

}

.stat-card h3{

   font-size:38px;

    line-height:1;

    color:#fff;

    margin-bottom:8px;

}

.stat-card span{

     display:block;

    margin-top:8px;

    color:#A8A8A8;

    font-size:15px;

}


/*==================================================
Skill Pills
==================================================*/

.about-skills{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:45px;

}

.about-skills span{

    height:42px;

    padding:0 18px;

    display:flex;

    align-items:center;
  font-size:14px;
    border-radius:100px;

    background:#151515;
 font-weight:500;
    border:1px solid rgba(255,255,255,.08);

    color:#E2E2E2;
 letter-spacing:.3px;
    transition:.35s;

}

.about-skills span:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);

}


/*==================================================
Buttons
==================================================*/

.about-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.about-buttons .btn{

    min-width:200px;

}


/*==================================================
About Animation Helpers
==================================================*/

.about-image-wrapper{

    transition:.45s;

}

.about-image-wrapper:hover{

    transform:translateY(-8px) rotate(0deg);


}

.experience-badge{

    animation:floatBadge 4s ease-in-out infinite;

}

@keyframes floatBadge{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}


/*==================================================
Experience
==================================================*/

.experience{

position:relative;

padding: 100px 0;

overflow:hidden;
}

.experience::before{

    content:"";

    position:absolute;

    right:-220px;

    top:100px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.10);

    filter:blur(180px);

    pointer-events:none;

}

.experience-grid-bg{

    position:absolute;

    inset:0;

    opacity:.05;

    background-image:

    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:44px 44px;

}

.experience-heading{

    position:relative;

    z-index:5;

    max-width:760px;

    margin:0 auto 90px;

    text-align:center;

}

.experience-heading h2{

    font-size:54px;

    line-height:1.08;

    letter-spacing:-2px;

    margin:22px 0;

}

.experience-heading p{

    max-width:640px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#B8B8B8;

}

/*==================================================
Career List
==================================================*/

.career-list{

    display:flex;

    flex-direction:column;

    gap:32px;

    position:relative;

    z-index:2;

}

/*==================================================
Career Item
==================================================*/

.career-item{

    display:grid;

    grid-template-columns:220px 1fr;

    gap:40px;

    align-items:flex-start;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
  transform-style:preserve-3d;
    transition:.45s cubic-bezier(.22,.61,.36,1);

    position:relative;

    overflow:hidden;

}

.career-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:

    linear-gradient(

        to bottom,

        #7C5CFF,

        #A78BFA

    );

    transform:scaleY(0);

    transform-origin:top;

    transition:.45s;

}

.career-item:hover{

    transform:

        perspective(1200px)

        rotateX(2deg)

        translateY(-10px);

    border-color:rgba(124,92,255,.30);

    box-shadow:

    0 30px 80px rgba(124,92,255,.10);

}

.career-item:hover::before{

    transform:scaleY(1);

}

/*==================================================
Year
==================================================*/

.career-year{

    font-family:"Space Grotesk",sans-serif;

    font-size:18px;

    font-weight:700;

    color:var(--primary);

    letter-spacing:.5px;

    position:sticky;

    top:120px;

}

/*==================================================
Content
==================================================*/

.career-content h3{

    font-size:34px;

    margin-bottom:8px;

}

.career-content h4{

    font-family:"Inter",sans-serif;

    font-size:18px;

    font-weight:600;

    color:#ffffff;

    margin-bottom:18px;

}

.career-content p{

    font-size:17px;

    line-height:1.9;

    color:#B8B8B8;

    margin-bottom:26px;

    max-width:760px;

}

/*==================================================
Stack
==================================================*/

.career-stack{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.career-stack span{

    display:flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border-radius:100px;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    font-size:14px;

    font-weight:500;

    color:#E4E4E4;

    transition:.35s;

}

.career-stack span:hover{

    background:var(--primary);

    border-color:transparent;

    color:#fff;

    transform:translateY(-4px);

}

/*==================================================
Career Hover
==================================================*/

.career-item:hover .career-year{

    color:#fff;

}

.career-item:hover h3{

    color:var(--primary);

}

/*==================================================
Performance
==================================================*/

.career-item{

    will-change:transform;

}


/*==================================================
Technical Expertise
==================================================*/

.skills{

position:relative;

padding: 100px 0;

overflow:hidden;
}

.skills::before{

    content:"";

    position:absolute;

    left:-220px;

    bottom:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.12);

    filter:blur(180px);

}

.skills-grid-bg{

    position:absolute;

    inset:0;

    opacity:.05;

    background-image:

        linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:44px 44px;

}

.skills-heading{

    position:relative;

    z-index:5;

    max-width:760px;

    margin:0 auto 80px;

    text-align:center;

}

.skills-heading h2{

    font-size:54px;

    line-height:1.08;

    margin:20px 0;

    letter-spacing:-2px;

}

.skills-heading p{

    max-width:650px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

}

.skills-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    position:relative;

    z-index:5;

}

.skill-card{

    position:relative;

    padding:36px;

    border-radius:30px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s cubic-bezier(.22,.61,.36,1);

    overflow:hidden;

}

.skill-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        135deg,

        rgba(124,92,255,.10),

        transparent 60%

    );

    opacity:0;

    transition:.45s;

}

.skill-card:hover{

    transform:

        perspective(1200px)

        rotateX(2deg)

        translateY(-10px);

    border-color:rgba(124,92,255,.30);

    box-shadow:

        0 35px 80px rgba(124,92,255,.12);

}

.skill-card:hover::before{

    opacity:1;

}

.skill-top{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

}

.skill-icon{

    width:68px;

    height:68px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(

        135deg,

        #7C5CFF,

        #9B82FF

    );

    font-size:30px;

    color:#fff;

    transition:.4s;

}

.skill-card:hover .skill-icon{

    transform:

        rotate(-10deg)

        scale(1.08);

}

.skill-top span{

    font-size:30px;

    font-family:"Space Grotesk";

    font-weight:700;

}

.skill-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.skill-tags span{

    height:48px;

    padding:0 18px;

    display:flex;

    align-items:center;

    gap:10px;

    border-radius:100px;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    font-size:15px;

    font-weight:500;

}

.skill-tags span:hover{

    background:var(--primary);

    border-color:transparent;

    transform:translateY(-4px);

}

.skill-tags i{

    font-size:22px;

}

/*==================================================
Projects
==================================================*/

.projects{

position:relative;

overflow:hidden;

padding: 100px 0;
}

.projects::before{

    content:"";

    position:absolute;

    right:-220px;

    top:80px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.12);

    filter:blur(180px);

    pointer-events:none;

}

.projects-grid-bg{

    position:absolute;

    inset:0;

    opacity:.05;

    background-image:

    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:44px 44px;

}

.projects-heading{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:0 auto 80px;

    text-align:center;

}

.projects-heading h2{

    margin:22px 0 24px;

}

.projects-heading p{

    max-width:620px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

}

/*==================================================
Projects Grid
==================================================*/

.projects-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:34px;

}

/*==================================================
Project Card
==================================================*/

.project-card{

   position:relative;

    transform-style:preserve-3d;

    perspective:1200px;

    will-change:transform;

    cursor:pointer;

    border-radius:28px;

    overflow:hidden;

    background:#121212;

    border:1px solid rgba(255,255,255,.08);

 transition:

    transform .45s ease,

    border-color .35s,

    box-shadow .35s;


}

.project-card:hover{

    transform:translateY(-10px);

    border-color:rgba(124,92,255,.35);

    box-shadow:

    0 40px 90px rgba(124,92,255,.15);

}

/*==================================================
Project Image
==================================================*/

.project-image{

position:relative;

height: 340px;

overflow:hidden;
}

.project-image img{

width:100%;

height:100%;

object-fit: cover;

er; */

object-position:top center;

display:block;

transition:
        transform .6s ease,
        filter .4s ease;

object-position: top;
}

.project-card:hover img{

   
    transform:scale(1.08);

    filter:brightness(.88);

}

/*==================================================
Browser Bar
==================================================*/

.browser-bar{

position: relative;

top: 0px;

left:0;

width:100%;

height:42px;

display:flex;

align-items:center;

gap:8px;

padding:0 18px;

background:rgba(15,15,15,.92);

backdrop-filter:blur(18px);

z-index:5;
}

.browser-bar span{

    width:10px;

    height:10px;

    border-radius:50%;

}

.browser-bar span:nth-child(1){

    background:#ff5f57;

}

.browser-bar span:nth-child(2){

    background:#febc2e;

}

.browser-bar span:nth-child(3){

    background:#28c840;

}

/*==================================================
Overlay
==================================================*/

.project-overlay{

       position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

    radial-gradient(

    circle,

    rgba(124,92,255,.18),

    rgba(0,0,0,.62)

    );

    backdrop-filter:blur(3px);

    opacity:0;

    transition:.45s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

/*==================================================
Preview Button
==================================================*/

.preview-btn{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 28px;

    border-radius:100px;

    background:#fff;

    color:#090909;

    font-weight:600;

    transition:.35s;

}

.preview-btn:hover{

    transform:translateY(-4px);

}

.preview-btn i{

    transition:.35s;

}

.preview-btn:hover i{

    transform:translate(4px,-4px);

}

/*==================================================
Project Content
==================================================*/

.project-content{

position:relative;

    padding:34px 120px 38px 34px;

}

.project-category{

    display:inline-block;

    margin-bottom:14px;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.project-content h3{

    font-size:32px;

    margin-bottom:24px;

}

/*==================================================
Project Stack
==================================================*/

.project-stack{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.project-stack span{

    height:42px;

    padding:0 18px;

    display:flex;

    align-items:center;

    border-radius:100px;

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    font-size:14px;

    color:#ddd;

    transition:.35s;

}

.project-stack span:hover{

    background:var(--primary);

    color:#fff;

}

/*==================================================
Project Number
==================================================*/

.project-number{

    font-family:'Space Grotesk',sans-serif;

 position:absolute;

    right:22px;
    bottom:18px;

    font-size:120px;

    font-weight:900;

    color:transparent;

    -webkit-text-stroke:1px rgba(255,255,255,.05);

    opacity:.45;

    z-index:0;

}

/*==================================================
Contact
==================================================*/

.contact{

position:relative;

overflow:hidden;

padding: 100px 0;
}

.contact::before{

    content:"";

    position:absolute;

    left:-220px;

    bottom:-220px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.12);

    filter:blur(180px);

}

.contact-grid-bg{

    position:absolute;

    inset:0;

    opacity:.05;

    background-image:

    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:44px 44px;

}

.contact-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 560px;

    align-items:center;

    gap:90px;

}

/*==================================================
Contact Content
==================================================*/

.contact-content{

    max-width:620px;

}

.contact-content h2{

    margin:24px 0;

}

.contact-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}

/*==================================================
Contact Cards
==================================================*/

.contact-info{

    display:grid;

    gap:18px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:rgba(124,92,255,.35);

    box-shadow:

    0 25px 60px rgba(124,92,255,.12);

}

.contact-icon{

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:linear-gradient(

    135deg,

    var(--primary),

    var(--primary-light)

    );

    color:#fff;

    font-size:22px;

    flex-shrink:0;

    transition:.35s;

}

.contact-card:hover .contact-icon{

    transform:rotate(-8deg) scale(1.08);

}

.contact-card small{

    display:block;

    margin-bottom:6px;

    color:#9b9b9b;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.contact-card strong{

    font-size:18px;

    font-weight:600;

    color:#fff;

}

/*==================================================
Contact Form
==================================================*/

.contact-form{

    padding:42px;

    border-radius:30px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    box-shadow:

    0 35px 80px rgba(0,0,0,.35);

}

.form-group{
position: relative;
    margin-bottom:22px;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

width:100%;

height:62px;

padding:0 22px;

border-radius:16px;

background:#161616;

border:1px solid rgba(255,255,255,.08);

color:#fff;

font-size:15px;

transition:.35s;

margin-top: 10px;

appearance:none;

outline: none;

-webkit-appearance:none;

-moz-appearance:none;
}

.contact-form textarea{

    height:170px;

    padding:22px;

    resize:none;

}

.form-group:has(select)::after{

content:"";

position:absolute;

right: 18px;

top: 57%;

width: 28px;

height: 28px;

transform:translateY(-50%);

pointer-events:none;

transition:.35s ease;

background-repeat:no-repeat;

background-position:center;

background-size:contain;

background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237c5cff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}



.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:#9d9d9d;

}

.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus{

    border-color:var(--primary);

    box-shadow:

    0 0 0 4px rgba(124,92,255,.12);

}

.contact-form .btn{

    width:100%;

    margin-top:10px;

}

/*==================================================
Contact Polish
==================================================*/

.contact-card{

    position:relative;

    overflow:hidden;

}

.contact-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    135deg,

    rgba(124,92,255,.12),

    transparent

    );

    opacity:0;

    transition:.35s;

}

.contact-card:hover::before{

    opacity:1;

}

.contact-form{

    position:relative;

    overflow:hidden;

}

.contact-form::before{

    content:"";

    position:absolute;

    right:-120px;

    top:-120px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(124,92,255,.08);

    filter:blur(80px);

    pointer-events:none;

}

.form-heading{

    margin-bottom:35px;

}

.form-heading h3{

    font-size:32px;

    margin-bottom:10px;

}

.form-heading p{

    color:#B8B8B8;

    line-height:1.8;

}

/*==================================================
Footer
==================================================*/

.footer{

    position:relative;

    padding:100px 0 35px;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer::before{

    content:"";

    position:absolute;

    right:-220px;

    bottom:-220px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(124,92,255,.10);

    filter:blur(180px);

}

.footer-grid-bg{

    position:absolute;

    inset:0;

    opacity:.04;

    background-image:

    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:44px 44px;

}

.footer-top{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-logo img{

width: 100px;

margin-bottom:28px;
}

.footer-brand p{

    max-width:360px;

    margin-bottom:35px;

    line-height:1.9;

}

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-links h4{

    font-size:22px;

    margin-bottom:10px;

}

.footer-links a,

.footer-links span{

    color:#bdbdbd;

    transition:.35s;

}

.footer-links a:hover{

    color:#fff;

    transform:translateX(6px);

}

.footer-bottom{

    position:relative;

    z-index:2;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.back-top{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.back-top:hover{

    color:var(--primary);

}

.back-top i{

    transition:.35s;

}

.back-top:hover i{

    transform:translateY(-5px);

}

.hp-field{

    position:absolute;

    left:-99999px;

    opacity:0;

    pointer-events:none;

}

/*==================================================
Services
==================================================*/

.services{

position:relative;

padding: 100px 0;
}

.services-heading{

    max-width:760px;

    margin:0 auto 90px;

    text-align:center;

}

.services-heading h2{

    margin:20px 0;

}

.services-heading p{

    max-width:650px;

    margin:auto;

}

.services-list{

    display:flex;

    flex-direction:column;

}

.service-item{

    display:grid;

    grid-template-columns:90px 1fr 90px;

    gap:40px;

    align-items:center;

    padding:45px 0;

    border-top:1px solid rgba(255,255,255,.08);

    transition:.4s ease;

    position:relative;

}

.service-item:last-child{

    border-bottom:1px solid rgba(255,255,255,.08);

}

.service-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:100%;

    background:linear-gradient(90deg,rgba(124,92,255,.12),transparent);

    transition:.45s ease;

}

.service-item:hover::before{

    width:100%;

}

.service-item:hover{

    padding-left:20px;

}

.service-number{

    font-size:42px;

    font-weight:700;

    color:rgba(255,255,255,.12);

    transition:.35s;

}

.service-item:hover .service-number{

    color:#7c5cff;

}

.service-content h3{

    margin-bottom:14px;

    font-size:34px;

    line-height:1.2;

    transition:.35s;

}

.service-item:hover h3{

    color:#7c5cff;

}

.service-content p{

    max-width:620px;

    margin:0;

}

.service-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#7c5cff;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    transition:.4s;

}

.service-item:hover .service-icon{

    background:#7c5cff;

    color:#fff;

    transform:rotate(-10deg) scale(1.08);

}

.project-description{

margin:16px 0 28px;

line-height:1.75;

color:rgba(255,255,255,.68);

max-width: 90%;
}