/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*: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.3s ease;
  animation: slideDown 0.5s 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;
}

.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.6);
  backdrop-filter: blur(20px);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.3s ease;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-content a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
  color: var(--color-blue);
}

.btn-primary-large {
  margin-top: 1rem;
  background: var(--color-white);
  color: var(--color-black);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
}

/* 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.8s 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;
}

.founder-frame:first-child {
  transform: translateY(-10px);
}

.founder-frame:nth-child(2) {
  transform: translateY(10px);
}

.founder-frame-1 {
  width: 240px;
  height: 336px;
  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: 220px;
  height: 308px;
  border-radius: 66px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.founder-frame img {
  width: 100%;
  height: 100%;
  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-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;
}

.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);
}

/* 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: 120px;
    height: 160px;
    border-radius: 40px;
  }

  .founder-frame img {
    border-radius: 40px;
  }

  /* 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,
  .highlights-grid,
  .features-grid,
  .achievements-grid,
  .testimonials-grid {
    grid-template-columns: 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) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-legal {
    flex-direction: row;
  }
}
