/* CodeBhumi Premium Corporate Styles */

:root {
  /* Base Colors */
  --color-blue: #1E3A8A;
  --color-green: #10B981;
  --color-blue-light: #3B82F6;
  --color-green-light: #34D399;

  /* Light Theme (Warm White + Green) */
  --bg-primary: #FDFDFB; /* Warm white */
  --bg-secondary: #F6F6F4;
  --text-primary: #1C1917; /* Warm dark gray */
  --text-muted: #57534E;
  --card-bg: rgba(255, 255, 255, 0.7);
  --card-border: rgba(16, 185, 129, 0.2);
  --btn-secondary-bg: rgba(16, 185, 129, 0.05);
  --btn-secondary-border: rgba(16, 185, 129, 0.3);
  --btn-secondary-color: #10B981;
  --btn-secondary-hover: rgba(16, 185, 129, 0.15);
  --nav-bg: rgba(253, 253, 251, 0.85);
  --nav-link: #57534E;
  --nav-link-hover: #1C1917;
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 246, 244, 0.5));
  --hero-gradient: linear-gradient(to top, var(--bg-primary), transparent);

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

[data-theme="dark"] {
  /* Dark Theme (Dark Glassmorphism) */
  --bg-primary: #0F172A;
  --bg-secondary: #0B1121;
  --text-primary: #FFFFFF;
  --text-muted: #94A3B8;
  --card-bg: rgba(15, 23, 42, 0.6);
  --card-border: rgba(255, 255, 255, 0.05);
  --btn-secondary-bg: transparent;
  --btn-secondary-border: rgba(255, 255, 255, 0.2);
  --btn-secondary-color: #FFFFFF;
  --btn-secondary-hover: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(15, 23, 42, 0.85);
  --nav-link: #94A3B8;
  --nav-link-hover: #FFFFFF;
  --gradient-card: linear-gradient(145deg, rgba(30, 58, 138, 0.1), rgba(15, 23, 42, 0.5));
  --hero-gradient: linear-gradient(to top, var(--bg-primary), transparent);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-green) var(--bg-primary);
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-green);
  border-radius: 10px;
  border: 3px solid var(--bg-primary);
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-green-light);
}

/* Custom Cursor (Desktop Only) */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }
  
  .cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
  }

  .cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-green);
    transform: translate(calc(-50%), calc(-50%));
  }

  .cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-green);
    opacity: 0.5;
    transform: translate(calc(-50%), calc(-50%));
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-outline {
    display: none;
  }
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-green-light), var(--color-blue-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-green-light));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5), 0 0 20px rgba(59, 130, 246, 0.4);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-color);
  border: 1px solid var(--btn-secondary-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nav-link);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--nav-link-hover);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--color-green-light);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Theme Toggle styles */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle-btn {
  background: var(--btn-secondary-bg);
  border: 1px solid var(--btn-secondary-border);
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.theme-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--btn-secondary-hover);
}

@media (max-width: 900px) {
  .nav-actions {
    display: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  perspective: 1200px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--hero-gradient);
  z-index: 2;
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(148, 163, 184, 0.05) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  z-index: 1;
  pointer-events: none;
}

[data-theme="light"] .hero-grid {
  background-image: linear-gradient(to right, rgba(28, 25, 23, 0.05) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(28, 25, 23, 0.05) 1px, transparent 1px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
  animation: float-glow 8s ease-in-out infinite alternate;
}

.glow-1 {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent 70%);
}

.glow-2 {
  bottom: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.5), transparent 70%);
  animation-duration: 12s;
  animation-direction: alternate-reverse;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* .hero-logo removed */

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 20px 50px rgba(16, 185, 129, 0.15);
  transform: translateZ(60px);
}

/* Interactive Title & Typography */
.interactive-title {
  display: inline-block;
  position: relative;
}

.leaf-wrapper {
  position: relative;
  display: inline-block;
}

.leaf-dot {
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%) rotate(15deg);
  font-size: 0.55em;
  color: var(--color-green-light);
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
  z-index: 10;
  animation: leaf-float 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes leaf-float {
  0% { transform: translateX(-50%) translateY(0) rotate(15deg); }
  50% { transform: translateX(-50%) translateY(-6px) rotate(22deg); }
  100% { transform: translateX(-50%) translateY(0) rotate(15deg); }
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--color-green-light);
  animation: blink 1s step-end infinite;
  margin-left: 5px;
  vertical-align: middle;
}

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

.hover-lift {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
  transform: translateY(-5px) scale(1.05) translateZ(20px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3), 0 0 20px rgba(59, 130, 246, 0.2);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 600px;
  transform: translateZ(40px);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1.05rem;
  transform: translateZ(30px);
  animation: float-up-down 6s ease-in-out infinite;
}

.hero-features span.dot {
  color: var(--color-green-light);
  opacity: 0.6;
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0) translateZ(30px); }
  50% { transform: translateY(-8px) translateZ(30px); }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  transform: translateZ(50px);
  transform-style: preserve-3d;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-btn {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
}

/* Sections Common */
.section {
  padding: 6rem 2rem;
  position: relative;
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.bg-darker {
  background: var(--bg-secondary);
}

/* About Section */
.pattern-bg {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--color-blue-light);
  transition: all 0.3s ease;
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.glow-hover:hover {
  transform: translateY(-10px);
  background: var(--card-bg);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.2);
}

.glow-hover:hover .icon-wrap {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-green-light);
  transform: scale(1.1);
}

/* What We Do */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.item-card {
  background: var(--gradient-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.item-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-muted);
  line-height: 1.7;
}

.glow-lift:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
}

.glow-lift:hover .card-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.glow-lift:hover::before {
  opacity: 1;
}

/* Core Committee Section */
.committee-section {
  overflow: hidden;
  padding-bottom: 8rem;
}

.overflow-visible {
  overflow: visible;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Removed fading edges to keep cards visible entirely from the edge */
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  animation: scroll-x 25s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.team-card {
  width: 280px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  /* Ensuring duplicate cards size matches */
}

.team-card:hover {
  transform: scale(1.08) translateY(-10px);
  background: var(--gradient-card);
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.5), 0 0 25px rgba(59, 130, 246, 0.3);
  z-index: 10;
}

/* Honorary Advisor Styles */
.advisor-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  z-index: 10;
}

.advisor-heading {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.advisor-container {
  display: flex;
  justify-content: center;
}

.advisor-card {
  width: 320px;
  background: var(--gradient-card);
  border: 2px solid rgba(245, 158, 11, 0.3); /* Gold Theme */
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.1);
}

.advisor-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.6);
}

.advisor-img {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #F59E0B, #FDE68A);
}

.advisor-card .member-role {
  color: #FBBF24;
  font-size: 1.05rem;
  font-weight: 700;
}

.advisor-card .member-desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.profile-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 4px; /* Space for the gradient border */
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-green-light));
  position: relative;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background-color: var(--card-bg); /* Fallback inside */
  display: block;
}

.member-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--color-green-light);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); /* -50% of the entire width, accounting for the gap */ }
}

/* Recruitment Section */
.recruitment-section {
  position: relative;
  overflow: hidden;
}

.recruit-box {
  background: var(--gradient-card);
  border: 1px solid var(--card-border);
  padding: 5rem 2rem;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  max-width: 900px;
  margin: 0 auto;
}

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

.trait-badge {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.trait-badge i {
  color: var(--color-green-light);
}

.trait-badge:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: translateY(-5px) scale(1.05) rotate(0deg); }
  25% { transform: translateY(-5px) scale(1.05) rotate(-3deg); }
  75% { transform: translateY(-5px) scale(1.05) rotate(3deg); }
}

/* Events Section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  aspect-ratio: 1 / 1;
  perspective: 1000px;
}

.event-date {
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
  color: white;
  min-width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
  transition: all 0.4s ease;
}

.event-date span {
  font-size: 1.8rem;
  line-height: 1;
}

.event-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-info p {
  color: var(--text-muted);
  line-height: 1.6;
}

.tilt-hover {
  transform-style: preserve-3d;
}

.tilt-hover:hover {
  transform: translateY(-15px) rotateX(10deg) rotateY(-5deg) scale(1.05);
  background: var(--gradient-card);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: -15px 25px 40px -10px rgba(16, 185, 129, 0.3);
}

/* 3D Depth for content on hover */
.tilt-hover:hover .event-date {
  transform: translateZ(50px) scale(1.1);
}

.tilt-hover:hover .event-info {
  transform: translateZ(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 600px) {
  .event-card {
    aspect-ratio: auto;
    padding: 3rem 1.5rem;
  }
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--card-border);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--color-blue);
  transform: translateY(-3px);
  color: white;
}

.footer-contact p {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Scroll Reveals */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-hidden.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------
   Global Mobile Responsiveness 
--------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 4rem 1rem !important;
  }
  
  .hero {
    padding: 6rem 1rem 3rem !important;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.3rem) !important;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .about-card, .item-card, .event-card {
    padding: 2rem 1.5rem;
  }
  
  .team-card {
    width: 250px;
    padding: 2rem 1rem;
  }
  
  .recruit-box {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .team-card {
    width: 220px;
  }
}

/* --- Touch Device UI Enhancements --- */
@media (hover: none) {
  .mentor-card, .item-card, .team-card, .event-card, .about-card {
    border-color: rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 12px 35px -10px rgba(16, 185, 129, 0.25) !important;
  }
  
  .btn-primary {
    animation: pulse-border 3s infinite;
  }
  
  .card-icon, .icon-wrap, .event-date {
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
    transform: scale(1.05);
  }
}

/* --- Tech Stack Marquee --- */
.tech-marquee {
  background: transparent;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 2rem 0;
}

.tech-content {
  animation: scroll-x 30s linear infinite reverse;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 120px;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-icon i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--color-blue-light), var(--color-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-icon p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.tech-icon:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.tech-icon:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

/* --- Industry Mentors Section --- */
.mentors-section {
  padding-bottom: 4rem;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mentor-card {
  background: var(--gradient-card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(10px);
  z-index: 1;
  overflow: hidden;
}

.mentor-card:hover {
  transform: translateY(-12px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25), 0 0 25px rgba(59, 130, 246, 0.15);
}

.mentor-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding-bottom: 1.5rem;
}

[data-theme="light"] .mentor-header {
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
}

.mentor-info {
  flex: 1;
}

.mentor-name {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
}

.mentor-name .linkedin-link {
  font-size: 1.25rem;
  margin-left: 0.6rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.mentor-name .linkedin-link:hover {
  transform: scale(1.2) translateY(-2px);
  color: #60a5fa;
}

.mentor-role {
  color: var(--color-green-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mentor-testimonial p {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  font-size: 1.05rem;
}

.mentor-card::before {
  content: '\201C';
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-size: 12rem;
  color: rgba(16, 185, 129, 0.06);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  transform: rotate(-5deg);
}

/* --- FAQ Section --- */
.faq-section {
  padding-top: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: transparent;
}

.faq-question h3 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--color-green-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: transparent;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* --- Skeleton Loader --- */
.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: skeleton-loading 1.5s infinite;
  z-index: 1;
}

[data-theme="light"] .skeleton::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.05),
    transparent
  );
}

@keyframes skeleton-loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lazy-img.loaded {
  opacity: 1;
}
