@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #03030b;
    color: #fff;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -5;
    background:
        radial-gradient(circle at 75% 45%, rgba(0, 110, 255, .15), transparent 30%),
        radial-gradient(circle at 20% 70%, rgba(0, 85, 255, .08), transparent 25%),
        #03030b;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    animation: floatingGlow 8s ease-in-out infinite alternate;
}

.glow-1 {
    top: 5%;
    right: -100px;
    background: #006eff;
}

.glow-2 {
    bottom: -200px;
    left: -150px;
    background: #145cff;
    animation-delay: 3s;
}

@keyframes floatingGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-80px, 50px) scale(1.15);
    }

    100% {
        transform: translate(50px, -30px) scale(.95);
    }
}

.particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #1683ff;
    box-shadow: 0 0 8px #1683ff, 0 0 18px #3f51ff;
    animation: particleMove linear infinite;
}

.particles span:nth-child(1) {
    left: 8%;
    top: 20%;
    animation-duration: 8s;
}

.particles span:nth-child(2) {
    left: 18%;
    top: 70%;
    animation-duration: 12s;
}

.particles span:nth-child(3) {
    left: 30%;
    top: 15%;
    animation-duration: 10s;
}

.particles span:nth-child(4) {
    left: 45%;
    top: 80%;
    animation-duration: 15s;
}

.particles span:nth-child(5) {
    left: 58%;
    top: 22%;
    animation-duration: 9s;
}

.particles span:nth-child(6) {
    left: 70%;
    top: 65%;
    animation-duration: 13s;
}

.particles span:nth-child(7) {
    left: 82%;
    top: 30%;
    animation-duration: 11s;
}

.particles span:nth-child(8) {
    left: 92%;
    top: 75%;
    animation-duration: 14s;
}

.particles span:nth-child(9) {
    left: 65%;
    top: 10%;
    animation-duration: 16s;
}

.particles span:nth-child(10) {
    left: 12%;
    top: 90%;
    animation-duration: 10s;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
        opacity: .2;
    }

    25% {
        opacity: 1;
    }

    50% {
        transform: translate(40px, -80px);
        opacity: .8;
    }

    75% {
        opacity: 1;
    }

    100% {
        transform: translate(-40px, 30px);
        opacity: .2;
    }
}

.navbar {
    width: 100%;
    height: 90px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(3, 3, 11, .65);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 110, 255, .08);
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -2px;
}

.logo span {
    color: #fff;
}

.logo b {
    color: #087cff;
    text-shadow: 0 0 10px #087cff, 0 0 25px #005eff;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #a8a8b8;
    transition: .3s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #fff;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #087cff, #3f7cff);
    box-shadow: 0 0 10px #087cff;
    transition: .3s ease;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    width: 100%;
}

.cv-button {
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid #087cff;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.cv-button span {
    margin-left: 8px;
    color: #4da3ff;
}

.cv-button:hover {
    background: #006eff;
    box-shadow: 0 0 20px rgba(0, 110, 255, .6);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    padding: 140px 8% 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: 15%;
    top: 20%;
    border-radius: 50%;
    border: 1px solid rgba(80, 100, 255, .08);
    box-shadow: 0 0 80px rgba(0, 100, 255, .08);
    animation: heroRing 15s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: 5%;
    bottom: 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 90, 255, .12), transparent 70%);
    filter: blur(20px);
    animation: heroLight 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes heroRing {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.08);
    }
}

@keyframes heroLight {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(80px, -40px);
    }
}

.social-sidebar {
    position: absolute;
    left: 2.5%;
    top: 56%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 20;
}

.social-sidebar a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 120, 255, .45);
    border-radius: 50%;
    background: rgba(10, 10, 30, .6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    transition: .35s ease;
}

.social-sidebar a:hover {
    border-color: #1683ff;
    background: linear-gradient(135deg, #006eff, #304cff);
    box-shadow: 0 0 20px rgba(0, 110, 255, .7);
    transform: scale(1.12);
}

.social-line {
    width: 1px;
    height: 80px;
    margin-top: 5px;
    background: linear-gradient(to bottom, #087cff, transparent);
}

.hero-content {
    width: 50%;
    animation: heroAppear 1.2s ease forwards;
    position: relative;
    z-index: 5;
}

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

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

.hello {
    font-size: 18px;
    letter-spacing: 8px;
    color: #4da3ff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 110, 255, .6);
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(60px, 7vw, 110px);
    line-height: .9;
    font-weight: 800;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, #007bff, #3f7cff, #00a2ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 110, 255, .4));
}

@keyframes gradientMove {
    0% {
        background-position: 0 center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero h2 {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 4px;
    font-weight: 600;
    color: #eee;
    margin-bottom: 25px;
}

.description {
    max-width: 550px;
    color: #9b9baa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 25px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #006eff, #304cff);
    box-shadow: 0 0 25px rgba(0, 110, 255, .35);
}

.btn-primary span {
    font-size: 20px;
    transition: .3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 110, 255, .65);
}

.btn-primary:hover span {
    transform: translateX(5px);
}

.btn-secondary {
    border: 1px solid rgba(0, 130, 255, .6);
    color: #fff;
    background: rgba(255, 255, 255, .02);
}

.btn-secondary:hover {
    background: rgba(0, 110, 255, .15);
    border-color: #1683ff;
    box-shadow: 0 0 20px rgba(0, 110, 255, .25);
}

.profile-area {
    width: 48%;
    height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: profileAppear 1.4s ease forwards;
}

@keyframes profileAppear {
    from {
        opacity: 0;
        transform: scale(.8);
    }

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

.profile-glow {
    position: absolute;
    width: 400px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 110, 255, .45), transparent 70%);
    filter: blur(30px);
    animation: profileGlow 4s ease-in-out infinite alternate;
}

@keyframes profileGlow {
    from {
        transform: scale(.9);
        opacity: .5;
    }

    to {
        transform: scale(1.1);
        opacity: .9;
    }
}

.profile-image {
    width: 350px;
    height: 460px;
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-radius: 175px 175px 30px 30px;
    border: 2px solid rgba(0, 125, 255, .8);
    background: #08061b;
    box-shadow:
        0 0 25px rgba(0, 110, 255, .45),
        0 0 80px rgba(0, 80, 255, .25);
    animation: profileFloat 5s ease-in-out infinite;
}

.profile-image::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        #007bff,
        transparent 35%,
        #246bff,
        transparent 70%,
        #00a2ff
    );
    filter: blur(12px);
    opacity: .8;
    z-index: -1;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: .5s ease;
    position: relative;
    z-index: 2;
}

.profile-image:hover img {
    transform: scale(1.05);
}

@keyframes profileFloat {
    0% {
        transform: translateY(0);
    }

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

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

.orbit {
    position: absolute;
    border: 1px solid rgba(0, 120, 255, .65);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.orbit-1 {
    width: 480px;
    height: 480px;
    transform: rotate(0deg);
    animation: orbitRotate 12s linear infinite;
}

.orbit-2 {
    width: 530px;
    height: 530px;
    transform: rotate(45deg);
    border-color: rgba(50, 130, 255, .4);
    animation: orbitRotateReverse 16s linear infinite;
}

.orbit-3 {
    width: 430px;
    height: 430px;
    border-color: rgba(0, 100, 255, .25);
    animation: orbitVertical 10s linear infinite;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(-315deg);
    }
}

@keyframes orbitVertical {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 10;
    background: #1683ff;
    box-shadow: 0 0 10px #1683ff, 0 0 25px #4e72ff;
    animation: dotPulse 2s ease-in-out infinite alternate;
}

.dot-1 {
    top: 18%;
    right: 12%;
}

.dot-2 {
    bottom: 18%;
    left: 15%;
    animation-delay: .5s;
}

.dot-3 {
    top: 35%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes dotPulse {
    from {
        transform: scale(.7);
        opacity: .5;
    }

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

.intro-cards {
    width: 84%;
    margin: 20px auto 80px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 110, 255, .18);
    background: rgba(7, 7, 20, .6);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(0, 40, 120, .08);
    position: relative;
    z-index: 10;
}

.intro-card {
    display: flex;
    gap: 18px;
    padding: 15px;
    border-radius: 12px;
    transition: .4s ease;
}

.intro-card:hover {
    background: rgba(0, 100, 255, .08);
    transform: translateY(-6px);
}

.card-icon {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #4da3ff;
    font-size: 24px;
    background: rgba(0, 100, 255, .08);
    border: 1px solid rgba(0, 120, 255, .25);
    box-shadow: 0 0 20px rgba(0, 100, 255, .12);
}

.intro-card h3 {
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.intro-card p {
    color: #8d8d9e;
    font-size: 11px;
    line-height: 1.7;
}

.placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(0, 100, 255, .08);
    position: relative;
}

.placeholder h2 {
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 110, 255, .6);
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, .35);
    animation: rippleAnimation .6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.profile-hover .orbit-1 {
    animation-duration: 5s;
}

.profile-hover .orbit-2 {
    animation-duration: 7s;
}

.profile-hover .profile-image {
    box-shadow:
        0 0 35px rgba(0, 110, 255, .7),
        0 0 100px rgba(0, 100, 255, .45);
}

body.loaded {
    animation: pageFade .8s ease;
}

@keyframes pageFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.typing {
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    from {
        text-shadow: 0 0 0 transparent;
    }

    to {
        text-shadow: 0 0 12px rgba(0, 130, 255, .35);
    }
}

@media (max-width: 1100px) {
    .navbar nav {
        gap: 20px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .profile-image {
        width: 320px;
        height: 320px;
    }

    .profile-area {
        height: 500px;
    }

    .orbit-1 {
        width: 390px;
        height: 390px;
    }

    .orbit-2 {
        width: 440px;
        height: 440px;
    }

    .orbit-3 {
        width: 360px;
        height: 360px;
    }

    .intro-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-sidebar {
        left: 1%;
    }
}

@media (max-width: 800px) {
    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .navbar nav {
        display: none;
    }

    .cv-button {
        padding: 9px 14px;
        font-size: 10px;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 20px 50px;
        display: grid;
        grid-template-columns: 56% 44%;
        align-items: center;
        gap: 0;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        text-align: left;
        z-index: 10;
    }

    .hello {
        font-size: 11px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: .88;
        letter-spacing: -3px;
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: 11px;
        line-height: 1.7;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .description {
        font-size: 10px;
        line-height: 1.7;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 11px 14px;
        font-size: 9px;
        width: auto;
    }

    .btn-primary {
        gap: 10px;
    }

    .btn-primary span {
        font-size: 15px;
    }

    .profile-area {
        width: 100%;
        height: 420px;
        margin: 0;
        transform: translateX(-5px);
    }

    .profile-image {
        width: 175px;
        height: 175px;
        border-radius: 50%;
    }

    .profile-glow {
        width: 220px;
        height: 300px;
    }

    .orbit-1 {
        width: 235px;
        height: 235px;
    }

    .orbit-2 {
        width: 265px;
        height: 265px;
    }

    .orbit-3 {
        width: 210px;
        height: 210px;
    }

    .orbit-dot {
        width: 7px;
        height: 7px;
    }

    .social-sidebar {
        display: none;
    }

    .intro-cards {
        width: 90%;
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding: 20px;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        right: -100px;
        top: 25%;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
        padding: 0 16px;
    }

    .logo {
        font-size: 24px;
    }

    .cv-button {
        padding: 8px 12px;
        font-size: 9px;
    }

    .hero {
        min-height: 100vh;
        padding: 90px 14px 35px;
        grid-template-columns: 55% 45%;
    }

    .hello {
        font-size: 9px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2.5px;
        margin-bottom: 16px;
    }

    .hero h2 {
        font-size: 9px;
        letter-spacing: 1px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .description {
        font-size: 9px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 11px;
        font-size: 8px;
        border-radius: 6px;
    }

    .btn-primary span {
        font-size: 13px;
    }

    .profile-area {
        height: 360px;
        transform: translateX(-8px);
    }

    .profile-image {
        width: 145px;
        height: 145px;
        border-radius: 50%;
    }

    .profile-glow {
        width: 190px;
        height: 260px;
    }

    .orbit-1 {
        width: 195px;
        height: 195px;
    }

    .orbit-2 {
        width: 220px;
        height: 220px;
    }

    .orbit-3 {
        width: 175px;
        height: 175px;
    }

    .intro-cards {
        width: 92%;
        padding: 16px;
    }

    .intro-card {
        padding: 10px;
    }
}

.about-section {
min-height: 100vh;
padding: 120px 8% 100px;
position: relative;
display: flex;
align-items: center;
overflow: hidden;
background: #02050b;
}

.about-section::before {
content: "";
position: absolute;
width: 600px;
height: 600px;
left: -250px;
top: 10%;
border-radius: 50%;
background: radial-gradient(circle, rgba(0, 100, 255, .12), transparent 70%);
filter: blur(30px);
pointer-events: none;
}

.about-section::after {
content: "";
position: absolute;
width: 500px;
height: 500px;
right: -200px;
bottom: -150px;
border-radius: 50%;
background: radial-gradient(circle, rgba(0, 130, 255, .1), transparent 70%);
filter: blur(30px);
pointer-events: none;
}

.about-container {
width: 100%;
max-width: 1250px;
margin: auto;
display: grid;
grid-template-columns: 42% 58%;
align-items: center;
gap: 70px;
position: relative;
z-index: 5;
}

.about-image {
width: 430px;
height: 430px;
margin: auto;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.about-photo {
width: 300px;
height: 300px;
border-radius: 50%;
overflow: hidden;
position: relative;
z-index: 5;
border: 2px solid #087cff;
background: #020812;
box-shadow:
    0 0 25px rgba(0, 110, 255, .5),
    0 0 80px rgba(0, 100, 255, .25);
animation: aboutFloat 5s ease-in-out infinite;
}

.about-photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
transition: .5s ease;
}

.about-photo:hover img {
transform: scale(1.06);
}

@keyframes aboutFloat {
0% {
    transform: translateY(0);
}

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

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

.about-ring {
position: absolute;
border-radius: 50%;
border: 1px solid rgba(0, 125, 255, .65);
pointer-events: none;
}

.ring-one {
width: 390px;
height: 390px;
animation: aboutRingOne 12s linear infinite;
}

.ring-two {
width: 460px;
height: 460px;
border-color: rgba(0, 160, 255, .25);
animation: aboutRingTwo 18s linear infinite reverse;
}

@keyframes aboutRingOne {
from {
    transform: rotate(0deg) scale(1);
}

50% {
    transform: rotate(180deg) scale(1.06);
}

to {
    transform: rotate(360deg) scale(1);
}
}

@keyframes aboutRingTwo {
from {
    transform: rotate(0deg);
}

to {
    transform: rotate(360deg);
}
}

.about-dot {
position: absolute;
width: 9px;
height: 9px;
border-radius: 50%;
background: #1683ff;
box-shadow:
    0 0 10px #1683ff,
    0 0 25px #006eff;
z-index: 10;
animation: aboutDot 2s ease-in-out infinite alternate;
}

.dot-one {
top: 12%;
right: 15%;
}

.dot-two {
bottom: 15%;
left: 12%;
animation-delay: .6s;
}

.dot-three {
top: 48%;
left: 0;
animation-delay: 1.2s;
}

@keyframes aboutDot {
from {
    transform: scale(.7);
    opacity: .5;
}

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

.about-content {
max-width: 650px;
}

.about-label {
color: #1683ff;
font-size: 14px;
letter-spacing: 6px;
font-weight: 600;
margin-bottom: 18px;
text-shadow: 0 0 15px rgba(0, 120, 255, .5);
}

.about-content h2 {
font-size: clamp(48px, 6vw, 78px);
line-height: .95;
letter-spacing: -3px;
margin-bottom: 30px;
font-weight: 800;
}

.about-content h2 span {
display: block;
color: #1683ff;
text-shadow:
    0 0 15px rgba(0, 110, 255, .5),
    0 0 35px rgba(0, 80, 255, .25);
}

.about-text {
color: #969aaa;
font-size: 15px;
line-height: 1.9;
margin-bottom: 18px;
}

.about-info {
margin-top: 30px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}

.info-box {
padding: 18px 20px;
border: 1px solid rgba(0, 120, 255, .18);
border-radius: 12px;
background: rgba(0, 70, 150, .05);
transition: .35s ease;
}

.info-box:hover {
transform: translateY(-5px);
border-color: rgba(0, 130, 255, .6);
background: rgba(0, 100, 255, .08);
box-shadow: 0 0 25px rgba(0, 100, 255, .12);
}

.info-box span {
display: block;
color: #6f7890;
font-size: 10px;
letter-spacing: 2px;
margin-bottom: 7px;
}

.info-box strong {
color: #fff;
font-size: 13px;
}

.about-button {
display: inline-flex;
align-items: center;
gap: 20px;
margin-top: 30px;
padding: 15px 24px;
border-radius: 8px;
color: #fff;
background: linear-gradient(90deg, #006eff, #087cff);
font-size: 12px;
font-weight: 700;
box-shadow: 0 0 25px rgba(0, 100, 255, .25);
transition: .35s ease;
}

.about-button span {
font-size: 20px;
transition: .3s ease;
}

.about-button:hover {
transform: translateY(-4px);
box-shadow: 0 0 35px rgba(0, 110, 255, .5);
}

.about-button:hover span {
transform: translateX(5px);
}

@media (max-width: 900px) {
    .about-section {
        min-height: auto;
        padding: 110px 5% 80px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        width: 360px;
        height: 360px;
    }

    .about-photo {
        width: 250px;
        height: 250px;
    }

    .ring-one {
        width: 320px;
        height: 320px;
    }

    .ring-two {
        width: 370px;
        height: 370px;
    }

    .about-content {
        text-align: center;
        margin: auto;
    }

    .about-info {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 90px 20px 60px;
    }

    .about-image {
        width: 280px;
        height: 280px;
    }

    .about-photo {
        width: 190px;
        height: 190px;
    }

    .ring-one {
        width: 240px;
        height: 240px;
    }

    .ring-two {
        width: 280px;
        height: 280px;
    }

    .about-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .about-content h2 {
        font-size: 46px;
    }

    .about-text {
        font-size: 12px;
        line-height: 1.8;
    }

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

    .info-box {
        padding: 15px;
    }

    .about-button {
        padding: 13px 18px;
        font-size: 10px;
    }
}

.skills-section {
    min-height: 100vh;
    padding: 120px 8% 100px;
    position: relative;
    overflow: hidden;
    background: #03030b;
}

.skills-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -280px;
    top: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, .12), transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.skills-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -160px;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 110, 255, .08);
    box-shadow: 0 0 80px rgba(0, 110, 255, .05);
    pointer-events: none;
}

.skills-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.skills-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.skills-label {
    margin-bottom: 18px;
    color: #1683ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(0, 120, 255, .4);
}

.skills-heading h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -3px;
}

.skills-heading h2 span {
    display: block;
    color: #1683ff;
    text-shadow:
        0 0 15px rgba(0, 110, 255, .5),
        0 0 35px rgba(0, 80, 255, .25);
}

.skills-description {
    max-width: 620px;
    color: #969aaa;
    font-size: 15px;
    line-height: 1.8;
}

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

.skill-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(0, 120, 255, .18);
    border-radius: 18px;
    background: rgba(4, 10, 20, .78);
    box-shadow: inset 0 0 25px rgba(0, 100, 255, .02);
    transition: .4s ease;
}

.skill-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, .12), transparent 70%);
    transition: .5s ease;
}

.skill-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #006eff, #00a2ff);
    box-shadow: 0 0 12px rgba(0, 110, 255, .6);
    transition: .5s ease;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 130, 255, .65);
    box-shadow:
        0 0 30px rgba(0, 100, 255, .12),
        inset 0 0 35px rgba(0, 100, 255, .04);
}

.skill-card:hover::before {
    transform: scale(1.4);
}

.skill-card:hover::after {
    width: 100%;
}

.skill-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 130, 255, .35);
    border-radius: 16px;
    background: rgba(0, 90, 180, .08);
    color: #1683ff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 110, 255, .08);
}

.skill-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
}

.skill-card p {
    min-height: 45px;
    color: #858da0;
    font-size: 13px;
    line-height: 1.7;
}

.skill-line {
    width: 100%;
    height: 4px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
}

.skill-line span {
    display: block;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #006eff, #00a2ff);
    box-shadow: 0 0 10px rgba(0, 120, 255, .6);
    transform-origin: left;
    animation: skillLoad 1.8s ease forwards;
}

@keyframes skillLoad {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.skills-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.tech-badge {
    padding: 18px;
    border: 1px solid rgba(0, 120, 255, .12);
    border-radius: 12px;
    background: rgba(0, 80, 160, .04);
    color: #8992a8;
    font-size: 10px;
    letter-spacing: 1px;
    text-align: center;
    transition: .3s ease;
}

.tech-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 130, 255, .45);
    background: rgba(0, 100, 255, .07);
}

.tech-badge span {
    display: block;
    margin-bottom: 5px;
    color: #1683ff;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1000px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {
    .skills-section {
        padding: 90px 20px 60px;
    }

    .skills-heading {
        text-align: center;
    }

    .skills-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .skills-heading h2 {
        font-size: 45px;
    }

    .skills-description {
        font-size: 12px;
        line-height: 1.8;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

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

    .skill-card {
        padding: 22px;
    }

    .skill-card h3 {
        font-size: 16px;
    }

    .skill-card p {
        font-size: 12px;
    }

    .tech-badge {
        padding: 15px 10px;
        font-size: 9px;
    }

    .tech-badge span {
        font-size: 11px;
    }
}

.projects-section {
    min-height: 100vh;
    padding: 120px 8% 100px;
    position: relative;
    overflow: hidden;
    background: #02050b;
}

.projects-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -300px;
    top: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 100, 255, .1), transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.projects-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -180px;
    bottom: -100px;
    border-radius: 50%;
    border: 1px solid rgba(0, 120, 255, .08);
    box-shadow: 0 0 100px rgba(0, 110, 255, .04);
    pointer-events: none;
}

.projects-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.projects-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.projects-label {
    margin-bottom: 18px;
    color: #1683ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(0, 120, 255, .4);
}

.projects-heading h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -3px;
}

.projects-heading h2 span {
    display: block;
    color: #1683ff;
    text-shadow:
        0 0 15px rgba(0, 110, 255, .5),
        0 0 35px rgba(0, 80, 255, .25);
}

.projects-description {
    max-width: 620px;
    color: #969aaa;
    font-size: 15px;
    line-height: 1.8;
}

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

.project-card {
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 120, 255, .18);
    border-radius: 20px;
    background: rgba(4, 10, 20, .8);
    box-shadow: inset 0 0 35px rgba(0, 100, 255, .02);
    transition: .45s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 140, 255, .65);
    box-shadow:
        0 0 35px rgba(0, 100, 255, .12),
        0 20px 50px rgba(0, 0, 0, .35);
}

.project-number {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 5;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-image {
    height: 220px;
    margin: 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 130, 255, .2);
}

.project-blue {
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 160, 255, .35), transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(0, 90, 255, .25), transparent 35%),
        linear-gradient(135deg, #020812, #041a35, #020812);
}

.project-image::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(0, 150, 255, .35);
    border-radius: 50%;
    animation: projectOrbit 10s linear infinite;
}

.project-image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 110, 255, .18);
    border-radius: 50%;
    animation: projectOrbitReverse 14s linear infinite;
}

.project-image span {
    position: relative;
    z-index: 5;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow:
        0 0 15px rgba(0, 130, 255, .8),
        0 0 30px rgba(0, 100, 255, .4);
}

@keyframes projectOrbit {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes projectOrbitReverse {
    from {
        transform: rotate(360deg);
    }

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

.project-content {
    padding: 8px 26px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-type {
    margin-bottom: 10px;
    color: #1683ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-content h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.project-content > p {
    color: #858da0;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.project-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(0, 120, 255, .2);
    border-radius: 20px;
    background: rgba(0, 100, 255, .05);
    color: #6faeff;
    font-size: 9px;
}

.project-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 120, 255, .35);
    border-radius: 8px;
    color: #fff;
    background: rgba(0, 100, 255, .05);
    font-size: 10px;
    font-weight: 700;
    transition: .35s ease;
}

.project-button span {
    color: #1683ff;
    font-size: 18px;
    transition: .3s ease;
}

.project-button:hover {
    background: #006eff;
    border-color: #006eff;
    box-shadow: 0 0 20px rgba(0, 110, 255, .35);
}

.project-button:hover span {
    color: #fff;
    transform: translateX(5px);
}

.projects-footer {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects-footer > span {
    color: #687186;
    font-size: 10px;
    letter-spacing: 3px;
}

.github-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border: 1px solid rgba(0, 120, 255, .3);
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    transition: .35s ease;
}

.github-button span {
    color: #1683ff;
    font-size: 16px;
}

.github-button:hover {
    background: rgba(0, 110, 255, .1);
    border-color: #1683ff;
    box-shadow: 0 0 20px rgba(0, 110, 255, .2);
}

@media (max-width: 1000px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .projects-section {
        padding: 90px 20px 60px;
    }

    .projects-heading {
        text-align: center;
    }

    .projects-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .projects-heading h2 {
        font-size: 45px;
    }

    .projects-description {
        font-size: 12px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 540px;
    }

    .project-image {
        height: 200px;
    }

    .project-content h3 {
        font-size: 20px;
    }

    .projects-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.experience-section {
    min-height: 100vh;
    padding: 120px 8% 100px;
    position: relative;
    overflow: hidden;
    background: #03030b;
}

.experience-section::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -300px;
    top: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, .1), transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.experience-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -220px;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 120, 255, .08);
    box-shadow: 0 0 90px rgba(0, 110, 255, .05);
    pointer-events: none;
}

.experience-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.experience-heading {
    max-width: 750px;
    margin-bottom: 60px;
}

.experience-label {
    margin-bottom: 18px;
    color: #1683ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(0, 120, 255, .4);
}

.experience-heading h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -3px;
}

.experience-heading h2 span {
    display: block;
    color: #1683ff;
    text-shadow:
        0 0 15px rgba(0, 110, 255, .5),
        0 0 35px rgba(0, 80, 255, .25);
}

.experience-description {
    max-width: 650px;
    color: #969aaa;
    font-size: 15px;
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 45px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 12px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #087cff 10%, #087cff 90%, transparent);
    box-shadow: 0 0 12px rgba(0, 120, 255, .4);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 28px;
    left: -41px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #03030b;
    border: 2px solid #1683ff;
    box-shadow: 0 0 10px #1683ff, 0 0 25px rgba(0, 110, 255, .7);
    animation: timelinePulse 2s ease-in-out infinite alternate;
}

@keyframes timelinePulse {
    from {
        box-shadow: 0 0 8px #1683ff, 0 0 18px rgba(0, 110, 255, .4);
    }

    to {
        box-shadow: 0 0 15px #1683ff, 0 0 30px rgba(0, 110, 255, .8);
    }
}

.timeline-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 28px;
    border: 1px solid rgba(0, 120, 255, .18);
    border-radius: 18px;
    background: rgba(4, 10, 20, .76);
    box-shadow: inset 0 0 30px rgba(0, 100, 255, .02);
    transition: .4s ease;
}

.timeline-card:hover {
    transform: translateX(8px);
    border-color: rgba(0, 140, 255, .6);
    box-shadow:
        0 0 30px rgba(0, 100, 255, .1),
        inset 0 0 30px rgba(0, 100, 255, .03);
}

.timeline-date {
    color: #1683ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.timeline-type {
    margin-bottom: 8px;
    color: #1683ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-content h3 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 24px;
}

.timeline-content h4 {
    margin-bottom: 15px;
    color: #6faeff;
    font-size: 13px;
    font-weight: 500;
}

.timeline-content > p {
    max-width: 750px;
    margin-bottom: 20px;
    color: #858da0;
    font-size: 13px;
    line-height: 1.8;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(0, 120, 255, .2);
    border-radius: 20px;
    background: rgba(0, 100, 255, .05);
    color: #6faeff;
    font-size: 9px;
}

@media (max-width: 700px) {
    .experience-section {
        padding: 90px 20px 60px;
    }

    .experience-heading {
        text-align: center;
    }

    .experience-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .experience-heading h2 {
        font-size: 45px;
    }

    .experience-description {
        font-size: 12px;
    }

    .timeline {
        padding-left: 28px;
    }

    .timeline::before {
        left: 6px;
    }

    .timeline-dot {
        top: 25px;
        left: -29px;
        width: 14px;
        height: 14px;
    }

    .timeline-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px;
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .timeline-content > p {
        font-size: 12px;
    }

    .timeline-date {
        order: -1;
    }
}

.contact-section {
    min-height: 100vh;
    padding: 120px 8% 80px;
    position: relative;
    overflow: hidden;
    background: #02050b;
}

.contact-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -300px;
    top: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, .1), transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.contact-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    bottom: -120px;
    border-radius: 50%;
    border: 1px solid rgba(0, 120, 255, .08);
    box-shadow: 0 0 100px rgba(0, 110, 255, .05);
    pointer-events: none;
}

.contact-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.contact-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.contact-label {
    margin-bottom: 18px;
    color: #1683ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(0, 120, 255, .4);
}

.contact-heading h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -3px;
}

.contact-heading h2 span {
    display: block;
    color: #1683ff;
    text-shadow:
        0 0 15px rgba(0, 110, 255, .5),
        0 0 35px rgba(0, 80, 255, .25);
}

.contact-description {
    max-width: 650px;
    color: #969aaa;
    font-size: 15px;
    line-height: 1.8;
}

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

.contact-card {
    min-height: 120px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 120, 255, .18);
    border-radius: 18px;
    background: rgba(4, 10, 20, .75);
    box-shadow: inset 0 0 25px rgba(0, 100, 255, .02);
    transition: .4s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, .12), transparent 70%);
    transition: .5s ease;
}

.contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 140, 255, .65);
    box-shadow:
        0 0 30px rgba(0, 100, 255, .1),
        inset 0 0 30px rgba(0, 100, 255, .03);
}

.contact-card:hover::before {
    transform: scale(1.4);
}

.contact-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 130, 255, .35);
    border-radius: 16px;
    background: rgba(0, 90, 180, .08);
    color: #1683ff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 110, 255, .08);
}

.contact-card div:nth-child(2) {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.contact-card span {
    margin-bottom: 5px;
    color: #1683ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-card strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
}

.contact-card small {
    color: #7f899d;
    font-size: 11px;
}

.contact-card > b {
    margin-left: auto;
    position: relative;
    z-index: 2;
    color: #1683ff;
    font-size: 22px;
    transition: .3s ease;
}

.contact-card:hover > b {
    color: #fff;
    transform: translate(4px, -4px);
}

.contact-footer {
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 120, 255, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-footer span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-footer p {
    color: #667186;
    font-size: 9px;
    letter-spacing: 2px;
}

@media (max-width: 700px) {
    .contact-section {
        padding: 90px 20px 60px;
    }

    .contact-heading {
        text-align: center;
    }

    .contact-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .contact-heading h2 {
        font-size: 45px;
    }

    .contact-description {
        font-size: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 105px;
        padding: 18px;
    }

    .contact-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .contact-card strong {
        font-size: 13px;
    }

    .contact-card small {
        font-size: 10px;
    }

    .contact-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.skill-card:nth-child(2),
.project-card:nth-child(2),
.timeline-item:nth-child(2),
.contact-card:nth-child(2) {
    transition-delay: .1s;
}

.skill-card:nth-child(3),
.project-card:nth-child(3),
.timeline-item:nth-child(3),
.contact-card:nth-child(3) {
    transition-delay: .2s;
}

.skill-card:nth-child(4),
.contact-card:nth-child(4) {
    transition-delay: .3s;
}

.skill-card:nth-child(5) {
    transition-delay: .4s;
}

.skill-card:nth-child(6) {
    transition-delay: .5s;
}

.certificates-section {
    min-height: 100vh;
    padding: 120px 8% 100px;
    position: relative;
    overflow: hidden;
    background: #02050b;
}

.certificates-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -280px;
    top: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 110, 255, .1), transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.certificates-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    left: -200px;
    bottom: -100px;
    border-radius: 50%;
    border: 1px solid rgba(0, 120, 255, .08);
    box-shadow: 0 0 90px rgba(0, 110, 255, .04);
    pointer-events: none;
}

.certificates-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.certificates-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.certificates-label {
    margin-bottom: 18px;
    color: #1683ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(0, 120, 255, .4);
}

.certificates-heading h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -3px;
}

.certificates-heading h2 span {
    display: block;
    color: #1683ff;
    text-shadow:
        0 0 15px rgba(0, 110, 255, .5),
        0 0 35px rgba(0, 80, 255, .25);
}

.certificates-description {
    max-width: 650px;
    color: #969aaa;
    font-size: 15px;
    line-height: 1.8;
}

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

.certificate-card {
    overflow: hidden;
    border: 1px solid rgba(0, 120, 255, .18);
    border-radius: 20px;
    background: rgba(4, 10, 20, .78);
    box-shadow: inset 0 0 30px rgba(0, 100, 255, .02);
    transition: .45s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 140, 255, .65);
    box-shadow:
        0 0 35px rgba(0, 100, 255, .12),
        0 20px 50px rgba(0, 0, 0, .3);
}

.certificate-image {
    margin: 12px;
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(0, 130, 255, .18);
    background: #030912;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.04);
}

.certificate-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 8, 20, .55);
    opacity: 0;
    transition: .4s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border: 1px solid rgba(0, 150, 255, .65);
    border-radius: 8px;
    background: rgba(0, 100, 255, .15);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: .3s ease;
}

.certificate-overlay button span {
    color: #1683ff;
    font-size: 17px;
}

.certificate-overlay button:hover {
    background: #006eff;
    border-color: #006eff;
    box-shadow: 0 0 25px rgba(0, 110, 255, .4);
}

.certificate-overlay button:hover span {
    color: #fff;
}

.certificate-content {
    padding: 10px 25px 25px;
}

.certificate-content span {
    display: block;
    margin-bottom: 8px;
    color: #1683ff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.certificate-content h3 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 18px;
}

.certificate-content p {
    color: #7f899d;
    font-size: 12px;
}

.certificate-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.certificate-modal.active {
    opacity: 1;
    visibility: visible;
}

.certificate-modal img {
    max-width: 92%;
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid rgba(0, 130, 255, .5);
    border-radius: 12px;
    box-shadow:
        0 0 40px rgba(0, 110, 255, .2),
        0 25px 70px rgba(0, 0, 0, .5);
}

.certificate-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(0, 130, 255, .5);
    border-radius: 50%;
    background: rgba(0, 20, 50, .7);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: .3s ease;
}

.certificate-close:hover {
    background: #006eff;
    border-color: #006eff;
    transform: rotate(90deg);
}

@media (max-width: 700px) {
    .certificates-section {
        padding: 90px 20px 60px;
    }

    .certificates-heading {
        text-align: center;
    }

    .certificates-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .certificates-heading h2 {
        font-size: 45px;
    }

    .certificates-description {
        font-size: 12px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .certificate-image {
        height: 240px;
    }

    .certificate-content h3 {
        font-size: 16px;
    }

    .certificate-modal {
        padding: 15px;
    }

    .certificate-modal img {
        max-width: 96%;
        max-height: 80vh;
    }

    .certificate-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .certificate-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0, 8, 20, .75),
            transparent 55%
        );
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 20px;
    }
}