/* ========================================= */
/* GOOGLE FONT */
/* Loaded via <link> in index.html (preconnected) — */
/* removed duplicate @import here since it was */
/* render-blocking and loading the font twice. */
/* ========================================= */

/* ========================================= */
/* CSS VARIABLES */
/* ========================================= */

:root{

    --primary:#00d4ff;
    --secondary:#7c3aed;
    --accent:#38bdf8;

    --bg:#050816;
    --bg2:#0f172a;

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

    --white:#ffffff;

    --gray:#cbd5e1;

    --shadow:0 10px 40px rgba(0,0,0,.35);

    --transition:.4s ease;

    --radius:20px;

}

/* ========================================= */
/* RESET */
/* ========================================= */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

/* ========================================= */
/* SCROLLBAR */
/* ========================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07111f;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--primary),var(--secondary));

    border-radius:50px;

}

/* ========================================= */
/* SELECTION */
/* ========================================= */

::selection{

    background:var(--primary);

    color:#000;

}

/* ========================================= */
/* LINKS */
/* ========================================= */

a{

    text-decoration:none;

    color:inherit;

}

/* ========================================= */
/* IMAGES */
/* ========================================= */

img{

    max-width:100%;

    display:block;

}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

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

section{

    padding:120px 0;

    position:relative;

}

/* ========================================= */
/* TITLES */
/* ========================================= */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h5{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

}

.section-title h2{

    font-size:45px;

    margin:15px 0;

}

.section-title p{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}

/* ========================================= */
/* ANIMATED BACKGROUND */
/* ========================================= */

body::before{

content:"";

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:

radial-gradient(circle at top left,#00d4ff20,transparent),

radial-gradient(circle at bottom right,#7c3aed20,transparent),

radial-gradient(circle,#38bdf810,transparent);

z-index:-2;

}

/* ========================================= */
/* FLOATING BLUR */
/* ========================================= */

body::after{

content:"";

position:fixed;

width:500px;

height:500px;

background:#00d4ff22;

filter:blur(90px);

top:-150px;

right:-150px;

z-index:-1;

animation:floatBg 12s linear infinite alternate;

will-change:transform;

pointer-events:none;

}

@keyframes floatBg{

0%{

transform:translateY(0);

}

100%{

transform:translateY(120px);

}

}
/* ========================================= */
/* PRELOADER */
/* ========================================= */

#preloader{
    position:fixed;
    inset:0;
    background:#050816;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:0.5s;
}

.loader{
    display:flex;
    gap:12px;
}

.loader span{
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--primary);
    animation:loading 0.8s infinite alternate;
}

.loader span:nth-child(2){
    animation-delay:.2s;
}

.loader span:nth-child(3){
    animation-delay:.4s;
}

@keyframes loading{

    from{
        transform:translateY(0);
        opacity:.5;
    }

    to{
        transform:translateY(-18px);
        opacity:1;
    }

}

/* ========================================= */
/* HEADER */
/* ========================================= */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(5,8,22,.55);

    backdrop-filter:blur(10px);

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

    transition:.4s;

}

.header.scrolled{

    background:#07111f;

    box-shadow:0 8px 30px rgba(0,0,0,.35);

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:var(--primary);

    letter-spacing:2px;

}

.logo span{

    color:var(--white);

}

/* ========================================= */
/* NAV LINKS */
/* ========================================= */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    color:var(--white);

    font-weight:500;

    position:relative;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links a:hover::after,

.nav-links a.active::after{

    width:100%;

}

/* ========================================= */
/* THEME TOGGLE */
/* ========================================= */

.theme-toggle{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

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

    transition:.3s;

}

.theme-toggle:hover{

    background:var(--primary);

    color:#000;

    transform:rotate(180deg);

}

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

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:white;

}

/* ========================================= */
/* RESPONSIVE NAVBAR */
/* ========================================= */

@media(max-width:992px){

.navbar{

position:fixed;

top:80px;

right:-100%;

width:280px;

height:100vh;

background:#08111f;

transition:.4s;

padding:40px 20px;

}

.navbar.active{

right:0;

}

.nav-links{

flex-direction:column;

gap:30px;

}

.menu-btn{

display:block;

}

.theme-toggle{

margin-right:15px;

}

}
/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    padding:140px 8% 80px;
    position:relative;
}

.hero-left{
    flex:1;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:50px;
    color:var(--primary);
    margin-bottom:25px;
    backdrop-filter:blur(8px);
}

.hero-left h3{
    font-size:30px;
    color:#d1d5db;
    margin-bottom:10px;
}

.hero-left h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-left h1 span{
    background:linear-gradient(90deg,#00d4ff,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left h2{
    font-size:34px;
    color:var(--primary);
    min-height:50px;
    margin-bottom:25px;
}

.hero-description{
    color:#cbd5e1;
    font-size:18px;
    max-width:650px;
    margin-bottom:40px;
}

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

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.btn{
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.primary{
    background:linear-gradient(90deg,#00d4ff,#7c3aed);
    color:#fff;
}

.secondary{
    border:2px solid var(--primary);
    color:var(--primary);
    background:transparent;
}

.btn:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,212,255,.35);
}

/* ================= SOCIAL ================= */

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a{
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:22px;
    transition:.4s;
}

.social-icons a:hover{
    background:linear-gradient(90deg,#00d4ff,#7c3aed);
    transform:translateY(-8px);
}

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

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
}

/* ================= PROFILE IMAGE ================= */

.image-box{
    width:420px;
    height:420px;
    border-radius:50%;
    padding:8px;
    background:linear-gradient(45deg,#00d4ff,#7c3aed);
}

.image-box img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:8px solid #050816;
}



/* ================= FLOATING CARDS ================= */

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:12px 18px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    animation:floatCard 3s ease-in-out infinite;
    will-change:transform;
}

.floating-card i{
    color:var(--primary);
    font-size:22px;
}

.card1{top:5%;left:-20px;}
.card2{top:20%;right:-30px;}
.card3{bottom:28%;left:-35px;}
.card4{bottom:12%;right:-20px;}
.card5{bottom:-10px;left:40%;}

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

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

    100%{
        transform:translateY(0);
    }

}

/* ================= SCROLL INDICATOR ================= */

.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}

.scroll-down a{
    color:var(--primary);
    font-size:34px;
    animation:bounce 2s infinite;
}

@keyframes bounce{

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

    50%{
        transform:translateY(10px);
    }

}

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

@media(max-width:992px){

.hero{
    flex-direction:column-reverse;
    text-align:center;
    padding-top:130px;
}

.hero-left h1{
    font-size:48px;
}

.hero-left h2{
    font-size:26px;
}

.hero-buttons,
.social-icons{
    justify-content:center;
}

.image-box{
    width:300px;
    height:300px;
}

.floating-card{
    display:none;
}

}
/* ========================================= */
/* ABOUT SECTION */
/* ========================================= */

.about {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

/* Section Heading */

.about .section-title {
    margin-bottom: 70px;
}

/* About Layout */

.about-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 380px 1fr;

    gap: 70px;

    align-items: center;
}

/* ========================================= */
/* ABOUT IMAGE */
/* ========================================= */

.about-image {
    position: relative;
    padding: 15px;
}

.about-image::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    border-radius: 25px;

    border: 2px solid var(--primary);

    transform: rotate(-6deg);

    transition: var(--transition);

    z-index: -1;
}

.about-image:hover::before {
    transform: rotate(0deg);
}

.about-image img {
    width: 100%;

    border-radius: 25px;

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

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

    transition: var(--transition);
}

.about-image:hover img {
    transform: translateY(-8px);
}

/* ========================================= */
/* ABOUT CONTENT */
/* ========================================= */

.about-content h3 {
    font-size: 32px;

    margin-bottom: 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #7c3aed
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.about-content > p {
    color: var(--gray);

    font-size: 16px;

    margin-bottom: 18px;

    line-height: 1.9;
}

/* ========================================= */
/* INFORMATION CARDS */
/* ========================================= */

.about-info {

    display: grid;

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

    gap: 18px;

    margin: 35px 0;
}

.info-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border-radius: 15px;

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

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

    backdrop-filter: blur(8px);

    transition: var(--transition);
}

.info-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(0,212,255,.5);

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

    box-shadow:
        0 15px 35px rgba(0,0,0,.2);
}

.info-card > i {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;

    font-size: 18px;
}

.info-card h4 {

    font-size: 14px;

    color: var(--primary);

    margin-bottom: 3px;
}

.info-card p {

    color: white;

    font-size: 14px;

    word-break: break-word;
}

/* ========================================= */
/* ABOUT HIGHLIGHTS */
/* ========================================= */

.about-highlights {

    display: grid;

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

    gap: 18px;

    margin-bottom: 35px;
}

.highlight {

    text-align: center;

    padding: 22px 15px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(8px);

    transition: var(--transition);
}

.highlight:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--primary);

    box-shadow:
        0 15px 40px rgba(0,212,255,.12);
}

.highlight h2 {

    font-size: 30px;

    margin-bottom: 5px;

    color: var(--primary);
}

.highlight span {

    color: var(--gray);

    font-size: 13px;
}

/* ========================================= */
/* ABOUT BUTTON */
/* ========================================= */

.about-content .btn {

    margin-top: 5px;
}

/* ========================================= */
/* ABOUT RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .about-container {

        grid-template-columns: 300px 1fr;

        gap: 40px;
    }

}

@media (max-width: 768px) {

    .about {

        padding:
            90px 6%;
    }

    .about-container {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-image {

        width: 300px;

        max-width: 100%;

        margin: auto;
    }

    .about-content h3 {

        font-size: 27px;
    }

    .about-info {

        grid-template-columns: 1fr;

        text-align: left;
    }

    .about-highlights {

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

}

@media (max-width: 500px) {

    .about-highlights {

        grid-template-columns: 1fr;
    }

    .highlight {

        padding: 18px;
    }

}
/* ========================================= */
/* SKILLS SECTION */
/* ========================================= */

.skills {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

/* ========================================= */
/* SKILLS CONTAINER */
/* ========================================= */

.skills-container {
    max-width: 1200px;
    margin: auto;

    display: grid;

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

    gap: 30px;
}

/* ========================================= */
/* SKILL CATEGORY */
/* ========================================= */

.skill-category {

    padding: 30px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

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

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.skill-category:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0,212,255,.45);

    box-shadow:
        0 20px 50px rgba(0,212,255,.10);
}

/* ========================================= */
/* CATEGORY TITLE */
/* ========================================= */

.skill-category > h3 {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 21px;

    margin-bottom: 25px;

    color: white;
}

.skill-category > h3 i {

    width: 42px;

    height: 42px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;
}

/* ========================================= */
/* SKILL GRID */
/* ========================================= */

.skill-grid {

    display: grid;

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

    gap: 18px;
}

/* ========================================= */
/* SKILL CARD */
/* ========================================= */

.skill-card {

    position: relative;

    padding: 22px 18px;

    border-radius: 16px;

    text-align: center;

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

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

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.skill-card::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 3px;

    left: 0;

    bottom: 0;

    transform: scaleX(0);

    transform-origin: left;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    transition:
        transform .4s ease;
}

.skill-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(0,212,255,.35);

    background:
        rgba(0,212,255,.07);
}

.skill-card:hover::before {

    transform:
        scaleX(1);
}

/* ========================================= */
/* SKILL ICON */
/* ========================================= */

.skill-card > i {

    display: block;

    font-size: 38px;

    margin-bottom: 12px;

    color: var(--primary);

    transition:
        transform .35s ease,
        color .35s ease;
}

.skill-card:hover > i {

    transform:
        translateY(-4px)
        scale(1.08);

    color: white;
}

/* ========================================= */
/* SKILL NAME */
/* ========================================= */

.skill-card h4 {

    font-size: 16px;

    margin-bottom: 14px;

    color: white;
}

/* ========================================= */
/* PROGRESS BAR */
/* ========================================= */

.progress {

    width: 100%;

    height: 6px;

    border-radius: 50px;

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

    overflow: hidden;

    margin-bottom: 8px;
}

.progress span {

    display: block;

    height: 100%;

    border-radius: inherit;

    width: 0;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    transition:
        width 1.5s ease;
}

/* ========================================= */
/* SKILL PERCENTAGE */
/* ========================================= */

.skill-card small {

    color: var(--gray);

    font-size: 12px;

    font-weight: 500;
}

/* ========================================= */
/* TOOLS WITHOUT PROGRESS BAR */
/* ========================================= */

.skill-category:nth-child(4)
.skill-card {

    min-height: 130px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;
}

/* ========================================= */
/* SKILL RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .skills-container {

        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .skills {

        padding:
            90px 6%;
    }

    .skill-category {

        padding: 22px 18px;
    }

    .skill-grid {

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

        gap: 12px;
    }

    .skill-card {

        padding: 18px 10px;
    }

    .skill-card > i {

        font-size: 30px;
    }

}

@media (max-width: 400px) {

    .skill-grid {

        grid-template-columns: 1fr;
    }

}
/* ========================================= */
/* PROJECTS SECTION */
/* ========================================= */

.projects {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

/* ========================================= */
/* PROJECT CONTAINER */
/* ========================================= */

.projects-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

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

    gap: 35px;
}

/* ========================================= */
/* PROJECT CARD */
/* ========================================= */

.project-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

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

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.project-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(0,212,255,.5);

    box-shadow:
        0 25px 60px rgba(0,212,255,.12);
}

/* ========================================= */
/* PROJECT IMAGE */
/* ========================================= */

.project-image {

    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #111827
        );
}

.project-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,8,22,.75),
            transparent
        );

    opacity: .7;

    pointer-events: none;
}

.project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.project-card:hover
.project-image img {

    transform:
        scale(1.08);
}

/* ========================================= */
/* PROJECT CONTENT */
/* ========================================= */

.project-content {

    padding: 30px;
}

.project-content h3 {

    font-size: 24px;

    margin-bottom: 15px;

    color: white;
}

.project-content p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 22px;
}

/* ========================================= */
/* TECHNOLOGY TAGS */
/* ========================================= */

.tech-stack {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 25px;
}

.tech-stack span {

    padding:
        7px 13px;

    border-radius: 50px;

    font-size: 12px;

    color: var(--primary);

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

    border:
        1px solid rgba(0,212,255,.20);

    transition:
        .3s ease;
}

.tech-stack span:hover {

    color: white;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    border-color:
        transparent;

    transform:
        translateY(-2px);
}

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

.project-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.project-buttons .btn {

    padding:
        11px 18px;

    font-size: 13px;
}

/* ========================================= */
/* GITHUB PROJECT CONTAINER */
/* ========================================= */

.github-projects {

    grid-column:
        1 / -1;

    display: grid;

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

    gap: 30px;

    margin-top: 5px;
}

/* ========================================= */
/* PROJECT CARD GLOW */
/* ========================================= */

.project-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        var(--primary);

    opacity: 0;

    filter: blur(50px);

    top: -100px;

    right: -100px;

    transition:
        opacity .5s ease;
}

.project-card:hover::before {

    opacity: .15;
}

/* ========================================= */
/* PROJECT RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .projects-container {

        grid-template-columns:
            1fr;
    }

    .github-projects {

        grid-template-columns:
            1fr;
    }

}

@media (max-width: 600px) {

    .projects {

        padding:
            90px 6%;
    }

    .project-image {

        height: 210px;
    }

    .project-content {

        padding: 22px;
    }

    .project-content h3 {

        font-size: 21px;
    }

    .project-buttons {

        flex-direction: column;
    }

    .project-buttons .btn {

        width: 100%;

        justify-content: center;
    }

}
/* ========================================= */
/* GITHUB SECTION */
/* ========================================= */

.github-section {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

/* ========================================= */
/* GITHUB PROFILE CARD */
/* ========================================= */

.github-profile {

    max-width: 1100px;

    margin: 0 auto 50px;

    padding: 35px;

    display: flex;

    align-items: center;

    gap: 35px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

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

    transition: .4s ease;
}

.github-profile:hover {

    transform: translateY(-8px);

    border-color:
        rgba(0,212,255,.45);

    box-shadow:
        0 25px 65px rgba(0,212,255,.10);
}

/* ========================================= */
/* GITHUB AVATAR */
/* ========================================= */

.github-avatar {

    width: 150px;

    height: 150px;

    flex-shrink: 0;

    padding: 5px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
}

.github-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid var(--bg);
}

/* ========================================= */
/* GITHUB DETAILS */
/* ========================================= */

.github-details {

    flex: 1;
}

.github-details h3 {

    font-size: 30px;

    margin-bottom: 5px;
}

.github-details > p {

    color: var(--gray);

    margin-bottom: 25px;
}

/* ========================================= */
/* GITHUB STATS */
/* ========================================= */

.github-stats {

    display: grid;

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

    gap: 15px;

    margin-bottom: 25px;
}

.stat-card {

    padding: 18px 10px;

    text-align: center;

    border-radius: 15px;

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

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

    transition: .35s ease;
}

.stat-card:hover {

    transform:
        translateY(-5px);

    border-color:
        var(--primary);

    background:
        rgba(0,212,255,.07);
}

.stat-card h2 {

    font-size: 27px;

    color: var(--primary);

    margin-bottom: 3px;
}

.stat-card span {

    color: var(--gray);

    font-size: 12px;
}

/* ========================================= */
/* REPOSITORY CONTAINER */
/* ========================================= */

.repository-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

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

    gap: 25px;
}

/* ========================================= */
/* REPOSITORY CARD */
/* ========================================= */

.repository-card {

    position: relative;

    padding: 28px;

    border-radius: 20px;

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

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

    backdrop-filter: blur(8px);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

    overflow: hidden;
}

.repository-card::before {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background:
        var(--primary);

    opacity: 0;

    filter: blur(45px);

    top: -80px;

    right: -80px;

    transition: .4s ease;
}

.repository-card:hover::before {

    opacity: .15;
}

.repository-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0,212,255,.4);

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

/* ========================================= */
/* REPOSITORY HEADER */
/* ========================================= */

.repository-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-bottom: 15px;
}

.repository-header h3 {

    color: white;

    font-size: 20px;

    word-break: break-word;
}

.repository-header i {

    font-size: 24px;

    color: var(--primary);

    flex-shrink: 0;
}

/* ========================================= */
/* REPOSITORY DESCRIPTION */
/* ========================================= */

.repository-card > p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;

    min-height: 48px;

    margin-bottom: 20px;
}

/* ========================================= */
/* REPOSITORY INFORMATION */
/* ========================================= */

.repository-info {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 22px;

    color: var(--gray);

    font-size: 12px;
}

.repository-info span {

    display: flex;

    align-items: center;

    gap: 6px;
}

.repository-info i {

    color: var(--primary);
}

/* ========================================= */
/* LANGUAGE BADGE */
/* ========================================= */

.language-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 12px;

    border-radius: 50px;

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

    color: var(--primary);

    border:
        1px solid rgba(0,212,255,.15);

    font-size: 12px;
}

.language-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--primary);
}

/* ========================================= */
/* REPOSITORY BUTTON */
/* ========================================= */

.repository-card .btn {

    padding:
        10px 18px;

    font-size: 13px;
}

/* ========================================= */
/* LOADING STATE */
/* ========================================= */

.github-loading {

    grid-column:
        1 / -1;

    text-align: center;

    padding: 50px;

    color: var(--gray);
}

.github-loading i {

    color: var(--primary);

    font-size: 35px;

    margin-bottom: 15px;

    animation:
        githubSpin 1s linear infinite;
}

@keyframes githubSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* ========================================= */
/* EMPTY / ERROR STATE */
/* ========================================= */

.github-error {

    grid-column:
        1 / -1;

    text-align: center;

    padding: 40px;

    border-radius: 20px;

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

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

    color: var(--gray);
}

.github-error i {

    color: var(--primary);

    font-size: 35px;

    margin-bottom: 15px;
}

/* ========================================= */
/* GITHUB RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .github-profile {

        flex-direction: column;

        text-align: center;
    }

    .github-stats {

        width: 100%;
    }

    .repository-container {

        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .github-section {

        padding:
            90px 6%;
    }

    .github-profile {

        padding: 25px 18px;
    }

    .github-avatar {

        width: 120px;

        height: 120px;
    }

    .github-details h3 {

        font-size: 25px;
    }

    .github-stats {

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

    .repository-card {

        padding: 22px;
    }

}
/* ========================================= */
/* EDUCATION SECTION */
/* ========================================= */

.education {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

/* ========================================= */
/* PERFECT EDUCATION TIMELINE ALIGNMENT */
/* ========================================= */

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 70px;
    padding: 30px 0;
}

/* Continuous Center Line */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary),
        var(--secondary),
        var(--primary),
        transparent
    );
}

/* Every Timeline Item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 15px 45px;
    margin-bottom: 45px;
    box-sizing: border-box;
}

/* LEFT SIDE - B.Tech & DCA */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* RIGHT SIDE - HSC & HCL GUVI */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Timeline Icon */
.timeline-icon {
    position: absolute;
    top: 25px;

    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: white;

    border: 5px solid var(--bg);

    box-shadow:
        0 0 0 2px rgba(0,212,255,.35),
        0 8px 25px rgba(0,212,255,.20);

    z-index: 5;
}

/* LEFT ICON */
.timeline-item:nth-child(odd) .timeline-icon {
    right: -24px;
}

/* RIGHT ICON */
.timeline-item:nth-child(even) .timeline-icon {
    left: -24px;
}

/* Timeline Card */
.timeline-content {
    padding: 28px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

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

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.timeline-content:hover {
    transform: translateY(-7px);

    border-color:
        rgba(0,212,255,.45);

    box-shadow:
        0 20px 50px rgba(0,212,255,.10);
}

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

@media (max-width: 768px) {

    .education {
        padding: 90px 6%;
    }

    .timeline {
        padding-left: 45px;
        padding-top: 20px;
    }

    .timeline::before {
        left: 12px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 15px 0 15px 35px;
        margin-bottom: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: -33px;
        right: auto;
    }

    .timeline-content {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ========================================= */
/* TIMELINE YEAR */
/* ========================================= */

.timeline-content .year {

    display: inline-block;

    padding:
        5px 13px;

    margin-bottom: 12px;

    border-radius: 50px;

    color: var(--primary);

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

    border:
        1px solid rgba(0,212,255,.18);

    font-size: 12px;

    font-weight: 600;
}

/* ========================================= */
/* TIMELINE HEADINGS */
/* ========================================= */

.timeline-content h3 {

    font-size: 21px;

    color: white;

    margin-bottom: 5px;
}

.timeline-content h4 {

    font-size: 15px;

    color: var(--primary);

    font-weight: 500;

    margin-bottom: 10px;
}

.timeline-content p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 8px;
}

.timeline-content p:last-child {

    margin-bottom: 0;
}

/* ========================================= */
/* EDUCATION HIGHLIGHTS */
/* ========================================= */

.education-highlights {

    max-width: 1100px;

    margin: auto;

    display: grid;

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

    gap: 20px;
}

.edu-card {

    text-align: center;

    padding: 30px 18px;

    border-radius: 20px;

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

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

    backdrop-filter: blur(8px);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;
}

.edu-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(0,212,255,.45);

    background:
        rgba(0,212,255,.07);
}

.edu-card i {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto 15px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;

    font-size: 21px;
}

.edu-card h3 {

    font-size: 17px;

    color: white;

    margin-bottom: 6px;
}

.edu-card p {

    color: var(--gray);

    font-size: 12px;

    line-height: 1.6;
}

/* ========================================= */
/* EDUCATION RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .education-highlights {

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

}

@media (max-width: 768px) {

    .education {

        padding:
            90px 6%;
    }

    .timeline {

        padding-left: 35px;
    }

    .timeline::before {

        left: 10px;

        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {

        width: 100%;

        left: 0;

        text-align: left;

        padding:
            15px 0 15px 35px;
    }

    .timeline-item:nth-child(odd)
    .timeline-icon,
    .timeline-item:nth-child(even)
    .timeline-icon {

        left: -14px;

        right: auto;
    }

}

@media (max-width: 500px) {

    .education-highlights {

        grid-template-columns: 1fr;
    }

    .timeline-content {

        padding: 22px 18px;
    }

}
/* ========================================= */
/* CERTIFICATES SECTION */
/* ========================================= */

.certificates {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
}

/* ========================================= */
/* CERTIFICATE CONTAINER */
/* ========================================= */

.certificate-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

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

    gap: 30px;
}

/* ========================================= */
/* CERTIFICATE CARD */
/* ========================================= */

.certificate-card {

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

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

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.certificate-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(0,212,255,.45);

    box-shadow:
        0 25px 55px rgba(0,212,255,.10);
}

/* ========================================= */
/* CERTIFICATE IMAGE */
/* ========================================= */

.certificate-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    background:
        #111827;
}

.certificate-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,8,22,.65),
            transparent 60%
        );

    pointer-events: none;
}

.certificate-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.certificate-card:hover
.certificate-image img {

    transform:
        scale(1.08);
}

/* ========================================= */
/* CERTIFICATE CONTENT */
/* ========================================= */

.certificate-content {

    padding: 25px;
}

.certificate-content h3 {

    font-size: 19px;

    color: white;

    margin-bottom: 12px;
}

.certificate-content p {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.8;

    min-height: 70px;

    margin-bottom: 20px;
}

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

.certificate-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.certificate-buttons .btn {

    padding:
        10px 16px;

    font-size: 12px;
}

/* ========================================= */
/* CERTIFICATE GLOW */
/* ========================================= */

.certificate-card {

    position: relative;
}

.certificate-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    border-radius: 50%;

    background:
        var(--primary);

    filter:
        blur(50px);

    opacity: 0;

    top: -90px;

    right: -90px;

    transition:
        opacity .4s ease;
}

.certificate-card:hover::before {

    opacity: .12;
}

/* ========================================= */
/* CERTIFICATE RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .certificate-container {

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

}

@media (max-width: 650px) {

    .certificates {

        padding:
            90px 6%;
    }

    .certificate-container {

        grid-template-columns: 1fr;
    }

    .certificate-image {

        height: 240px;
    }

    .certificate-content {

        padding: 22px;
    }

    .certificate-buttons {

        flex-direction: column;
    }

    .certificate-buttons .btn {

        width: 100%;

        justify-content: center;
    }

}
/* ========================================= */
/* CONTACT SECTION */
/* ========================================= */

.contact {
    padding: 120px 8%;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

/* ========================================= */
/* CONTACT CONTAINER */
/* ========================================= */

.contact-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 50px;

    align-items: stretch;
}

/* ========================================= */
/* CONTACT INFORMATION */
/* ========================================= */

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* ========================================= */
/* CONTACT CARD */
/* ========================================= */

.contact-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;
}

.contact-card:hover {

    transform:
        translateX(8px);

    border-color:
        rgba(0,212,255,.45);

    background:
        rgba(0,212,255,.07);
}

/* ========================================= */
/* CONTACT ICON */
/* ========================================= */

.contact-card > i {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;

    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0,212,255,.15);
}

/* ========================================= */
/* CONTACT CARD TEXT */
/* ========================================= */

.contact-card h3 {

    font-size: 16px;

    color: white;

    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {

    color: var(--gray);

    font-size: 13px;

    word-break: break-word;

    transition: .3s ease;
}

.contact-card a:hover {

    color:
        var(--primary);
}

/* ========================================= */
/* CONTACT FORM */
/* ========================================= */

.contact-form {

    padding: 35px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );

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

    backdrop-filter: blur(10px);

    box-shadow:
        0 20px 55px rgba(0,0,0,.18);
}

/* ========================================= */
/* FORM */
/* ========================================= */

.contact-form form {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* ========================================= */
/* INPUTS */
/* ========================================= */

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

    width: 100%;

    padding: 16px 18px;

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

    outline: none;

    border-radius: 12px;

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

    color: white;

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

    font-size: 14px;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

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

    color:
        #94a3b8;
}

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

    border-color:
        var(--primary);

    background:
        rgba(0,212,255,.05);

    box-shadow:
        0 0 0 3px
        rgba(0,212,255,.08);
}

.contact-form textarea {

    min-height: 170px;

    resize: vertical;
}

/* ========================================= */
/* SUBMIT BUTTON */
/* ========================================= */

.contact-form button {

    border: none;

    cursor: pointer;

    justify-content: center;

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

    font-size: 14px;

    margin-top: 5px;
}

/* ========================================= */
/* FORM HOVER */
/* ========================================= */

.contact-form {

    position: relative;

    overflow: hidden;
}

.contact-form::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        var(--primary);

    filter:
        blur(60px);

    opacity: .07;

    top: -100px;

    right: -100px;

    pointer-events: none;
}

/* ========================================= */
/* CONTACT RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

    .contact-container {

        grid-template-columns: 1fr;

        gap: 35px;
    }

}

@media (max-width: 600px) {

    .contact {

        padding:
            90px 6%;
    }

    .contact-form {

        padding: 25px 18px;
    }

    .contact-card {

        padding: 18px;

        gap: 14px;
    }

    .contact-card > i {

        width: 48px;

        height: 48px;

        font-size: 17px;
    }

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

.footer {

    position: relative;

    padding: 80px 8% 25px;

    background:
        linear-gradient(
            180deg,
            #07111f,
            #020617
        );

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

    overflow: hidden;
}

/* ========================================= */
/* FOOTER BACKGROUND GLOW */
/* ========================================= */

.footer::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background:
        var(--primary);

    filter:
        blur(90px);

    opacity: .08;

    left: -150px;

    bottom: -200px;

    pointer-events: none;
}

.footer::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:
        var(--secondary);

    filter:
        blur(90px);

    opacity: .08;

    right: -130px;

    top: -150px;

    pointer-events: none;
}

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

.footer-container {

    position: relative;

    z-index: 1;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1.2fr 1fr;

    gap: 45px;

    padding-bottom: 55px;
}

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

.footer-container h2 {

    font-size: 28px;

    color:
        var(--primary);

    margin-bottom: 15px;
}

.footer-container h3 {

    font-size: 17px;

    color: white;

    margin-bottom: 20px;

    position: relative;
}

.footer-container h3::after {

    content: "";

    display: block;

    width: 35px;

    height: 2px;

    margin-top: 8px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );
}

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

.footer-about p {

    max-width: 330px;

    color:
        var(--gray);

    font-size: 13px;

    line-height: 1.8;
}

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

.footer-links ul {

    list-style: none;
}

.footer-links li {

    margin-bottom: 10px;
}

.footer-links a {

    color:
        var(--gray);

    font-size: 13px;

    transition:
        .3s ease;
}

.footer-links a:hover {

    color:
        var(--primary);

    padding-left: 5px;
}

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

.footer-contact p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color:
        var(--gray);

    font-size: 13px;

    margin-bottom: 14px;

    line-height: 1.6;
}

.footer-contact p i {

    color:
        var(--primary);

    margin-top: 4px;

    flex-shrink: 0;
}

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

.footer-social .social-icons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.footer-social .social-icons a {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

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

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

    color: white;

    font-size: 17px;

    transition:
        .35s ease;
}

.footer-social .social-icons a:hover {

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    border-color:
        transparent;

    transform:
        translateY(-6px);

    box-shadow:
        0 10px 25px
        rgba(0,212,255,.18);
}

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

.footer hr {

    position: relative;

    z-index: 1;

    max-width: 1250px;

    margin: auto;

    border: none;

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

/* ========================================= */
/* COPYRIGHT */
/* ========================================= */

.copyright {

    position: relative;

    z-index: 1;

    text-align: center;

    padding-top: 25px;

    color:
        #94a3b8;

    font-size: 12px;
}

.copyright p {

    margin: 0;
}

/* ========================================= */
/* SCROLL TO TOP */
/* ========================================= */

#scrollTop {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: white;

    font-size: 17px;

    cursor: pointer;

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px);

    transition:
        .4s ease;

    box-shadow:
        0 10px 30px
        rgba(0,212,255,.20);
}

#scrollTop.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

#scrollTop:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 15px 35px
        rgba(0,212,255,.35);
}

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

@media (max-width: 1000px) {

    .footer-container {

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

        gap: 40px;
    }

}

@media (max-width: 600px) {

    .footer {

        padding:
            65px 6% 25px;
    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .footer-about p {

        margin: auto;
    }

    .footer-container h3::after {

        margin-left: auto;

        margin-right: auto;
    }

    .footer-contact p {

        justify-content: center;
    }

    .footer-social .social-icons {

        justify-content: center;
    }

    #scrollTop {

        width: 45px;

        height: 45px;

        right: 18px;

        bottom: 18px;
    }

}
/* ========================================= */
/* THEME SYSTEM */
/* ========================================= */

body,
.header,
.skill-category,
.skill-card,
.project-card,
.github-profile,
.repository-card,
.timeline-content,
.certificate-card,
.contact-card,
.contact-form,
.info-card,
.highlight,
.edu-card,
.footer {

    transition:
        background .4s ease,
        color .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

/* ========================================= */
/* LIGHT THEME VARIABLES */
/* ========================================= */

body.light-theme {

    --primary: #0284c7;

    --secondary: #6d28d9;

    --accent: #0ea5e9;

    --bg: #f8fafc;

    --bg2: #e2e8f0;

    --card: rgba(255,255,255,.75);

    --white: #0f172a;

    --gray: #475569;

    --shadow:
        0 10px 40px rgba(15,23,42,.12);

    background:
        #f8fafc;

    color:
        #0f172a;
}

/* ========================================= */
/* LIGHT THEME BACKGROUND */
/* ========================================= */

body.light-theme::before {

    background:

        radial-gradient(
            circle at top left,
            rgba(14,165,233,.12),
            transparent 40%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(109,40,217,.10),
            transparent 40%
        );
}

body.light-theme::after {

    background:
        rgba(14,165,233,.12);
}

/* ========================================= */
/* LIGHT THEME HEADER */
/* ========================================= */

body.light-theme .header {

    background:
        rgba(248,250,252,.75);

    border-bottom:
        1px solid rgba(15,23,42,.08);

    box-shadow:
        0 8px 30px rgba(15,23,42,.08);
}

body.light-theme .header.scrolled {

    background:
        rgba(248,250,252,.95);
}

/* ========================================= */
/* LIGHT THEME NAVIGATION */
/* ========================================= */

body.light-theme .nav-links a {

    color:
        #334155;
}

body.light-theme .nav-links a:hover,
body.light-theme .nav-links a.active {

    color:
        var(--primary);
}

/* ========================================= */
/* LIGHT THEME MOBILE NAV */
/* ========================================= */

@media (max-width: 992px) {

    body.light-theme .navbar {

        background:
            rgba(248,250,252,.98);

        box-shadow:
            -10px 0 40px rgba(15,23,42,.08);
    }

    body.light-theme .nav-links a {

        color:
            #334155;
    }

    body.light-theme .menu-btn {

        color:
            #0f172a;
    }
}

/* ========================================= */
/* LIGHT THEME HERO */
/* ========================================= */

body.light-theme .hero-left h3 {

    color:
        #334155;
}

body.light-theme .hero-description {

    color:
        #475569;
}

body.light-theme .hero-tag {

    background:
        rgba(2,132,199,.07);

    border-color:
        rgba(2,132,199,.15);
}

/* ========================================= */
/* LIGHT THEME PROFILE IMAGE */
/* ========================================= */

body.light-theme .image-box img {

    border-color:
        #f8fafc;
}

/* ========================================= */
/* LIGHT THEME CARDS */
/* ========================================= */

body.light-theme .skill-category,
body.light-theme .skill-card,
body.light-theme .project-card,
body.light-theme .github-profile,
body.light-theme .repository-card,
body.light-theme .timeline-content,
body.light-theme .certificate-card,
body.light-theme .contact-card,
body.light-theme .contact-form,
body.light-theme .info-card,
body.light-theme .highlight,
body.light-theme .edu-card {

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

    border-color:
        rgba(15,23,42,.08);

    box-shadow:
        0 15px 45px rgba(15,23,42,.07);
}

/* ========================================= */
/* LIGHT THEME CARD TEXT */
/* ========================================= */

body.light-theme .skill-category > h3,
body.light-theme .skill-card h4,
body.light-theme .project-content h3,
body.light-theme .github-details h3,
body.light-theme .repository-header h3,
body.light-theme .timeline-content h3,
body.light-theme .certificate-content h3,
body.light-theme .contact-card h3,
body.light-theme .edu-card h3 {

    color:
        #0f172a;
}

body.light-theme .skill-category > h3 {

    color:
        #0f172a;
}

/* ========================================= */
/* LIGHT THEME SECONDARY TEXT */
/* ========================================= */

body.light-theme .skill-card small,
body.light-theme .project-content p,
body.light-theme .github-details > p,
body.light-theme .repository-card > p,
body.light-theme .timeline-content p,
body.light-theme .certificate-content p,
body.light-theme .contact-card p,
body.light-theme .contact-card a,
body.light-theme .edu-card p {

    color:
        #64748b;
}

/* ========================================= */
/* LIGHT THEME SOCIAL ICONS */
/* ========================================= */

body.light-theme .social-icons a,
body.light-theme .footer-social .social-icons a {

    background:
        rgba(15,23,42,.06);

    color:
        #334155;

    border-color:
        rgba(15,23,42,.08);
}

body.light-theme .social-icons a:hover,
body.light-theme .footer-social .social-icons a:hover {

    color:
        white;
}

/* ========================================= */
/* LIGHT THEME FORM */
/* ========================================= */

body.light-theme .contact-form input,
body.light-theme .contact-form textarea {

    background:
        rgba(15,23,42,.035);

    color:
        #0f172a;

    border-color:
        rgba(15,23,42,.12);
}

body.light-theme .contact-form input::placeholder,
body.light-theme .contact-form textarea::placeholder {

    color:
        #64748b;
}

body.light-theme .contact-form input:focus,
body.light-theme .contact-form textarea:focus {

    background:
        rgba(2,132,199,.04);
}

/* ========================================= */
/* LIGHT THEME FOOTER */
/* ========================================= */

body.light-theme .footer {

    background:
        linear-gradient(
            180deg,
            #e2e8f0,
            #cbd5e1
        );

    border-top:
        1px solid rgba(15,23,42,.08);
}

body.light-theme .footer-container h3,
body.light-theme .footer-container h2 {

    color:
        #0f172a;
}

body.light-theme .footer-about p,
body.light-theme .footer-links a,
body.light-theme .footer-contact p {

    color:
        #475569;
}

body.light-theme .copyright {

    color:
        #64748b;
}

body.light-theme .footer hr {

    border-color:
        rgba(15,23,42,.10);
}

/* ========================================= */
/* THEME TOGGLE ACTIVE EFFECT */
/* ========================================= */

body.light-theme .theme-toggle {

    background:
        rgba(2,132,199,.10);

    color:
        var(--primary);
}

body.light-theme .theme-toggle:hover {

    background:
        var(--primary);

    color:
        white;
}

/* ========================================= */
/* THEME TOGGLE ANIMATION */
/* ========================================= */

.theme-toggle i {

    transition:
        transform .5s ease;
}

body.light-theme .theme-toggle i {

    transform:
        rotate(180deg);
}

/* ========================================= */
/* LIGHT THEME SCROLLBAR */
/* ========================================= */

body.light-theme::-webkit-scrollbar-track {

    background:
        #e2e8f0;
}

body.light-theme::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            var(--primary),
            var(--secondary)
        );
}

/* ========================================= */
/* LIGHT THEME SELECTION */
/* ========================================= */

body.light-theme::selection {

    background:
        var(--primary);

    color:
        white;
}
/* ========================================= */
/* GLOBAL ANIMATIONS */
/* ========================================= */

/* ========================================= */
/* FADE UP */
/* ========================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ========================================= */
/* FADE DOWN */
/* ========================================= */

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ========================================= */
/* FADE LEFT */
/* ========================================= */

@keyframes fadeLeft {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* ========================================= */
/* FADE RIGHT */
/* ========================================= */

@keyframes fadeRight {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* ========================================= */
/* SCALE IN */
/* ========================================= */

@keyframes scaleIn {

    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

/* ========================================= */
/* GLOW PULSE */
/* ========================================= */

@keyframes glowPulse {

    0%,
    100% {

        box-shadow:
            0 0 15px
            rgba(0,212,255,.15);

    }

    50% {

        box-shadow:
            0 0 35px
            rgba(0,212,255,.40);

    }

}

/* ========================================= */
/* TEXT GLOW */
/* ========================================= */

@keyframes textGlow {

    0%,
    100% {

        text-shadow:
            0 0 5px
            rgba(0,212,255,.20);

    }

    50% {

        text-shadow:
            0 0 25px
            rgba(0,212,255,.55);

    }

}

/* ========================================= */
/* FLOAT */
/* ========================================= */

@keyframes floating {

    0% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

    100% {

        transform:
            translateY(0);

    }

}

/* ========================================= */
/* ROTATE */
/* ========================================= */

@keyframes rotateSlow {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}

/* ========================================= */
/* BUTTON SHINE */
/* ========================================= */

.btn {

    position: relative;

    overflow: hidden;
}

.btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .7s ease;

}

.btn:hover::before {

    left: 140%;

}

/* ========================================= */
/* CARD GLOW HOVER */
/* ========================================= */

.skill-card:hover,
.project-card:hover,
.repository-card:hover,
.certificate-card:hover,
.edu-card:hover {

    animation:
        glowPulse 2s ease-in-out infinite;
}

/* ========================================= */
/* HERO TEXT ANIMATION */
/* ========================================= */

.hero-left h1 {

    animation:
        fadeUp .9s ease both;
}

.hero-left h2 {

    animation:
        fadeUp 1.1s ease .15s both;
}

.hero-description {

    animation:
        fadeUp 1.2s ease .25s both;
}

.hero-buttons {

    animation:
        fadeUp 1.3s ease .35s both;
}

.hero-left .social-icons {

    animation:
        fadeUp 1.4s ease .45s both;
}

/* ========================================= */
/* HERO IMAGE ANIMATION */
/* ========================================= */

.hero-right {

    animation:
        scaleIn 1.2s ease both;
}

/* ========================================= */
/* SECTION TITLE ANIMATION */
/* ========================================= */

.section-title h5 {

    animation:
        fadeDown .7s ease both;
}

.section-title h2 {

    animation:
        fadeUp .8s ease .1s both;
}

.section-title p {

    animation:
        fadeUp .9s ease .2s both;
}

/* ========================================= */
/* INFO CARD HOVER */
/* ========================================= */

.info-card {

    position: relative;

    overflow: hidden;
}

.info-card::after {

    content: "";

    position: absolute;

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background:
        var(--primary);

    filter:
        blur(30px);

    opacity: 0;

    right: -30px;

    top: -30px;

    transition:
        opacity .4s ease;
}

.info-card:hover::after {

    opacity: .15;

}

/* ========================================= */
/* TIMELINE GLOW */
/* ========================================= */

.timeline-icon {

    animation:
        glowPulse 3s ease-in-out infinite;
}

/* ========================================= */
/* SOCIAL ICON BOUNCE */
/* ========================================= */

.social-icons a:hover {

    animation:
        socialBounce .5s ease;
}

@keyframes socialBounce {

    0% {

        transform:
            translateY(0);

    }

    40% {

        transform:
            translateY(-10px);

    }

    70% {

        transform:
            translateY(-4px);

    }

    100% {

        transform:
            translateY(-7px);

    }

}

/* ========================================= */
/* PROJECT IMAGE SHINE */
/* ========================================= */

.project-image,
.certificate-image {

    position: relative;
}

.project-image::before,
.certificate-image::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 50%;

    height: 100%;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.15),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .8s ease;

}

.project-card:hover
.project-image::before,
.certificate-card:hover
.certificate-image::before {

    left: 150%;

}

/* ========================================= */
/* REPOSITORY ICON */
/* ========================================= */

.repository-header i {

    animation:
        floating 3s ease-in-out infinite;
}

/* ========================================= */
/* SCROLL INDICATOR */
/* ========================================= */

.scroll-down {

    animation:
        fadeUp 1.5s ease 1s both;
}

/* ========================================= */
/* LOADING DOTS */
/* ========================================= */

.loader span {

    box-shadow:
        0 0 15px
        rgba(0,212,255,.45);
}

/* ========================================= */
/* MOBILE ANIMATION OPTIMIZATION */
/* ========================================= */

@media (max-width: 768px) {

    .card1,
    .card2,
    .card3,
    .card4,
    .card5 {

        animation: none;
    }

}

/* ========================================= */
/* ACCESSIBILITY */
/* ========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}
/* ========================================= */
/* FINAL RESPONSIVE POLISH */
/* ========================================= */

/* ========================================= */
/* LARGE DESKTOP */
/* ========================================= */

@media (min-width: 1400px) {

    .hero {

        padding-left: 10%;
        padding-right: 10%;
    }

    .hero-left h1 {

        font-size: 82px;
    }

    .hero-left h2 {

        font-size: 38px;
    }

    .about,
    .skills,
    .projects,
    .github-section,
    .education,
    .certificates,
    .contact {

        padding-left: 10%;
        padding-right: 10%;
    }

}

/* ========================================= */
/* LAPTOP */
/* ========================================= */

@media (max-width: 1200px) {

    .header .container {

        width: 92%;
    }

    .nav-links {

        gap: 22px;
    }

    .nav-links a {

        font-size: 14px;
    }

    .hero {

        gap: 45px;

        padding-left: 6%;
        padding-right: 6%;
    }

    .hero-left h1 {

        font-size: 62px;
    }

    .image-box {

        width: 360px;
        height: 360px;
    }

}

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

@media (max-width: 992px) {

    /* ---------- Navigation ---------- */

    .header .container {

        height: 72px;
    }

    .navbar {

        top: 72px;
    }

    /* ---------- Hero ---------- */

    .hero {

        min-height: auto;

        padding-top: 130px;
        padding-bottom: 100px;
    }

    .hero-left h1 {

        font-size: 52px;
    }

    .hero-left h2 {

        font-size: 28px;
    }

    /* ---------- Sections ---------- */

    section {

        padding-top: 90px;
        padding-bottom: 90px;
    }

    .section-title {

        margin-bottom: 50px;
    }

    .section-title h2 {

        font-size: 38px;
    }

}

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

@media (max-width: 768px) {

    body {

        font-size: 14px;
    }

    /* ---------- Header ---------- */

    .header {

        padding: 0;
    }

    .header .container {

        width: 90%;
    }

    .logo {

        font-size: 25px;
    }

    .theme-toggle {

        width: 40px;
        height: 40px;

        margin-right: 12px;
    }

    .menu-btn {

        font-size: 25px;
    }

    /* ---------- Hero ---------- */

    .hero {

        padding:
            120px 6% 80px;

        gap: 45px;
    }

    .hero-left h3 {

        font-size: 23px;
    }

    .hero-left h1 {

        font-size: 45px;
    }

    .hero-left h2 {

        font-size: 24px;
    }

    .hero-description {

        font-size: 15px;

        line-height: 1.8;
    }

    .hero-buttons {

        gap: 12px;
    }

    .hero-buttons .btn {

        padding:
            13px 22px;

        font-size: 13px;
    }

    .image-box {

        width: 270px;
        height: 270px;
    }

    /* ---------- Section Titles ---------- */

    .section-title h2 {

        font-size: 34px;
    }

    .section-title p {

        font-size: 13px;

        padding: 0 10px;
    }

    /* ---------- About ---------- */

    .about-content {

        text-align: center;
    }

    .about-content .btn {

        justify-content: center;
    }

    /* ---------- Projects ---------- */

    .project-card {

        width: 100%;
    }

    /* ---------- GitHub ---------- */

    .github-profile {

        width: 100%;
    }

}

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

@media (max-width: 576px) {

    /* ---------- Global ---------- */

    section {

        padding:
            80px 6%;
    }

    .container {

        width: 92%;
    }

    /* ---------- Hero ---------- */

    .hero {

        text-align: center;

        padding-top: 115px;
    }

    .hero-left h3 {

        font-size: 20px;
    }

    .hero-left h1 {

        font-size: 39px;
    }

    .hero-left h2 {

        font-size: 21px;

        min-height: 35px;
    }

    .hero-description {

        font-size: 14px;
    }

    .hero-buttons {

        justify-content: center;

        flex-direction: column;

        align-items: center;
    }

    .hero-buttons .btn {

        width: 210px;

        justify-content: center;
    }

    .social-icons {

        justify-content: center;
    }

    .image-box {

        width: 235px;
        height: 235px;
    }

    .scroll-down {

        display: none;
    }

    /* ---------- Section Title ---------- */

    .section-title {

        margin-bottom: 40px;
    }

    .section-title h5 {

        font-size: 11px;

        letter-spacing: 2px;
    }

    .section-title h2 {

        font-size: 29px;

        margin: 10px 0;
    }

    /* ---------- About ---------- */

    .about-image {

        width: 250px;
    }

    .about-content h3 {

        font-size: 24px;
    }

    .about-content > p {

        font-size: 13px;
    }

    /* ---------- Skills ---------- */

    .skill-category {

        padding: 20px 15px;
    }

    .skill-category > h3 {

        font-size: 18px;
    }

    .skill-grid {

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

    .skill-card h4 {

        font-size: 14px;
    }

    /* ---------- Projects ---------- */

    .project-image {

        height: 190px;
    }

    .project-content {

        padding: 20px;
    }

    .project-content h3 {

        font-size: 19px;
    }

    .project-content p {

        font-size: 13px;
    }

    /* ---------- GitHub ---------- */

    .github-avatar {

        width: 105px;
        height: 105px;
    }

    .github-stats {

        gap: 10px;
    }

    .stat-card {

        padding: 15px 8px;
    }

    .stat-card h2 {

        font-size: 23px;
    }

    /* ---------- Education ---------- */

    .timeline-content h3 {

        font-size: 18px;
    }

    .timeline-content h4 {

        font-size: 13px;
    }

    .timeline-content p {

        font-size: 12px;
    }

    /* ---------- Contact ---------- */

    .contact-card {

        align-items: flex-start;
    }

    .contact-card p,
    .contact-card a {

        font-size: 12px;
    }

}

/* ========================================= */
/* EXTRA SMALL DEVICES */
/* ========================================= */

@media (max-width: 380px) {

    .logo {

        font-size: 21px;
    }

    .hero-left h1 {

        font-size: 34px;
    }

    .hero-left h2 {

        font-size: 18px;
    }

    .image-box {

        width: 205px;
        height: 205px;
    }

    .skill-grid {

        grid-template-columns: 1fr;
    }

    .github-stats {

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

    .section-title h2 {

        font-size: 26px;
    }

}

/* ========================================= */
/* PRINT FRIENDLY */
/* ========================================= */

@media print {

    .header,
    .theme-toggle,
    .menu-btn,
    .scroll-down,
    #scrollTop,
    .hero-buttons,
    .social-icons {

        display: none !important;
    }

    body {

        background: white;

        color: black;
    }

    section {

        page-break-inside: avoid;
    }

}

/* ========================================= */
/* FINAL FOCUS ACCESSIBILITY */
/* ========================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {

    outline:
        3px solid
        var(--primary);

    outline-offset:
        4px;
}

/* ========================================= */
/* PREVENT HORIZONTAL OVERFLOW */
/* ========================================= */

html,
body {

    max-width: 100%;

    overflow-x: hidden;
}

/* ========================================= */
/* SMOOTH IMAGE LOADING */
/* ========================================= */

img {

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

/* ========================================= */
/* FINAL SECTION SPACING */
/* ========================================= */

.footer {

    margin-top: 20px;
}
/* ========================================= */
/* CONTACT FORM STATUS */
/* ========================================= */

.form-status {

    width: 100%;

    padding: 0;

    margin-top: 5px;

    border-radius: 12px;

    font-size: 13px;

    line-height: 1.6;

    transition: .3s ease;
}

.form-status.success,
.form-status.error,
.form-status.loading {

    padding: 12px 15px;
}

/* Success */

.form-status.success {

    color: #22c55e;

    background:
        rgba(34,197,94,.08);

    border:
        1px solid rgba(34,197,94,.20);
}

/* Error */

.form-status.error {

    color: #f87171;

    background:
        rgba(248,113,113,.08);

    border:
        1px solid rgba(248,113,113,.20);
}

/* Loading */

.form-status.loading {

    color: var(--primary);

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

    border:
        1px solid rgba(0,212,255,.20);
}

/* Disabled submit button */

.contact-form button:disabled {

    opacity: .65;

    cursor: not-allowed;

    transform: none;
}
/* =========================================
   FINAL EDUCATION TIMELINE FIX
========================================= */

/* LEFT ITEMS */
.timeline-item.timeline-left {
    left: 0;
    width: 50%;
    text-align: right;
}

/* RIGHT ITEMS */
.timeline-item.timeline-right {
    left: 50%;
    width: 50%;
    text-align: left;
}

/* LEFT ICON */
.timeline-item.timeline-left .timeline-icon {
    right: -24px;
    left: auto;
}

/* RIGHT ICON */
.timeline-item.timeline-right .timeline-icon {
    left: -24px;
    right: auto;
}

/* Keep cards properly inside their side */
.timeline-item.timeline-left .timeline-content {
    width: 100%;
}

.timeline-item.timeline-right .timeline-content {
    width: 100%;
}

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

@media (max-width: 768px) {

    .timeline-item.timeline-left,
    .timeline-item.timeline-right {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 15px 0 15px 35px;
    }

    .timeline-item.timeline-left .timeline-icon,
    .timeline-item.timeline-right .timeline-icon {
        left: -33px;
        right: auto;
    }

}

/* ========================================= */
/* REDUCED MOTION - performance & accessibility */
/* Cuts continuous background animations for   */
/* users/devices that prefer less motion.       */
/* ========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
