:root {
  --bg-main: #000;
  --bg-card: rgba(49,51,110,0.18);
  --text-main: #f3f4f6;
  --text-accent: #6366f1;
  --text-secondary: #a5b4fc;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
body {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  transition: background 0.3s, color 0.3s;
}
body.dark-mode {
  background: linear-gradient(135deg, #18181b 0%, #232136 100%);
  color: #fff;
}

.glass {
  background: rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
}
body.dark-mode .glass {
  background: rgba(24,24,27,0.7);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(120deg, #a21caf22 0%, #3b82f622 100%);
  box-shadow: 0 4px 32px #a21caf22;
}
.hero-logo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 32px #a21caf44;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #a21caf;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: #3b0764;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-desc {
  font-size: 1.2rem;
  color: #3b0764;
  margin-bottom: 1.5rem;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #a21caf 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px #a21caf22;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #3b82f6 0%, #a21caf 100%);
  box-shadow: 0 8px 32px #a21caf44;
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.card {
  margin-bottom: 2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px #a21caf22;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.about-grid img {
  width: 100%; height: 180px; object-fit: cover; border-radius: 1rem;
  box-shadow: 0 2px 8px #a21caf22;
}
.about-text { grid-column: span 2; }
.about-stats { display: flex; gap: 2rem; margin-top: 1rem; }
.about-stats div { background: #a21caf22; border-radius: 1rem; padding: 1rem 2rem; font-weight: bold; color: #a21caf; font-size: 1.1rem; }
body.dark-mode .about-stats div { background: #a21caf44; color: #fff; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f3e8ff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 2px 8px #a21caf22;
  font-weight: 600;
  color: #a21caf;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.skill-card img { width: 48px; height: 48px; margin-bottom: 0.5rem; }
.skill-card:hover, .skill-card:focus { background: #a21caf22; transform: scale(1.05); outline: none; }
body.dark-mode .skill-card { background: #232136; color: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.portfolio-image {
  width: 100%; height: 180px; object-fit: cover; border-radius: 1rem; cursor: pointer;
  box-shadow: 0 2px 8px #a21caf22;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-image:hover, .portfolio-image:focus {
  transform: scale(1.04);
  box-shadow: 0 8px 32px #a21caf44;
  outline: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-embed iframe {
  width: 100%; height: 200px; border-radius: 1rem; border: none;
}
.video-file {
  width: 100%; height: 200px; border-radius: 1rem; background: #232136;
}

.footer {
  text-align: center;
  padding: 2rem 0 0.5rem 0;
  color: #a1a1aa;
  font-size: 1rem;
  background: none;
}

/* Site Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #64748b22;
  padding: 2rem 1rem 1rem 1rem;
}
/* Compact variant */
.site-footer.footer-compact { padding: 0.3rem 0.6rem 0.3rem 0.6rem; color: #111827; }
.site-footer.footer-compact .footer-content {
  display: flex; /* override grid */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  max-width: 900px;
}
.site-footer.footer-compact .footer-col {
  margin: 0;
  padding: 0;
  text-align: center;
}
.site-footer.footer-compact .footer-brand { font-size: 0.98rem; margin: 0; line-height: 1.1; color: #111827; }
.site-footer.footer-compact .footer-tag { font-size: 0.78rem; line-height: 1.1; color: #111827; }
.site-footer.footer-compact .footer-col h4 { font-size: 0.86rem; margin: 0.15rem 0; line-height: 1.1; color: #111827; }
.site-footer.footer-compact .footer-links,
.site-footer.footer-compact .footer-contact {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: start;
  gap: 0.2rem 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Split list items with bullets for readability */
.site-footer.footer-compact .footer-links,
.site-footer.footer-compact .footer-contact {
  list-style: disc inside;
}
.site-footer.footer-compact .footer-links li,
.site-footer.footer-compact .footer-contact li {
  display: list-item;
}
/* On wider screens, split into columns neatly */
@media (min-width: 700px) {
  .site-footer.footer-compact .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem 1rem;
    align-items: start;
    justify-content: center;
    text-align: left;
  }
  .site-footer.footer-compact .footer-col {
    text-align: left;
  }
  .site-footer.footer-compact .footer-col:not(:first-child) {
    border-left: 1px solid #e5e7eb;
    padding-left: 0.8rem;
  }
}
.site-footer.footer-compact .footer-links a { font-size: 0.82rem; line-height: 1.1; display: inline-block; color: #111827; text-decoration: none; }
.site-footer.footer-links a:hover, .site-footer.footer-links a:focus { color: #000; outline: none; }
.site-footer.footer-compact .footer-contact { font-size: 0.82rem; line-height: 1.1; color: #111827; }
.site-footer.footer-contact a { color: #111827; text-decoration: none; }
.site-footer.footer-contact a:hover, .site-footer.footer-contact a:focus { color: #000; outline: none; }
.site-footer.footer-compact .footer-social { gap: 0.35rem; font-size: 1rem; margin: 0.1rem 0 0 0; }
.site-footer.footer-social a { color: #111827; }
.site-footer.footer-social a:hover, .site-footer.footer-social a:focus { color: #000; outline: none; }
.site-footer.footer-compact .footer-bottom { margin-top: 0.28rem; padding-top: 0.28rem; font-size: 0.76rem; line-height: 1.1; border-top: 1px solid #64748b22; color: #111827; }

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  margin: 0 0 0.6rem 0;
  color: var(--text-secondary);
  font-weight: 700;
}
.footer-brand {
  margin: 0 0 0.4rem 0;
  color: #6366f1;
  letter-spacing: 0.5px;
}
.footer-tag { color: #c7d2fe; margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.footer-links a { color: var(--text-accent); text-decoration: none; }
.footer-links a:hover, .footer-links a:focus { color: #3730a3; outline: none; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; color: #cbd5e1; }
.footer-contact a { color: #cbd5e1; text-decoration: none; }
.footer-contact a:hover, .footer-contact a:focus { color: #e2e8f0; outline: none; }
.footer-social { display: inline-flex; gap: 0.9rem; font-size: 1.2rem; margin-top: 0.7rem; }
.footer-social a { color: #6366f1; }
.footer-social a:hover, .footer-social a:focus { color: #3730a3; outline: none; }
.footer-bottom { text-align: center; color: #a1a1aa; font-size: 0.95rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #64748b22; }

@media (max-width: 900px) {
  .footer-content { grid-template-columns: 1fr; }
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
#contact input, #contact textarea {
  border: 1px solid #a21caf44;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: #fff;
  color: #18181b;
  transition: border 0.2s;
}
body.dark-mode #contact input, body.dark-mode #contact textarea {
  background: #232136;
  color: #fff;
}
#contact button, .cta-btn {
  background: #a21caf;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
#contact button:hover, #contact button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #9333ea;
  box-shadow: 0 8px 32px #a21caf44;
  transform: translateY(-2px) scale(1.04);
  outline: none;
} 

body.motion-3d {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  transition: background 0.3s, color 0.3s;
  min-height: 100vh;
}

.motion-3d {
  box-shadow: 0 8px 32px 0 rgba(16, 185, 129, 0.25), 0 1.5px 8px 0 #7c3aed44;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(18px);
  border-radius: 1.5rem;
  position: relative;
}

.motion-3d-glow {
  text-shadow: 0 0 12px #0ff, 0 0 24px #6366f1, 0 0 32px #0ff;
  filter: drop-shadow(0 0 16px #0ff) drop-shadow(0 0 8px #6366f1);
}

.sidebar.motion-3d {
  background: linear-gradient(160deg, #0f172a 60%, #6366f1 100%);
  border-right: 2px solid #0ff4;
  box-shadow: 0 0 32px #0ff2;
}
.sidebar-title.motion-3d-glow {
  font-size: 2rem;
  font-weight: bold;
  color: #0ff;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.sidebar-logo.motion-3d-glow {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 32px #0ff, 0 0 16px #6366f1;
}

.sidebar-links a {
  color: #0ff;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(30,41,59,0.5);
  border: 1.5px solid #6366f1;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px #0ff2;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sidebar-links a:hover, .sidebar-links a:focus {
  background: #0ff2;
  color: #18181b;
  transform: translateY(-2px) scale(1.06) perspective(400px) rotateY(6deg);
  box-shadow: 0 8px 32px #0ff4;
  outline: none;
}

.main-content {
  margin-left: 250px;
  padding: 2rem 1rem;
  max-width: 1200px;
}
@media (max-width: 900px) {
  .sidebar { position: static; width: 100vw; flex-direction: row; justify-content: space-between; padding: 1rem; }
  .main-content { margin-left: 0; padding: 1rem; }
}

.hero.motion-3d {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(120deg, #0ff2 0%, #6366f122 100%);
  box-shadow: 0 4px 32px #0ff2;
  border: 2px solid #6366f1;
}
.hero-logo.motion-3d-glow {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 32px #0ff, 0 0 16px #6366f1;
}
.hero-title.motion-3d-glow {
  font-size: 3rem;
  font-weight: bold;
  color: #0ff;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 1.5rem;
  color: #6366f1;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 0 8px #0ff4;
}
.hero-desc {
  font-size: 1.2rem;
  color: #a5f3fc;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px #0ff2;
}
.cta-btn.motion-3d-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0ff 0%, #6366f1 100%);
  color: #18181b;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 2px 16px #0ff4;
  border: 2px solid #6366f1;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 1px;
}
.cta-btn.motion-3d-btn:hover, .cta-btn.motion-3d-btn:focus {
  background: linear-gradient(90deg, #6366f1 0%, #0ff 100%);
  box-shadow: 0 8px 32px #0ff8;
  transform: translateY(-2px) scale(1.07) perspective(400px) rotateY(-6deg);
  outline: none;
}

.card.motion-3d {
  margin-bottom: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px #0ff2, 0 1.5px 8px #6366f144;
  border: 1.5px solid #6366f1;
  background: rgba(30,41,59,0.85);
  position: relative;
  overflow: hidden;
}

.motion-3d-card {
  background: rgba(16,185,129,0.08);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #0ff2, 0 1.5px 8px #6366f144;
  border: 1.5px solid #6366f1;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s, border 0.2s;
  perspective: 600px;
}
.motion-3d-card:hover, .motion-3d-card:focus {
  transform: translateY(-8px) scale(1.06) perspective(600px) rotateY(8deg) rotateX(2deg);
  box-shadow: 0 12px 48px #0ff8, 0 2px 16px #6366f188;
  border: 2.5px solid #0ff;
  outline: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.about-grid img.motion-3d-card {
  width: 100%; height: 180px; object-fit: cover;
}
.about-text { grid-column: span 2; }
.about-stats { display: flex; gap: 2rem; margin-top: 1rem; }
.about-stats .motion-3d-card { padding: 1.2rem 2.2rem; font-weight: bold; color: #0ff; font-size: 1.1rem; text-align: center; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.skill-card.motion-3d-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(16,185,129,0.12);
  border-radius: 1rem;
  padding: 1.2rem 0.5rem;
  box-shadow: 0 2px 8px #0ff2;
  font-weight: 600;
  color: #0ff;
  border: 1.5px solid #6366f1;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.skill-card.motion-3d-card img { width: 48px; height: 48px; margin-bottom: 0.5rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.portfolio-image.motion-3d-card {
  width: 100%; height: 180px; object-fit: cover; cursor: pointer;
  box-shadow: 0 2px 8px #0ff2;
  border: 1.5px solid #6366f1;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s, border 0.2s;
}
.portfolio-image.motion-3d-card:hover, .portfolio-image.motion-3d-card:focus {
  transform: translateY(-8px) scale(1.07) perspective(600px) rotateY(-8deg) rotateX(2deg);
  box-shadow: 0 12px 48px #0ff8, 0 2px 16px #6366f188;
  border: 2.5px solid #0ff;
  outline: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-embed.motion-3d-card iframe {
  width: 100%; height: 200px; border-radius: 1rem; border: none;
  box-shadow: 0 2px 8px #0ff2;
  border: 1.5px solid #6366f1;
}
.video-file.motion-3d-card {
  width: 100%; height: 200px; border-radius: 1rem; background: #232136;
  box-shadow: 0 2px 8px #0ff2;
  border: 1.5px solid #6366f1;
}

.footer.motion-3d {
  text-align: center;
  padding: 2rem 0 0.5rem 0;
  color: #0ff;
  font-size: 1rem;
  background: none;
  text-shadow: 0 0 8px #0ff4;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
#contact input, #contact textarea {
  border: 1.5px solid #6366f1;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: #18181b;
  color: #0ff;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #0ff2;
}
#contact input:focus, #contact textarea:focus {
  border: 2px solid #0ff;
  box-shadow: 0 8px 32px #0ff4;
  outline: none;
}
#contact button, .cta-btn.motion-3d-btn {
  background: linear-gradient(90deg, #0ff 0%, #6366f1 100%);
  color: #18181b;
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 16px #0ff4;
  border: 2px solid #6366f1;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 1px;
}
#contact button:hover, #contact button:focus, .cta-btn.motion-3d-btn:hover, .cta-btn.motion-3d-btn:focus {
  background: linear-gradient(90deg, #6366f1 0%, #0ff 100%);
  box-shadow: 0 8px 32px #0ff8;
  transform: translateY(-2px) scale(1.07) perspective(400px) rotateY(-6deg);
  outline: none;
} 

body.classic-modern {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  color: #1e293b;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
}

/* Home section styles moved to home/home.css */
/* About section styles moved to about/about.css */
/* Skills section styles moved to skills/skills.css */
/* Portfolio section styles moved to portfolio/portfolio.css */
/* Videos section styles moved to videos/videos.css */
/* Experience section styles moved to experience/experience.css */

/***** Top Navigation Bar *****/
/* Moved to navbar/navbar.css */

/***** Main Content Top Margin *****/
/* Moved to navbar/navbar.css */

/***** Remove Sidebar Layout *****/
.sidebar, .sidebar.classic-glass { display: none !important; }

/***** Keep the rest of the classic-modern styles as before *****/

.classic-glass {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px rgba(30,41,59,0.10);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
}

.hero.classic-glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(120deg, #f1f5f9 0%, #e0e7ef 100%);
  box-shadow: 0 4px 32px #2563eb11;
  border: 1.5px solid #2563eb22;
}
.hero-logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px #2563eb22;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: #334155;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-desc {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.cta-btn.classic-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px #2563eb22;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.cta-btn.classic-btn:hover, .cta-btn.classic-btn:focus {
  background: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
  box-shadow: 0 8px 32px #2563eb44;
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.card.classic-glass {
  margin-bottom: 2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #2563eb22;
  background: rgba(255,255,255,0.95);
  position: relative;
  overflow: hidden;
}

.classic-card {
  background: #f1f5f9;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #e0e7ef;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.classic-card:hover, .classic-card:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #2563eb22;
  border: 1.5px solid #2563eb;
  outline: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.about-grid img.classic-card {
  width: 100%; height: 180px; object-fit: cover;
}
.about-text { grid-column: span 2; }
.about-stats { display: flex; gap: 2rem; margin-top: 1rem; }
.about-stats .classic-card { padding: 1.2rem 2.2rem; font-weight: bold; color: #2563eb; font-size: 1.1rem; text-align: center; background: #e0e7ef; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.skill-card.classic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e0e7ef;
  border-radius: 1rem;
  padding: 1.2rem 0.5rem;
  box-shadow: 0 2px 8px #2563eb11;
  font-weight: 600;
  color: #2563eb;
  border: 1.5px solid #e0e7ef;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.skill-card.classic-card img { width: 48px; height: 48px; margin-bottom: 0.5rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.portfolio-image.classic-card {
  width: 100%; height: 180px; object-fit: cover; cursor: pointer;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #e0e7ef;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.portfolio-image.classic-card:hover, .portfolio-image.classic-card:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #2563eb22;
  border: 1.5px solid #2563eb;
  outline: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-embed.classic-card iframe {
  width: 100%; height: 200px; border-radius: 1rem; border: none;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #e0e7ef;
}
.video-file.classic-card {
  width: 100%; height: 200px; border-radius: 1rem; background: #e0e7ef;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #e0e7ef;
}

.footer.classic-glass {
  text-align: center;
  padding: 2rem 0 0.5rem 0;
  color: #64748b;
  font-size: 1rem;
  background: none;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
#contact input, #contact textarea {
  border: 1.5px solid #e0e7ef;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: #fff;
  color: #1e293b;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #2563eb11;
}
#contact input:focus, #contact textarea:focus {
  border: 2px solid #2563eb;
  box-shadow: 0 8px 32px #2563eb22;
  outline: none;
}
#contact button, .cta-btn.classic-btn {
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #2563eb22;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
#contact button:hover, #contact button:focus, .cta-btn.classic-btn:hover, .cta-btn.classic-btn:focus {
  background: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
  box-shadow: 0 8px 32px #2563eb44;
  transform: translateY(-2px) scale(1.04);
  outline: none;
} 

body.classic-modern {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
.motion-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(120deg, #a1c4fd, #c2e9fb, #fbc2eb, #fcb69f, #a1c4fd, #f7971e, #ffd200, #21d4fd, #b721ff, #fdc830, #f37335);
  background-size: 400% 400%;
  animation: neonGradientMotion 18s ease-in-out infinite;
}
@keyframes neonGradientMotion {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}
.motion-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.13;
  filter: blur(2px);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.motion-circle1 {
  width: 220px;
  height: 220px;
  background: #6366f1;
  top: 12%;
  left: 10%;
  animation-name: float1;
  animation-duration: 9s;
}
.motion-circle2 {
  width: 320px;
  height: 320px;
  background: #8b5cf6;
  top: 60%;
  left: 70%;
  animation-name: float2;
  animation-duration: 13s;
}
.motion-circle3 {
  width: 140px;
  height: 140px;
  background: #a78bfa;
  top: 38%;
  left: 45%;
  animation-name: float3;
  animation-duration: 11s;
}
.motion-circle4 {
  width: 260px;
  height: 260px;
  background: #4f46e5;
  top: 80%;
  left: 18%;
  animation-name: float4;
  animation-duration: 10s;
}
@keyframes float1 {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.13; }
  100% { transform: translateY(-40px) translateX(30px) scale(1.08); opacity: 0.22; }
}
@keyframes float2 {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.13; }
  100% { transform: translateY(50px) translateX(-40px) scale(1.12); opacity: 0.22; }
}
@keyframes float3 {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.13; }
  100% { transform: translateY(-25px) translateX(-30px) scale(1.09); opacity: 0.22; }
}
@keyframes float4 {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.13; }
  100% { transform: translateY(40px) translateX(25px) scale(1.07); opacity: 0.22; }
}
.topnav, .main-content, .card, .classic-glass, .footer {
  position: relative;
  z-index: 1;
} 

.hero.visually-dominant {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f1f5f9 0%, #e0e7ef 100%);
  box-shadow: 0 4px 32px #2563eb11;
  border: 1.5px solid #2563eb22;
  margin-bottom: 3rem;
}
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}
.hero-center .hero-logo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px #2563eb22;
}
.hero-center .hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 0.2rem;
  letter-spacing: 2px;
}
.hero-center .hero-subtitle {
  font-size: 1.3rem;
  color: #334155;
  font-weight: 600;
}
.hero-center .hero-desc {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.2rem;
}
.hero-center .cta-btn {
  margin-top: 0.5rem;
}

.about-2col {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  padding: 2.5rem 2rem;
}
.about-2col-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
}
.about-headshot-wrap {
  display: flex;
  justify-content: center;
}
.about-headshot {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px #2563eb22;
}
.about-bio-wrap h3 {
  font-size: 1.3rem;
  color: #2563eb;
  margin-bottom: 1rem;
}
.about-bio-wrap p {
  color: #334155;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  text-align: justify;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  line-height: 1.8;
}
.about-cta-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.about-stats-row {
  display: flex;
  gap: 2rem;
}
.about-stats-row .classic-card {
  background: #e0e7ef;
  color: #2563eb;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 1.2rem;
  padding: 2.8rem 3rem;
  text-align: center;
}
@media (max-width: 900px) {
  .about-2col-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-headshot { width: 180px; height: 210px; }
  .about-cta-row { flex-direction: column; gap: 0.5rem; }
  .about-stats-row { flex-direction: column; gap: 0.5rem; }
}

.portfolio-grid.visually-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.portfolio-card {
  background: #f1f5f9;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #e0e7ef;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.portfolio-card:hover, .portfolio-card:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #2563eb22;
  border: 1.5px solid #2563eb;
  outline: none;
}
.portfolio-card .portfolio-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1.2rem 1.2rem 0 0;
}
.portfolio-info {
  padding: 1.2rem 1rem 1rem 1rem;
  flex: 1;
}
.portfolio-info h3 {
  color: #2563eb;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.portfolio-info p {
  color: #334155;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.card.classic-glass {
  margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px #2563eb11;
  border: 1.5px solid #2563eb22;
  background: rgba(255,255,255,0.95);
  position: relative;
  overflow: hidden;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section h2 {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
}
h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#about h2 {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  #about h2 { font-size: 1.5rem; }
}

@media (max-width: 700px) {
  .main-content { padding: 1rem 0.2rem; }
  .card.classic-glass { padding: 1.2rem 0.5rem; }
  .portfolio-grid.visually-cards { gap: 1rem; }
} 

.redesigned-home-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f1f5f9 0%, #e0e7ef 100%);
  box-shadow: 0 4px 32px #2563eb11;
  border: 1.5px solid #2563eb22;
  margin-bottom: 3rem;
  position: relative;
}
.home-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}
.home-hero-logo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  margin-top: 3.5rem;
  box-shadow: 0 2px 8px #2563eb22;
  background: #fff;
  object-fit: cover;
}
@media (max-width: 700px) {
  .home-hero-logo { width: 90px; height: 90px; margin-top: 1.5rem; }
}
.home-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 0.2rem;
  letter-spacing: 2.5px;
  text-shadow: 0 2px 8px #2563eb11;
}
.home-hero-accent {
  color: #38bdf8;
  letter-spacing: 3px;
  font-weight: 900;
}
.home-hero-role {
  font-size: 1.4rem;
  color: #334155;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.home-hero-tagline {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px #fff8;
}
.home-hero-highlight {
  color: #2563eb;
  background: #e0e7ef;
  border-radius: 0.5rem;
  padding: 0.1em 0.4em;
  font-weight: 700;
  box-shadow: 0 1px 4px #2563eb11;
}
.home-hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
  color: #fff;
  font-weight: 700;
  padding: 1.1rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px #2563eb22;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 0;
  letter-spacing: 1px;
}
.home-hero-cta:hover, .home-hero-cta:focus {
  background: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%);
  box-shadow: 0 8px 32px #2563eb44;
  transform: translateY(-2px) scale(1.04);
  outline: none;
}
@media (max-width: 700px) {
  .home-hero-center { padding: 1rem 0.2rem; }
  .home-hero-title { font-size: 2.1rem; }
  .home-hero-logo { width: 90px; height: 90px; }
  .home-hero-role { font-size: 1.1rem; }
  .home-hero-tagline { font-size: 1rem; }
  .home-hero-cta { font-size: 1rem; padding: 0.7rem 1.5rem; margin-top: 0; }
} 

/* About section responsive layout */
.about-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-flex {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .about-img {
    margin-bottom: 0;
  }
}
.about-img {
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  width: 20rem;
  height: 24rem;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #6366f1;
}
.about-text {
  max-width: 600px;
  width: 100%;
} 

/* Skills section two-column layout */
.skills-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 900px) {
  .skills-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
  .skills-list, .tools-list {
    width: 50%;
    max-width: 420px;
  }
}
.skills-list {
  margin-bottom: 2rem;
}
.skills-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.skills-list ul li {
  margin-bottom: 1rem;
}
.tools-list {
  margin-bottom: 2rem;
} 

.tools-list .flex {
  flex-direction: column;
  align-items: center;
  background: rgba(99,102,241,0.07);
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 1rem;
}
.tools-list img {
  display: block;
  margin: 0 auto 0.5rem auto;
}
.tools-list span.text-indigo-200 {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.tools-list span.text-indigo-400 {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0;
} 

.experience-list {
  background: rgba(49,51,110,0.18);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 2.5rem;
  margin: 2rem auto 0 auto;
  max-width: 600px;
  list-style: none;
}
.experience-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.3rem;
  font-size: 1.13rem;
  color: #111827;
  line-height: 1.6;
  font-weight: bold;
}
.experience-list li:last-child {
  margin-bottom: 0;
}
.experience-list li::before {
  content: '\2713';
  position: absolute;
  left: 0.5rem;
  top: 0.1rem;
  color: #6366f1;
  font-size: 1.2rem;
  font-weight: bold;
} 

.portfolio-card, .classic-card, .video-embed, .about-img, .contact-social a {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s, color 0.25s;
}
.portfolio-card:hover, .classic-card:hover, .video-embed:hover, .about-img:hover, .contact-social a:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(99,102,241,0.18), 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
} 

body.light-mode {
  --bg-main: #f3f4f6;
  --bg-card: #fff;
  --text-main: #1e293b;
  --text-accent: #4f46e5;
  --text-secondary: #6366f1;
  --card-shadow: 0 2px 12px rgba(99,102,241,0.08);
}
body.light-mode {
  background: var(--bg-main);
  color: var(--text-main);
}
body.light-mode .card, body.light-mode .classic-glass {
  background: var(--bg-card);
  box-shadow: var(--card-shadow);
}
body.light-mode h2, body.light-mode h3, body.light-mode h4, body.light-mode h5, body.light-mode h6 {
  color: var(--text-accent);
} 

/* Moved to navbar/navbar.css */ 