@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Outfit:wght@400;700;900&family=Poppins:wght@400;600;700;800&family=Sora:wght@400;600;700&display=swap');

:root {
  /* Colors */
  --bg-base: #030712;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  
  --accent-green: #00f260;
  --accent-cyan: #05d5ff;
  --accent-gold: #f59e0b;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Sora', sans-serif;

  /* Spacing */
  --section-padding: 120px 5%;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
}

body {
  background-color: transparent;
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background Mesh */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: 
    radial-gradient(circle at 15% 50%, rgba(0, 242, 96, 0.07), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(5, 213, 255, 0.07), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(245, 158, 11, 0.07), transparent 50%);
  z-index: -2;
  pointer-events: none;
}

/* Moving Background Orbs */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.5;
  animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-green);
  top: -150px;
  left: -200px;
}

.shape-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-cyan);
  top: 40%;
  right: -250px;
  animation-delay: -5s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-gold);
  bottom: -100px;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 150px) scale(1.2); }
  100% { transform: translate(-50px, 80px) scale(0.9); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(to right, var(--accent-green), var(--accent-cyan), var(--accent-gold), var(--accent-green));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientText 6s linear infinite;
}

@keyframes gradientText {
  to { background-position: 200% center; }
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  border-radius: 10px;
}

/* Ultra Premium Glassmorphism */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-top: 1px solid var(--border-glow);
  border-left: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 150%;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0, 0.6), 0 0 20px rgba(0, 242, 96, 0.1);
  border-color: rgba(255,255,255,0.2);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(3, 7, 18, 0.5);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.4s ease;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-bg {
  background: linear-gradient(45deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.2rem;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-family: var(--font-accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-accent);
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.nav-links li a:hover {
  color: var(--text-main);
}

.nav-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-btn {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-btn div {
  width: 30px;
  height: 2px;
  background-color: var(--text-main);
  margin: 6px;
  transition: all 0.4s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--section-padding);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: fadeInDown 1s ease;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 1.5rem;
  max-width: 1200px;
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 1;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
  font-weight: 400;
}

.matric-no {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 600;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.6s both;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.matric-no span {
  color: var(--accent-gold);
  margin-right: 8px;
}

/* Ultimate Glow Button */
.cta-button {
  position: relative;
  display: inline-block;
  background: var(--bg-base);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 1s ease 0.8s both;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--accent-green), var(--accent-cyan), var(--accent-gold), var(--accent-green));
  background-size: 300%;
  z-index: -1;
  border-radius: 50px;
  animation: bg-shift 5s linear infinite;
}

.cta-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--bg-base);
  border-radius: 50px;
  z-index: -1;
  transition: background 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  color: var(--accent-green);
  text-shadow: 0 0 10px rgba(0, 242, 96, 0.5);
}

.cta-button:hover::before {
  filter: blur(10px);
}

.cta-button:hover::after {
  background: rgba(3, 7, 18, 0.8);
}

@keyframes bg-shift {
  to { background-position: 300% center; }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.6;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 2px;
  margin: 6px auto;
  animation: scrollDot 2s infinite;
}

/* About Section */
.about {
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 1rem;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  color: var(--accent-green);
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0, 242, 96, 0.2), transparent 50%);
  animation: rotateGlow 10s linear infinite;
}

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

.about-content p {
  margin-bottom: 1.8rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.8rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 20px rgba(5, 213, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.tag {
  padding: 8px 20px;
  background: rgba(255,255,255,0.03);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  font-size: 0.9rem;
  font-family: var(--font-accent);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(0, 242, 96, 0.1);
  border-color: var(--accent-green);
  color: var(--accent-green);
  transform: scale(1.05);
}

/* Timeline Section */
.education {
  padding: var(--section-padding);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-green), var(--accent-cyan), var(--accent-gold));
  opacity: 0.5;
}

.timeline-item {
  margin-bottom: 5rem;
  position: relative;
  width: 50%;
  padding-right: 50px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 50px;
}

.timeline-dot {
  position: absolute;
  right: -12px;
  top: 40px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 4px solid var(--accent-green);
  box-shadow: 0 0 20px var(--accent-green);
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -12px;
  right: auto;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px var(--accent-cyan);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background: var(--text-main);
}

.timeline-content {
  padding: 2.5rem;
}

.timeline-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.timeline-content .school {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content .meta {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 20px;
  font-family: var(--font-accent);
}

/* SIWES Section */
.siwes {
  padding: var(--section-padding);
}

.siwes-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.siwes-highlight {
  font-size: 1.5rem;
  color: var(--text-main);
  font-family: var(--font-display);
  border-left: 4px solid var(--accent-cyan);
  padding-left: 2rem;
  margin: 2.5rem 0;
  background: linear-gradient(90deg, rgba(5, 213, 255, 0.1), transparent);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0 10px 10px 0;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 3rem;
}

.tech-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  font-size: 0.9rem;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-icon:hover {
  transform: translateY(-10px) rotate(5deg);
  border-color: var(--accent-green);
  color: var(--text-main);
  background: rgba(0, 242, 96, 0.1);
  box-shadow: 0 10px 20px rgba(0, 242, 96, 0.2);
}

.siwes-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.achievement-card {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.achievement-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

/* Future Goals Section */
.goals {
  padding: var(--section-padding);
  text-align: center;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-inline: auto;
}

.goal-card {
  padding: 4rem 2.5rem;
  text-align: center;
}

.goal-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 242, 96, 0.3));
}

.goal-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}

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

/* Contact Section */
.contact {
  padding: var(--section-padding);
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--text-main);
  padding: 3rem;
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-icon-wrapper {
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 30px rgba(0, 242, 96, 0.4);
  transform: scale(1.15) rotate(10deg);
}

.contact-info h4 {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info p {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Footer */
footer {
  padding: 6rem 5% 3rem;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.footer-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.footer-quote {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.2rem;
  margin: 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
  background: var(--text-main);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-accent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 { font-size: clamp(3rem, 6vw, 5rem); }
  .about-grid, .siwes-container { gap: 3rem; }
}

@media (max-width: 992px) {
  .about-grid, .siwes-container {
    grid-template-columns: 1fr;
  }
  .about-image { order: -1; }
  .timeline::before { left: 40px; }
  .timeline-item { width: 100%; padding-left: 90px; padding-right: 0; }
  .timeline-item:nth-child(even) { margin-left: 0; padding-left: 90px; }
  .timeline-dot { left: 28px !important; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 5%;
  }
  .glass-card {
    padding: 1.8rem;
  }
  .menu-btn { display: block; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .nav-links.active { right: 0; }
  .nav-links li a { font-size: 1.5rem; }
  
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.2rem); margin-bottom: 2.5rem; }
  .hero-desc { font-size: 1rem; }
  
  .timeline::before { left: 24px; }
  .timeline-item { padding-left: 60px; margin-bottom: 3rem; }
  .timeline-item:nth-child(even) { padding-left: 60px; }
  .timeline-dot { left: 12px !important; width: 20px; height: 20px; }
  .timeline-content { padding: 1.5rem; }
  .timeline-content h3 { font-size: 1.4rem; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .goals-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid, .siwes-container { gap: 2rem; }
  
  .siwes-highlight { font-size: 1.2rem; padding-left: 1.5rem; }
  .tech-icon { width: 60px; height: 60px; font-size: 0.8rem; }
  
  .contact-card { padding: 2rem 1.5rem; }
  footer { padding: 4rem 5% 2rem; }
  .footer-quote { font-size: 1rem; }
  
  /* Hamburger Animation */
  .menu-btn.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  .menu-btn.active div:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.active div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }
}

/* Profile Image Slider */
.profile-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  border-radius: 20px;
  animation: slideCrossfade 20s infinite ease-in-out;
  z-index: 2;
}

.profile-slide:nth-child(1) { animation-delay: 0s; }
.profile-slide:nth-child(2) { animation-delay: 4s; }
.profile-slide:nth-child(3) { animation-delay: 8s; }
.profile-slide:nth-child(4) { animation-delay: 12s; }
.profile-slide:nth-child(5) { animation-delay: 16s; }

@keyframes slideCrossfade {
  0%   { opacity: 0; transform: scale(1.05); }
  5%   { opacity: 1; transform: scale(1); }
  20%  { opacity: 1; transform: scale(1); }
  25%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.05); }
}
