@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/*
  COLOR PALETTE — Dark Purple Theme
  --deepest:   #11001C  (body bg)
  --dark:      #1A0129  (section-dark)
  --mid:       #220135  (card backgrounds)
  --accent:    #3A025B  (gradients, borders)
  --bright:    #520380  (primary accent base)
  --highlight: #A855F7  (text accent, labels)
  --light-acc: #C084FC  (hover states)
  --heading:   #F3E8FF  (headings)
  --body-text: #C4B5D0  (body text)
  --muted:     #8B7A9E  (muted text)
*/

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #11001C;
    color: #C4B5D0;
    line-height: 1.7;
    overflow-x: hidden;
}

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

strong {
    color: #C084FC;
    font-weight: 600;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background: rgba(17, 0, 28, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 5%;
    border-bottom: 1px solid rgba(82, 3, 128, 0.2);
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #A855F7, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #C4B5D0;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #C084FC;
}

.nav-resume-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1.5px solid #A855F7;
    border-radius: 8px;
    color: #A855F7;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.nav-resume-btn:hover {
    background: #A855F7;
    color: #11001C;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #F3E8FF;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(17, 0, 28, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 20px;
    font-weight: 500;
    color: #C4B5D0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #C084FC;
}

/* ===== FULL SECTION LAYOUT ===== */
.full-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    position: relative;
    scroll-snap-align: start;
}

.section-dark {
    background: #1A0129;
}

.section-container {
    max-width: 1100px;
    width: 100%;
}

/* ===== SECTION TYPOGRAPHY ===== */
.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #A855F7;
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #F3E8FF;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: rgba(34, 1, 53, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(82, 3, 128, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(58, 2, 91, 0.35);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(82, 3, 128, 0.15), 0 0 40px rgba(168, 85, 247, 0.06);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #520380, #A855F7);
    color: #F3E8FF;
    box-shadow: 0 4px 20px rgba(82, 3, 128, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.btn-outline {
    background: transparent;
    color: #A855F7;
    border: 1.5px solid rgba(168, 85, 247, 0.4);
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #A855F7;
}

.btn-ghost {
    background: transparent;
    color: #C4B5D0;
}

.btn-ghost:hover {
    color: #C084FC;
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #520380, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3A025B, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #A855F7, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
}

.hero-greeting {
    font-size: 16px;
    font-weight: 500;
    color: #C084FC;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease both;
}

.hero-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 8vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #F3E8FF 0%, #C084FC 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: #C4B5D0;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
    font-size: 16px;
    color: #8B7A9E;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.highlight {
    color: #C084FC;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-socials a {
    color: #8B7A9E;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(82, 3, 128, 0.3);
}

.hero-socials a:hover {
    color: #C084FC;
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.08);
}

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

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8B7A9E;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #A855F7, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    color: #C4B5D0;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: rgba(34, 1, 53, 0.5);
    border: 1px solid rgba(82, 3, 128, 0.2);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(58, 2, 91, 0.35);
    transform: translateY(-4px);
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #A855F7, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #8B7A9E;
    font-weight: 500;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-card {
    padding: 32px;
    margin-bottom: 20px;
}

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

.exp-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #F3E8FF;
}

.exp-company {
    font-size: 14px;
    color: #A855F7;
    margin-top: 4px;
    font-weight: 500;
}

.exp-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(168, 85, 247, 0.15);
    color: #C084FC;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.exp-date {
    font-size: 13px;
    color: #8B7A9E;
    font-weight: 500;
    white-space: nowrap;
}

.exp-project {
    font-size: 14px;
    color: #C4B5D0;
    margin-bottom: 8px;
}

.exp-desc {
    font-size: 14px;
    color: #8B7A9E;
    margin-bottom: 16px;
    line-height: 1.7;
}

.exp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exp-list li {
    font-size: 14px;
    color: #C4B5D0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.exp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A855F7;
}

/* ===== TECH STACK SECTION ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-category {
    padding: 30px;
    background: rgba(34, 1, 53, 0.4);
    border: 1px solid rgba(82, 3, 128, 0.15);
    border-radius: 16px;
    transition: all 0.4s;
}

.tech-category:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(58, 2, 91, 0.3);
}

.tech-cat-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-chip {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(82, 3, 128, 0.2);
    color: #F3E8FF;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tech-chip:hover {
    background: rgba(168, 85, 247, 0.15);
    color: #C084FC;
    border-color: rgba(168, 85, 247, 0.3);
}

/* ===== PROJECT SHOWCASE SECTION ===== */
.project-showcase {
    padding: 40px;
}

.project-showcase-header {
    margin-bottom: 20px;
}

.project-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    width: fit-content;
    background: rgba(168, 85, 247, 0.15);
    color: #C084FC;
}

.project-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F3E8FF;
    margin-bottom: 6px;
}

.project-client {
    font-size: 14px;
    color: #A855F7;
    font-weight: 500;
}

.project-client a {
    color: #C084FC;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.project-client a:hover {
    color: #F3E8FF;
}

.project-showcase-desc {
    font-size: 15px;
    color: #C4B5D0;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
}

.project-links {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #C084FC;
    transition: all 0.3s;
}

.project-link:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #A855F7;
    color: #F3E8FF;
}

.project-link svg {
    flex-shrink: 0;
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.project-highlight-item {
    padding: 24px;
    border-radius: 12px;
    background: rgba(34, 1, 53, 0.4);
    border: 1px solid rgba(82, 3, 128, 0.15);
    transition: all 0.3s;
}

.project-highlight-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(58, 2, 91, 0.3);
}

.project-highlight-item h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #C084FC;
    margin-bottom: 8px;
}

.project-highlight-item p {
    font-size: 13px;
    color: #C4B5D0;
    line-height: 1.7;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(82, 3, 128, 0.2);
    color: #C4B5D0;
    font-weight: 500;
    transition: all 0.3s;
}

.project-tech span:hover {
    background: rgba(168, 85, 247, 0.15);
    color: #C084FC;
}

/* ===== EDUCATION SECTION ===== */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.edu-card {
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 30px;
}

.edu-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #A855F7;
    white-space: nowrap;
    min-width: 120px;
}

.edu-degree {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #F3E8FF;
}

.edu-school {
    font-size: 14px;
    color: #C4B5D0;
    width: 100%;
    padding-left: 150px;
}

.edu-detail {
    font-size: 13px;
    color: #8B7A9E;
    width: 100%;
    padding-left: 150px;
}

.cert-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #F3E8FF;
    margin-bottom: 20px;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-chip {
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(34, 1, 53, 0.5);
    border: 1px solid rgba(82, 3, 128, 0.2);
    color: #C4B5D0;
    font-weight: 500;
    transition: all 0.3s;
}

.cert-chip:hover {
    border-color: rgba(168, 85, 247, 0.35);
    color: #C084FC;
    background: rgba(58, 2, 91, 0.3);
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    text-align: center;
}

.contact-subtitle {
    font-size: 16px;
    color: #8B7A9E;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
}

a.contact-card {
    cursor: pointer;
}

a.contact-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(58, 2, 91, 0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A855F7;
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 12px;
    color: #8B7A9E;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.contact-card-value {
    font-size: 14px;
    color: #F3E8FF;
    font-weight: 500;
    word-break: break-all;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 30px 5%;
    border-top: 1px solid rgba(82, 3, 128, 0.2);
    background: #11001C;
}

.footer p {
    font-size: 13px;
    color: #8B7A9E;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for children */
.about-stats .stat-card:nth-child(1) { transition-delay: 0s; }
.about-stats .stat-card:nth-child(2) { transition-delay: 0.1s; }
.about-stats .stat-card:nth-child(3) { transition-delay: 0.2s; }
.about-stats .stat-card:nth-child(4) { transition-delay: 0.3s; }

.tech-grid .tech-category:nth-child(1) { transition-delay: 0s; }
.tech-grid .tech-category:nth-child(2) { transition-delay: 0.1s; }
.tech-grid .tech-category:nth-child(3) { transition-delay: 0.2s; }
.tech-grid .tech-category:nth-child(4) { transition-delay: 0.3s; }

.project-highlights .project-highlight-item:nth-child(1) { transition-delay: 0s; }
.project-highlights .project-highlight-item:nth-child(2) { transition-delay: 0.1s; }
.project-highlights .project-highlight-item:nth-child(3) { transition-delay: 0.2s; }
.project-highlights .project-highlight-item:nth-child(4) { transition-delay: 0.3s; }

.cert-grid .cert-chip:nth-child(1) { transition-delay: 0s; }
.cert-grid .cert-chip:nth-child(2) { transition-delay: 0.05s; }
.cert-grid .cert-chip:nth-child(3) { transition-delay: 0.1s; }
.cert-grid .cert-chip:nth-child(4) { transition-delay: 0.15s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-highlights {
        grid-template-columns: 1fr;
    }

    .project-showcase {
        padding: 30px;
    }
}

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

@media (max-width: 768px) {
    .nav-links,
    .nav-resume-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .full-section {
        padding: 80px 6%;
    }

    .hero-content {
        padding-top: 40px;
    }

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

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .edu-school,
    .edu-detail {
        padding-left: 0;
    }

    .edu-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .scroll-indicator {
        display: none;
    }

    .project-highlights {
        grid-template-columns: 1fr;
    }

    .project-showcase {
        padding: 24px;
    }

    .project-title {
        font-size: 22px;
    }

    .project-links {
        flex-direction: column;
    }
}

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 20px 14px;
    }

    .stat-number {
        font-size: 28px;
    }

    .experience-card {
        padding: 24px;
    }

    .project-showcase {
        padding: 20px;
    }

    .contact-form {
        padding: 24px;
    }
}
