﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --p: #0066FF;
    --s: #00D4FF;
    --d: #0A192F;
    --l: #8892B0;
    --w: #FFF;
    --c: #112240
}

html {
    scroll-behavior: smooth
}

/* Premium Animated Mesh Gradient Background */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0A192F 0%, #0d1f3d 25%, #112240 50%, #0d1f3d 75%, #0A192F 100%);
    color: var(--l);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Enhanced Animated Mesh Gradient Layer */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(147, 51, 234, 0.22) 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(255, 0, 136, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(0, 212, 255, 0.18) 0%, transparent 30%),
        radial-gradient(circle at 30% 60%, rgba(0, 102, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 70% 10%, rgba(147, 51, 234, 0.1) 0%, transparent 30%);
    animation: meshRotate 40s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

@keyframes meshRotate {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(5deg) scale(1.05);
    }

    50% {
        transform: rotate(0deg) scale(1.1);
    }

    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

/* Enhanced Floating Orbs Layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 102, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 85% 85%, rgba(0, 212, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 20%);
    animation: orbsFloat 28s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes orbsFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    33% {
        transform: translate(4%, -4%) scale(1.08);
        opacity: 1;
    }

    66% {
        transform: translate(-4%, 4%) scale(0.92);
        opacity: 0.9;
    }

    100% {
        transform: translate(2%, -2%) scale(1.05);
        opacity: 1;
    }
}

/* Grid Pattern Overlay */
.grid-overlay {
    animation: geometricMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

@keyframes geometricMove {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 40px 40px
    }
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0)
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, .85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 212, 255, .1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--w);
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.logo .dot {
    color: var(--p);
    font-size: 36px
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px
}

.nav-link {
    color: var(--l);
    font-weight: 500;
    position: relative;
    padding: 5px 0
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--p), var(--s));
    transition: .3s
}

.nav-link:hover,
.nav-link.active {
    color: var(--p)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--w);
    border-radius: 3px
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.greeting {
    font-size: 18px;
    color: var(--p);
    margin-bottom: 10px;
    font-weight: 500
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #E6F1FF;
    margin-bottom: 10px;
    line-height: 1.2
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--p), var(--s));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.cursor {
    animation: blink 1s infinite;
    color: var(--p)
}

@keyframes blink {

    0%,
    50% {
        opacity: 1
    }

    51%,
    100% {
        opacity: 0
    }
}

.hero-description {
    font-size: 18px;
    color: var(--l);
    margin-bottom: 30px;
    line-height: 1.8
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    border: none
}

.btn-primary {
    background: linear-gradient(135deg, var(--p), var(--s));
    color: var(--w);
    box-shadow: 0 0 40px rgba(0, 102, 255, .4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(0, 102, 255, .6);
}

.btn-secondary {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    color: var(--p);
    border: 2px solid var(--p);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.btn-secondary:hover {
    background: var(--p);
    color: var(--w);
    box-shadow: 0 8px 32px rgba(0, 102, 255, .4);
}

.social-links {
    display: flex;
    gap: 20px
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    color: var(--l);
    font-size: 20px;
    transition: .3s;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--p), var(--s));
    color: var(--w);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, .5);
}

.image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--p), var(--s), var(--p));
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(20px);
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg)
    }

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

.image-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--p);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 102, 255, .1);
    color: var(--p);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #E6F1FF;
    margin: 15px 0
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    border: 4px solid var(--p);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--p), var(--s));
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(25px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: .3s;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, .3);
    border: 1px solid rgba(0, 212, 255, .3);
}

.stat-icon {
    font-size: 42px;
    color: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-info h4 {
    font-size: 32px;
    color: #E6F1FF;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.stat-info p {
    color: #8892B0;
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

/* Experience and Achievements Lists */
.experience-list,
.achievements-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(26, 47, 82, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 3px solid var(--p);
    transition: .3s;
}

.experience-list li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    border-left: 3px solid var(--s);
}

.experience-list li i {
    font-size: 32px;
    color: var(--p);
    min-width: 32px;
}

.experience-list li div {
    flex: 1;
    color: #CCD6F6;
    line-height: 1.5;
}

.experience-list li div strong {
    color: #E6F1FF;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.experience-list li div span {
    color: #8892B0;
    font-size: 14px;
}

.achievements-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, rgba(26, 47, 82, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 3px solid var(--p);
    transition: .3s;
    color: #CCD6F6;
    font-size: 16px;
}

.achievements-list li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    border-left: 3px solid var(--s);
}

.achievements-list li i {
    font-size: 24px;
    color: #FFD700;
    min-width: 24px;
}

/* About Section Styling */
.about-text h3 {
    font-size: 28px;
    color: #E6F1FF;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--p), var(--s));
    border-radius: 2px;
}

.about-text>p {
    font-size: 17px;
    color: #CCD6F6;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h4 {
    font-size: 22px;
    color: #E6F1FF;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.info-section h4 i {
    color: var(--p);
    font-size: 24px;
}

.skills-category {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    transition: .3s;
}

.skills-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, .3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px
}

.category-header i {
    font-size: 32px;
    color: var(--p)
}

.category-header h3 {
    font-size: 24px;
    color: #E6F1FF;
    font-weight: 700
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
}

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

.skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--p), var(--s));
    border-radius: 15px;
    font-size: 28px;
    color: var(--w)
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    overflow: hidden
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, var(--p), var(--s));
    border-radius: 10px;
    transition: width 1s;
    width: 0
}

.soft-skills-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px
}

.soft-skill-item {
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: .3s;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.soft-skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, .3);
}

.soft-skill-item i {
    font-size: 32px;
    color: var(--p);
    margin-bottom: 10px
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap
}

.filter-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    color: var(--l);
    border: 1px solid rgba(0, 212, 255, .1);
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--p), var(--s));
    color: var(--w);
    box-shadow: 0 8px 32px rgba(0, 102, 255, .4);
    transform: translateY(-2px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.project-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, .4);
    border-color: rgba(0, 212, 255, .3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--c)
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.project-card:hover .project-image img {
    transform: scale(1.1)
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: .3s
}

.project-card:hover .project-overlay {
    opacity: 1
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--w);
    color: var(--p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .3s
}

.project-link:hover {
    transform: scale(1.2)rotate(360deg)
}

.project-content {
    padding: 25px
}

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

.tag {
    padding: 5px 15px;
    background: rgba(0, 102, 255, .1);
    color: var(--p);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.achievement-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, .4);
}

.achievement-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--c)
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.achievement-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--p), var(--s));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--w);
    font-size: 28px
}

.achievement-content {
    padding: 25px
}

.issuer {
    font-size: 14px;
    color: var(--p);
    font-weight: 600
}

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

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: .3s;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 48px rgba(0, 102, 255, .3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--p), var(--s));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--w)
}

.contact-form {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8) 0%, rgba(26, 47, 82, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.form-group {
    position: relative;
    margin-bottom: 25px
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--l)
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 55px;
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, .2);
    border-radius: 12px;
    color: var(--l);
    font-family: 'Inter', sans-serif;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--p);
    box-shadow: 0 0 20px rgba(0, 102, 255, .3);
}

.footer {
    background: var(--c);
    padding: 60px 0 30px
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-social {
    display: flex;
    gap: 15px
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(26, 47, 82, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--l);
    transition: .3s
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--p), var(--s));
    color: var(--w)
}

.footer-links ul,
.footer-contact ul {
    list-style: none
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 255, 218, .1)
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--p), var(--s));
    color: var(--w);
    border: none;
    border-radius: 50%;
    opacity: 0;
    transition: .3s;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 102, 255, .4);
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, .6);
}

@media(max-width:1024px) {

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr
    }

    .image-wrapper {
        width: 350px;
        height: 350px
    }

    .projects-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .soft-skills-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .about-content {
        grid-template-columns: 300px 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 300px;
    }
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 25, 47, .98);
        transition: .3s
    }

    .nav-menu.active {
        left: 0
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 20px
    }

    .hero-title {
        font-size: 40px
    }

    .hero-subtitle {
        font-size: 32px
    }

    .section-title {
        font-size: 36px
    }

    .projects-grid,
    .achievements-grid {
        grid-template-columns: 1fr
    }

    .soft-skills-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-content {
        grid-template-columns: 1fr
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
        text-align: left;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}