:root {

    --bg: #050505;
    --bg-secondary: rgba(255,255,255,.03);

    --text: #ffffff;
    --text-soft: rgba(255,255,255,.68);
    --text-fade: rgba(255,255,255,.5);

    --border: rgba(255,255,255,.06);

    --primary: #8b5cf6;
    --secondary: #6366f1;

    --card-shadow: 0 0 40px rgba(0,0,0,.35);

}

body.light-theme {

    --bg: #f4f5f7;
    --bg-secondary: rgba(255,255,255,.72);

    --text: #0f172a;
    --text-soft: rgba(15,23,42,.72);
    --text-fade: rgba(15,23,42,.55);

    --border: rgba(15,23,42,.08);

    --primary: #7c3aed;
    --secondary: #6366f1;

    --card-shadow: 0 10px 35px rgba(15,23,42,.08);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background: var(--bg);
    color: var(--text);

    font-family: 'Inter', sans-serif;

    overflow-x: hidden;
    position: relative;

    transition:
        background .35s ease,
        color .35s ease;

}

body::before {

    content: "";

    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 80px 80px;

    z-index: -4;

}

body.light-theme::before {

    background-image:
        linear-gradient(rgba(15,23,42,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.03) 1px, transparent 1px);

}

body::after {

    content: "";

    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at top, rgba(139,92,246,.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(99,102,241,.08), transparent 30%);

    z-index: -3;

}

.background-glow {

    position: fixed;

    border-radius: 999px;

    filter: blur(140px);

    opacity: .18;

    z-index: -2;

}

.glow-1 {

    width: 550px;
    height: 550px;

    background: var(--primary);

    top: -180px;
    left: -180px;

}

.glow-2 {

    width: 550px;
    height: 550px;

    background: var(--secondary);

    right: -180px;
    bottom: -180px;

}

a {
    text-decoration: none;
    color: inherit;
}

section {

    width: 100%;

    padding-left: 8%;
    padding-right: 8%;

}

.navbar {

    width: 100%;
    height: 95px;

    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;

    z-index: 1000;

    backdrop-filter: blur(24px);

    background: rgba(5,5,5,.65);

    border-bottom: 1px solid var(--border);

}

body.light-theme .navbar {

    background: rgba(255,255,255,.72);

}

.nav-left {

    display: flex;
    align-items: center;

}

.logo {

    font-size: 1.15rem;
    font-weight: 800;

    letter-spacing: 4px;

    color: var(--text);

    position: relative;

}

.logo::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        var(--primary),
        transparent
    );

}

.nav-right {

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 10px;

    border-radius: 999px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    backdrop-filter: blur(20px);

}

.nav-right a {

    padding: 12px 18px;

    border-radius: 999px;

    color: var(--text-soft);

    font-size: .92rem;
    font-weight: 500;

    transition: .3s;

}

.nav-right a:hover {

    background: rgba(255,255,255,.06);

    color: var(--text);

}

body.light-theme .nav-right a:hover {

    background: rgba(15,23,42,.06);

}

.nav-actions {

    display: flex;
    align-items: center;
    gap: 14px;

}

.lang-switch {

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    color: var(--text);

    font-weight: 700;

    transition: .3s;

    backdrop-filter: blur(20px);

}

.lang-switch:hover {

    transform: translateY(-4px);

    border-color: rgba(139,92,246,.45);

}

.theme-toggle {

    width: 50px;
    height: 50px;

    border: 1px solid var(--border);

    background: var(--bg-secondary);

    border-radius: 18px;

    color: var(--text);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;

    transition: .35s;

    backdrop-filter: blur(20px);

}

.theme-toggle:hover {

    transform: translateY(-4px) rotate(8deg);

    border-color: rgba(139,92,246,.45);

    box-shadow: 0 0 20px rgba(139,92,246,.15);

}

.hero {

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 100px;

    padding-top: 100px;
    padding-bottom: 120px;

}

.hero-content {

    max-width: 760px;

}

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border-radius: 999px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    color: var(--text-soft);

    font-size: .8rem;

    letter-spacing: 1.4px;

    margin-bottom: 34px;

    backdrop-filter: blur(20px);

}

.hero-badge::before {

    content: "";

    width: 10px;
    height: 10px;

    border-radius: 999px;

    background: var(--primary);

    box-shadow: 0 0 15px var(--primary);

}

.hero h1 {

    font-size: 5.6rem;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -4px;

    margin-bottom: 32px;

    max-width: 900px;

}

.hero p {

    color: var(--text-soft);

    font-size: 1.08rem;

    line-height: 2;

    max-width: 650px;

}

.hero-buttons {

    margin-top: 48px;

    display: flex;
    align-items: center;
    gap: 18px;

}

.primary-btn {

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: white;

    padding: 17px 32px;

    border-radius: 18px;

    font-weight: 600;

    transition: .35s;

    box-shadow:
        0 0 35px rgba(139,92,246,.25),
        inset 0 1px 0 rgba(255,255,255,.2);

}

.primary-btn:hover {

    transform: translateY(-4px);

}

.secondary-btn {

    padding: 17px 32px;

    border-radius: 18px;

    border: 1px solid var(--border);

    background: var(--bg-secondary);

    color: var(--text);

    font-weight: 600;

    transition: .3s;

    backdrop-filter: blur(20px);

}

.secondary-btn:hover {

    transform: translateY(-4px);

}

.hero-preview {

    display: flex;
    align-items: center;
    justify-content: center;

}

.preview-card {

    width: 530px;

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    border-radius: 34px;

    padding: 30px;

    backdrop-filter: blur(30px);

    box-shadow: var(--card-shadow);

}

.preview-top {

    display: flex;
    gap: 10px;

    margin-bottom: 32px;

}

.preview-dot {

    width: 12px;
    height: 12px;

    border-radius: 999px;

    background: rgba(255,255,255,.15);

}

body.light-theme .preview-dot {

    background: rgba(15,23,42,.18);

}

.preview-line {

    height: 14px;

    border-radius: 999px;

    background: rgba(255,255,255,.08);

    margin-bottom: 18px;

}

body.light-theme .preview-line {

    background: rgba(15,23,42,.08);

}

.preview-line.large {

    width: 92%;
    height: 18px;

}

.preview-line.short {

    width: 50%;

}

.preview-grid {

    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 18px;

    margin-top: 38px;

}

.preview-box {

    height: 140px;

    border-radius: 24px;

    background: rgba(255,255,255,.03);

    border: 1px solid var(--border);

}

body.light-theme .preview-box {

    background: rgba(15,23,42,.03);

}

.stats {

    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 25px;

    margin-bottom: 180px;

}

.stat-card,
.stack-card,
.project-card,
.timeline-item,
.contact-left,
.contact-form {

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    backdrop-filter: blur(24px);

    box-shadow: var(--card-shadow);

}

.stat-card {

    border-radius: 30px;

    padding: 45px;

    transition: .35s;

}

.stat-card:hover {

    transform: translateY(-8px);

}

.stat-card h2 {

    font-size: 3rem;

    margin-bottom: 14px;

}

.stat-card p {

    color: var(--text-soft);

    line-height: 1.8;

}

.section-header {

    margin-bottom: 70px;

}

.section-header span {

    color: #a78bfa;

    font-size: .8rem;

    letter-spacing: 2px;

    font-weight: 700;

}

.section-header h2 {

    font-size: 3.5rem;

    letter-spacing: -2px;

    margin-top: 18px;

}

.stack,
.projects,
.experience,
.contact {

    margin-bottom: 180px;

}

.stack-grid {

    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.stack-card {

    border-radius: 30px;

    padding: 42px;

    display: flex;
    flex-direction: column;

    gap: 22px;

    transition: .35s;

}

.stack-card:hover {

    transform: translateY(-8px);

}

.stack-card i {

    font-size: 3.2rem;

    color: var(--primary);

}

.stack-card span {

    font-size: 1rem;

    font-weight: 600;

}

.projects-grid {

    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 30px;

}

.project-card {

    border-radius: 34px;

    padding: 45px;

    min-height: 280px;

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.project-card::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(139,92,246,.16),
            transparent 40%
        );

    opacity: 0;

    transition: .35s;

}

.project-card:hover::before {

    opacity: 1;

}

.project-card:hover {

    transform: translateY(-10px);

}

.project-tag {

    display: inline-flex;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(139,92,246,.12);

    color: #c4b5fd;

    font-size: .74rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 30px;

}

.project-card h3 {

    font-size: 2.2rem;

    margin-bottom: 18px;

}

.project-card p {

    color: var(--text-soft);

    line-height: 1.95;

}

.timeline {

    display: flex;
    flex-direction: column;

    gap: 30px;

}

.timeline-item {

    display: flex;

    gap: 40px;

    padding: 38px;

    border-radius: 32px;

    transition: .35s;

}

.timeline-item:hover {

    transform: translateY(-6px);

}

.timeline-year {

    min-width: 110px;

    font-size: 1.2rem;

    font-weight: 700;

    color: #a78bfa;

}

.timeline-content h3 {

    font-size: 1.45rem;

    margin-bottom: 15px;

}

.timeline-content p {

    color: var(--text-soft);

    line-height: 1.9;

}

.contact-wrapper {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 35px;

}

.contact-left,
.contact-form {

    border-radius: 34px;

    padding: 48px;

}

.contact-left h3 {

    font-size: 2.1rem;

    margin-bottom: 24px;

}

.contact-left p {

    color: var(--text-soft);

    line-height: 1.95;

    margin-bottom: 40px;

}

.contact-method {

    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 30px;

}

.contact-method span {

    color: var(--text-fade);

    font-size: .9rem;

}

.contact-method strong {

    font-size: 1.08rem;

}

.contact-form {

    display: flex;
    flex-direction: column;

    gap: 22px;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    background: rgba(255,255,255,.04);

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 18px 20px;

    color: var(--text);

    font-family: inherit;

    resize: none;

    outline: none;

    transition: .3s;

}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea {

    background: rgba(15,23,42,.03);

}

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: rgba(139,92,246,.7);

    box-shadow: 0 0 25px rgba(139,92,246,.15);

}

.contact-form button {

    height: 62px;

    border: none;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color: white;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.contact-form button:hover {

    transform: translateY(-4px);

}

.success-message {

    color: #c4b5fd;

    font-size: .95rem;

}

.footer {

    margin-top: 80px;

    padding: 70px 8%;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;

    overflow: hidden;

}

.footer::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(139,92,246,.08),
            transparent 60%
        );

}

.footer-left,
.footer-right {

    position: relative;

    z-index: 2;

}

.footer-left {

    display: flex;
    flex-direction: column;

    gap: 12px;

}

.footer-logo {

    font-size: 1.3rem;

    font-weight: 800;

    letter-spacing: 4px;

}

.footer-left p {

    color: var(--text-fade);

    font-size: .95rem;

}

.footer-right {

    display: flex;
    align-items: center;

    gap: 16px;

}

.footer-right a {

    width: 48px;
    height: 48px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    color: var(--text-soft);

    transition: .3s;

    font-size: 1.1rem;

}

.footer-right a:hover {

    background: rgba(139,92,246,.12);

    transform: translateY(-4px);

    color: var(--text);

}

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-thumb {

    background: rgba(139,92,246,.45);

    border-radius: 999px;

}

::-webkit-scrollbar-track {

    background: var(--bg);

}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

.glow-hover {
    position: relative;
    overflow: hidden;
}

.glow-hover::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top,
            rgba(139,92,246,.18),
            transparent 60%
        );

    opacity: 0;

    transition: .4s;

}

.glow-hover:hover::before {
    opacity: 1;
}

.hero h1 {
    animation: heroFade 1s ease;
}

.hero p {
    animation: heroFade 1.3s ease;
}

.hero-buttons {
    animation: heroFade 1.6s ease;
}

@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.primary-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transition: .7s;

}

.primary-btn:hover::after {
    left: 120%;
}

.project-card,
.stack-card,
.stat-card,
.timeline-item,
.contact-left,
.contact-form {
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.project-card:hover,
.stack-card:hover,
.stat-card:hover,
.timeline-item:hover {

    transform: translateY(-10px);

    box-shadow:
        0 0 35px rgba(139,92,246,.12);

}

.background-glow {
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0% {
        opacity: .12;
        transform: scale(1);
    }

    50% {
        opacity: .22;
        transform: scale(1.08);
    }

    100% {
        opacity: .12;
        transform: scale(1);
    }

}

.loading-screen {

    position: fixed;
    inset: 0;

    background: #050505;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 20px;

    z-index: 99999;

    transition:
        opacity 1s ease,
        visibility 1s ease;

}

.loading-screen.hide {

    opacity: 0;
    visibility: hidden;

}

.loading-logo {

    font-size: 4rem;
    font-weight: 800;

    letter-spacing: 10px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #8b5cf6
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: pulseLogo 2s ease infinite;

}

.loading-text {

    color: rgba(255,255,255,.6);

    letter-spacing: 3px;

    font-size: .9rem;

}

@keyframes pulseLogo {

    0% {
        transform: scale(1);
        opacity: .8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .8;
    }

}

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    height: 4px;

    width: 0%;

    background:
        linear-gradient(
            90deg,
            #8b5cf6,
            #6366f1
        );

    z-index: 999999;

    box-shadow:
        0 0 20px rgba(139,92,246,.45);

}

.cursor-glow {

    position: fixed;

    width: 350px;
    height: 350px;

    border-radius: 999px;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.12),
            transparent 70%
        );

    transform: translate(-50%, -50%);

    z-index: -1;

    transition:
        transform .08s linear,
        opacity .3s ease;

}

.gradient-text {

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #a78bfa
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.magnetic {

    transition:
        transform .2s ease;

}

.reveal {

    opacity: 0;

    transform:
        translateY(60px)
        scale(.96);

    filter: blur(10px);

    transition:
        opacity 1s ease,
        transform 1s ease,
        filter 1s ease;

}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);

}

.floating {

    animation:
        floating 6s ease-in-out infinite;

}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

.glow-hover {

    position: relative;

    overflow: hidden;

}

.glow-hover::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top,
            rgba(139,92,246,.18),
            transparent 60%
        );

    opacity: 0;

    transition: .4s;

}

.glow-hover:hover::before {

    opacity: 1;

}

.project-card::after,
.stack-card::after,
.stat-card::after {

    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(139,92,246,.35),
            transparent
        );

    opacity: 0;

    transition: .4s;

    pointer-events: none;

}

.project-card:hover::after,
.stack-card:hover::after,
.stat-card:hover::after {

    opacity: 1;

}

.hero h1 {

    animation:
        heroFade 1s ease;

}

.hero p {

    animation:
        heroFade 1.4s ease;

}

.hero-buttons {

    animation:
        heroFade 1.8s ease;

}

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.primary-btn {

    position: relative;

    overflow: hidden;

}

.primary-btn::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transition: .8s;

}

.primary-btn:hover::after {

    left: 120%;

}

.project-card,
.stack-card,
.stat-card,
.timeline-item,
.contact-left,
.contact-form {

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.project-card:hover,
.stack-card:hover,
.stat-card:hover,
.timeline-item:hover {

    transform: translateY(-10px);

    box-shadow:
        0 0 35px rgba(139,92,246,.12);

}

.background-glow {

    animation:
        pulseGlow 8s ease-in-out infinite;

}

@keyframes pulseGlow {

    0% {

        opacity: .12;

        transform: scale(1);

    }

    50% {

        opacity: .22;

        transform: scale(1.08);

    }

    100% {

        opacity: .12;

        transform: scale(1);

    }

}

.dashboard-header {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;

}

.dashboard-label {

    color: rgba(255,255,255,.5);

    font-size: .8rem;

    letter-spacing: 2px;

}

.dashboard-header h3 {

    margin-top: 10px;

    font-size: 2rem;

}

.status-live {

    width: 16px;
    height: 16px;

    border-radius: 999px;

    background: #22c55e;

    box-shadow:
        0 0 20px #22c55e;

    animation:
        livePulse 1.5s infinite;

}

@keyframes livePulse {

    0% {

        transform: scale(1);

        opacity: 1;

    }

    50% {

        transform: scale(1.3);

        opacity: .7;

    }

    100% {

        transform: scale(1);

        opacity: 1;

    }

}

.dashboard-stats {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 18px;

    margin-bottom: 25px;

}

.dashboard-box {

    padding: 22px;

    border-radius: 20px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.05);

}

.dashboard-box span {

    color: rgba(255,255,255,.5);

    font-size: .9rem;

}

.dashboard-box strong {

    display: block;

    margin-top: 10px;

    font-size: 1.8rem;

}

.footer-status {

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 16px;

}

.footer-status-dot {

    width: 12px;
    height: 12px;

    border-radius: 999px;

    background: #22c55e;

    box-shadow:
        0 0 15px #22c55e;

    animation:
        livePulse 1.5s infinite;

}

.footer-status span {

    color: rgba(255,255,255,.7);

    font-size: .95rem;

}

.noise {

    position: fixed;
    inset: 0;

    background-image:
        url("https://grainy-gradients.vercel.app/noise.svg");

    opacity: .03;

    pointer-events: none;

    z-index: -2;

}

.navbar.scrolled {

    height: 78px;

    background: rgba(5,5,5,.82);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    box-shadow:
        0 10px 35px rgba(0,0,0,.25);

}

body.light-theme .navbar.scrolled {

    background: rgba(255,255,255,.88);

}

.hero-preview {

    perspective: 1200px;

}

.preview-card {

    transform-style: preserve-3d;

    transition:
        transform .15s ease;

}

@media(max-width: 1200px) {

    .hero {

        flex-direction: column;

        align-items: flex-start;

    }

    .hero-preview {

        width: 100%;

    }

    .preview-card {

        width: 100%;

    }

    .stats {

        grid-template-columns: repeat(2,1fr);

    }

    .stack-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .projects-grid {

        grid-template-columns: 1fr;

    }

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

}

@media(max-width: 768px) {

    section {

        padding-left: 6%;
        padding-right: 6%;

    }

    .navbar {

        padding: 0 6%;

    }

    .nav-right {

        display: none;

    }

    .hero h1 {

        font-size: 3.5rem;

        letter-spacing: -2px;

    }

    .hero p {

        font-size: 1rem;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

    .stats {

        grid-template-columns: 1fr;

    }

    .stack-grid {

        grid-template-columns: 1fr;

    }

    .section-header h2 {

        font-size: 2.5rem;

    }

    .timeline-item {

        flex-direction: column;

    }

    .footer {

        flex-direction: column;

        gap: 30px;

        text-align: center;

    }

}