:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --toggle-bg: rgba(25, 31, 52, 0.9);
  --glass-border: rgba(255, 255, 255, 0.18);
  --dark-glass-bg: rgba(0, 0, 0, 0.25);
  --dark-glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-header-dark: #2d3748;
  --bg-light: #f7fafc;
  --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
  --shadow-hover: 0 15px 35px rgba(31, 38, 135, 0.5);
}

[data-theme="dark"] {
  --text-primary: #e2e8f0;
  --text-secondary: #a0aec0;
  --text-header-dark: #4a5568;
  --bg-light: #1a202c;
  --toggle-bg: rgba(25, 31, 52, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--primary-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

/* Particle Background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 1;
  }
}

/* Glassmorphism Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* Enhanced Header */
.header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  box-shadow: var(--shadow-light);
}

.header-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Left (flexible), Center (content-sized), Right (flexible) */
  align-items: center; /* Vertically align items in the middle */
  gap: 20px; /* Space between the three main sections */
  width: 100%; /* Ensure it spans the full width of its container */
}

.header-left {
  justify-self: start; /* Align content to the left within its grid cell */
}

.header-center {
  justify-self: center; /* Align content to the center within its grid cell */
}

.header-right {
  justify-self: end; /* Align content to the right within its grid cell */
}

/* Ensure nav-links are displayed horizontally */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* Make list items arrange horizontally */
  gap: 25px; /* Space between individual nav items */
}

/* Existing styles for .nav-links li a, .logo, .theme-toggle should remain */

/* Basic styling for the header itself, if not already defined clearly */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
}

.nav {
  padding: 15px 0;
}

/* Media queries for responsiveness (important for header) */
@media (max-width: 767px) {
  .header-layout {
    grid-template-columns: auto 1fr; /* On smaller screens, logo on left, theme toggle on right */
    gap: 15px;
  }

  .header-center {
    /* Hide navigation links on small screens and typically add a hamburger menu */
    display: none;
    /* For this example, we're hiding them directly. You'd add a mobile menu toggle here. */
  }
  /* The .header-right (theme-toggle) will automatically align to the end */
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-header-dark);
  /* color: #4a5568; */
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  border-radius: 25px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-links a:hover::before {
  opacity: 0.1;
  transform: scale(1);
}

.nav-links a:hover {
  color: #4facfe;
  transform: translateY(-2px);
}

/* Dark Mode Toggle */
.theme-toggle {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--toggle-bg);
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle::after {
  content: "🌙";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

[data-theme="dark"] .theme-toggle::after {
  content: "☀️";
  transform: translateX(28px);
}

/* Enhanced Hero Section */
.hero {
  margin-top: 80px;
  padding: 6rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
  opacity: 0.3;
  animation: float-slow 20s ease-in-out infinite;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #fff, #f7fafc, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
  animation: slideInUp 1s ease-out 0.2s both;
}

.profile-pic {
  max-width: 40rem;
  max-height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.profile-pic:hover {
  transform: translateY(-15px) scale(1.05);
  transition: all 0.3s ease; /* box-shadow: var(--shadow-hover); */
}

/* Enhanced Photo Placeholder */
.photo-placeholder {
  width: 40rem;
  height: 40rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: var(--shadow-light);
  animation: slideInUp 1s ease-out 0.4s both;
}

.photo-placeholder:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-placeholder:hover::before {
  opacity: 1;
}

.photo-placeholder::after {
  content: "📸";
  font-size: 4rem;
  opacity: 0.4;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.photo-placeholder:hover::after {
  transform: scale(1.1);
  opacity: 0.6;
}

.photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 0.95rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.photo-placeholder:hover .photo-caption {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-5px);
}

/* Enhanced Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  margin-top: 8 rem;
  position: relative;
  text-align: center;
  animation: slideInUp 1s ease-out 0.6s both;
}

.stat-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
  box-shadow: var(--shadow-light);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Enhanced Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  animation: slideInUp 1s ease-out 0.8s both;
}

.about-p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.3rem;
}

.btn {
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 1);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-light);
}

/* Enhanced Main Content */
.main-content {
  background: var(--bg-light);
  border-radius: 40px 40px 0 0;
  margin-top: 3rem;
  padding: 4rem 0;
  min-height: 100vh;
  position: relative;
  transition: all 0.3s ease;
}

[data-theme="dark"] .main-content {
  background: #1a202c;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

[data-theme="dark"] .section {
  border-bottom-color: #2d3748;
}

.section:last-child {
  border-bottom: none;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 6px;
  background: var(--primary-gradient);
  border-radius: 3px;
  animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* Enhanced Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-light);
}

[data-theme="dark"] .timeline-item {
  background: var(--dark-glass-bg);
  border-color: var(--dark-glass-border);
}

.timeline-item:hover {
  transform: translateX(15px) translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.35);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -3.5rem;
  top: 3rem;
  width: 16px;
  height: 16px;
  background: var(--accent-gradient);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.3);
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(79, 172, 254, 0.3);
}

/* Enhanced Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-light);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-placeholder {
  width: 100%;
  height: 70%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: "📸";
  font-size: 5rem;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.gallery-placeholder:hover::before {
  transform: scale(1.2) rotate(5deg);
  opacity: 0.6;
}

.gallery-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.gallery-item:hover .gallery-placeholder::after {
  left: 100%;
}

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Enhanced Stats Cards */
.interactive-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--accent-gradient);
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
  opacity: 0.1;
  transform: rotate(45deg) scale(1);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(79, 172, 254, 0.3);
}

.stat-card-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.stat-card-position {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text {
    text-align: center;
  }
  .photo-placeholder {
    width: 280px;
    height: 350px;
    margin: 0 auto;
  }
  .nav-links {
    display: none;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .photo-gallery {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 2rem;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Contact Form */
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-light);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

/* Notification Toast */
.toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
  transform: translateX(400px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
}

.toast.show {
  transform: translateX(0);
}

.mb-2 {
  margin-bottom: 1rem;
}

/* Media Coverage Section */
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Single column on small screens */
  gap: 25px;
  /* Gap between items */
  margin-top: 2rem;
}

@media (min-width: 768px) {
  /* 2x2 layout on medium screens and up */
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* .media-item {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.media-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  padding: 25px;
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

/* .media-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
} */

/* .media-item:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--accent-gradient);
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
} */

/* .media-item:hover::before {
  opacity: 0.1;
  transform: rotate(45deg) scale(1);
} */

.media-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(79, 172, 254, 0.3);
}

.media-logo-container {
  height: 60px;
  /* Fixed height for logos */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Ensure logo fits without distortion */
}

.media-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
  /* Allow description to take available space */
}

.media-link {
  display: inline-flex;
  /* To align icon and text */
  align-items: center;
  gap: 8px;
  color: var(--link-color);
  /* Assuming a CSS variable for link color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.media-link:hover {
  color: var(--link-hover-color);
  /* Assuming a CSS variable for link hover color */
  text-decoration: underline;
}

.media-link i {
  font-size: 0.9em;
}

/* Research Paper Section Specific Styles */
.research-item {
  background-color: var(--card-background);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  /* Spacing between research items */
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-item:last-child {
  margin-bottom: 0;
  /* No margin after the last item */
}

.research-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.research-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--section-title-color);
  /* Using the same color as section titles */
  margin-bottom: 15px;
  text-align: left;
  /* Align to left within the card */
}

.research-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: left;
  /* Align to left within the card */
}

/* Podcast Section Specific Styles */
.podcast-list-container {
  background-color: var(--card-background);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast-host-info .research-subtitle {
  margin-top: 0;
  /* Remove top margin for consistency within container */
}

.podcast-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  /* Align list items to the left */
}

.podcast-channels li {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.podcast-channels li:last-child {
  margin-bottom: 0;
}

.podcast-channels li i {
  color: var(--link-color);
}

.connect-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-height: 100vh;
  /* align-items: center; */
  margin-bottom: 3rem;
  margin-top: 8 rem;
  position: relative;
  /* text-align: center; */
  animation: slideInUp 1s ease-out 0.6s both;
}

.connect-card {
  margin-bottom: 2rem;
  padding: 1.5rem;
  /* background: var(--glass-bg); */
  /* backdrop-filter: blur(20px); */
  border-radius: 20px;
  /* border: 1px solid var(--glass-border); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.connect-card a {
  color: var(--text-primary);
}

.meeting-link {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-light);
  align-items: center;
  text-align: center;
}

.banner-content {
  /* max-width: 450px; */
  margin: 0 auto;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Infographic Styles */
.banner-infographics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white */
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  /* color: white; */
  min-width: 180px; /* Ensure items have enough space */
}

.info-icon {
  font-size: 1.4rem;
  color: #ffc107; /* Highlight color for icons */
}

.podcast-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  align-items: center;
  justify-content: center;
  position: relative;
}

.podcast-info {
  padding: 1rem;
  align-items: center;
  text-align: center;
}

.podcast-info a {
  padding: 1rem;
  color: var(--text-primary);
  min-width: 5rem;
  min-height: 2rem;
}
