* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f0ff 0%, #ffe0f0 100%);
  min-height: 100vh;
}

/* Header Styles */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
}

.logo-text span:nth-child(1) {
  color: #ff4444;
}
.logo-text span:nth-child(2) {
  color: #44ff44;
}
.logo-text span:nth-child(3) {
  color: #4444ff;
}
.logo-text span:nth-child(4) {
  color: #ffaa00;
}
.logo-text span:nth-child(5) {
  color: #aa44ff;
}
.logo-text span:nth-child(6) {
  color: #ff44aa;
}
.logo-text span:nth-child(7) {
  color: #ff8844;
}
.logo-text span:nth-child(8) {
  color: #44dddd;
}

.logo-subtitle {
  display: none;
}

nav {
  display: none;
}

nav a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #8b5cf6;
}

/* Dropdown Menu - Desktop */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  transition: color 0.3s;
}

.dropbtn:hover {
  color: var(--primary-violet);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  border-radius: 10px;
  overflow: hidden;
  top: 100%;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  color: var(--text-mid);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition:
    background 0.3s,
    color 0.3s;
}

.dropdown-content a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-violet),
    var(--primary-pink)
  );
  color: #8b5cf6;
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropbtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-dropbtn i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropbtn i {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  padding-left: 1.5rem;
  background: #f0e6ff;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-dropdown-content a {
  display: block;
  padding: 0.6rem 0;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.95rem;
}

.mobile-dropdown-content a:hover {
  color: var(--primary-violet);
}

.menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  margin-top: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #8b5cf6;
}

/* Carousel Styles */
.carousel-container {
  padding-top: 5%;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Programs carousel specific styles */
.carousel-container.programs-carousel {
  background: linear-gradient(135deg, #f5f0ff 0%, #ffe0f0 100%);
  padding: 4rem 1.5rem;
  margin-top: 4rem;
}

.carousel-container.programs-carousel .section-title {
  text-align: center;
  font-size: 2rem;
  color: #8b5cf6;
  font-weight: bold;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 2rem 1.5rem;
}

.slide-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.text-content {
  text-align: center;
  order: 2;
}

.rocket-illustration {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

h1 {
  font-size: 2rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.image-content {
  position: relative;
  order: 1;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3),
    rgba(236, 72, 153, 0.3)
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.image-circle {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1;
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trial-badge {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #8b5cf6;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  text-align: center;
  z-index: 10;
}

.trial-badge .small {
  font-size: 0.8rem;
}
.trial-badge .large {
  font-size: 1.5rem;
  font-weight: bold;
}
.trial-badge .medium {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #8b5cf6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 10;
}

.arrow:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.arrow-left {
  left: 1rem;
}
.arrow-right {
  right: 1rem;
}

/* Dots Indicator */
.dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #8b5cf6;
  width: 32px;
  border-radius: 6px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #ecdbf9 0%, #ece1f4 100%);
  padding: 4rem 1.5rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #9c3aed;
  font-weight: bold;
  margin-bottom: 1rem;
}

.title-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-blob {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.blob-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a15cf6 0%, #ae3aed 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobMove 8s ease-in-out infinite;
}

.blob-shape.blob-1 {
  animation-delay: 0s;
}
.blob-shape.blob-2 {
  animation-delay: 2s;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}
.blob-shape.blob-3 {
  animation-delay: 4s;
  border-radius: 40% 60% 70% 30% / 50% 30% 70% 50%;
}
.blob-shape.blob-4 {
  animation-delay: 6s;
  border-radius: 60% 40% 30% 70% / 30% 70% 30% 70%;
}

@keyframes blobMove {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  33% {
    transform: scale(1.1) rotate(5deg);
  }
  66% {
    transform: scale(0.95) rotate(-5deg);
  }
}

.stat-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Programmes Section */
.programmes-section {
  background: linear-gradient(135deg, #c7a2d3 0%, #ece1f4 100%);
  padding: 4rem 1.5rem;
}

.programmes-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.apple-icon {
  position: absolute;
  top: -20px;
  left: 20px;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.programme-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.programme-card:hover {
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cloud-overlay {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.card-content ul {
  list-style: none;
  padding: 0;
}

.card-content ul li {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.card-content ul li::before {
  content: "•";
  color: #8b5cf6;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  background: #f5f5f5;
  padding: 4rem 1.5rem;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.location-card,
.request-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-card h2,
.request-card h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.location-subtitle {
  color: #666;
  margin-bottom: 0.5rem;
}

.location-address {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.info-item svg {
  color: #666;
}

.status-closed {
  color: #dc2626;
  font-weight: 600;
}

.status-time {
  color: #666;
}

.reviews-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.reviews,
.locator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.action-buttons {
  display: grid;
  gap: 0.75rem;
}

.btn-outline {
  background: white;
  color: #333;
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #f5f5f5;
  border-color: #8b5cf6;
}

.btn-primary {
  background: #0066cc;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #0052a3;
}

/* Request Form */
.request-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-full {
  display: grid;
  gap: 1rem;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: white;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: #0066cc;
}

.request-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.request-form textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-submit {
  background: #0066cc;
  color: white;
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #0052a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Breadcrumb */
.breadcrumb {
  background: white;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb-container a {
  color: #0066cc;
  text-decoration: none;
}

.breadcrumb-container a:hover {
  text-decoration: underline;
}

.breadcrumb-container span {
  color: #333;
  font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {
  .logo-subtitle {
    display: block;
  }

  .subtitle-top {
    font-size: 0.7rem;
    color: #8b5cf6;
    font-weight: 600;
  }

  .subtitle-bottom {
    font-size: 0.65rem;
    background: #ec4899;
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
  }

  .slide {
    padding: 4rem 1.5rem;
  }

  .slide-content {
    grid-template-columns: 1fr 1fr;
  }

  .text-content {
    text-align: left;
    order: 1;
  }

  .image-content {
    order: 2;
  }

  h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .rocket-illustration {
    margin: 0 0 2rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  nav {
    display: flex;
    gap: 2rem;
  }

  .menu-btn {
    display: none;
  }

  h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .apple-icon {
    left: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

  .action-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .btn-primary {
    grid-column: 1 / -1;
  }

  .info-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .reviews-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.welcome-section {
  max-width: 1200px;
  width: 100%;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 4% 0% 0% 0%;
}

.welcome-image {
  display: flex;
  justify-content: center;
}

.yellow-circle {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(250, 204, 21, 0.3);
  position: relative;
}

.martian-illustration {
  width: 90%;
  height: 90%;
}

.welcome-content {
  text-align: center;
}

.welcome-title {
  font-size: 2.5rem;
  color: #8b5cf6;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.welcome-text {
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.welcome-text:last-child {
  margin-bottom: 0;
}

.book-appointment {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
  padding: 1.5rem 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 15px rgba(249, 115, 22, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 100;
}

.book-appointment:hover {
  padding-right: 1.5rem;
  box-shadow: -6px 0 20px rgba(249, 115, 22, 0.5);
}

.meteor {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (min-width: 768px) {
  .welcome-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .welcome-content {
    text-align: left;
  }

  .welcome-title {
    font-size: 3rem;
  }

  .welcome-text {
    font-size: 1.15rem;
  }
}

.usp-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5% 0% 0% 0%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-title .our {
  color: #dc2626;
}

.section-title .usp {
  color: #4f46e5;
}

.title-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.divider-line {
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}

.divider-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
}

.content-wrapper {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.features-left,
.features-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-item.right {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-icon:hover {
  transform: scale(1.1);
}

.icon-purple {
  background: linear-gradient(135deg, #c084fc, #a855f7);
}
.icon-green {
  background: linear-gradient(135deg, #86efac, #4ade80);
}
.icon-orange {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.icon-red {
  background: linear-gradient(135deg, #f87171, #ef4444);
}
.icon-indigo {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}
.icon-cyan {
  background: linear-gradient(135deg, #67e8f9, #22d3ee);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.feature-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fbbf24;
}

.feature-item.right .feature-title::after {
  left: auto;
  right: 0;
}

.title-purple {
  color: #a855f7;
}
.title-green {
  color: #22c55e;
}
.title-orange {
  color: #f59e0b;
}
.title-red {
  color: #ef4444;
}
.title-indigo {
  color: #8b5cf6;
}
.title-cyan {
  color: #22d3ee;
}

.feature-description {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
}

.center-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.deco-sun {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
}

.deco-cloud {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 60px;
  height: 35px;
}

.deco-kite {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 40px;
  height: 40px;
}

.deco-butterfly {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 35px;
  height: 35px;
}

.child-image {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 2rem;
  }

  .feature-description {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
  }

  .center-image {
    order: 2;
  }

  .features-left {
    order: 1;
  }

  .features-right {
    order: 3;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.deco-cloud {
  animation: float 3s ease-in-out infinite;
}

.deco-kite {
  animation: float 2.5s ease-in-out infinite 0.5s;
}

.deco-butterfly {
  animation: float 2s ease-in-out infinite 1s;
}

.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4% 0% 0% 0%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #334155;
  font-weight: bold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  background: white;
  padding: 15px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.view-more-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.view-more-btn {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-image {
    height: 250px;
  }

  .view-more-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4% 0% 4% 0%;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #1e293b;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1e293b;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  position: relative;
}

.date-badge {
  position: absolute;
  top: -25px;
  left: 1.5rem;
  background: #fbbf24;
  color: #1e293b;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.date-day {
  font-size: 1.5rem;
  line-height: 1;
}

.date-month {
  font-size: 0.875rem;
  line-height: 1;
}

.blog-title {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

.blog-meta {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-meta span {
  display: inline-block;
}

.divider {
  color: #d1d5db;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image {
    height: 200px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-main {
  background-color: #e8ecf0;
  padding: 50px 20px 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #4caf50;
}

.school-info {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.school-info .logo {
  max-width: 250px;
  margin-bottom: 20px;
}

.school-info .affiliation {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.map-container {
  width: 100%;
  height: 300px;
  background-color: #d0e8d0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8d5a8 0%, #d0e8d0 100%);
  color: #fff;
  font-size: 16px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 18px;
}

.contact-icon.call i {
  color: #ff6b35;
}

.contact-icon.mail i {
  color: #ff6b35;
}

.contact-icon.time i {
  color: #ff6b35;
}

.contact-icon.address i {
  color: #ff6b35;
}

.contact-details h4 {
  color: #333;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-details p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.contact-details a {
  color: #666;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.contact-details a:hover {
  color: #4caf50;
}

.footer-bottom {
  background-color: #fff;
  padding: 25px 20px;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #999;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links a.facebook {
  background-color: #1877f2;
}

.social-links a.linkedin {
  background-color: #0077b5;
}

.social-links a.instagram {
  background-color: #e4405f;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #4caf50;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.Process-container {
  max-width: 100%;
  width: 100%;
  margin-bottom: 3%;
}

.process-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #d0d0d0;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-card {
    padding: 30px 25px;
  }

  .step-number {
    font-size: 2rem;
  }

  .step-title {
    font-size: 1.2rem;
  }
}
.carousel-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: calc(100% / 3);
  max-width: calc(100% / 3);
  display: flex;
  justify-content: center;
  padding: 0 10px;
  flex-shrink: 0;
}

.program-card {
  background: white;
  border-radius: 24px;
  padding: 30px 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.image-hexagon {
  width: 90px;
  height: 90px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #f0f0f0;
  flex-shrink: 0;
  overflow: hidden;
}

.image-hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.25;
}

.age-badge {
  background: #f8f8f8;
  padding: 5px 14px;
  border-radius: 16px;
  display: inline-block;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin-bottom: 24px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #333;
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkmark::before {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.blue {
  background: #6b9eff;
}
.yellow {
  background: #ffc857;
}
.pink {
  background: #ff69b4;
}
.green {
  background: #7dd3c0;
}

.learn-more-btn {
  background: white;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.learn-more-btn:hover {
  background: #ff6b6b;
  color: white;
  transform: translateX(3px);
}

.learn-more-btn::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover::after {
  transform: translateX(3px);
}

.carousel-controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.carousel-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #5fc3af;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 1024px) {
  .carousel-slide {
    min-width: 50%;
    max-width: 50%;
  }

  .program-card {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .program-card {
    padding: 24px 18px;
    max-width: 340px;
  }

  .card-header {
    gap: 12px;
  }

  .image-hexagon {
    width: 75px;
    height: 75px;
  }

  .card-title-section h2 {
    font-size: 1.05rem;
  }

  .age-badge {
    font-size: 0.8rem;
    padding: 4px 12px;
  }

  .features-list li {
    font-size: 0.82rem;
    margin-bottom: 10px;
  }

  .checkmark {
    width: 20px;
    height: 20px;
  }

  .checkmark::before {
    font-size: 11px;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .learn-more-btn {
    padding: 9px 20px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 8px;
  }

  .program-card {
    padding: 22px 16px;
    max-width: 100%;
  }
}

/* Video Testimonials Section */
.video-testimonials {
  background: linear-gradient(135deg, #ecdbf9 0%, #ece1f4 100%);
  padding: 4rem 1.5rem;
  margin-top: 4rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8b5cf6;
  transition: transform 0.3s;
}

.video-card:hover .play-button {
  transform: scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: #666;
  font-size: 0.9rem;
}
