    /* RESET */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'League Spartan', Helvetica, Arial, sans-serif;
        color: #f3f3f3;
        background-color: #1c1d25;
        margin: 0; 
        padding: 0;
        position: relative;
        line-height: 1.6;
        transition: background 0.3s, color 0.3s;
        overflow-x: hidden;
    }

/* TYPING SPLASH SCREEN */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.typing-container {
    text-align: center;
    position: relative;
}

.typing-text {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    font-family: 'Courier New', 'Monaco', monospace;
    color: #5a89ff;
    margin: 0;
    text-shadow: 0 0 10px #5a89ff;
    min-height: 1.2em;
}

.typing-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #5a89ff;
    margin-top: 1rem;
    font-family: 'Courier New', 'Monaco', monospace;
    font-weight: 500;
    text-shadow: 0 0 5px #5a89ff;
    min-height: 1.2em;
}

.cursor {
    display: inline-block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #5a89ff;
    animation: blink 1s infinite;
    margin-left: 5px;
}

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

/* SMOOTH LOGO SPLASH SCREEN (for other pages) */
.logo-splash-container {
    text-align: center;
    position: relative;
    animation: logoFadeIn 0.6s ease-out;
}

.splash-name {
    font-size: clamp(6rem, 8vw, 7rem);
    font-weight: 1000;
    color: #ffffff;
    margin: 0 0 2rem 0;
    text-shadow: 0 0 10px #ffffff;
    animation: nameGlow 1.5s ease-in-out infinite;
}

.splash-logo {
    width: 120px;
    height: 120px;
    margin: 0;
    animation: logoFloat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(90, 137, 255, 0.5));
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
      opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes nameGlow {
    0%, 100% {
        text-shadow: 0 0 10px #ffffff;
    }
    50% {
        text-shadow: 0 0 20px #ffffff, 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

#page-wrap {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.loaded #page-wrap {
    opacity: 1;
}

/* FADE-IN ON SCROLL ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
      opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* PAGE TRANSITIONS */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ACTIVE NAVIGATION STYLES */
.main-nav nav a.active {
    color: #5a89ff;
    position: relative;
}

.main-nav nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5a89ff;
    border-radius: 1px;
}

/* NAVIGATION */
.main-nav {
      position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 29, 37, 0.95);
    backdrop-filter: blur(10px);
      z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #e0e0e0;
      text-decoration: none;
    font-weight: 500;
      transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #5a89ff;
}

.hamburger {
        display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

/* INTERACTIVE HOME PAGE STYLES */
.interactive-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1c1d25;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: #ffffff;
        margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #5a89ff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(90, 137, 255, 0.3));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(90, 137, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #5a89ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
}

.hero-actions {
        display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #5a89ff, #ffffff);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* FEATURED PROJECTS */
.featured-projects {
    padding: 6rem 0;
    background: #1c1d25;
}

.container {
    max-width: 1200px;
      margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4rem;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card-large {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 137, 255, 0.2);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-emoji {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(90, 137, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.project-card:hover .project-emoji {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(90, 137, 255, 0.3));
}

.project-card-large:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-large:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: #5a89ff;
    text-decoration: none;
      font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #5a89ff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #5a89ff;
    color: white;
}

.project-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.project-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
.project-tech span {
    background: rgba(90, 137, 255, 0.2);
    color: #5a89ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
      font-weight: 500;
    }

.projects-cta {
    text-align: center;
}

/* QUICK ABOUT */
.quick-about {
    padding: 6rem 0;
    background: #ffffff;
}

.about-preview {
      display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
      color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #5a89ff;
    box-shadow: 0 20px 40px rgba(90, 137, 255, 0.3);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn.primary, .btn.secondary {
    background: #5a89ff;
    color: white;
    border: 2px solid #5a89ff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 137, 255, 0.3);
}

.btn.primary:hover, .btn.secondary:hover {
    background: #4a79ef;
    border-color: #4a79ef;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 137, 255, 0.4);
}

/* PAGE LAYOUTS */
.about-page, .experience-page, .projects-page, .contact-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page {
    background: #1c1d25;
}

.experience-page {
    background: #ffffff;
    color: #333;
}

.projects-page {
    background: #1c1d25;
}

.contact-page {
    background: #1c1d25;
}

/* ABOUT PAGE STYLES */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.about-text em {
    color: #5a89ff;
    font-style: normal;
    font-weight: 600;
}

.profile-pic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #5a89ff;
    box-shadow: 0 20px 40px rgba(90, 137, 255, 0.3);
}

.skills-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.tag-row {
    margin-bottom: 2rem;
}

.tag-row h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #5a89ff;
}

.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-group span {
    background: rgba(90, 137, 255, 0.1);
    color: #5a89ff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(90, 137, 255, 0.3);
}

/* EXPERIENCE PAGE STYLES */
.experience-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #333;
}

.experience-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
.experience-entry {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.experience-left {
    min-width: 150px;
    font-weight: 600;
    color: #5a89ff;
    font-size: 1.1rem;
}

.experience-right h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
.experience-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-tags span {
    background: #5a89ff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
.leadership-section {
    margin-top: 4rem;
    padding: 0 2rem;
}

.leadership-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.leadership-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.leadership-card {
    flex: 0 0 300px;
    max-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.leadership-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.leadership-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* PROJECTS PAGE STYLES */
.projects-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}
  
.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(90, 137, 255, 0.2);
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
  }
  
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}
  
  .project-tags span {
    background: rgba(90, 137, 255, 0.2);
    color: #5a89ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    justify-content: flex-start;
}

/* CONTACT PAGE STYLES */
.contact-page h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 137, 255, 0.2);
    border-radius: 50%;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #5a89ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
.contact-link:hover {
    color: #ffffff;
  }
  
  .contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a89ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.resume-section {
    text-align: center;
    margin-top: 4rem;
    padding: 0 2rem;
}

.resume-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.resume-section p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.btn-resume {
    display: inline-block;
    background: #5a89ff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 137, 255, 0.3);
}

.btn-resume:hover {
    background: #4a79ef;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 137, 255, 0.4);
}

/* FOOTER */
  .footer {
    background: #1c1d25;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.footer-links {
  display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e0e0e0;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5a89ff;
}

.footer-socials {
  display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #5a89ff;
    transform: translateY(-2px);
}

.footer-socials img {
  width: 20px;
  height: 20px;
    filter: brightness(0) invert(1);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-pic {
        width: 250px;
        height: 250px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .leadership-card {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .experience-entry {
        flex-direction: column;
        gap: 1rem;
    }
    
    .experience-left {
        min-width: auto;
        text-align: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-preview {
        flex-direction: column;
        text-align: center;
    }
}