/* ============================================================
   SHABNAM PATEL — Professional Portfolio
   Design: Deep navy + warm violet accent + soft cream highlights
   Typography: DM Serif Display (display) + Plus Jakarta Sans (body)
   Signature: Animated terminal-style typewriter hero + diagonal skill bars
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── TOKENS ── */
:root {
    --navy: #0D1B2E;
    --navy-l: #142338;
    --violet: #7C3AED;
    --violet-l: #8B5CF6;
    --violet-ll: #C4B5FD;
    --cream: #FDF8F3;
    --warm: #F5EFE7;
    --gold: #F59E0B;
    --teal: #0EA5E9;
    --white: #FFFFFF;
    --text: #1A2B3C;
    --muted: #64748B;
    --border: #E2E8F0;
    --shadow: 0 4px 24px rgba(13,27,46,.08);
    --shadow-lg: 0 16px 56px rgba(13,27,46,.14);
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--violet-l);
    border-radius: 3px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideR {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes fillBar {
    from {
        width: 0
    }

    to {
        width: var(--pct)
    }
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0)
    }

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

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

    to {
        transform: rotate(360deg)
    }
}

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

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

@keyframes pulse2 {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(124,58,237,.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(124,58,237,0);
    }
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal-l.in {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal-r.in {
        opacity: 1;
        transform: translateX(0);
    }



/* Mobile drawer */
.mob-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

    .mob-drawer.open {
        display: flex;
    }

    .mob-drawer a {
        font-size: 26px;
        font-weight: 700;
        color: rgba(255,255,255,.85);
        letter-spacing: 1px;
        transition: color .2s;
    }

        .mob-drawer a:hover {
            color: var(--violet-ll);
        }

.mob-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

/* ============================================================
   NAVBAR — unique, responsive redesign
   Signature: photo-avatar in a slow-rotating gradient ring,
   underline links that grow from the center on hover,
   off-canvas drawer with blurred overlay on mobile.
   ============================================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 246, .72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 27, 46, .08);
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    #navbar.scrolled {
        background: rgba(253, 251, 246, .95);
        backdrop-filter: blur(18px);
        border-bottom-color: rgba(13, 27, 46, .12);
        box-shadow: 0 8px 32px rgba(13, 27, 46, .10);
    }

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

/* ── Brand ── */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.nav-avatar-img {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

    .nav-avatar-img::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        background: conic-gradient(from 0deg, var(--violet), var(--teal), var(--gold), var(--violet));
        animation: navRingSpin 6s linear infinite;
    }

    .nav-avatar-img img {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        border: 2.5px solid #FDFBF6;
        box-shadow: 0 2px 8px rgba(13, 27, 46, .18);
    }

@keyframes navRingSpin {
    to {
        transform: rotate(360deg);
    }
}

.nav-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .3px;
    white-space: nowrap;
}

    .nav-name span {
        color: var(--violet);
    }
.hc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ── Works With — MBH Technologies ── */
.works-with {
    margin-top: 28px;
}

.works-with-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(124, 58, 237, .05);
    border: 1px solid rgba(124, 58, 237, .22);
    border-radius: 16px;
    padding: 28px 32px;
}

.works-with-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--violet), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.works-with-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 6px;
}

.works-with-name {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.works-with-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(13, 27, 46, .72);
    max-width: 640px;
    margin-bottom: 14px;
}

.works-with-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--violet);
    transition: color .2s ease, gap .2s ease;
}

    .works-with-link i {
        font-size: 11px;
    }

    .works-with-link:hover {
        color: var(--violet-l);
        gap: 11px;
    }

@media (max-width: 600px) {
    .works-with-inner {
        flex-direction: column;
        padding: 22px 20px;
    }
}
/* ── Links (desktop) ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-links a:not(.nav-hire) {
        position: relative;
        font-size: 14px;
        font-weight: 600;
        color: rgba(13, 27, 46);
        padding: 8px 14px;
        letter-spacing: .4px;
        transition: color .25s ease;
    }

        .nav-links a:not(.nav-hire) span {
            position: relative;
            z-index: 1;
        }

        .nav-links a:not(.nav-hire)::after {
            content: '';
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 4px;
            height: 2px;
            background: linear-gradient(90deg, var(--violet), var(--teal));
            border-radius: 2px;
            transition: left .28s ease, right .28s ease;
        }

        .nav-links a:not(.nav-hire):hover {
            color: var(--navy);
        }

            .nav-links a:not(.nav-hire):hover::after {
                left: 12px;
                right: 12px;
            }

.nav-hire {
    display: inline-flex;
    align-items: center;
    background: var(--violet);
    color: white !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 30px;
    margin-left: 10px;
    border: 1px solid var(--violet);
    transition: all .25s ease;
}

    .nav-hire:hover {
        background: var(--violet-l);
        border-color: var(--violet-l);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(124, 58, 237, .35);
    }

/* ── Hamburger (mobile trigger) ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    padding: 4px;
    z-index: 1200;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: transform .3s ease, opacity .3s ease;
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ── Mobile overlay ── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 46, .35);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1050;
}

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: rgba(253, 251, 246, .98);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        padding: 100px 32px 40px;
        transform: translateX(100%);
        transition: transform .38s cubic-bezier(.4,0,.2,1);
        z-index: 1100;
        box-shadow: -12px 0 40px rgba(13, 27, 46, .18);
    }

        .nav-links.open {
            transform: translateX(0);
        }

        .nav-links a:not(.nav-hire) {
            width: 100%;
            padding: 14px 4px;
            font-size: 15px;
            border-bottom: 1px solid rgba(13, 27, 46, .10);
            opacity: 0;
            transform: translateX(16px);
            transition: opacity .35s ease, color .25s ease, transform .35s ease;
        }

        .nav-links.open a:not(.nav-hire) {
            opacity: 1;
            transform: translateX(0);
        }

        .nav-links.open a:nth-child(1) {
            transition-delay: .05s;
        }

        .nav-links.open a:nth-child(2) {
            transition-delay: .10s;
        }

        .nav-links.open a:nth-child(3) {
            transition-delay: .15s;
        }

        .nav-links.open a:nth-child(4) {
            transition-delay: .20s;
        }

        .nav-links.open a:nth-child(5) {
            transition-delay: .25s;
        }

        .nav-links.open a:nth-child(6) {
            transition-delay: .30s;
        }

        .nav-links.open a:nth-child(7) {
            transition-delay: .35s;
        }

        .nav-links a:not(.nav-hire)::after {
            display: none;
        }

    .nav-hire {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0 18px;
        height: 66px;
    }

    .nav-name {
        font-size: 14px;
    }

    .nav-avatar-img {
        width: 38px;
        height: 38px;
    }
}
/* ============================================================
   HERO — light theme, line-free unique background
   Signature: soft dot field + two large organic "blob" fields
   (no straight lines / grid / circuit traces)
   ============================================================ */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FDFBF6 0%, #EAF2FB 45%, #E8F7F1 75%, #FDFBF6 100%);
    background-size: 220% 220%;
    animation: heroFlow 22s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@keyframes heroFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Soft dot field — replaces the old square grid, no lines at all */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(13,27,46,.10) 1.6px, transparent 1.6px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse 75% 65% at 68% 38%, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 68% 38%, black 25%, transparent 75%);
}

/* Organic blob shapes — the page's signature element.
   Soft, rounded, asymmetric forms (not lines/grids) that read as
   a calm abstract "data cloud" behind the profile. */
.hero-orb {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
}

.orb-1 {
    width: 560px;
    height: 480px;
    top: -140px;
    right: -120px;
    background: rgba(124,58,237,.16);
    border-radius: 58% 42% 63% 37% / 41% 55% 45% 59%;
    animation: blobFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: 440px;
    height: 400px;
    bottom: -120px;
    left: -110px;
    background: rgba(14,165,160,.14);
    border-radius: 42% 58% 37% 63% / 55% 41% 59% 45%;
    animation: blobFloat 14s 1.5s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 260px;
    top: 38%;
    left: 56%;
    background: rgba(217,119,6,.14);
    border-radius: 63% 37% 45% 55% / 48% 62% 38% 52%;
    animation: blobFloat 9s .8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(18px, -14px) rotate(6deg) scale(1.04);
    }
    66% {
        transform: translate(-14px, 12px) rotate(-5deg) scale(.97);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 28px 100px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Left col */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, .10);
    border: 1px solid rgba(124, 58, 237, .30);
    color: #4C1D95;
    padding: 7px 16px;
    border-radius: 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeIn .8s ease both;
}

    .hero-eyebrow::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--violet-l);
        border-radius: 50%;
        animation: pulse2 2s ease-in-out infinite;
    }

.hero-h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(44px, 6vw, 74px);
    line-height: 1.08;
    color: var(--navy);
    animation: fadeUp .9s .1s ease both;
}

    .hero-h1 .italic {
        font-style: italic;
        color: var(--violet);
    }

/* Typewriter */
.hero-typewriter {
    margin-top: 18px;
    margin-bottom: 26px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: #92400E;
    animation: fadeIn .8s .3s ease both;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .hero-typewriter::before {
        content: '> ';
        color: var(--violet);
        font-weight: 700;
    }

.cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #92400E;
    margin-left: 2px;
    animation: blink .8s step-end infinite;
}

.hero-desc {
    font-size: 16px;
    color: rgba(13, 27, 46, .78);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px;
    animation: fadeUp .9s .35s ease both;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    animation: fadeUp .9s .45s ease both;
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(13, 27, 46, .14);
    color: rgba(13, 27, 46, .82);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all .25s;
}

    .hbadge i {
        color: var(--violet);
        font-size: 12px;
    }

    .hbadge:hover {
        background: rgba(124, 58, 237, .10);
        border-color: var(--violet);
    }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .9s .55s ease both;
}

.btn-violet {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--violet);
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid var(--violet);
    transition: all .3s;
    cursor: pointer;
}

    .btn-violet:hover {
        background: var(--violet-l);
        border-color: var(--violet-l);
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(124, 58, 237, .30);
    }

.btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid rgba(13, 27, 46, .28);
    transition: all .3s;
    cursor: pointer;
}

    .btn-outline-w:hover {
        border-color: var(--navy);
        background: rgba(13, 27, 46, .06);
        transform: translateY(-3px);
    }

/* Right col — Profile card (content unchanged, shell tuned for light bg) */
.hero-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(13, 27, 46, .10);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s .4s ease both;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 27, 46, .12);
}

    .hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--violet), var(--teal), var(--gold));
    }

.hc-avatar-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
}

.hc-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 44px;
    color: white;
    font-style: italic;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .22);
}

.hc-badge-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(124, 58, 237, .35);
    animation: spinSlow 20s linear infinite;
}

.hc-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    border: 3px solid #FDFBF6;
}

.hc-name {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    text-align: center;
    margin-bottom: 4px;
}

.hc-title {
    font-size: 13px;
    color: var(--violet);
    text-align: center;
    margin-bottom: 6px;
    font-weight: 600;
}

.hc-loc {
    font-size: 12px;
    color: rgba(13, 27, 46, .58);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.hc-divider {
    height: 1px;
    background: rgba(13, 27, 46, .10);
    margin: 18px 0;
}

.hc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.hcs {
    text-align: center;
}

.hcs-val {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--navy);
}

    .hcs-val span {
        color: var(--violet);
    }

.hcs-lbl {
    font-size: 10px;
    color: rgba(13, 27, 46, .48);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

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

.hcc {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hcc-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(124, 58, 237, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hcc-ico i {
        font-size: 12px;
        color: var(--violet);
    }

.hcc-text {
    font-size: 13px;
    color: rgba(13, 27, 46, .74);
}

    .hcc-text a {
        color: rgba(13, 27, 46, .74);
        transition: color .2s;
    }

        .hcc-text a:hover {
            color: var(--violet);
        }

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(13, 27, 46, .42);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 2s 1s ease both;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(13, 27, 46, .32), transparent);
    animation: floatY 2s ease-in-out infinite;
}
/* ── SHARED ── */
.sec {
    padding: 96px 0;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.sec-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: var(--violet);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .sec-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 8px;
}

    .sec-title .it {
        font-style: italic;
        color: var(--violet);
    }

.sec-sub {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
}

/* ── ABOUT ── */
#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        bottom: 0;
        background: linear-gradient(to bottom, var(--violet), var(--teal));
    }

    .about-card p {
        font-size: 15.5px;
        line-height: 1.85;
        color: #374151;
    }

        .about-card p + p {
            margin-top: 16px;
        }

.about-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.af {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: white;
    transition: all .25s;
    cursor: default;
}

    .af:hover {
        border-color: var(--violet-l);
        background: rgba(124,58,237,.03);
        transform: translateX(4px);
    }

.af-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--violet);
    flex-shrink: 0;
}

.af span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Timeline */
.timeline {
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--violet), var(--teal), transparent);
    }

.tl-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: white;
    border: 2px solid var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-size: 15px;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(124,58,237,.1);
    transition: all .3s;
}

.tl-item:hover .tl-dot {
    background: var(--violet);
    color: white;
    box-shadow: 0 0 0 6px rgba(124,58,237,.15);
}

.tl-body {
    flex: 1;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    transition: all .25s;
}

.tl-item:hover .tl-body {
    border-color: var(--violet-l);
    box-shadow: var(--shadow);
}

.tl-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--violet);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tl-org {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tl-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 10px;
}

.tl-points {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .tl-points li {
        font-size: 13.5px;
        color: #4B5563;
        line-height: 1.6;
        display: flex;
        gap: 8px;
    }

        .tl-points li::before {
            content: '–';
            color: var(--violet);
            flex-shrink: 0;
        }

/* ── SKILLS ── */
#skills {
    background: var(--cream);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
}

.skill-cat-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .skill-cat-title i {
        color: var(--violet);
        font-size: 18px;
    }

.skill-item {
    margin-bottom: 18px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.skill-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.skill-pct {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--violet);
    font-weight: 500;
}

.skill-track {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--violet), var(--teal));
    width: 0;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* Tag cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 40px;
    border: 1px solid var(--border);
    background: white;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all .25s;
    cursor: default;
}

    .skill-tag:hover {
        border-color: var(--violet);
        background: rgba(124,58,237,.05);
        color: var(--violet);
        transform: translateY(-2px);
    }

    .skill-tag i {
        font-size: 13px;
        color: var(--violet);
    }

/* ── EXPERIENCE ── */
#experience {
    background: white;
}

.exp-grid {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exp-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    border: 1px solid #e2d7f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

    .exp-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--violet-l);
        transform: translateY(-3px);
    }

.exp-side {
    background: #f1f0fb;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exp-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgb(255 255 255);
    border: 2px solid rgba(124,58,237,11%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #7c3aed;
    margin-bottom: 16px;
}

.exp-period {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #7c3aed;
    line-height: 1.6;
}

    .exp-period strong {
        color: #7c3aed;
        font-size: 12px;
        display: block;
        margin-bottom: 4px;
    }

.exp-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgb(255 255 255);
    color: #7c3aed;
    border: 1px solid rgba(124,58,237,.3);
}

.exp-body {
    padding: 28px 30px;
    background: white;
}

.exp-role {
    font-weight: 800;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 4px;
}

.exp-org {
    font-size: 13px;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .exp-org i {
        font-size: 11px;
        color: var(--muted);
    }

.exp-points {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .exp-points li {
        font-size: 14px;
        color: #4B5563;
        line-height: 1.65;
        display: flex;
        gap: 10px;
    }

        .exp-points li::before {
            content: '▸';
            color: var(--violet);
            flex-shrink: 0;
            font-size: 12px;
            margin-top: 2px;
        }

/* ── EDUCATION ── */
#education {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    #education::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(124,58,237,.06) 1px, transparent 1px);
        background-size: 36px 36px;
    }

.edu-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    width: 350px;
    height: 350px;
    background: rgba(124,58,237,.1);
    top: -80px;
    right: -80px;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.edu-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 32px 26px;
    transition: all .35s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

    .edu-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--violet), var(--teal));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s;
    }

    .edu-card:hover::after {
        transform: scaleX(1);
    }

    .edu-card:hover {
        background: rgba(124,58,237,.08);
        border-color: rgba(124,58,237,.3);
        transform: translateY(-6px);
    }

.edu-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    background: rgba(124,58,237,.15);
    border: 1px solid rgba(124,58,237,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--violet-ll);
}

.edu-deg {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.edu-school {
    font-size: 13px;
    color: var(--violet-ll);
    font-weight: 600;
    margin-bottom: 6px;
}

.edu-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,.38);
    margin-bottom: 14px;
}

.edu-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.25);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .edu-badge i {
        font-size: 10px;
    }

/* ── PROJECTS ── */
#projects {
    background: var(--cream);
}

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

.proj-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

    .proj-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--violet), var(--teal));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s;
    }

    .proj-card:hover::before {
        transform: scaleX(1);
    }

    .proj-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--violet-l);
        transform: translateY(-5px);
    }

.proj-ico-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.proj-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(124,58,237,.08);
    border: 1px solid rgba(124,58,237,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--violet);
}

.proj-tech {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--border);
}

.proj-title {
    font-weight: 800;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
}

.proj-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

.proj-diss {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
    border-color: rgba(124,58,237,.3) !important;
}

    .proj-diss .proj-title, .proj-diss .proj-desc {
        color: rgba(255,255,255,.9);
    }

    .proj-diss .proj-desc {
        color: rgba(255,255,255,.65);
    }

    .proj-diss .proj-ico {
        background: rgba(124,58,237,.2);
        border-color: rgba(124,58,237,.35);
    }

    .proj-diss .proj-tech {
        background: rgba(255,255,255,.1);
        color: rgba(255,255,255,.6);
    }

/* Live client project cards */
.proj-subhead {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 64px 0 24px;
}

    .proj-subhead h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 20px;
        color: var(--navy);
    }

    .proj-subhead::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

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

.live-card {
    display: block;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .live-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--violet), var(--teal));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s;
    }

    .live-card:hover::before {
        transform: scaleX(1);
    }

    .live-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--violet-l);
        transform: translateY(-4px);
    }

.live-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #047857;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.25);
    padding: 4px 10px;
    border-radius: 20px;
}

    .live-status::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #10B981;
        animation: pulse2 2s ease-in-out infinite;
    }

.live-arrow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(124,58,237,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-size: 13px;
    transition: all .3s;
}

.live-card:hover .live-arrow {
    background: var(--violet);
    color: white;
    transform: rotate(45deg);
}

.live-name {
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}

.live-url {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--violet);
    word-break: break-all;
    margin-bottom: 8px;
}

.live-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 960px) {
    .live-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .live-grid {
        grid-template-columns: 1fr;
    }

    .proj-subhead h3 {
        font-size: 17px;
    }
}

/* ── ACHIEVEMENTS ── */
#achievements {
    background: white;
}

.ach-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 56px;
}

.ach-card {
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .35s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

    .ach-card.gold {
        background: linear-gradient(135deg, #78350F, #92400E);
        border: 1px solid rgba(245,158,11,.3);
    }

    .ach-card.dist {
        background: linear-gradient(135deg, var(--navy), var(--navy-l));
        border: 1px solid rgba(124,58,237,.3);
    }

    .ach-card.exp {
        background: linear-gradient(135deg, #065F46, #047857);
        border: 1px solid rgba(16,185,129,.3);
    }

    .ach-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.ach-ico {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.ach-card h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 8px;
}

.ach-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,.68);
    line-height: 1.6;
}

/* ── CTA ── */
#cta {
    background: linear-gradient(135deg, var(--violet) 0%, #4C1D95 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
        background-size: 32px 32px;
    }

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .cta-inner h2 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(30px,4.5vw,52px);
        color: white;
        margin-bottom: 16px;
    }

        .cta-inner h2 em {
            font-style: italic;
            color: var(--violet-ll);
        }

    .cta-inner p {
        font-size: 16.5px;
        color: rgba(255,255,255,.75);
        max-width: 540px;
        margin: 0 auto 36px;
        line-height: 1.75;
    }

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-w {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: white;
    color: var(--violet);
    border: 2px solid white;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all .3s;
}

    .btn-w:hover {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
        transform: translateY(-3px);
    }

.btn-wo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.4);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all .3s;
}

    .btn-wo:hover {
        border-color: white;
        background: rgba(255,255,255,.1);
        transform: translateY(-3px);
    }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.f-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: white;
}

    .f-brand span {
        color: var(--violet-ll);
        font-style: italic;
    }

.f-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

    .f-links a {
        font-size: 13px;
        color: rgba(255,255,255,82%);
        padding: 6px 12px;
        border-radius: 6px;
        transition: all .2s;
    }

        .f-links a:hover {
            color: var(--violet-ll);
            background: rgba(124,58,237,.1);
        }

.f-social {
    display: flex;
    gap: 10px;
}

.f-soc {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,40%);
    background: rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: all .25s;
}

    .f-soc:hover {
        background: var(--violet);
        border-color: var(--violet);
        color: white;
        transform: translateY(-3px);
    }
.f-soc i{
    color:#fff;
}
    .f-copy {
    font-size: 12px;
    color: rgba(255,255,255);
    text-align: center;
    margin-top: 24px;
}

    .f-copy span {
        color: var(--violet-ll);
    }

/* ── SCROLL TOP ── */
#goTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--violet);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: all .35s;
    box-shadow: 0 6px 24px rgba(124,58,237,.4);
}

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

    #goTop:hover {
        background: var(--violet-l);
        transform: translateY(-3px);
    }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
    .nav-inner {
        padding: 0 20px;
    }

    .nav-links {
        gap: 2px;
    }

        .nav-links a {
            padding: 7px 10px;
            font-size: 12.5px;
        }
}

@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 110px 24px 70px;
    }

    .hero-card {
        max-width: 440px;
        margin: 0 auto;
    }

    .hero-float-icon {
        display: none;
    }

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

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

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

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

    .proj-diss {
        grid-column: span 1;
    }

    .ach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .exp-card {
        grid-template-columns: 1fr;
    }

    .exp-side {
        flex-direction: row;
        align-items: center;
        padding: 20px 22px;
        gap: 16px;
    }

    .exp-icon-wrap {
        margin-bottom: 0;
    }

    .nav-inner {
        padding: 0 20px;
        height: 64px;
    }

    .nav-name {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .sec {
        padding: 56px 0;
    }

    .wrap {
        padding: 0 18px;
    }

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

    .hero-h1 {
        font-size: 38px;
    }

    .hero-content {
        padding: 100px 18px 56px;
        gap: 36px;
    }

    .hero-desc {
        font-size: 14.5px;
    }

    .hero-eyebrow {
        font-size: 10.5px;
        padding: 6px 12px;
    }

    .hero-ctas {
        flex-direction: column;
    }

        .hero-ctas a {
            width: 100%;
            justify-content: center;
        }

    .hero-badges {
        gap: 8px;
    }

    .hbadge {
        font-size: 11.5px;
        padding: 5px 11px;
    }

    .hero-card {
        padding: 26px 22px;
    }

    .hc-stats {
        gap: 6px;
    }

    .hcs-val {
        font-size: 22px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-inner h2 {
        font-size: 26px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

        .cta-btns a {
            justify-content: center;
        }

    .nav-avatar {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .nav-name {
        font-size: 13px;
    }

    .nav-inner {
        height: 58px;
        padding: 0 16px;
    }

    .mob-drawer a {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .hero-h1 {
        font-size: 32px;
    }

    .sec-title {
        font-size: 26px;
    }
}

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

@media (max-width: 760px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
