/* =====================
RESET
======================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppinds', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    background-color:  #141821;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.portfolio-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    background: url("images/portfolio-background.webp") center top / cover no-repeat;
    z-index: -1;
}

.portfolio-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom,
    rgba(20,24,33,0) 0%,
    rgba(20,24,33,.15) 30%,
    rgba(20,24,33,.45) 60%,
    rgba(20,24,33,.75) 80%,
    #141821 100%);
}

#about,
#skills,
#projects,
#contact {
    scroll-margin-top: 90px;
}

/* =====================
NAVBAR
======================*/
.header {
    width: 100%;
    position: fixed;
    justify-content: center;
    top: 22px;
    left: 0;
    z-index: 1000;
    display: flex;
    user-select: none;
}

.navbar {
    width: calc(100% - 60px);
    max-width: 1445px;
    height: 68px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px  solid rgba(255,255,255,.12);
    box-shadow: inset 0 10px 35px rgba(0,0,0,.35),
    inset 0 1px rgba(255,255,255,.08);
    z-index: 1001;
}

.logo {
    margin-left: 20px;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.801);
    text-decoration: none;
    backdrop-filter: bluer(14px);
    -webtkit-backdrop-filter: blur(14px);
}

.logo span {
    animation: glowDot 3s ease-in-out infinite;
}

@keyframes glowDot {
    0%,100% {
        text-shadow: 0 0 5px rgba(240, 239, 235, 0.9),
        0 0 15px rgba(250, 248, 245, 0.75);
    }
    50% {
        text-shadow: 0 0 10px rgb(240, 236, 223),
        0 0 25px rgb(245, 162, 38),
        0 0 45px rgba(252, 251, 251, 0.8);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 90px;
    padding: 12px 20px;
    margin-left: 20px;
    color: white;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #ECECEC;
    text-decoration: none;
    transition: .35s ease;
    display: flex;
    position: relative;
    cursor: pointer;
    transition: trasnform .35s cubic-bezier(.22,1,.36,1),
    color .35s ease,
    text-shadow .35s ease,
    border-color .35 ease,
    box-shadow .35s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.95),
    0 0 12px rgb(247, 247, 247),
    0 -6px 18px rgb(255, 255, 255);
    background: white;
    opacity: 0;
    transform:  translateX(-50%) scale(0);
    transition: transform .35s ease cubic-bezier(.22,1,.36,1),
    opacity .35s ease;
}

.nav-links a.active::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    left: 50%;
    bottom: -12px;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 110px;
    height: 1px;
    filter: blur(.1px);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.25) 25%,
        rgba(255,255,255,1) 50%,
        rgba(255,255,255,.25) 75%,
        transparent 100%
    );
    box-shadow: 0 -5px 15px rgba(255, 255, 255, 0.815),
    0 -10px 30px rgba(255, 255, 255, 0.671),
    0 -3px 10px rgba(255, 255, 255, 0.582);
    opacity: 0;
    transition: transform .35s cubic-bezier(.22,1,.36,1),
    opacity .35s ease;
}

.nav-links a.active::before {
    left: 50%;
    bottom: -10px;
    opacity: 1;
    transform:  translateX(-50%) scaleX(1);
}

.nav-links a:hover {
    transform: translateY(-2px);
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.678),
    0 0 20px rgba(255, 255, 255, 0.61);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-right: 20px;
}

.social-icons i {
    font-size: 25px;
    color: rgba(255,255,255,.92);
    transition: color .35s ease,
    trasnform .35s ease,
    text-shadow .35s ease;
}

.social-icons a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 48px;
    border-radius: 14px;
    color: rgba(255, 255, 255,.82);
    text-decoration: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: .35s ease;
    box-shadow: inset 0 1px rgba(255,255,255,.08),
    0 6px 18px rgba(0,0,0,.18);
}

.social-icons a:hover {
    transform: translateY(-1px) scale(1.04);
    background:rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.18);
    box-shadow: inset 0 1px rgba(255,255,255,.15),
    0 10px 24px rgba(0,0,0,.22),
    0 0 16px rgba(255,255,255,.10);

}

.social-icons a:hover i {
    color: #fff;
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(255,255,255,.35);
}

.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

/* =====================
HERO
======================*/
.content-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    box-sizing: border-box;
}

.glass-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    padding: 45px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 10px 35px rgba(0,0,0,.25),
    0 0 35px rgba(178,140,250,.08);
    box-sizing: border-box;
}

.hero {
    display: flex;
    padding: 25px 0;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-top: 95px;
    margin-bottom: 25px;
    z-index: 1;
    user-select: none;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin-top: 15px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
}

.hero-left h2 {
    font-size: 30px;
    color: white;
    margin-bottom: 25px;
    margin-top: 10px;
    letter-spacing: 1px;
    animation: softwareGlow 5s ease-in-out infinite;
}

@keyframes softwareGlow{
    0% {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(245, 245, 245, 0.2);
    }
    50% {
        color: #b4b4b4;
        text-shadow: 0 0 8px rgba(197, 197, 197, 0.5),
        0 0 25px rgba(199, 199, 199, 0.3);
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);

    }
}

.hero-line {
    width: 280px;
    height: 1px;
    margin: 20px auto;
    position: relative;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.212) 25%,
        rgba(255,255,255,1) 50%,
        rgba(255, 255, 255, 0.199) 75%,
        transparent 100%
    );
    box-shadow: 0 0px 15px rgba(255, 255, 255, 0.815),
    0 0px 30px rgba(255, 255, 255, 0.671),
    0 0px 10px rgba(255, 255, 255, 0.582);
}


.hero-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px #fff,
    0 0 20px rgb(255, 255, 255,.95),
    0 0 40px rgba(255,255,255,.85),
    0 0 70px rgba(255,255,255,.55),
    0 0 100px rgba(255,255,255,.25);
    z-index: 2;
}

.hero-line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 36px;
    height: 36px;
    transform: translate(-50% , -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.45) 0%, rgba(255,255,255,.18) 45%,
    rgba(255,255,255,.06) 70%,
    transparent 100%);
    filter: blur(6px);
    z-index: 1;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffffea 0%, #f4f4f4 100%);
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 0 20px rgba(255,255,255,.45);
    transition: .35s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 21px rgba(255,255,255,.7);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 220px;
    height: 52px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 20px rgba(255,255,255,.08);
    transition: .35s;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.30);
    box-shadow: 0 0 10px rgba(255,255,255,.18);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.hero-socials i {
    font-size: 35px;
    color: rgba(255,255,255,.92);
    transition: color .35s ease,
    trasnform .35s ease,
    text-shadow .35s ease;
}

.hero-socials a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 58px;
    border-radius: 14px;
    color: rgba(255, 255, 255,.82);
    text-decoration: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: .35s ease;
    box-shadow: inset 0 1px rgba(255,255,255,.08),
    0 6px 18px rgba(0,0,0,.18);
}

.hero-socials a:hover {
    transform: translateY(-1px) scale(1.04);
    background:rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.18);
    box-shadow: inset 0 1px rgba(255,255,255,.15),
    0 10px 24px rgba(0,0,0,.22),
    0 0 16px rgba(255,255,255,.10);

}

.hero-socials a:hover i {
    color: #fff;
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(255,255,255,.35);
}

/* =====================
ABOUT
======================*/
.about {
    padding-bottom: 55px;
    display: flex;
    justify-content: center;
    user-select: none;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 45px;
}

.about-avatar {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(255,255,255,.08);
}

.about-avatar i {
    font-size: 5rem;
    color: #fff;
}

.about.content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: #fff;
}

.about-content span {
    color: #b28cff;
}

.about-content p {
    max-width: 891px;
    line-height: 1.9;
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
}

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr 1.2fr;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(8px);
    transition: .35s ease;
    padding: 20px 30px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    
}

.about-info:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 247, 248, 0.35);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.info-card {
    display: flex;
    align-items: center;
    position: relative;
    gap: 14px;
    padding: 0 26px;
}

.info-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    margin-right: 30px;
    background-color: rgba(255,255,255,.12);
}

.info-card i {
    font-size: 1.6rem;
    color: #fff;
    margin-right: 5px;
}

.info-text h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.info-text p {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
}

/* =====================
SKILLS
======================*/
.skills {
    margin-bottom: 25px;
    user-select: none;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.section-title span {
    color: #ffffff;
    text-shadow:0 0 20px #b3b3b4;
    margin-left: -10px;
}

@keyframes skillGlow {
    0% {
        color: #fbfbfc;
        text-shadow:
         0 0 5px rgba(216, 215, 218, 0.3);
    }
    50% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(245, 245, 245, 0.6),
        0 0 35px rgba(209, 208, 211, 0.4);
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 5px rgba(228, 228, 228, 0.3)
    }
}

.skills .section-title span {
    color: #b28cff;
    animation: skillGlow 2s ease-in-out infinite;
}

.skill-card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    transition: .35s ease;
}

.skill-card i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.skill-card h3 {
    font-size: 1rem;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 10px 30px rgba(255,255,255,.06);
}

/* =====================
PROJECTS
======================*/
.projects {
    width: 100%;
    position: relative;
    margin-bottom: 55px;
    padding: 25px ;
    user-select: none;
}

.projects-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    margin-top: 50px;
}

.project-card {
    width: 100%;
    max-width: none;
    height: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    
    overflow: hidden;
    transition: 
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow:  0 20px 40px rgba(54, 54, 54, 0.35),
    0 0 30px rgba(155, 154, 154, 0.06),
    inset 0 1px 0 rgba(145, 144, 144, 0.12);
}


.project-image {
    width: 100%;
    height: 331px;
    overflow: hidden;
}

.project-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.project-content {
    padding: 22px;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-content p {
    color: rgba(255,255,255,.75);
    font-size: .98rem;
    line-height: 1.7;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.project-tags span {
    padding: 9px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fcfcfd;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .3px;
}

.project-buttons {
    display: flex;
    gap: 15px;
}

.project-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    transition: .35s;
}

.project-btn:hover {
    transform: translateY(-3px);
    color: white;
    background: rgba(255, 255, 255, 0.459);
    border-color: rgba(255,255,255,.25);
    box-shadow: 0 12px 28px rgba(121, 120, 120, 0.35),
    0 0 18px rgba(121, 120, 120, 0.08);
}

/* =====================
CONTACT
======================*/
.contact {
    width: 100%;
    padding-bottom: 25px;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    user-select: none;
}

.section-title i {
    color: #ffffff;
    font-size: 45px;
    text-shadow: 0 0 15px rgba(247, 247, 247, 0.6);
}

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

.contact-info {
    border-left: 1px solid rgba(255,255,255,.08);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(248, 248, 248, 0.05);
    border: 1px solid rgba(253, 253, 253, 0.08);
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 0 18px rgba(226, 226, 226, 0.25);
}

.info-item h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-item p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
}

.contact-form {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: .35s ease;
    user-select: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,.55)
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b8b8b;
    box-shadow: 0 0 22px rgba(210, 210, 211, 0.35);
    transform: translateY(-2px);
    background: rgba(255,255,255,.08);
}

.contact-form textarea {
    resize: none;
    min-height: 50px;
}

.contact-btn {
    padding: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: .35s ease;
    user-select: none;
    margin-bottom: 10px;
}

.contact-btn:hover {
    border-color: #8b8b8b;
    box-shadow: 0 0 22px rgba(210, 210, 211, 0.35);
    transform: translateY(-2px);
}

#formMessage {
    position: absolute;
    left: 0;
    bottom: -20px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #58ff8a;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}

#formMessage.success {
    opacity: 1;
}

#formMessage.fade-out {
    opacity: 0;
}


.error-message {
    min-height: 20px;
    color: #ff5a5a;
    font-size: 15px;
    font-weight: 500;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,.05) inset;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    transition: background-color 999s ease-in-out 0s;
}
/* =====================
FOOTER
======================*/
.footer {
    padding: 0px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-right: 20px;
    margin-bottom: 25px;
}

.footer-socials i {
    font-size: 30px;
    color: rgba(255,255,255,.92);
    transition: color .35s ease,
    trasnform .35s ease,
    text-shadow .35s ease;
}

.footer-socials a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 58px;
    border-radius: 14px;
    color: rgba(255, 255, 255,.82);
    text-decoration: none;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: .35s ease;
    box-shadow: inset 0 1px rgba(255,255,255,.08),
    0 6px 18px rgba(0,0,0,.18);
}

.footer-socials a:hover {
    transform: translateY(-1px) scale(1.04);
    background:rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.18);
    box-shadow: inset 0 1px rgba(255,255,255,.15),
    0 10px 24px rgba(0,0,0,.22),
    0 0 16px rgba(255,255,255,.10);

}

.footer-socials a:hover i {
    color: #fff;
    transform: scale(1.08);
    text-shadow: 0 0 8px rgba(255,255,255,.35);
}

.back-to-top {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.back-to-top a {
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: .35s ease;
}

.back-to-top a:hover {
    transform: translateY(-1px) scale(1.04);
    background:rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.18);
    box-shadow: inset 0 1px rgba(255,255,255,.15),
    0 10px 24px rgba(0,0,0,.22),
    0 0 16px rgba(255,255,255,.10);

   
}

/* =========================================
    RESPONSIVE - 1200px 
============================================*/

@media (max-width: 1200px) {
    .navbar {
        width: calc(100% - 40px);
        max-width: 1100px;
        height: 64px;
    }

    .logo {
        margin-left: 16px;
    }

    .logo a {
        font-size: 25px;
    }

    .nav-links {
        gap: 55px;
        padding: 10px 15px;
        margin-left: 20px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .social-icons {
        gap: 12px;
        margin-right: 16px;
    }

    .social-icons a {
        width: 56px;
        height: 46px;
    }

    .social-icons i {
        font-size: 25px;
    }
    
/* =====================
HERO
======================*/

.content-container {
    max-width: 1100px;
}

.glass-section {
    max-width: 1100px;
    padding: 35px;
}

.hero {
    padding: 20px 0;
    margin-top: 100px;
    margin-bottom: 20px;
}

.hero-content {
    gap: 50px;
}

.hero-left {
    max-width: 650px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-left h2 {
    font-size: 28px;
    margin-bottom: 22px;
    margin-top: 8px;
}

.hero-buttons {
    gap: 20px;
    margin-bottom: 20px;
}

.primary-btn,
.secondary-btn {
    width: 220px;
    height: 50px;
    font-size: 17px;
}

.hero-socials {
    gap: 14px;
    margin-right: 15px;
    margin-bottom: 12px;
}

.hero-socials {
    gap: 14px;
    margin-right: 15px;
    margin-bottom: 12px;
}

.hero-socials a {
    width: 78px;
    height: 54px;
}

/* =====================
ABOUT ME
======================*/

.about-info {
    padding: 15px 30px;
}

.content-container h2 {
    font-size: 35px;
}

/* =====================
PROJECTS
======================*/

.project-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

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

.footer-socials {
    margin-left: 20px;
}
}

/* =========================================
    RESPONSIVE - 992px 
============================================*/


@media (max-width: 992px) {

.glass-section {
    width: calc(100% - 50px);
}

.navbar {
    width: calc(100% - 30px);
}

.content-container h2 {
    font-size: 34px;
}

/* =====================
HERO
======================*/
.hero-left h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-left h2 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.hero-line {
    width: 240px;
    margin: 16px auto;
}

.primary-btn,
.secondary-btn {
    width: 200px;
    height: 48px;
    font-size: 16px;
}

.hero-socials a {
    width: 76px;
    height: 52px;
}

.hero-socials i {
    font-size: 31px;
}


/* =====================
ABOUT ME
======================*/
.about-content p {
    font-size: 15.4px;
    
}

.about-info {
    grid-template-columns:1fr 1fr 1.7fr 1fr;
    padding: 10px 0px;
}

.about-info h4 {
    font-size: 18px;
}

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

.skills-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.skill-card {
    width: 100%;
    padding: 30px 22px;
   
}

.skill-card i {
    font-size: 3.2rem;
}

.skill-card h3 {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================
PROJECTS
======================*/

.projects-grid {
    gap: 20px;
}

}

/* =========================================
    RESPONSIVE - 768px 
============================================*/

@media (max-width: 768px) {
.navbar {
    width: 95%;
    margin: 0 auto;
    padding: 12px 20px;
}

.glass-section {
    width: 90%;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    display: none;
}

.social-icons {
    display: none;
}

.hamburger {
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,.2),
    inset 0 1px 1px rgba(255,255,255,.0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger i {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.61);
}

.mobile-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 2.5%;
    width: 95%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px;
    box-sizing: border-box;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0 0 25px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,.25),
    inset 0 1px 1px rgba(255,255,255,.12);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    
    transform: translateY(0);
}

.mobile-menu a {
    display: inline-block;
    width: fit-content;
    text-decoration: none;
    color: white;
    text-shadow: 0 0 8px rgb(255, 255, 255);
    padding: 0;
    font-size: 1.3rem;
    text-align: center;
}

.content-container h2 {
    font-size: 30px;
}

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

.hero h1 {
    font-size: 2.1rem;
}

.hero-socials a{
    width: 65px;
    height: 55px;
}

.hero-buttons a {
    width: 210px;
    height: 50px;
}

/* =====================
ABOUT ME
======================*/

.about-info {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 10px;
    gap: 0;
    position: relative;
}

.about-info::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,.15);
}

.about-info::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255,255,255,.15);
}

.info-card {
    padding: 12px 30px;
    gap: 10px;
    position: relative;
}

.info-card::after {
    display: none;
}


.info-card i {
    font-size: 1.8rem;
}

.info-text h4 {
    font-size: 1.2rem;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.2;
}

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

.skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.skill-card i {
    font-size: 5rem;
}

.skill-card h3 {
    font-size: 1.2rem;
}

/* =====================
PROJECTS
======================*/

.project-card h3 {
    font-size: 1.3rem;
    letter-spacing: 0.6px;
}

.project-card p {
    font-size: 0.93rem;
}

.project-buttons a {
    font-size: 1rem;
}

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

#contactForm button{
    font-size: 1rem;
}

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

.footer-socials {
    gap: 20px;
}

.footer-socials a {
    width: 70px;
    height: 60px;
    margin-bottom: 10px;
}

.footer-socials a i {
    font-size: 2rem;
}
}

/* =========================================
    RESPONSIVE - 576px 
============================================*/
@media (max-width: 576px) {
/* =====================
HERO
======================*/
.hero h1 {
    font-size: 2rem;
}

.hero h2 {
    font-size: 1.5rem;
}

.hero-buttons a {
    width: 200px;
    height: 45px;
}

.hero-socials a {
    width: 50px;
    height: 50px;
}

.hero-socials i {
    font-size: 1.8rem;
}

.hamburger {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    border-radius: 10px;
}

.mobile-menu a {
    font-size: 1.2rem;
}

/* =====================
ABOUT 
======================*/
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.about-avatar {
    margin: 0 auto;
}

.about-content {
    width: 100%;
    text-align: left;
}

.about-content h2 {
    text-align: center;
}

.about-info {
    gap: 0;
}

.info-card {
    padding: 10px;
    gap: 5px;
}

.info-card i {
    font-size: 1.6rem;
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.95rem;
    line-height: 1.2;
}

/* =====================
SKILLS
======================*/
.skills-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
}

.skill-card {
    width: 95%;
    height: 179px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.skill-card h3 {
    font-size: 1rem;
}

/* =====================
PROJECT 
======================*/
.projects-grid {
    grid-template-columns: 1fr;
}

.project-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.4;
}

 
.contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    border-left: none;
    padding-left: 0;
    text-align: left;
}

.info-item {
    justify-content: flex-start;
    text-align: left;
}

/* =====================
FOOTER
======================*/
.footer-socials {
    gap: 10px;
}

.footer-socials a {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
}

}

/* =========================================
    RESPONSIVE - 480px 
============================================*/
@media (max-width:480px) {
/* =====================
HERO
======================*/
   .hero-content h1 {
    font-size: 2rem;
    line-height: 1.15;
   }

.hero-content h2 {
    font-size: 1.45rem;
}

.hero-buttons {
    gap: 0.6rem;
}

.hero-buttons a {
    width: 11rem;
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
}

.hero-socials a { 
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
}


.hamburger {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    border-radius: 9px;
}

.mobile-menu a {
    font-size: 1.1rem;
}

/* =====================
SKILLS
======================*/
.skills-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;

}

.skill-card {
    width: 100%;
    min-width: 0;
    height: 169px;
    display: flex;;
    margin-bottom: 5px;
    box-sizing: border-box;
}

.skill-card h3 {
   margin-top: -10px;
   font-size: 0.9rem;
}
/* =====================
CONTACT
======================*/
.info-item i {
    font-size: 1.6rem;
}

/* =====================
FOOTER
======================*/
.footer-socials a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1rem;
}

.footer-socials {
    gap: 0.6rem;
}

.back-to-top {
    width: 5rem;
    height: 3rem;
    font-size: 1rem;
}

}