/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg: #070817;
    --bg-soft: #0d1024;
    --card: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.11);

    --white: #f7f8ff;
    --muted: #969bb4;

    --cyan: #25e7ff;
    --blue: #5474ff;
    --purple: #9d5cff;
    --pink: #ff4ecd;
    --green: #52f0bd;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 20% 20%, rgba(84, 116, 255, 0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(157, 92, 255, 0.08), transparent 30%),
        var(--bg);

    color: var(--white);

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =====================================================
   BACKGROUND
===================================================== */

.bg-grid {
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 55px 55px;

    pointer-events: none;
    z-index: -5;
}

.orb {
    position: fixed;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.13;

    pointer-events: none;

    z-index: -4;
}

.orb-1 {
    background: var(--cyan);
    top: -150px;
    left: -100px;
}

.orb-2 {
    background: var(--purple);
    right: -150px;
    top: 30%;
}

.orb-3 {
    background: var(--pink);
    bottom: -180px;
    left: 35%;
}

.cursor-glow {
    position: fixed;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(37, 231, 255, 0.07),
        transparent 65%
    );

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 1000;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;

    top: 18px;
    left: 0;
    width: 100%;

    z-index: 100;

    padding: 0 20px;
}

.nav-container {
    width: min(1180px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 14px;

    border: 1px solid var(--border);

    background: rgba(8, 9, 25, 0.78);

    backdrop-filter: blur(20px);

    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.25);
}

.logo {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 21px;

    background:
        linear-gradient(135deg, #15182e, #252944);

    border: 1px solid rgba(255,255,255,0.12);
}

.logo span {
    color: var(--cyan);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 11px 13px;

    border-radius: 11px;

    color: #8f94aa;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;

    background: rgba(255,255,255,0.09);
}

.menu-btn {
    display: none;

    border: 0;

    background: rgba(255,255,255,0.08);

    color: white;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    cursor: pointer;

    font-size: 18px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 140px 0 80px;

    overflow: hidden;
}

.hero-container {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 80px;

    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.status {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    border-radius: 50px;

    border: 1px solid rgba(82,240,189,0.2);

    background: rgba(82,240,189,0.055);

    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 12px var(--green);

    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    50% {
        opacity: 0.35;
        transform: scale(0.7);
    }
}

.eyebrow {
    margin-top: 35px;

    color: #9298b0;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 5px;
}

.hero h1 {
    margin-top: 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(70px, 10vw, 145px);

    line-height: 0.88;

    letter-spacing: -7px;

    background:
        linear-gradient(
            100deg,
            #ffffff 15%,
            #d9d8ff 35%,
            var(--cyan) 70%,
            var(--purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-role {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.hero-role b {
    color: var(--pink);
}

.hero-description {
    max-width: 560px;

    margin-top: 22px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 13px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    color: #07101b;

    background:
        linear-gradient(
            100deg,
            var(--cyan),
            #67e6ff,
            var(--purple)
        );

    box-shadow:
        0 10px 35px rgba(37,231,255,0.16);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--border);

    color: white;

    background: rgba(255,255,255,0.04);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.09);

    transform: translateY(-3px);
}

.hero-scroll {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 70px;

    color: #666b83;

    font-size: 10px;

    letter-spacing: 3px;
}

.hero-scroll div {
    width: 70px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            transparent
        );
}


/* =====================================================
   HERO PHOTO
===================================================== */

.hero-visual {
    position: relative;

    min-height: 570px;

    display: grid;
    place-items: center;
}

.photo-card {
    position: relative;

    width: min(390px, 90%);

    padding: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.14),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 30px;

    transform: rotate(3deg);

    box-shadow:
        0 35px 100px rgba(0,0,0,0.45),
        0 0 80px rgba(37,231,255,0.09);

    transition: 0.5s ease;

    z-index: 3;
}

.photo-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.photo-top {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 10px;
}

.photo-top span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #777;
}

.photo-top span:first-child {
    background: #ff6b8b;
}

.photo-top span:nth-child(2) {
    background: #ffd45c;
}

.photo-top span:nth-child(3) {
    background: var(--green);
}

.photo-top small {
    margin-left: auto;

    color: #777c91;

    font-size: 9px;

    letter-spacing: 2px;
}

.photo-wrapper {
    height: 470px;

    overflow: hidden;

    border-radius: 22px;

    background: #12152a;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    transition: 0.5s ease;
}

.photo-card:hover .photo-wrapper img {
    transform: scale(1.035);
}

.photo-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 10px 8px;
}

.photo-bottom span {
    color: #7d8299;

    font-size: 9px;

    letter-spacing: 1.5px;
}

.photo-bottom strong {
    color: var(--cyan);

    font-size: 11px;
}

.photo-decoration {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}

.decoration-1 {
    width: 180px;
    height: 180px;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            transparent
        );

    opacity: 0.16;

    top: 30px;
    right: 10px;
}

.decoration-2 {
    width: 160px;
    height: 160px;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            transparent
        );

    opacity: 0.15;

    bottom: 20px;
    left: 20px;
}

.floating-tech {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 12px;

    background: rgba(8,9,25,0.82);

    backdrop-filter: blur(15px);

    font-size: 10px;

    font-weight: 700;

    box-shadow: 0 15px 40px rgba(0,0,0,0.25);

    z-index: 5;

    animation: float 4s ease-in-out infinite;
}

.floating-tech i {
    font-size: 15px;
}

.tech-1 {
    top: 80px;
    left: 8%;

    color: #ff713e;
}

.tech-2 {
    top: 180px;
    right: 1%;

    color: #38a9ff;

    animation-delay: 0.8s;
}

.tech-3 {
    bottom: 145px;
    left: 3%;

    color: #ffe34b;

    animation-delay: 1.3s;
}

.tech-4 {
    bottom: 65px;
    right: 8%;

    color: #55b7ff;

    animation-delay: 1.8s;
}

.tech-5 {
    top: 320px;
    right: -1%;

    color: #ff6a86;

    animation-delay: 2.2s;
}

@keyframes float {
    50% {
        transform: translateY(-10px);
    }
}

.hero-watermark {
    position: absolute;

    bottom: -35px;
    left: 3%;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(80px, 17vw, 240px);

    font-weight: 700;

    color: rgba(255,255,255,0.018);

    pointer-events: none;

    white-space: nowrap;
}


/* =====================================================
   SECTION
===================================================== */

.section {
    padding: 130px 0;
}

.section-heading span,
.section-label {
    color: var(--cyan);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}

.section-heading h2 {
    margin-top: 15px;

    max-width: 700px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(40px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -3px;
}

.section-heading em,
.about h2 span,
.contact h2 em {
    color: var(--cyan);

    font-style: normal;
}


/* =====================================================
   PROFILE
===================================================== */

.profile-box {
    display: grid;

    grid-template-columns: 1fr 0.75fr 1fr;

    gap: 30px;

    align-items: center;

    margin-top: 60px;

    padding: 40px;

    border: 1px solid var(--border);

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    backdrop-filter: blur(20px);
}

.profile-number {
    color: var(--purple);

    font-size: 12px;

    letter-spacing: 3px;
}

.profile-left h3 {
    margin-top: 25px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 42px;
}

.profile-left > p {
    color: var(--cyan);

    margin-top: 8px;

    font-weight: 600;
}

.profile-line {
    width: 80px;
    height: 2px;

    margin: 25px 0;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--purple)
        );
}

.profile-small {
    max-width: 300px;

    color: var(--muted);

    line-height: 1.8;
}

.profile-middle {
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 250px;
    height: 310px;

    padding: 8px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            var(--cyan),
            var(--purple),
            var(--pink)
        );

    transform: rotate(-4deg);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.35);
}

.profile-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    border-radius: 18px;
}

.profile-right {
    display: grid;

    gap: 18px;
}

.info-item {
    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.info-item span {
    display: block;

    color: #777d94;

    font-size: 9px;

    letter-spacing: 2px;
}

.info-item strong {
    display: block;

    margin-top: 6px;

    color: #e9ebf5;

    font-size: 14px;

    line-height: 1.5;
}

.stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 20px;

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;
}

.stats div {
    padding: 25px;

    border-right: 1px solid var(--border);

    background: rgba(255,255,255,0.025);
}

.stats div:last-child {
    border-right: 0;
}

.stats strong {
    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: 26px;

    color: white;
}

.stats span {
    display: block;

    margin-top: 7px;

    color: #747a91;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(84,116,255,0.025),
            transparent
        );
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-top: 60px;
}

.about h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    color: var(--muted);

    line-height: 1.9;

    margin-bottom: 20px;
}

.about-text .big-text {
    color: #e8eaf4;

    font-size: 20px;
}

.signature {
    margin-top: 40px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 30px;

    letter-spacing: 5px;

    color: var(--cyan);
}


/* =====================================================
   SKILLS
===================================================== */

.skills-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-top: 60px;
}

.skill-card {
    min-height: 190px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: rgba(255,255,255,0.035);

    transition: 0.35s ease;

    overflow: hidden;

    position: relative;
}

.skill-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    right: -45px;
    bottom: -45px;

    background: currentColor;

    filter: blur(35px);

    opacity: 0.12;
}

.skill-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.065);
}

.skill-card i {
    font-size: 32px;
}

.skill-card h3 {
    font-size: 20px;
}

.skill-card span {
    color: #777d94;

    font-size: 9px;

    letter-spacing: 2px;
}

.html {
    color: #ff714d;
}

.css {
    color: #4e9dff;
}

.js {
    color: #ffe15b;
}

.java {
    color: #ff6886;
}

.python {
    color: #5ebcff;
}

.sql {
    color: #8f7cff;
}

.c {
    color: #8aa6ff;
}

.problem {
    color: var(--cyan);
}


/* =====================================================
   PROJECTS
===================================================== */

.featured-project {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 60px;

    margin-top: 60px;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 28px;

    background: rgba(255,255,255,0.035);
}

.browser {
    overflow: hidden;

    border-radius: 18px;

    background: #111426;

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.3);
}

.browser-bar {
    height: 45px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 15px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #555b70;
}

.browser-bar p {
    color: #737991;

    font-size: 9px;
}

.dashboard {
    min-height: 320px;

    padding: 35px;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(37,231,255,0.12),
            transparent 30%
        ),
        #0c1021;
}

.dashboard h3 {
    font-size: 28px;
}

.dashboard-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 30px;
}

.dashboard-grid div {
    padding: 15px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    background: rgba(255,255,255,0.035);
}

.dashboard-grid small {
    display: block;

    color: #777d94;

    font-size: 8px;
}

.dashboard-grid strong {
    display: block;

    margin-top: 7px;

    color: var(--cyan);

    font-size: 22px;
}

.fake-chart {
    height: 100px;

    margin-top: 25px;

    border-radius: 12px;

    background:
        linear-gradient(
            150deg,
            transparent 45%,
            rgba(37,231,255,0.6) 46%,
            transparent 48%,
            transparent 62%,
            rgba(157,92,255,0.6) 63%,
            transparent 65%
        ),
        rgba(255,255,255,0.025);
}

.project-info {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.project-info > span {
    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 2px;
}

.project-info h3 {
    margin-top: 15px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 43px;

    line-height: 1;

    letter-spacing: -2px;
}

.project-info p {
    margin-top: 20px;

    color: var(--muted);

    line-height: 1.8;
}

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;
}

.tags span {
    padding: 7px 10px;

    border-radius: 8px;

    background: rgba(255,255,255,0.06);

    color: #a6abc0;

    font-size: 9px;

    font-weight: 700;
}

.project-links {
    display: flex;

    gap: 20px;

    margin-top: 28px;
}

.project-links a {
    color: white;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s ease;
}

.project-links a:hover {
    color: var(--cyan);
}

.project-links i {
    margin-left: 5px;
}

.project-cards {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 15px;
}

.project-card {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background: rgba(255,255,255,0.035);

    transition: 0.35s ease;
}

.project-card:hover {
    transform: translateY(-7px);

    border-color: rgba(37,231,255,0.3);
}

.project-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--cyan);

    background: rgba(37,231,255,0.08);

    font-size: 20px;
}

.project-card > span {
    display: block;

    margin-top: 25px;

    color: var(--purple);

    font-size: 10px;

    letter-spacing: 2px;
}

.project-card h3 {
    margin-top: 10px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 28px;
}

.project-card p {
    margin-top: 10px;

    color: var(--muted);

    line-height: 1.7;
}


/* =====================================================
   JOURNEY
===================================================== */

.timeline {
    margin-top: 65px;

    max-width: 950px;
}

.timeline-item {
    display: grid;

    grid-template-columns: 90px 25px 1fr;

    gap: 20px;

    min-height: 150px;
}

.year {
    color: var(--cyan);

    font-family: "Space Grotesk", sans-serif;

    font-weight: 700;
}

.dot {
    position: relative;

    width: 12px;
    height: 12px;

    margin-top: 4px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 20px rgba(37,231,255,0.7);
}

.dot::after {
    content: "";

    position: absolute;

    width: 1px;

    height: 145px;

    top: 12px;
    left: 5px;

    background:
        linear-gradient(
            var(--cyan),
            transparent
        );
}

.timeline-item:last-child .dot::after {
    display: none;
}

.timeline-content {
    padding-bottom: 35px;
}

.timeline-content span {
    color: #777d94;

    font-size: 9px;

    letter-spacing: 2px;
}

.timeline-content h3 {
    margin-top: 8px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;
}

.timeline-content p {
    margin-top: 10px;

    max-width: 650px;

    color: var(--muted);

    line-height: 1.7;
}


/* =====================================================
   RESUME
===================================================== */

.resume-box {
    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 70px;

    align-items: center;

    padding: 55px;

    border-radius: 30px;

    border: 1px solid rgba(37,231,255,0.15);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(157,92,255,0.12),
            transparent 40%
        ),
        rgba(255,255,255,0.035);
}

.resume-content > span {
    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 3px;
}

.resume-content h2 {
    margin-top: 18px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;
}

.resume-content h2 em {
    color: var(--cyan);

    font-style: normal;
}

.resume-content p {
    max-width: 500px;

    margin-top: 20px;

    color: var(--muted);

    line-height: 1.8;
}

.resume-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.resume-preview {
    display: flex;

    justify-content: center;
}

.paper {
    position: relative;

    width: 230px;
    min-height: 300px;

    padding: 25px;

    border-radius: 7px;

    background: #f5f5f8;

    color: #111322;

    transform: rotate(5deg);

    box-shadow:
        20px 30px 70px rgba(0,0,0,0.35);
}

.paper-top {
    color: #777;

    font-size: 8px;

    letter-spacing: 3px;
}

.paper h3 {
    margin-top: 35px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;
}

.paper p {
    margin-top: 4px;

    color: #777;

    font-size: 8px;

    letter-spacing: 1px;
}

.paper-line {
    height: 2px;

    width: 50px;

    margin: 18px 0;

    background: var(--purple);
}

.paper > span {
    display: block;

    height: 7px;

    margin: 10px 0;

    border-radius: 5px;

    background: #dddde5;
}

.paper strong {
    position: absolute;

    bottom: 20px;
    right: 20px;

    color: var(--purple);

    font-size: 10px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-heading {
    text-align: center;
}

.contact-heading > span {
    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 3px;
}

.contact-heading h2 {
    margin-top: 20px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 8vw, 100px);

    line-height: 0.9;

    letter-spacing: -5px;
}

.contact-heading em {
    color: var(--cyan);

    font-style: normal;
}

.contact-heading p {
    max-width: 500px;

    margin: 25px auto 0;

    color: var(--muted);

    line-height: 1.7;
}

.contact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 55px;
}

.contact-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: rgba(255,255,255,0.035);

    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: rgba(37,231,255,0.3);
}

.contact-card > i:first-child {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--cyan);

    background: rgba(37,231,255,0.08);
}

.contact-card div {
    flex: 1;
}

.contact-card span {
    display: block;

    color: #777d94;

    font-size: 8px;

    letter-spacing: 2px;
}

.contact-card strong {
    display: block;

    margin-top: 5px;

    color: white;

    font-size: 12px;
}

.contact-card .arrow {
    color: #666b82;

    font-size: 11px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #676c82;

    font-size: 11px;
}

.footer-logo {
    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;

    color: white;
}

.footer-logo span {
    color: var(--cyan);
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .nav-menu {
        position: absolute;

        top: 75px;
        left: 0;
        right: 0;

        padding: 15px;

        display: none;

        flex-direction: column;

        background: rgba(8,9,25,0.96);

        border: 1px solid var(--border);

        border-radius: 18px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;

        text-align: center;

        padding: 13px;
    }

    .menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .status,
    .hero-buttons,
    .hero-scroll {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-role {
        justify-content: center;
    }

    .hero-visual {
        min-height: 550px;
    }

    .profile-box {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .profile-line {
        margin-left: auto;
        margin-right: auto;
    }

    .profile-small {
        margin: auto;
    }

    .profile-right {
        text-align: left;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 50px;
    }

    .resume-box {
        grid-template-columns: 1fr;
    }

    .resume-content {
        text-align: center;
    }

    .resume-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .resume-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 650px) {

    .navbar {
        top: 10px;

        padding: 0 10px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 68px;

        letter-spacing: -4px;
    }

    .hero-role {
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 470px;
    }

    .photo-card {
        width: 310px;
    }

    .photo-wrapper {
        height: 380px;
    }

    .floating-tech {
        transform: scale(0.8);
    }

    .tech-1 {
        left: 0;
    }

    .tech-2 {
        right: 0;
    }

    .tech-3 {
        left: -3%;
    }

    .tech-4 {
        right: 0;
    }

    .tech-5 {
        right: -2%;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading h2 {
        font-size: 45px;
    }

    .profile-box {
        padding: 25px 20px;
    }

    .profile-image {
        width: 210px;
        height: 270px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stats div:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .stats div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about h2 {
        font-size: 50px;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }

    .skill-card {
        min-height: 160px;
    }

    .project-cards {
        grid-template-columns: 1fr;
    }

    .featured-project {
        padding: 18px;
    }

    .project-info h3 {
        font-size: 34px;
    }

    .dashboard {
        padding: 20px;
    }

    .dashboard-grid {
        gap: 6px;
    }

    .timeline-item {
        grid-template-columns: 55px 18px 1fr;

        gap: 10px;
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .resume-box {
        padding: 30px 20px;
    }

    .resume-buttons {
        flex-direction: column;
    }

    .contact-heading h2 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .footer-inner {
        flex-direction: column;

        gap: 10px;

        text-align: center;
    }
}