;/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*:not(.blob, .ping, .scroll-line, .link-line) {
  transition-property: transform, opacity, background-color, border-color, color, box-shadow;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-blue: #3b82f6;
  --color-purple: #a855f7;
  --color-indigo: #6366f1;
  --color-pink: #ec4899;
  --color-cyan: #06b6d4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1 2.5rem;
  margin-top: 2.5rem;
}

/* Utility Classes */
.text-blue {
  color: var(--color-blue);
}

.text-gradient {
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

/* Animations */
@keyframes blob {
  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 1.5rem;
  transition: padding 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: slideDown 0.25s ease;
}

#navbar.scrolled {
  padding: 1rem 1.5rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #b3a13e;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-placeholder {
  height: 48px;
  width: auto;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px;
  transition: transform 0.3s ease;
}

.logo-placeholder:hover {
  transform: scale(1.05);
}

.nav-logo {
  height: 48px;
  width: auto;
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover {
  color: var(--color-white);
}

/* Active Navigation Link */
.nav-links a.active {
  color: var(--color-blue);
  font-weight: 600;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-black);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  animation: scrollPulse 2s ease infinite;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

.mobile-toggle.active .hamburger {
  background: transparent;
}

.mobile-toggle.active .hamburger::before {
  transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(25px);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transform: translateY(30px);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 90vw;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-content a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.75rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  overflow: hidden;
}

.mobile-menu-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.25s ease;
}

.mobile-menu-content a:hover::before {
  left: 100%;
}

.mobile-menu-content a:hover {
  color: var(--color-blue);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.btn-primary-large {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.9));
  color: var(--color-black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.25s ease;
}

.btn-primary-large:hover::before {
  left: 100%;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

/* Page Hero Styles */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin: 0 auto;
}

.liquid-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  animation: blob 7s infinite;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: rgba(59, 130, 246, 0.2);
}

.blob-2 {
  top: 20%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: rgba(168, 85, 247, 0.2);
  animation-delay: 2s;
}

.blob-3 {
  bottom: -10%;
  left: 20%;
  width: 45vw;
  height: 45vw;
  background: rgba(99, 102, 241, 0.2);
  animation-delay: 4s;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  animation: fadeInUp 0.25s ease;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-images {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.desktop-founders {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
h1{
  margin-top: -2px;
}

.founder-frame:first-child {
  transform: translateY(-10px);
}

.founder-frame:nth-child(2) {
  transform: translateY(10px);
}

.founder-frame-1 {
  width: 246px;
  height: 336px;
  margin-bottom: 10rem;
  border-radius: 72px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.founder-frame-2 {
  width: 246px;
  height: 336px;
  margin-bottom: 7rem;
  border-radius: 72px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.founder-frame img {
  width: 113%;
  height: 105%;
  object-fit: cover;
  border-radius: 60px;
}

.founder-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    margin-left: 19.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  }

  @media (max-width: 768px) {
    .badge {
      margin-left: 0;
      justify-content: center;
    }
  }

.ping-dot {
  position: relative;
  display: flex;
  height: 0.5rem;
  width: 0.5rem;
}

.ping {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--color-blue);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: 0.5rem;
  width: 0.5rem;
  background: #60a5fa;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
  line-height: 1;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-white {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.btn-white:hover {
  transform: scale(1.05);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.btn-white:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-glass {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  animation: fadeInUp 1s ease forwards;
}

.scroll-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  animation: scrollPulse 2s ease infinite;
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  position: relative;
}

/* Content Section Styles */
.content-section {
  padding: 6rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-block {
  padding: 3rem;
}

.content-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.content-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-list li {
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.content-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
}

.value-icon svg {
  stroke: var(--color-blue);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Sidebar Styles */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  padding: 2rem;
}

.sidebar-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sidebar-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-list li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-blue);
}

.sidebar-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Highlights Section */
.highlights-section {
  padding: 6rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-icon {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}

.highlight-icon svg {
  stroke: var(--color-blue);
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
}

.cta-card {
  padding: 4rem 3rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Course Detail Cards */
.course-detail-card {
  display: flex;
  flex-direction: column;
}

.course-details {
  margin: 2rem 0;
  flex: 1;
}

.details-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--color-blue);
}

.details-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.details-list li {
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.details-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

/* Features Section */
.features-section {
  margin-top: 6rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  stroke: var(--color-blue);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.section-header {
  margin-bottom: 5rem;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.title-underline {
  height: 4px;
  width: 100px;
  background: linear-gradient(to right, var(--color-blue), var(--color-purple));
  border-radius: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.1);
}

.service-icon svg {
  stroke: var(--color-blue);
}

.service-icon.icon-purple svg {
  stroke: var(--color-purple);
}

.service-icon.icon-indigo svg {
  stroke: var(--color-indigo);
}

.service-icon.icon-pink svg {
  stroke: var(--color-pink);
}

.service-icon.icon-cyan svg {
  stroke: var(--color-cyan);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.service-link {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--color-white);
}

.link-line {
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.service-card:hover .link-line {
  width: 2rem;
}

/* Work Section */
.work-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.work-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: rgba(29, 78, 216, 0.1);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.work-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 5rem;
  gap: 2rem;
}

.work-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 28rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.work-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.work-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.work-icon {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.work-card:hover .work-icon {
  background: rgba(255, 255, 255, 0.1);
}

.work-icon svg {
  stroke: var(--color-blue);
}

.work-icon.icon-purple svg {
  stroke: var(--color-purple);
}

.work-icon.icon-pink svg {
  stroke: var(--color-pink);
}

.work-icon.icon-indigo svg {
  stroke: var(--color-indigo);
}

.work-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.work-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Contact Section Styles */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.detail-icon svg {
  stroke: var(--color-blue);
}

.detail-icon.icon-purple svg {
  stroke: var(--color-purple);
}

.detail-icon.icon-pink svg {
  stroke: var(--color-pink);
}

.detail-icon.icon-indigo svg {
  stroke: var(--color-indigo);
}

.detail-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.detail-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.admission-info {
  padding: 2rem;
}

.admission-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.admission-steps {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admission-steps li {
  counter-increment: step-counter;
  padding-left: 2.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.admission-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  background: var(--color-blue);
  color: var(--color-white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-form-wrapper {
  padding: 3rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.admission-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-submit {
  padding: 1rem 2rem;
  background: var(--color-white);
  color: var(--color-black);
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.95);
}

/* Testimonials styles */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin: 0 auto 1rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-overlay svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.testimonial-content {
  padding: 2rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-relation {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Results page styles */
.results-section {
  padding: 6rem 0;
}

.track-record {
  margin-bottom: 5rem;
}

.track-record-card {
  padding: 3rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.track-record-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.track-record-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.achievements-section {
  margin-bottom: 6rem;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement-card {
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
}

.achievement-icon {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}

.achievement-icon svg {
  stroke: var(--color-blue);
}

.achievement-icon.icon-purple svg {
  stroke: var(--color-purple);
}

.achievement-icon.icon-pink svg {
  stroke: var(--color-pink);
}

.achievement-icon.icon-indigo svg {
  stroke: var(--color-indigo);
}

.achievement-icon.icon-cyan svg {
  stroke: var(--color-cyan);
}

.achievement-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.achievement-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.difference-section {
  margin-bottom: 6rem;
}

.difference-content {
  padding: 3rem;
  max-width: 56rem;
  margin: 0 auto;
}

.difference-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  text-align: center;
}

.difference-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.difference-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point-icon {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.point-icon svg {
  stroke: var(--color-blue);
}

.point-icon.icon-purple svg {
  stroke: var(--color-purple);
}

.point-icon.icon-pink svg {
  stroke: var(--color-pink);
}

.point-icon.icon-indigo svg {
  stroke: var(--color-indigo);
}

.difference-point p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.student-testimonials {
  margin-bottom: 4rem;
  text-align: center;
}

.student-testimonial-card {
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.student-testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-quote {
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.testimonial-student {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.student-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.student-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.student-class {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-white);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-icon {
  stroke: var(--color-blue);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* Social Links Styles */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-link:hover .social-icon {
  fill: var(--color-blue);
}

/* Hero Social Links */
.hero-social .social-links {
  gap: 1.5rem;
}

.hero-social .social-link {
  width: 50px;
  height: 50px;
}

.hero-social .social-icon {
  width: 24px;
  height: 24px;
}

/* Loading Animations */
.loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loaded {
  opacity: 1;
}

button.loading {
  position: relative;
  color: transparent !important;
}

button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Mobile Navigation */
.mobile-menu {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

/* Focus states for accessibility */
.nav-links a:focus,
.btn-primary:focus,
.btn-glass:focus,
.btn-white:focus {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-right: 1rem;
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  stroke: var(--color-blue);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Progress Bars */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-blue), var(--color-purple));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Study Resources Section */
.study-resources-section {
  padding: 6rem 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
}

.resource-icon {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
  transition: background 0.3s ease;
}

.resource-card:hover .resource-icon {
  background: rgba(255, 255, 255, 0.1);
}

.resource-icon.icon-purple svg {
  stroke: var(--color-purple);
}

.resource-icon.icon-pink svg {
  stroke: var(--color-pink);
}

.resource-icon.icon-indigo svg {
  stroke: var(--color-indigo);
}

.resource-icon svg {
  stroke: var(--color-blue);
}

.resource-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resource-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.resource-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.btn-resource {
  padding: 0.75rem 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--color-blue);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-resource:hover {
  background: rgba(59, 130, 246, 0.8);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Navigation adjustments */
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-container {
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-placeholder {
    height: 36px;
    padding: 4px;
  }

  /* Hero Section */
  .hero-section,
  .page-hero {
    min-height: 70vh;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    margin-bottom: 1.5rem;
  }

  .page-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-description,
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column; /* Force buttons to stack on mobile */
    gap: 0.75rem;
    align-items: center;
  }

  .btn-white,
  .btn-glass {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .scroll-indicator {
    display: none;
  }

  /* Blob adjustments for mobile */
  .blob-1,
  .blob-2,
  .blob-3 {
    width: 80vw;
    height: 80vw;
  }

  /* Founder frame adjustments for mobile */
  .founder-frame {
    width: 160px;
    height: 210px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3), 0 0 40px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
  }

  .founder-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4), 0 0 50px rgba(168, 85, 247, 0.2);
  }

  .founder-frame img {
    border-radius: 58px;
  }

  /* Hero images adjustments for mobile */
  .hero-images {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .founder-frame:first-child,
  .founder-frame:nth-child(2) {
    transform: translateY(0);
  }

  /* Grid adjustments */
  .services-grid,
  .work-grid,
  .features-grid,
  .achievements-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Section padding */
  .services-section,
  .work-section,
  .highlights-section,
  .contact-section,
  .testimonials-section,
  .results-section,
  .content-section {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }

  .section-header,
  .work-header {
    margin-bottom: 3rem;
  }

  .title-underline {
    width: 80px;
    margin: 0 auto;
  }

  /* Cards and content */
  .glass-card,
  .service-card,
  .work-card,
  .highlight-card,
  .feature-card,
  .achievement-card,
  .testimonial-card,
  .content-block,
  .sidebar-card,
  .cta-card,
  .track-record-card,
  .difference-content,
  .student-testimonial-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-details,
  .admission-info {
    padding: 1.5rem;
  }

  /* Typography */
  .service-title,
  .work-title,
  .highlight-title,
  .feature-title,
  .achievement-title {
    font-size: 1.25rem;
  }

  .service-description,
  .work-description,
  .highlight-description,
  .feature-description,
  .achievement-description,
  .content-text,
  .sidebar-text,
  .track-record-text {
    font-size: 1rem;
  }

  .content-heading {
    font-size: 1.75rem;
  }

  .cta-title,
  .contact-info-title,
  .track-record-title {
    font-size: 2rem;
  }

  .cta-description,
  .contact-info-description,
  .difference-description {
    font-size: 1rem;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-detail-item {
    gap: 0.75rem;
  }

  /* Form styles */
  .form-title {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
  }

  .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Parent Testimonials */
  .parent-testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    margin: 0 1rem;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
  }

  .testimonial-text::before,
  .testimonial-text::after {
    display: none;
  }

  /* Video testimonials */
  .video-wrapper {
    padding-top: 66.67%;
  }

  .play-overlay svg {
    width: 48px;
    height: 48px;
  }

  /* Content grid */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Value items */
  .value-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

  /* Course details */
  .details-heading {
    font-size: 1rem;
  }

  .details-list li {
    font-size: 0.875rem;
  }

  /* Difference points */
  .difference-points {
    gap: 1rem;
  }

  .difference-point {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    align-items: center;
  }

  /* Container padding */
  .container {
    padding: 0 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn-white,
  .btn-glass {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .mobile-menu-content a {
    font-size: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet and larger adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid,
  .work-grid,
  .highlights-grid,
  .features-grid,
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .founder-frame {
    transform: translateY(0);
  }

  .hero-center {
    margin-left: -2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-legal {
    flex-direction: row;
  }
}
/* Online Learning Section */
.online-learning-section {
  padding: 8rem 0;
  position: relative;
}

.learning-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.learning-feature-card {
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.learning-feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon-large {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 1.5rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.learning-feature-card:hover .feature-icon-large {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
}

.feature-icon-large.icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
}

.feature-icon-large.icon-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
}

.feature-icon-large.icon-indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
}

.feature-icon-large svg {
  stroke: var(--color-blue);
  transition: stroke 0.3s ease;
}

.feature-icon-large.icon-purple svg {
  stroke: var(--color-purple);
}

.feature-icon-large.icon-pink svg {
  stroke: var(--color-pink);
}

.feature-icon-large.icon-indigo svg {
  stroke: var(--color-indigo);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-small {
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Special Features Section - Zigzag Repulsive Animation */
.special-features-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.special-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features-zigzag {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.zigzag-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  position: relative;
}

.zigzag-left {
  flex-direction: row;
}

.zigzag-right {
  flex-direction: row-reverse;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin: 0 auto 1rem;
  text-align: center;
}

.features-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-timeline::before {
  display: none;
}

.timeline-item:nth-child(odd) .timeline-content {
  transform: translateX(-60px);
}

.timeline-item:nth-child(even) .timeline-content {
  transform: translateX(60px);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 50%;
  float: left;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  flex: 1;
  max-width: 500px;
}



.timeline-connector {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  z-index: 2;
}

.timeline-connector.left {
  order: -1;
}

.timeline-connector.right {
  order: 1;
}

.connector-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  border-radius: 50%;
  border: 3px solid var(--color-black);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.timeline-item:hover .connector-dot {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}

.connector-line {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.4), rgba(168, 85, 247, 0.4));
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.timeline-connector.left .connector-line {
  right: 0;
}

.timeline-connector.right .connector-line {
  left: 0;
}

.timeline-item:hover .connector-line {
  width: 60px;
  background: linear-gradient(to right, var(--color-blue), var(--color-purple));
}

.feature-card-large {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.25s ease;
}

.feature-card-large:hover::before {
  left: 100%;
}

.feature-card-large:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.5);
}

.feature-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.feature-icon-large {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon-large.icon-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
}

.feature-icon-large.icon-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
}

.feature-icon-large.icon-indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
}

.feature-icon-large.icon-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
}

.feature-icon-large svg {
  stroke: var(--color-blue);
  transition: stroke 0.3s ease;
}

.feature-icon-large.icon-purple svg {
  stroke: var(--color-purple);
}

.feature-icon-large.icon-pink svg {
  stroke: var(--color-pink);
}

.feature-icon-large.icon-indigo svg {
  stroke: var(--color-indigo);
}

.feature-icon-large.icon-cyan svg {
  stroke: var(--color-cyan);
}

.feature-shape {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
  position: relative;
  overflow: hidden;
}

.feature-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
}

.feature-shape.shape-1 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
}

.feature-shape.shape-2 {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.feature-shape.shape-3 {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(99, 102, 241, 0.1));
}

.feature-shape.shape-4 {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
}

.feature-shape.shape-5 {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
}

.feature-shape.shape-6 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
}

.feature-text {
  flex: 1;
}

.feature-title-large {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description-large {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.feature-card-large:hover .feature-description-large {
  color: rgba(255, 255, 255, 0.9);
}

.feature-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Animations for Special Features */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}



@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive for Special Features */
@media (max-width: 768px) {
  .special-features-section {
    padding: 4rem 0;
  }

  .features-zigzag {
    gap: 2rem;
  }

  .zigzag-row {
    flex-direction: column !important;
    gap: 1.5rem;
    transform: none !important;
    align-items: center;
  }

  .zigzag-row:hover {
    transform: none !important;
  }

  .zigzag-row:hover .feature-card-large {
    transform: none !important;
    animation: none;
  }

  .feature-card-large {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
  }

  .feature-visual {
    align-self: center;
  }

  .feature-title-large {
    font-size: 1.5rem;
  }

  .feature-description-large {
    font-size: 1rem;
  }

  .feature-stats {
    justify-content: center;
  }

  /* Legacy timeline styles - keeping for compatibility */
  .features-timeline {
    padding: 0 1rem;
  }

  .features-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
  }

  .timeline-content {
    max-width: none;
    text-align: center !important;
    transform: none !important;
  }

  .timeline-content.left,
  .timeline-content.right {
    margin-left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    transform: none !important;
  }

  .timeline-connector {
    width: 40px;
    height: 40px;
    order: -1 !important;
    align-self: flex-start;
    margin-left: 10px;
  }

  .timeline-connector.left,
  .timeline-connector.right {
    order: -1 !important;
  }

  .connector-dot {
    width: 16px;
    height: 16px;
  }

  .connector-line {
    width: 30px;
  }

  .timeline-connector.left .connector-line {
    left: 0;
    right: auto;
  }

  .timeline-connector.right .connector-line {
    left: 0;
  }
}

@media (max-width: 480px) {
  .features-zigzag {
    gap: 1.5rem;
  }

  .zigzag-row {
    gap: 1rem;
  }

  .feature-card-large {
    padding: 1.5rem;
  }

  .feature-title-large {
    font-size: 1.25rem;
  }
}

/* Events Section */
.events-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Events Hero Banner */
.events-hero {
  margin-bottom: 6rem;
}

.events-banner-container {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.4);
}

.events-banner {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.events-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.events-main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.events-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.events-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.events-stats-bar .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.events-stats-bar .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.events-stats-bar .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

/* Featured Event Card */
.featured-event-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}

.featured-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.featured-event-card:hover::before {
  left: 100%;
}

.featured-event-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.4);
}

.event-image-section {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-image-placeholder {
  color: var(--color-blue);
  opacity: 0.6;
}

.event-content-section {
  padding: 2.5rem;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.event-date {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-blue);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.event-type {
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.event-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.event-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.event-detail svg {
  stroke: var(--color-blue);
  flex-shrink: 0;
}

.event-register-btn {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.event-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Regular Events */
.regular-events {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card-compact {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.event-card-compact:hover {
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.event-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.event-card-compact:hover .event-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.event-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-blue);
  transition: stroke 0.3s ease;
}

.event-icon-wrapper.icon-purple svg {
  stroke: var(--color-purple);
}

.event-icon-wrapper.icon-pink svg {
  stroke: var(--color-pink);
}

.event-icon-wrapper.icon-cyan svg {
  stroke: var(--color-cyan);
}

.event-compact-content h4 {
  margin-bottom: 0.5rem;
}

.event-compact-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.event-compact-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.event-compact-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.event-compact-date {
  font-weight: 600;
  color: var(--color-blue);
}

.event-compact-attendees {
  font-weight: 600;
  color: var(--color-purple);
}

/* Upcoming Events CTA */
.upcoming-events-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.3);
}

.upcoming-events-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.upcoming-events-cta .cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Memory Wall Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-blue), var(--color-purple), var(--color-pink));
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  animation: timelineGlow 3s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
  0% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
  }
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.left {
  left: 0;
  padding-right: 3rem;
}

.timeline-item.right {
  left: 50%;
  padding-left: 3rem;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  border: 4px solid var(--color-black);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  z-index: 2;
}

.timeline-item.left::before {
  right: -42px;
}

.timeline-item.right::before {
  left: -42px;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.timeline-card:hover::before {
  left: 100%;
}

.timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.5);
}

.timeline-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.timeline-card:hover .timeline-image img {
  transform: scale(1.1);
}

.timeline-content {
  padding: 2rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Mobile Responsive for Timeline */
@media (max-width: 768px) {
  .timeline-container {
    padding: 0 1rem;
  }

  .timeline-line {
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--color-blue), var(--color-purple), var(--color-pink));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    animation: timelineGlow 3s ease-in-out infinite alternate;
  }

  .timeline {
    padding: 2rem 0;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    position: relative;
    padding-left: 4rem;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: auto;
    padding-right: 0;
  }

  .timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-item::before {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
    border: 4px solid var(--color-black);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    z-index: 2;
  }

  .timeline-item.left::before,
  .timeline-item.right::before {
    left: -42px;
    right: auto;
  }

  .timeline-item::after {
    display: none;
  }

  .timeline-card {
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.5);
  }

  .timeline-content {
    padding: 2rem;
  }

  .timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 480px) {
  .timeline-container {
    padding: 0 0.5rem;
  }

  .timeline-line {
    width: 4px;
    left: 50%;
  }

  .timeline {
    padding: 1.5rem 0;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 3rem;
    padding-left: 3rem;
  }

  .timeline-item::before {
    width: 16px;
    height: 16px;
    left: -35px;
  }

  .timeline-card {
    border-radius: 1rem;
  }

  .timeline-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .timeline-image {
    height: 150px;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-title {
    font-size: 1.25rem;
  }

  .timeline-description {
    font-size: 0.875rem;
  }
}

/* Mobile Responsive for Events */
@media (max-width: 768px) {
  .events-section {
    padding: 4rem 0;
  }

  .events-hero {
    margin-bottom: 4rem;
  }

  .events-banner {
    max-height: 300px;
  }

  .events-main-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .events-hero-subtitle {
    font-size: 1.125rem;
  }

  .events-stats-bar {
    gap: 2rem;
  }

  .events-stats-bar .stat-item {
    min-width: 100px;
    padding: 0.75rem;
  }

  .events-stats-bar .stat-number {
    font-size: 1.5rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .featured-event-card {
    border-radius: 1.5rem;
  }

  .event-image-section {
    height: 150px;
  }

  .event-content-section {
    padding: 2rem;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .event-description {
    font-size: 1rem;
  }

  .event-details {
    flex-direction: column;
    gap: 1rem;
  }

  .regular-events {
    gap: 1rem;
  }

  .event-card-compact {
    padding: 1.25rem;
  }

  .upcoming-events-cta {
    padding: 2rem;
  }

  .upcoming-events-cta .cta-title {
    font-size: 1.75rem;
  }

  .upcoming-events-cta .cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 3rem 0;
  }

  .events-hero {
    margin-bottom: 3rem;
  }

  .events-banner {
    max-height: 250px;
  }

  .events-main-title {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }

  .events-hero-subtitle {
    font-size: 1rem;
  }

  .events-stats-bar {
    gap: 1rem;
  }

  .events-stats-bar .stat-item {
    min-width: 80px;
    padding: 0.5rem;
  }

  .events-stats-bar .stat-number {
    font-size: 1.25rem;
  }

  .events-stats-bar .stat-label {
    font-size: 0.75rem;
  }

  .featured-event-card {
    border-radius: 1rem;
  }

  .event-image-section {
    height: 120px;
  }

  .event-content-section {
    padding: 1.5rem;
  }

  .event-title {
    font-size: 1.25rem;
  }

  .event-description {
    font-size: 0.9375rem;
  }

  .event-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .event-details {
    gap: 0.75rem;
  }

  .event-detail {
    font-size: 0.8125rem;
  }

  .event-register-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .regular-events {
    gap: 0.75rem;
  }

  .event-card-compact {
    padding: 1rem;
  }

  .event-compact-title {
    font-size: 1rem;
  }

  .event-compact-desc {
    font-size: 0.8125rem;
  }

  .upcoming-events-cta {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .upcoming-events-cta .cta-title {
    font-size: 1.5rem;
  }

  .upcoming-events-cta .cta-description {
    font-size: 0.9375rem;
  }
}
