/* ============================================
   JAY TRIVEDI — PORTFOLIO DESIGN SYSTEM
   Glassmorphism • GSAP Animations • Particles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --primary-glow: rgba(13, 148, 136, 0.4);
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --dark: #0a0f1c;
    --dark-light: #111827;
    --dark-lighter: #1e293b;
    --dark-card: rgba(17, 24, 39, 0.6);
    --gray-100: #f1f5f9;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --glass-bg: rgba(17, 24, 39, 0.45);
    --glass-border: rgba(148, 163, 184, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --noise-opacity: 0.03;
}

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

html {
    scroll-behavior: auto;
    /* Lenis handles smooth scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
    cursor: none;
}

/* Hide default cursor on interactive elements */
a,
button,
input,
textarea,
select,
[role="button"],
.project-card {
    cursor: none;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ---------- Selection ---------- */
::selection {
    background: var(--primary);
    color: white;
}

/* ---------- Smooth transitions ---------- */
a,
button {
    transition: all var(--transition-base);
}

/* ============================================
   PRELOADER / LOADING SCREEN
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: white;
    position: relative;
}

.preloader-logo .dot {
    color: var(--primary);
    display: inline-block;
    animation: dotPulse 1.2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.preloader-bar-container {
    width: 200px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.preloader-percent {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 4px;
    font-variant-numeric: tabular-nums;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width var(--transition-fast), height var(--transition-fast), background var(--transition-fast);
    mix-blend-mode: normal;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(13, 148, 136, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width var(--transition-base), height var(--transition-base),
        border-color var(--transition-base), background var(--transition-base);
}

.cursor-dot.active {
    width: 6px;
    height: 6px;
    background: white;
}

.cursor-ring.active {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
    background: rgba(13, 148, 136, 0.08);
}

.cursor-ring.text-mode {
    width: 80px;
    height: 80px;
    border-color: transparent;
    background: rgba(13, 148, 136, 0.1);
    mix-blend-mode: difference;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body,
    a,
    button,
    input,
    textarea,
    select,
    [role="button"],
    .project-card {
        cursor: auto;
    }
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: var(--noise-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-vivid {
    background: linear-gradient(135deg, #2dd4bf 0%, var(--accent-light) 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GLASSMORPHISM CARD
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), border-color var(--transition-base),
        box-shadow var(--transition-base);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--glass-highlight) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: 0 8px 32px rgba(13, 148, 136, 0.1),
        0 0 0 1px rgba(13, 148, 136, 0.05);
    transform: translateY(-4px);
}

/* ============================================
   ANIMATED GRADIENT BORDER CARD
   ============================================ */
.gradient-border-card {
    position: relative;
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition-smooth);
}

.gradient-border-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, transparent 0%, transparent 40%,
            rgba(13, 148, 136, 0.2) 50%, transparent 60%, transparent 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderShimmer 6s linear infinite;
    pointer-events: none;
}

.gradient-border-card:hover::before {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    opacity: 0.6;
}

@keyframes borderShimmer {
    0% {
        background-position: 0% 0%;
    }

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

/* ============================================
   GLOW EFFECTS
   ============================================ */
.glow-primary {
    box-shadow: 0 0 40px var(--primary-glow);
}

.glow-hover:hover {
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(13, 148, 136, 0.15);
}

/* ============================================
   REVEAL ANIMATIONS (GSAP targets)
   ============================================ */
.reveal-text {
    clip-path: inset(0 0 100% 0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
}

.stagger-item {
    opacity: 0;
    transform: translateY(40px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.hero-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-floating-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.hero-floating-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 10%;
    left: 10%;
    animation-delay: -3s;
}

.hero-floating-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 40%;
    animation-delay: -5s;
}

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

    100% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* Profile Image */
.profile-container {
    position: relative;
    display: inline-block;
}

.profile-ring {
    display: none;
}

.profile-ring::after {
    display: none;
}

@keyframes profileRingSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.profile-image-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    border: 3px solid rgba(13, 148, 136, 0.6);
    box-shadow:
        0 0 40px rgba(13, 148, 136, 0.25),
        0 0 80px rgba(13, 148, 136, 0.1);
}

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

    100% {
        transform: translateY(-15px);
    }
}

.profile-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.profile-container:hover .profile-image-wrapper img {
    filter: grayscale(0%);
}

/* Profile glow behind */
.profile-glow {
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
    filter: blur(30px);
    animation: glowPulse 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.15);
    }
}

/* Typewriter cursor */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 0.8s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 0.65rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        opacity: 1;
        top: 6px;
    }

    50% {
        opacity: 0.3;
        top: 18px;
    }
}

/* ============================================
   SECTION STYLING
   ============================================ */
section {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 640px;
    line-height: 1.7;
}

/* Section divider wave */
.section-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ============================================
   STATS CARDS
   ============================================ */
.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

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

.stat-card:hover {
    border-color: rgba(13, 148, 136, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-glow), transparent);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-dot {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
    }
}

.timeline-dot.dot-primary {
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--dark), 0 0 20px var(--primary-glow);
}

.timeline-dot.dot-accent {
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--dark), 0 0 15px var(--accent-glow);
}

.timeline-dot.dot-muted {
    background: var(--gray-600);
    box-shadow: 0 0 0 4px var(--dark);
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-smooth);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(13, 148, 136, 0.3) 50%, transparent 70%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(13, 148, 136, 0.08);
}

.project-card:hover::after {
    opacity: 1;
    animation: borderShimmer 3s linear infinite;
}

.project-card .project-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.project-card .project-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(12px);
    opacity: 0.5;
}

/* ============================================
   TECH STACK MARQUEE
   ============================================ */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-light), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-light), transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.marquee-item:hover {
    border-color: rgba(13, 148, 136, 0.3);
    color: white;
    transform: scale(1.05);
}

.marquee-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.contact-link:hover .contact-icon-box {
    background: var(--primary);
}

.contact-link:hover .contact-icon-box i {
    color: white;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(10, 15, 28, 0.6);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: white;
    font-family: inherit;
    font-size: 0.925rem;
    transition: all var(--transition-base);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-600);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

/* ============================================
   PROJECT MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
}

.modal-container {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    max-width: 56rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Modal Open - prevent body scroll */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-dark-light {
    background-color: var(--dark-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .profile-image-wrapper {
        width: 240px;
        height: 240px;
    }

    .hero-floating-orb.orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-floating-orb.orb-2 {
        width: 250px;
        height: 250px;
    }

    .hero-floating-orb.orb-3 {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }
}