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

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:white;
}



/* NAVBAR */

.navbar{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 10%;

    position:fixed;

    top:0;
    left:0;

    z-index:1000;

    background:rgba(5,8,22,0.6);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{

    font-size:42px;

    font-weight:700;
}

.logo span{
    color:#915EFF;
}

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;
}

.nav-links a{

    text-decoration:none;

    color:white;

    position:relative;

    transition:0.3s;
}

.nav-links a::after{

    content:'';

    position:absolute;

    width:0%;

    height:2px;

    background:#915EFF;

    left:0;
    bottom:-6px;

    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:#915EFF;
}

section{
    padding-top:120px;
}

/* HERO SECTION */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 10%;

    gap:60px;

    position:relative;

    overflow:hidden;
}

/* LEFT */

.hero-left{
    flex:1;
}

.hero-tag{

    color:#915EFF;

    letter-spacing:3px;

    margin-bottom:20px;

    font-weight:600;
}

.hero-left h1{

    font-size:75px;

    line-height:1.1;

    margin-bottom:20px;
}

.hero-left h1 span{
    color:#915EFF;
}

.typing-text{

    font-size:35px;

    color:#915EFF;

    margin-bottom:25px;

    min-height:50px;
}

.hero-description{

    color:#d1d1d1;

    line-height:2;

    max-width:650px;

    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{

    padding:16px 30px;

    border-radius:14px;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:10px;

    background:#915EFF;

    color:white;

    transition:0.4s;

    position:relative;

    overflow:hidden;
}

.btn:hover{

    transform:translateY(-6px);

    box-shadow:0 0 25px rgba(145,94,255,0.5);
}

.btn-outline{

    background:transparent;

    border:2px solid #915EFF;
}

/* RIGHT */

.hero-right{

    flex:1;

    position:relative;

    height:500px;

    display:flex;

    justify-content:center;

    align-items:center;
}

/* CENTER GLOW */

.circle{

    width:300px;
    height:300px;

    background:#915EFF;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.3;

    position:absolute;
}

/* FLOATING CARDS */

.floating-card{

    position:absolute;

    width:180px;

    padding:20px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    backdrop-filter:blur(15px);

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:15px;

    font-size:20px;

    font-weight:600;

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

    box-shadow:0 0 20px rgba(0,0,0,0.3);
}

.floating-card i{

    color:#915EFF;

    font-size:28px;
}

/* POSITIONS */

.java{
    top:50px;
    left:40px;
}

.spring{
    top:100px;
    right:30px;
}

.mysql{
    bottom:100px;
    left:20px;
}

.js{
    bottom:40px;
    right:60px;
}

/* FLOAT ANIMATION */

@keyframes float{

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

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

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

}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content h1{
        font-size:40px;
    }

    .hero-content h2{
        font-size:25px;
    }

    .nav-links{
        display:none;
    }

}


/* SECTION TITLE */

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

.section-title h2{
    font-size:40px;
    color:#915EFF;
}

/* ABOUT SECTION */

.about{

    padding:120px 10%;
}

.about-container{

    display:grid;

    grid-template-columns:55% 45%;

    gap:30px;

    align-items:start;

    min-height:700px;
}

/* LEFT */

.about-small{

    color:#915EFF;

    letter-spacing:3px;

    margin-bottom:20px;

    font-weight:600;
}

.about-content h2{

    font-size:60px;

    line-height:1.2;

    margin-bottom:20px;
}

.about-content h2 span{
    color:#915EFF;
}

.about-description{

    line-height:2;

    color:#d1d1d1;

    margin-top:20px;

    font-size:17px;
}

/* ABOUT IMAGE PREMIUM */

/* RIGHT IMAGE */

.about-image{

    position:relative;

    width:fit-content;

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

    margin-top:-550px;

    overflow:visible;
}

.about-image img{

    width:780px;

    height:430px;

    object-fit:cover;

    object-position:center 18%;

    border-radius:35px;

    position:relative;

    z-index:2;

    border:2px solid
    rgba(145,94,255,0.4);

    box-shadow:
    0 0 70px rgba(145,94,255,0.2);

    transition:0.5s;
}

/* IMAGE HOVER */


.about-image:hover img{

    transform:
    scale(1.02)
    translateY(-8px);
}

/* ROTATING GLOW */

.image-border{

    position:absolute;

    width:760px;

    height:500px;

    border-radius:40px;

    background:
    linear-gradient(
        45deg,
        #915EFF,
        #00D9FF,
        #915EFF
    );

    filter:blur(70px);

    opacity:0.18;

    animation:rotateBorder 8s linear infinite;

    z-index:1;
}

@keyframes rotateBorder{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }

}

/* AVAILABLE BADGE */

.availability{

    position:absolute;

    bottom:-100px;

    left:75%;

    transform:translateX(-50%);

    background:
    rgba(5,10,20,0.96);

    padding:18px 38px;

    border-radius:60px;

    display:flex;

    align-items:center;

    gap:14px;

    min-width:320px;

    justify-content:center;

    border:1px solid
    rgba(0,255,153,0.35);

    backdrop-filter:blur(20px);

    z-index:5;

    box-shadow:
    0 0 30px rgba(0,255,153,0.15);
}

.availability span{

    width:14px;
    height:14px;

    background:#00ff99;

    border-radius:50%;

    box-shadow:
    0 0 20px #00ff99;

    animation:pulseDot 1.5s infinite;
}

/* CONNECTOR LINES */

.connector{

    position:absolute;

    width:2px;

    height:60px;

    border-left:2px dashed
    rgba(0,255,255,0.45);

    bottom:-100px;

    z-index:3;
}

/* LEFT */

.left-line{

    left:210px;
}

/* RIGHT */

.right-line{

    right:-70px;
}

.mini-card i{

    font-size:26px;

    color:#915EFF;

    margin-bottom:15px;
}

/* ABOUT TYPING */

.about-typing{

    color:#915EFF;

    font-size:28px;

    margin-bottom:25px;

    min-height:40px;
}

/* CURRENT FOCUS */

.current-focus{

    margin-top:40px;
}

.current-focus h4{

    margin-bottom:20px;

    color:#915EFF;

    font-size:22px;
}

.focus-items{

    display:flex;

    flex-wrap:wrap;

    gap:18px;
}

.focus-card{

    padding:15px 22px;

    border-radius:20px;

    background:
    rgba(255,255,255,0.05);

    border:1px solid
    rgba(255,255,255,0.08);

    transition:0.4s;
}

.focus-card:hover{

    transform:translateY(-8px);

    border-color:#915EFF;

    box-shadow:
    0 0 25px
    rgba(145,94,255,0.25);
}


/* MINI STATS */

.mini-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;
}

.mini-card{

    flex:1;

    min-width:120px;

    padding:25px;

    border-radius:25px;

    text-align:center;

    background:
    rgba(255,255,255,0.05);

    border:1px solid
    rgba(255,255,255,0.08);

    transition:0.4s;
}

.mini-card:hover{

    transform:translateY(-10px);

    border-color:#915EFF;

    box-shadow:
    0 0 25px
    rgba(145,94,255,0.25);
}

.mini-card h5{

    font-size:32px;

    color:#915EFF;

    margin-bottom:10px;
}

/* PREMIUM TAGS */

.about-tags{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-top:35px;
}

.about-tags span{

    position:relative;

    padding:14px 24px;

    border-radius:40px;

    background:
    linear-gradient(
        145deg,
        rgba(145,94,255,0.15),
        rgba(0,217,255,0.08)
    );

    border:1px solid
    rgba(145,94,255,0.3);

    backdrop-filter:blur(12px);

    overflow:hidden;

    transition:0.4s;

    cursor:pointer;

    font-weight:500;

    letter-spacing:0.5px;
}

/* GLOW EFFECT */

.about-tags span::before{

    content:'';

    position:absolute;

    width:120px;
    height:120px;

    background:#915EFF;

    border-radius:50%;

    top:-60px;
    left:-60px;

    opacity:0.15;

    filter:blur(30px);

    transition:0.4s;
}

/* HOVER */

.about-tags span:hover{

    transform:
    translateY(-8px)
    scale(1.05);

    border-color:#00D9FF;

    box-shadow:
    0 0 25px
    rgba(145,94,255,0.3);

    color:#ffffff;
}

.about-tags span:hover::before{

    transform:scale(1.3);
}

.about-tags span i{

    margin-right:10px;

    color:#915EFF;
}

.about-tags span{

    animation:tagFloat 4s ease-in-out infinite;
}

@keyframes tagFloat{

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

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

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

}


/* SKILLS SECTION */

.skills{
    padding:100px 10%;
}

/* PREMIUM SKILLS SECTION */

.skills-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:35px;
}

/* SKILL CARD */

.skill-card{

    position:relative;

    overflow:hidden;

    padding:45px 30px;

    border-radius:30px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    transition:0.5s;

    cursor:pointer;

    z-index:1;
}

/* GLOW EFFECT */

.skill-card::before{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    background:#915EFF;

    border-radius:50%;

    top:-120px;
    right:-120px;

    opacity:0.18;

    filter:blur(50px);

    transition:0.5s;
}

/* SECOND GLOW */

.skill-card::after{

    content:'';

    position:absolute;

    width:160px;
    height:160px;

    background:#00D9FF;

    border-radius:50%;

    bottom:-100px;
    left:-100px;

    opacity:0.1;

    filter:blur(45px);
}

/* HOVER */

.skill-card:hover{

    transform:
    translateY(-18px)
    scale(1.03);

    border-color:#915EFF;

    box-shadow:
    0 0 40px rgba(145,94,255,0.25);

}

/* ICON */

.skill-card i{

    font-size:65px;

    margin-bottom:25px;

    color:#915EFF;

    transition:0.5s;
}

/* ICON ANIMATION */

.skill-card:hover i{

    transform:
    rotate(8deg)
    scale(1.15);

    color:#ffffff;
}

/* TITLE */

.skill-card h3{

    font-size:28px;

    margin-bottom:15px;

    position:relative;

    z-index:2;
}

/* DESCRIPTION */

.skill-card p{

    color:#d1d1d1;

    line-height:1.8;

    font-size:15px;

    position:relative;

    z-index:2;
}   


/* PROJECTS SECTION */

.projects{
    padding:100px 10%;
}

.projects-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
}

.project-card{
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
}

.project-card:hover{
    transform:translateY(-12px);
    border-color:#915EFF;
    box-shadow:0 0 25px rgba(145,94,255,0.4);
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.project-content{
    padding:30px;
}

.project-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.project-content p{
    color:#d1d1d1;
    line-height:1.8;
    margin-bottom:20px;
}

.project-tech{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.project-tech span{
    padding:8px 15px;
    background:#915EFF;
    border-radius:30px;
    font-size:14px;
}

.project-buttons a{
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    background:#915EFF;
    color:white;
    transition:0.3s;
}

.project-buttons a:hover{
    background:white;
    color:#050816;
}

/* GLOW EFFECT */

.project-card::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );

    transition:0.6s;

}

.project-card:hover::before{
    left:100%;
}

.project-card{
    position:relative;
}

body::before{

    content:'';

    position:fixed;

    width:500px;
    height:500px;

    background:#915EFF;

    filter:blur(200px);

    top:-100px;
    right:-100px;

    opacity:0.15;

    z-index:-1;
}

body::after{

    content:'';

    position:fixed;

    width:400px;
    height:400px;

    background:#00D9FF;

    filter:blur(180px);

    bottom:-100px;
    left:-100px;

    opacity:0.1;

    z-index:-1;
}

.project-features{
    margin-bottom:25px;
}

.project-features p{
    margin-bottom:10px;
    color:#d1d1d1;
    font-size:15px;
}


/* EXPERIENCE SECTION */

.experience{
    padding:100px 10%;
}

.timeline{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.timeline::after{
    content:'';
    position:absolute;
    width:4px;
    background:#915EFF;
    top:0;
    bottom:0;
    left:50%;
    margin-left:-2px;
}

.timeline-item{
    padding:20px 40px;
    position:relative;
    width:50%;
}

.timeline-item:nth-child(odd){
    left:0;
}

.timeline-item:nth-child(even){
    left:50%;
}

.timeline-content{
    padding:30px;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.timeline-content:hover{
    transform:translateY(-10px);
    border-color:#915EFF;
}

.timeline-content h3{
    margin-bottom:10px;
    color:#915EFF;
}

.timeline-content span{
    display:block;
    margin-bottom:15px;
    color:#d1d1d1;
}

.timeline-content p{
    line-height:1.8;
    color:#d1d1d1;
}

/* ACHIEVEMENTS */

.achievements{
    padding:100px 10%;
}

.achievement-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.achievement-card{
    padding:40px;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.achievement-card:hover{
    transform:translateY(-10px);
    border-color:#915EFF;
    box-shadow:0 0 20px rgba(145,94,255,0.4);
}

.achievement-card h3{
    color:#915EFF;
    margin-bottom:15px;
    font-size:28px;
}

.achievement-card p{
    color:#d1d1d1;
    line-height:1.8;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .timeline::after{
        left:20px;
    }

    .timeline-item{
        width:100%;
        padding-left:60px;
        padding-right:20px;
    }

    .timeline-item:nth-child(even){
        left:0;
    }

}


/* CONTACT SECTION */

.contact{
    padding:100px 10%;
}

.contact-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
}

.contact-info h3{
    font-size:40px;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
    color:#d1d1d1;
    margin-bottom:20px;
}

.contact-details p{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.contact-details i{
    color:#915EFF;
    font-size:20px;
}

/* FORM */

.contact-form{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    padding:18px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,0.05);

    color:white;

    outline:none;

    border:1px solid rgba(255,255,255,0.1);
}

.contact-form button{

    padding:16px;

    border:none;

    border-radius:12px;

    background:#915EFF;

    color:white;

    font-size:16px;

    cursor:pointer;

    transition:0.3s;
}

.contact-form button:hover{

    transform:translateY(-5px);

    box-shadow:0 0 20px rgba(145,94,255,0.5);
}

/* FOOTER */

.footer{

    padding:50px 10%;

    text-align:center;

    border-top:1px solid rgba(255,255,255,0.1);
}

.footer h2{

    font-size:35px;

    margin-bottom:15px;
}

.footer p{

    color:#d1d1d1;

    margin-bottom:25px;
}

.footer-icons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-bottom:25px;
}

.footer-icons a{

    width:50px;
    height:50px;

    display:flex;

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

    border-radius:50%;

    background:rgba(255,255,255,0.05);

    color:white;

    text-decoration:none;

    transition:0.3s;
}

.footer-icons a:hover{

    background:#915EFF;

    transform:translateY(-5px);
}

.footer span{
    color:#888;
}


/* CUSTOM SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#050816;
}

::-webkit-scrollbar-thumb{
    background:#915EFF;
    border-radius:20px;
}

/* PROGRESS BAR */

#progress-bar{

    position:fixed;

    top:0;
    left:0;

    width:0%;

    height:4px;

    background:#915EFF;

    z-index:2000;
}


/* SOCIAL BAR */

.social-bar{

    position:fixed;

    left:30px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:20px;

    z-index:1000;
}

.social-bar a{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;

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

    background:rgba(255,255,255,0.08);

    color:white;

    text-decoration:none;

    transition:0.3s;

    backdrop-filter:blur(10px);
}

.social-bar a:hover{

    background:#915EFF;

    transform:translateY(-5px);
}


/* ABOUT IMPROVEMENT */

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-image img{

    width:50%;

    border-radius:30px;

    border:2px solid rgba(145,94,255,0.3);

    box-shadow:0 0 40px rgba(145,94,255,0.2);
}

.about-content h3{

    font-size:40px;

    margin-bottom:25px;
}

.about-tags{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:30px;
}

.about-tags span{

    padding:12px 20px;

    background:rgba(145,94,255,0.1);

    border:1px solid rgba(145,94,255,0.3);

    border-radius:30px;
}


.project-card img{
    transition:0.5s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-card{
    overflow:hidden;
}

.timeline-item::before{

    content:'';

    position:absolute;

    width:20px;
    height:20px;

    background:#915EFF;

    border-radius:50%;

    top:40px;

    right:-12px;

    box-shadow:0 0 20px #915EFF;
}

.contact-form{

    background:rgba(255,255,255,0.04);

    padding:40px;

    border-radius:30px;

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.08);
}





/* LOADER */

.loader{

    position:fixed;

    width:100%;
    height:100vh;

    background:#050816;

    display:flex;

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

    z-index:99999;

    transition:1s;
}

.loader h1{

    font-size:60px;

    color:#915EFF;

    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    0%{
        opacity:0.4;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0.4;
    }

}

.nav-links a.active{
    color:#915EFF;
}


.project-card,
.skill-card,
.achievement-card,
.timeline-content{

    transform-style:preserve-3d;

    perspective:1000px;
}


/* TOAST NOTIFICATION */

#toast{

    position:fixed;

    top:30px;
    right:30px;

    padding:18px 28px;

    border-radius:14px;

    background:rgba(20,20,35,0.95);

    color:white;

    font-size:15px;

    border-left:5px solid #915EFF;

    box-shadow:0 0 25px rgba(145,94,255,0.3);

    transform:translateX(400px);

    opacity:0;

    transition:0.5s;

    z-index:99999;

    backdrop-filter:blur(15px);
}

#toast.show{

    transform:translateX(0);

    opacity:1;
}

#toast.success{
    border-color:#00ff99;
}

#toast.error{
    border-color:#ff4d4d;
}


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

@media(max-width:900px){

    /* REAL MOBILE OVERFLOW FIX */

html,
body{

    overflow-x:hidden;
}

section{

    width:100%;

    overflow:hidden;
}

    /* NAVBAR */

    .navbar{

        padding:18px 20px;
    }

    .nav-links{

        gap:18px;

        font-size:14px;
    }

    /* HERO SECTION */

    /* HERO MOBILE FIX */

.hero{

    padding:120px 20px 70px;

    min-height:auto;
}

.hero-container{

    display:flex;

    flex-direction:column-reverse;

    align-items:center;

    justify-content:center;

    text-align:center;

    gap:40px;
}

.hero-content h1{

    font-size:42px;

    line-height:1.1;

    margin-bottom:20px;

    word-break:break-word;
}

.hero-content h2{

    font-size:28px;

    line-height:1.2;
}

   .hero-content p{

    font-size:16px;

    line-height:1.8;

    padding:0 5px;
}

   .hero-buttons{

    display:flex;

    flex-direction:column;

    width:100%;

    align-items:center;

    gap:18px;
}

.hero-buttons a{

    width:100%;

    max-width:260px;

    text-align:center;
}

    /* HERO IMAGE */

    .hero-image{

    width:100%;

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;

    max-width:260px;

    height:auto;

    object-fit:contain;
}

    /* ABOUT SECTION */

    .about{

        padding:100px 20px;
    }

    .about-container{

        grid-template-columns:1fr;

        gap:70px;
    }

    .about-content{

        text-align:center;
    }

    .about-content h2{

        font-size:55px;

        line-height:1.1;
    }

    /* ABOUT TAGS */

    .about-tags{

        justify-content:center;

        flex-wrap:wrap;
    }

    /* FOCUS ITEMS */

    .focus-items{

        justify-content:center;

        flex-wrap:wrap;
    }

    /* ABOUT IMAGE */

    .about-image{

        width:100%;

        margin:auto;

        justify-content:center;

        margin-top:0;
    }

 .about-image img{

    width:100%;

    max-width:300px;

    height:340px;

    object-fit:cover;

    border-radius:28px;
}

    /* IMAGE GLOW */

    .image-border{

        width:360px;

        height:420px;
    }

    /* BADGE */

   .availability{

    width:85%;

    max-width:260px;

    padding:14px 20px;

    font-size:14px;

    bottom:-75px;

    left:50%;

    transform:translateX(-50%);

    border-radius:50px;
}

    /* CONNECTOR LINES */

    .left-line{

        left:50px;
    }

    .right-line{

        right:50px;
    }

    /* MINI STATS */

    .mini-stats{

        justify-content:center;

        flex-wrap:wrap;
    }

    .mini-card{

        width:100%;
    }

    /* SKILLS */

    .skills-grid{

        grid-template-columns:1fr 1fr;
    }

    /* PROJECTS */

    .projects-grid{

        grid-template-columns:1fr;
    }

    /* EXPERIENCE */

    .timeline{

        padding-left:0;
    }

    .timeline-item{

        width:100%;
    }

    /* CONTACT */

    .contact-container{

        grid-template-columns:1fr;

        gap:50px;
    }

}