/* ===========================
   Design Tokens — Warm Light Theme
   =========================== */
:root {
    --bg-cream: #faf7f2;
    --bg-warm: #f5f0e8;
    --bg-card: #ffffff;
    --bg-card-hover: #fffcf7;

    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;

    --coral: #ff6b6b;
    --coral-light: rgba(255, 107, 107, 0.1);
    --coral-border: rgba(255, 107, 107, 0.25);

    --amber: #f7b731;
    --amber-light: rgba(247, 183, 49, 0.1);
    --amber-border: rgba(247, 183, 49, 0.25);

    --indigo: #5c6ac4;
    --indigo-light: rgba(92, 106, 196, 0.1);
    --indigo-border: rgba(92, 106, 196, 0.25);

    --teal: #2ec4b6;
    --teal-light: rgba(46, 196, 182, 0.1);
    --teal-border: rgba(46, 196, 182, 0.25);

    --gradient-main: linear-gradient(135deg, #ff6b6b, #f7b731);
    --gradient-cool: linear-gradient(135deg, #5c6ac4, #2ec4b6);
    --gradient-warm: linear-gradient(135deg, #ff6b6b, #5c6ac4);

    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 26, 46, 0.1);
    --shadow-coral: 0 8px 30px rgba(255, 107, 107, 0.15);
    --shadow-amber: 0 8px 30px rgba(247, 183, 49, 0.15);

    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-cream);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--coral);
    color: white;
}

/* ===========================
   Geometric Background
   =========================== */
.geo-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    animation: geoFloat 25s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--coral);
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--indigo);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    top: 20%;
    left: 10%;
    animation-delay: -15s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: var(--gradient-main);
    bottom: 20%;
    right: 15%;
    animation-delay: -8s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes geoFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -20px) rotate(5deg) scale(1.03); }
    50% { transform: translate(-15px, 15px) rotate(-3deg) scale(0.97); }
    75% { transform: translate(10px, -10px) rotate(2deg) scale(1.01); }
}

/* ===========================
   Navigation
   =========================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 36px;
    background: rgba(250, 247, 242, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: all 0.3s var(--ease);
}

#navbar.scrolled {
    padding: 12px 36px;
    background: rgba(250, 247, 242, 0.92);
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--coral);
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 99px;
    transition: all 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text-dark);
    background: rgba(26, 26, 46, 0.04);
}

.nav-link.active {
    color: var(--coral);
    background: var(--coral-light);
}

#nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

#nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

#nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#nav-burger.open span:nth-child(2) { opacity: 0; }
#nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    #nav-burger { display: flex; }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 2px;
        border-bottom: 1px solid rgba(26, 26, 46, 0.08);
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease);
    }

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

    .nav-link {
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: var(--radius-xs);
    }
}

/* ===========================
   Layout
   =========================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===========================
   Section Labels
   =========================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.label-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 0.1em;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.label-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 48px;
}

/* ===========================
   Gradient Text
   =========================== */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Reveal Animations
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 99px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 107, 107, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(26, 26, 46, 0.12);
}

.btn-outline:hover {
    color: var(--coral);
    border-color: var(--coral-border);
    background: var(--coral-light);
    transform: translateY(-3px);
}

/* ===========================
   Hero
   =========================== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    position: relative;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--coral);
    background: var(--coral-light);
    border: 1px solid var(--coral-border);
    padding: 10px 24px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 28px;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-name .line {
    display: block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.hero-counters {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
    margin-bottom: 44px;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.counter-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

.counter-divider {
    width: 1px;
    height: 40px;
    background: rgba(26, 26, 46, 0.1);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.contact-link:hover {
    color: var(--coral);
}

.contact-sep {
    color: rgba(26, 26, 46, 0.2);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 2px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===========================
   About
   =========================== */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-main h2 {
    margin-bottom: 24px ;
}

.about-main p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-sm);
}

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

.card-coral { border-left: 4px solid var(--coral); }
.card-amber { border-left: 4px solid var(--amber); }
.card-indigo { border-left: 4px solid var(--indigo); }
.card-teal { border-left: 4px solid var(--teal); }

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===========================
   Education
   =========================== */
.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.edu-item {
    position: relative;
}

.edu-marker {
    position: absolute;
    top: 28px;
    left: -12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-main);
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.3);
    z-index: 1;
    display: none;
}

.edu-card-solid {
    background: var(--bg-card);
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    height: 100%;
}

.edu-card-solid:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.edu-period {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.edu-card-solid h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.edu-subtitle {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 4px;
}

.edu-location {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.edu-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--indigo);
    background: var(--indigo-light);
    border: 1px solid var(--indigo-border);
    padding: 4px 12px;
    border-radius: 99px;
    display: inline-block;
}

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

/* ===========================
   Experience
   =========================== */
.exp-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exp-card {
    background: var(--bg-card);
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.exp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.exp-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.bar-coral { background: var(--gradient-main); }
.bar-amber { background: linear-gradient(135deg, var(--amber), var(--teal)); }

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.exp-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    background: var(--gradient-main);
    padding: 4px 14px;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 8px;
}

.exp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.exp-company {
    font-size: 0.9rem;
    color: var(--coral);
    font-weight: 600;
}

.exp-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.exp-date {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.exp-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.exp-list {
    list-style: none;
    padding: 0;
}

.exp-list li {
    font-size: 0.85rem;
    color: var(--text-body);
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.exp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral-light);
    border: 2px solid var(--coral);
}

.exp-list li strong {
    color: var(--text-dark);
}

/* ===========================
   Projects
   =========================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

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

.project-card:hover::before {
    opacity: 1;
}

.project-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.project-tech {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.project-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.project-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

/* ===========================
   Achievements
   =========================== */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achieve-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.achieve-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.achieve-card[data-color="coral"] { border-left: 4px solid var(--coral); }
.achieve-card[data-color="amber"] { border-left: 4px solid var(--amber); }
.achieve-card[data-color="indigo"] { border-left: 4px solid var(--indigo); }
.achieve-card[data-color="teal"] { border-left: 4px solid var(--teal); }

.achieve-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
}

.achieve-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.achieve-body p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 10px;
}

.achieve-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-light);
    border: 1px solid var(--coral-border);
    padding: 4px 14px;
    border-radius: 99px;
    display: inline-block;
}

/* ===========================
   Skills
   =========================== */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.skill-group-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    cursor: default;
    border: 1px solid;
}

.pill-coral {
    color: var(--text-body);
    background: white;
    border-color: rgba(26, 26, 46, 0.08);
}

.pill-coral.featured {
    color: var(--coral);
    background: var(--coral-light);
    border-color: var(--coral-border);
    font-weight: 600;
}

.pill-indigo {
    color: var(--text-body);
    background: white;
    border-color: rgba(26, 26, 46, 0.08);
}

.pill-indigo.featured {
    color: var(--indigo);
    background: var(--indigo-light);
    border-color: var(--indigo-border);
    font-weight: 600;
}

.pill-amber {
    color: var(--text-body);
    background: white;
    border-color: rgba(26, 26, 46, 0.08);
}

.pill-amber.featured {
    color: #c48a00;
    background: var(--amber-light);
    border-color: var(--amber-border);
    font-weight: 600;
}

.pill-teal {
    color: var(--text-body);
    background: white;
    border-color: rgba(26, 26, 46, 0.08);
}

.pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Footer
   =========================== */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
    padding: 48px 0;
    background: var(--bg-warm);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--coral);
}

/* ===========================
   Scrollbar
   =========================== */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(26, 26, 46, 0.12);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 26, 46, 0.2);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 600px) {
    section {
        padding: 64px 0;
    }

    .hero-name {
        font-size: 3rem;
    }

    .hero-counters {
        gap: 20px;
    }

    .counter-number {
        font-size: 2.2rem;
    }

    .achieve-card {
        flex-direction: column;
        gap: 14px;
    }

    .exp-header {
        flex-direction: column;
    }

    .exp-meta {
        text-align: left;
    }
}
