/*--------------------------------------------------------------
# CARTOON THEME - LITTLE EXPLORERS PRESCHOOL
# A fun, playful, kid-friendly transformation of the Orbit template
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Fredoka", sans-serif;
  --handwriting-font: "Gochi Hand", cursive;
}

/* Cartoon Color Palette */
:root { 
  --background-color: #fef9e7;  /* Soft cream - like vanilla ice cream */
  --default-color: #5a5a7a;      /* Soft purple-gray for text */
  --heading-color: #2c3e50;      /* Deep blue - like night sky */
  --accent-color: #ff9a9e;       /* Soft coral pink - warm and friendly */
  --accent-secondary: #a8e6cf;    /* Mint green - fresh and playful */
  --accent-tertiary: #ffd3b6;     /* Peach - warm and cozy */
  --surface-color: #ffffff;       /* White - clean backgrounds */
  --contrast-color: #ffffff;      /* White for contrast */
  
  /* New fun colors */
  --sunshine-yellow: #fff9c4;
  --bubblegum-pink: #ffb7b7;
  --sky-blue: #b2ebf2;
  --lavender: #e1bee7;
  --grass-green: #c8e6c9;
}

/* Nav Menu Colors */
:root {
  --nav-color: #5a5a7a;
  --nav-hover-color: #ff9a9e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #5a5a7a;
  --nav-dropdown-hover-color: #ff9a9e;
}

/* Light Background */
.light-background {
  --background-color: #f8f0fa;
  --surface-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling - CARTOON EDITION
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
  position: relative;
}

/* Add cute background pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 211, 182, 0.2) 0%, transparent 20%),
    radial-gradient(circle at 90% 70%, rgba(168, 230, 207, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 30% 80%, rgba(255, 154, 158, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 70% 30%, rgba(255, 249, 196, 0.25) 0%, transparent 35%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #ff6b6b;
  transform: scale(1.05);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/*--------------------------------------------------------------
# Global Header - CARTOON STYLE
--------------------------------------------------------------*/

.header {
  --surface-color: #ffffff;
  color: var(--default-color);
  background-color: #ffffff;
  padding: 10px 0;
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transition: none !important;
}

/* Logo container styling */
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo image styling */
.header .logo img {
  max-height: 50px;
  width: auto;
  border-radius: 50%;
  transition: all 0.3s ease;
  border-radius: 12px;
}

/* Logo image hover effect */
.header .logo:hover img {
  transform: scale(1.05) rotate(2deg);
}

/* Site name styling */
.header .logo .sitename {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--default-font);
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.header .logo .dot {
  color: var(--accent-color);
  font-size: 32px;
  line-height: 1;
  display: inline-block;
  animation: bounce 2s infinite;
}

/* Hover effect on the whole logo */
.header .logo:hover .sitename {
  color: var(--accent-color);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.header .btn-getstarted {
  color: #5a5a7a;
  background: var(--accent-secondary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid transparent;
  box-shadow: 0 6px 0 #7fb3a0;
  transition: all 0.2s ease;
}

.header .btn-getstarted:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #7fb3a0;
  color: #2c3e50;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
  
  .header .logo .sitename {
    font-size: 18px;
  }
  
  .header .logo .dot {
    font-size: 24px;
  }
  
  .header .logo {
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .header .logo img {
    max-height: 35px;
  }
  
  .header .logo .sitename {
    font-size: 16px;
  }
  
  .header .logo .dot {
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu - CARTOON STYLE
--------------------------------------------------------------*/
/* Desktop Navigation */
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navmenu a {
  color: var(--nav-color);
  font-size: 15px;
  font-weight: 600;
  text-align: center;;
  position: relative;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color);
}

.navmenu a::after {
  content: "🦊";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
}

.navmenu a:hover::after,
.navmenu .active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Desktop Dropdown styling */
.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 15px;
  background: var(--nav-dropdown-background-color);
  display: block;
  list-style: none;
  border-radius: 20px;
  border: 2px dashed var(--accent-secondary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  min-width: 220px;
  top: 100%;
  left: 0;
}

/* Show dropdown on hover */
.navmenu .dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
}

.navmenu .dropdown ul li {
  margin: 5px 0;
}

.navmenu .dropdown ul a {
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--nav-dropdown-color);
  white-space: nowrap;
  font-size: 14px;
}

.navmenu .dropdown ul a:hover {
  background-color: var(--accent-secondary);
  color: #2c3e50;
  transform: translateX(5px);
}

.navmenu .dropdown ul a::after {
  display: none;
}

/*--------------------------------------------------------------
# Mobile Navigation - IMPROVED
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* Hide desktop menu */
  .navmenu ul {
    display: none;
  }

  /* Show mobile toggle button */
  .mobile-nav-toggle {
    display: block !important;
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
    background: transparent;
    border: none;
    padding: 5px;
  }

  /* Rotate icon when menu is active */
  .mobile-nav-active .mobile-nav-toggle {
    transform: rotate(90deg);
    /* color: var(--accent-color); */
  }

  /* Mobile menu styling */
  .mobile-nav-active .navmenu ul {
    display: block !important;
    position: fixed;
    top: 80px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 20px 15px;
    background-color: var(--nav-mobile-background-color);
    border: 4px solid var(--accent-color);
    border-radius: 40px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /* box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2); */
    flex-direction: column;
  }
  

  /* Mobile menu items */
  .mobile-nav-active .navmenu ul li {
    padding: 8px 0;
    list-style: none;
    border-bottom: 2px dashed var(--accent-secondary);
  }

  .mobile-nav-active .navmenu ul li:last-child {
    border-bottom: none;
  }

  .mobile-nav-active .navmenu ul li a {
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    color: var(--nav-color);
    border-radius: 30px;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu ul li a:hover,
  .mobile-nav-active .navmenu ul li a.active {
    background-color: var(--accent-secondary);
    color: #2c3e50;
    transform: translateX(5px);
  }

  /* Mobile dropdown styling */
  .mobile-nav-active .navmenu .dropdown > a {
    position: relative;
  }

  .mobile-nav-active .navmenu .dropdown > a .toggle-dropdown {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu .dropdown.open > a .toggle-dropdown {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Mobile dropdown menu - Admissions submenu */
  .mobile-nav-active .navmenu .dropdown ul {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: none;
    padding: 10px 0 10px 20px;
    margin-top: 5px;
    background: rgba(168, 230, 207, 0.2);
    border-radius: 25px;
    border: 2px dashed var(--accent-secondary);
    box-shadow: none;
    transform: none;
    transition: none;
    width: 100%;
  }

  .mobile-nav-active .navmenu .dropdown.open ul {
    display: block !important;
  }

  .mobile-nav-active .navmenu .dropdown ul li {
    padding: 5px 0;
    border-bottom: none;
  }

  .mobile-nav-active .navmenu .dropdown ul li a {
    padding: 8px 15px;
    font-size: 16px;
    background: transparent;
  }

  .mobile-nav-active .navmenu .dropdown ul li a:hover {
    background: var(--accent-secondary);
    transform: translateX(5px);
  }

  /* Remove fox icon on mobile (too crowded) */
  .mobile-nav-active .navmenu a::after {
    display: none;
  }

  /* Overlay background when menu is open */
  .mobile-nav-active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.128);
    z-index: 9997;
    /* backdrop-filter: blur(3px); */
  }
}

/* Mobile toggle button styling */
.mobile-nav-toggle {
  display: none;
}

/* Ensure body doesn't scroll when mobile menu is open */
.mobile-nav-active {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Announcement Marquee Bar
--------------------------------------------------------------*/

.announcement-bar {
  background: linear-gradient(135deg, #ff9a9e 0%, #ff6b6b 100%);
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.announcement-bar::before {
  content: "🎈";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  opacity: 0.3;
  animation: bounce 2s infinite;
}

.announcement-bar::after {
  content: "🎈";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  opacity: 0.3;
  animation: bounce 2s infinite 1s;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  animation: marquee 25s linear infinite;
}

.announcement-icon {
  background: white;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ff6b6b;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.marquee-text {
  display: inline-flex;
  gap: 50px;
}

.marquee-text span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--default-font);
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.marquee-text span::before {
  content: "✨ ";
  font-size: 0.8rem;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 8px 0;
  }
  
  .marquee-text span {
    font-size: 0.75rem;
  }
  
  .announcement-icon {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

@media (max-width: 576px) {
  .marquee-text span {
    font-size: 0.7rem;
  }
  
  .announcement-icon {
    font-size: 0.7rem;
  }
}

/*--------------------------------------------------------------
# Hero Section - SUPER CARTOON
--------------------------------------------------------------*/
.hero {
  padding: 10px 0 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  min-height: 80vh;
}

/* Floating cartoon elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-cloud {
  position: absolute;
  font-size: 60px;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.floating-cloud.cloud-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-cloud.cloud-2 {
  bottom: 15%;
  right: 5%;
  font-size: 80px;
  animation-delay: 2s;
}

.floating-star {
  position: absolute;
  font-size: 30px;
  animation: twinkle 3s ease-in-out infinite;
}

.floating-star.star-1 {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.floating-star.star-2 {
  bottom: 20%;
  left: 25%;
  font-size: 40px;
  animation-delay: 1.5s;
}

.floating-balloon {
  position: absolute;
  font-size: 40px;
  animation: float-side 6s ease-in-out infinite;
}

.floating-balloon.balloon-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-balloon.balloon-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-side {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(15px) rotate(5deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero .hero-content {
  position: relative;
  z-index: 5;
}

.hero .hero-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  background: var(--accent-secondary);
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 8px 0 #7fb3a0;
}

.hero .hero-content .hero-tag .tag-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero .hero-content .hero-tag .tag-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
}

.hero .hero-content .hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.hero .hero-content .hero-headline .highlight {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

/* .hero .hero-content .hero-headline .highlight::after {
  content: "🌈";
  position: absolute;
  top: 75px;
  right: -2px;
  font-size: 30px;
  animation: rotate 20s linear infinite;
} */

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .hero-content .hero-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #5a5a7a;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero .hero-content .hero-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: #2c3e50;
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 #c47a7a;
  transition: all 0.2s ease;
}

.hero .hero-content .hero-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 0 #c47a7a;
  color: #2c3e50;
}

.hero .hero-content .hero-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2c3e50;
  font-weight: 600;
}

.hero .hero-content .hero-cta .cta-link i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: 0.3s;
}

.hero .hero-content .hero-cta .cta-link:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* Stats Grid - Cartoon Cards */
.hero .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 5;
}

.hero .stats-grid .stat-card {
  background: white;
  padding: 25px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero .stats-grid .stat-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: var(--accent-secondary);
  border-radius: 50%;
  opacity: 0.5;
}

.hero .stats-grid .stat-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
}

.hero .stats-grid .stat-card .stat-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 5px 0 #7fb3a0;
}

.hero .stats-grid .stat-card .stat-icon-wrap i {
  font-size: 2rem;
  color: #2c3e50;
}

.hero .stats-grid .stat-card .stat-info .stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
  font-family: var(--heading-font);
}

.hero .stats-grid .stat-card .stat-info .stat-title {
  font-size: 0.9rem;
  color: #5a5a7a;
  font-weight: 600;
}

/*--------------------------------------------------------------
# About Section - CARTOON (FIXED FOR ACTUAL MOBILE)
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

/* Floating background elements */
.about::before {
  content: "🎨";
  position: absolute;
  top: 10%;
  left: 2%;
  font-size: 60px;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
}

.about::after {
  content: "🧸";
  position: absolute;
  bottom: 10%;
  right: 2%;
  font-size: 70px;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite reverse;
}

/* Images Wrapper - Fixed for all screen sizes */
.about .about-images-wrapper {
  position: relative;
  min-height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Main Image */
.about .image-main {
  position: relative;
  width: 85%;
  border-radius: 40px;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  z-index: 1;
  margin: 0 auto;
}

.about .image-main:hover {
  transform: rotate(0deg) scale(1.02);
}

.about .image-main img {
  width: 100%;
  height: auto;
  display: block;
}

/* First Offset Image (Bottom Right) */
.about .image-offset {
  position: relative;
  width: 70%;
  border-radius: 35px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  z-index: 2;
  margin-top: -40px;
  margin-left: auto;
  margin-right: 0;
}

.about .image-offset:hover {
  transform: rotate(0deg) scale(1.05);
}

.about .image-offset img {
  width: 100%;
  height: auto;
  display: block;
}

/* Second Offset Image (Top Left) */
.about .image-offset2 {
  position: relative;
  width: 60%;
  border-radius: 35px;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
  z-index: 2;
  margin-top: -30px;
  margin-right: auto;
  margin-left: 0;
}

.about .image-offset2:hover {
  transform: rotate(0deg) scale(1.05);
}

.about .image-offset2 img {
  width: 100%;
  height: auto;
  display: block;
}

/* Experience Badge - Fixed positioning for mobile */
.about .experience-badge {
  position: absolute;
  top: 15px;
  left: 10px;
  background: var(--accent-color);
  color: #2c3e50;
  padding: 10px 15px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid white;
  box-shadow: 0 10px 0 #c47a7a;
  animation: float-badge 3s ease-in-out infinite;
  z-index: 10;
  min-width: 80px;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.about .experience-badge .years {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--heading-font);
}

.about .experience-badge .text {
  font-size: 0.6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Cute Animals */
.about .cute-animal {
  position: absolute;
  font-size: 30px;
  animation: bounce 3s ease-in-out infinite;
  z-index: 11;
}

.about .cute-animal.animal-1 {
  bottom: -10px;
  left: -10px;
  animation-delay: 0s;
  transform: rotate(-10deg);
}

.about .cute-animal.animal-2 {
  top: -10px;
  right: 10px;
  animation-delay: 1s;
  transform: rotate(10deg);
}

/* About Content */
.about .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
  background: var(--accent-secondary);
  padding: 8px 20px;
  border-radius: 40px;
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
}

.about h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about .lead-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
}

.about .description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
}

/* Features Grid */
.about .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.about .feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 15px;
  border-radius: 30px;
  border: 3px solid #fff;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.about .feature-card i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.about .feature-card span {
  font-size: 0.85rem;
  font-weight: 500;
}

.about .feature-card:hover {
  transform: translateX(5px) scale(1.02);
}

/* Stats Row */
.about .stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 0;
  flex-wrap: wrap;
}

.about .stat-box {
  text-align: center;
  flex: 1;
}

.about .stat-box .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  display: block;
}

.about .stat-box .label {
  font-size: 0.75rem;
  color: var(--default-color);
}

/* Action Buttons */
.about .action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.about .btn-primary-custom {
  background: var(--accent-color);
  color: #2c3e50;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 3px solid white;
  box-shadow: 0 6px 0 #c47a7a;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #c47a7a;
  color: #2c3e50;
}

/* Desktop Styles (Above 992px) */
@media (min-width: 992px) {
  .about .about-images-wrapper {
    position: relative;
    min-height: 500px;
    display: block;
  }
  
  .about .image-main {
    position: relative;
    width: 75%;
    margin: 0 auto;
  }
  
  .about .image-offset {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 55%;
    margin-top: 0;
    margin-left: 0;
  }
  
  .about .image-offset2 {
    position: absolute;
    top: 20px;
    left: 0;
    width: 45%;
    margin-top: 0;
    margin-right: 0;
  }
  
  .about .experience-badge {
    top: 30px;
    left: -20px;
    padding: 15px 20px;
    min-width: auto;
  }
  
  .about .experience-badge .years {
    font-size: 2.2rem;
  }
  
  .about .experience-badge .text {
    font-size: 0.7rem;
  }
  
  .about .cute-animal {
    font-size: 35px;
  }
  
  .about .cute-animal.animal-1 {
    bottom: -15px;
    left: -15px;
  }
  
  .about .cute-animal.animal-2 {
    top: -15px;
    right: 20px;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
  .about .about-images-wrapper {
    min-height: auto;
  }
  
  .about .experience-badge {
    top: 20px;
    left: 15px;
    padding: 12px 18px;
  }
  
  .about .experience-badge .years {
    font-size: 1.8rem;
  }
  
  .about .cute-animal {
    font-size: 32px;
  }
}

/* Mobile Styles (Below 768px) */
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
  
  .about .about-images-wrapper {
    margin-bottom: 30px;
  }
  
  .about .image-main {
    width: 95%;
  }
  
  .about .image-offset {
    width: 80%;
    margin-top: -25px;
  }
  
  .about .image-offset2 {
    width: 70%;
    margin-top: -20px;
  }
  
  .about .experience-badge {
    top: 10px;
    left: 8px;
    padding: 8px 12px;
    min-width: 70px;
  }
  
  .about .experience-badge .years {
    font-size: 1.4rem;
  }
  
  .about .experience-badge .text {
    font-size: 0.55rem;
  }
  
  .about .section-subtitle {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
  
  .about h2 {
    font-size: 1.4rem;
  }
  
  .about .lead-text {
    font-size: 0.85rem;
  }
  
  .about .description {
    font-size: 0.8rem;
  }
  
  .about .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about .feature-card {
    padding: 8px 12px;
  }
  
  .about .feature-card span {
    font-size: 0.75rem;
  }
  
  .about .stats-row {
    gap: 12px;
  }
  
  .about .stat-box .number {
    font-size: 1.3rem;
  }
  
  .about .stat-box .label {
    font-size: 0.65rem;
  }
  
  .about .action-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .about .btn-primary-custom {
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .about .cute-animal {
    font-size: 24px;
  }
  
  .about .cute-animal.animal-1 {
    bottom: -5px;
    left: -8px;
  }
  
  .about .cute-animal.animal-2 {
    top: -8px;
    right: 0;
  }
}

/* Extra Small Mobile (Below 480px) */
@media (max-width: 480px) {
  .about .experience-badge {
    top: 5px;
    left: 5px;
    padding: 6px 10px;
    min-width: 60px;
  }
  
  .about .experience-badge .years {
    font-size: 1.2rem;
  }
  
  .about .experience-badge .text {
    font-size: 0.5rem;
  }
  
  .about .cute-animal {
    font-size: 20px;
  }
  
  .about .cute-animal.animal-1 {
    bottom: -3px;
    left: -5px;
  }
  
  .about .cute-animal.animal-2 {
    top: -5px;
    right: -2px;
  }
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/*--------------------------------------------------------------
# Featured Certification Section - CARTOON STYLE
--------------------------------------------------------------*/

.certification {
  padding: 60px 0;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

/* Floating background elements */
.certification::before {
  content: "🏆";
  position: absolute;
  top: 5%;
  left: 3%;
  font-size: 80px;
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}

.certification::after {
  content: "⭐";
  position: absolute;
  bottom: 5%;
  right: 3%;
  font-size: 70px;
  opacity: 0.06;
  animation: float 6s ease-in-out infinite reverse;
}

/* Section Title */
.certification .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.certification .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
  display: inline-block;
  margin-bottom: 20px;
}

.certification .section-title p {
  font-size: 1.1rem;
  color: var(--default-color);
}

/* Certification Badge */
.certification .certification-badge {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.certification .badge-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 4px solid white;
  box-shadow: 0 8px 0 #c47a7a;
  animation: bounce 2s infinite;
}

.certification .badge-icon i {
  font-size: 3rem;
  color: #2c3e50;
}

.certification .certification-badge h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.certification .certification-badge p {
  font-size: 0.9rem;
  color: var(--default-color);
}

/* Certification Card */
.certification .certification-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.certification .certification-card {
  background: white;
  border-radius: 50px;
  padding: 40px;
  border: 5px solid #fff;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.certification .certification-card::before {
  content: "📜";
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 100px;
  opacity: 0.05;
  transform: rotate(-15deg);
}

/* Certificate Image */
.certification .certificate-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.certification .certificate-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.certification .certificate-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}

.certification .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certification .certificate-image:hover .image-overlay {
  opacity: 1;
}

.certification .image-overlay a {
  background: white;
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  border: 2px solid white;
  box-shadow: 0 5px 0 #c47a7a;
}

.certification .image-overlay a:hover {
  transform: translateY(-3px);
  background: var(--accent-color);
  color: white;
  box-shadow: 0 8px 0 #c47a7a;
}

/* Certification Content */
.certification .certification-content {
  padding: 10px;
}

.certification .cert-header {
  margin-bottom: 25px;
}

.certification .cert-badge {
  display: inline-block;
  background: var(--accent-secondary);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  border: 2px solid white;
  box-shadow: 0 3px 0 #7fb3a0;
}

.certification .cert-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.certification .cert-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0;
}

/* Cert Details */
.certification .cert-details {
  margin-bottom: 25px;
}

.certification .detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 2px dashed #f0f0f0;
}

.certification .detail-item:last-child {
  border-bottom: none;
}

.certification .detail-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 35px;
  text-align: center;
}

.certification .detail-item div {
  flex: 1;
}

.certification .detail-item strong {
  color: var(--heading-color);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.certification .detail-item span {
  color: var(--default-color);
  font-size: 0.95rem;
}

/* Cert Footer */
.certification .cert-footer {
  background: #f8f0fa;
  border-radius: 30px;
  padding: 20px;
  margin-top: 20px;
}

.certification .accreditation {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--accent-secondary);
}

.certification .accreditation i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.certification .accreditation span {
  font-size: 0.85rem;
  color: var(--default-color);
  line-height: 1.4;
}

.certification .verify-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #2c3e50;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  border: 2px solid white;
  box-shadow: 0 5px 0 #c47a7a;
}

.certification .verify-link a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #c47a7a;
  background: #ffb7b7;
}

/* Certification Stats */
.certification .certification-stats {
  background: white;
  border-radius: 60px;
  padding: 30px 40px;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
}

.certification .stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.certification .stat {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.certification .stat .stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.certification .stat .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--default-color);
}

.certification .stat-divider {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-secondary), transparent);
}

/* Responsive */
@media (max-width: 992px) {
  .certification {
    padding: 60px 0;
  }
  
  .certification .certification-card {
    padding: 30px;
  }
  
  .certification .stats-grid {
    flex-direction: column;
  }
  
  .certification .stat-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-secondary), transparent);
  }
}

@media (max-width: 768px) {
  .certification .section-title h2 {
    font-size: 1.8rem;
    padding: 12px 30px;
  }
  
  .certification .certification-card {
    padding: 25px;
  }
  
  .certification .cert-header h3 {
    font-size: 1.3rem;
  }
  
  .certification .cert-header h4 {
    font-size: 1rem;
  }
  
  .certification .detail-item {
    gap: 10px;
  }
  
  .certification .detail-item i {
    font-size: 1.2rem;
    width: 25px;
  }
  
  .certification .detail-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .certification .section-title h2 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .certification .certification-card {
    padding: 20px;
  }
  
  .certification .badge-icon {
    width: 60px;
    height: 60px;
  }
  
  .certification .badge-icon i {
    font-size: 2rem;
  }
  
  .certification .certification-badge h3 {
    font-size: 1.2rem;
  }
  
  .certification .cert-header h3 {
    font-size: 1.1rem;
  }
  
  .certification .detail-item {
    flex-direction: column;
    text-align: center;
  }
  
  .certification .accreditation {
    flex-direction: column;
    text-align: center;
  }
  
  .certification .verify-link a {
    width: 100%;
    justify-content: center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/*--------------------------------------------------------------
# Programs Section - Custom Working Version
--------------------------------------------------------------*/

.programs-carousel {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  position: relative;
  overflow: visible;
}

/* Fix for section title spacing */
.programs-carousel .section-title {
  margin-bottom: 40px;
}

.programs-carousel .section-title h2 {
  margin-bottom: 15px;
}

.programs-carousel .section-title p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.programs-wrapper {
  background: white;
  border-radius: 60px;
  overflow: visible;
  border: 5px solid #fff;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Program Tabs */
.program-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  background: linear-gradient(135deg, #f8f0fa 0%, #f0e6f5 100%);
  flex-wrap: wrap;
  border-bottom: 3px dashed var(--accent-secondary);
}

.tab-btn {
  background: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #5a5a7a;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--default-font);
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
}

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

.tab-btn.active {
  background: var(--accent-color);
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #c47a7a;
}

/* Program Content Container */
.program-content-container {
  position: relative;
  min-height: 550px;
  overflow: visible;
}

.program-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.program-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Split Layout */
.program-split {
  display: flex;
  flex-wrap: wrap;
}

.program-left {
  flex: 1;
  background: linear-gradient(135deg, #f8f0fa 0%, #fef9e7 100%);
  padding: 30px;
  min-width: 300px;
}

.program-right {
  flex: 1;
  padding: 40px;
  background: white;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image Slider */
.image-slider-container {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.slider-main {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-prev {
  left: 15px;
}

.slider-next {
  right: 15px;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.slider-dots .dot {
  width: 30px;
  height: 4px;
  background-color: #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background-color: var(--accent-color);
  width: 50px;
}

.slider-dots .dot:hover {
  background-color: var(--accent-secondary);
}

/* Program Info Styling */
.program-right .program-title{
  display: flex;
  align-items: center;
  gap: 18px;
}

.program-right .program-icon {
  font-size: 4rem;
  margin-bottom: 19px;
  animation: bounce 1s infinite;
  height: 4rem;
  width: 4rem;
}

.program-right .program-title h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

.program-right .program-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 25px;
}

.program-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.program-highlights li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--default-color);
  border-bottom: 1px dashed #f0f0f0;
}

.program-highlights li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  width: 25px;
}

.program-badge {
  display: inline-block;
  background: var(--accent-secondary);
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: 700;
  color: #2c3e50;
  border: 2px solid white;
  box-shadow: 0 6px 0 #7fb3a0;
  text-align: center;
  font-size: 0.9rem;
  width: fit-content;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (min-width: 992px) {
  .program-split {
    flex-direction: row;
  }

  .program-right {
    padding: 40px;
  }

  .program-right h3 {
    font-size: 2rem;
  }

  .slide img {
    height: 450px;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .program-split {
    flex-direction: column;
  }
  
  .program-right {
    padding: 30px;
  }
  
  .program-right h3 {
    font-size: 1.8rem;
  }
  
  .slide img {
    height: 350px;
  }
  
  .tab-btn {
    padding: 8px 8px;
    font-size: 0.5rem;
  }
}

@media (max-width: 768px) {
  .programs-carousel {
    padding: 60px 0;
  }
  
  .program-tabs {
    padding: 15px;
    gap: 8px;
  }
  
  .tab-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .program-left {
    padding: 20px;
  }
  
  .program-right {
    padding: 25px;
  }
  
  .program-right h3 {
    font-size: 1.5rem;
  }
  
  .program-right .program-icon {
    font-size: 3rem;
  }
  
  .slide img {
    height: 280px;
  }
  
  .program-highlights li {
    font-size: 0.85rem;
    padding: 8px 0;
  }
  
  .program-badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .slider-prev,
  .slider-next {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .program-tabs {
    gap: 5px;
  }
  
  .tab-btn {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .slide img {
    height: 220px;
  }
  
  .program-right h3 {
    font-size: 1.3rem;
  }
  
  .program-right .program-description {
    font-size: 0.85rem;
  }
  
  .program-highlights li {
    font-size: 0.75rem;
  }
  
  .program-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
  
  .slider-dots .dot {
    width: 20px;
    height: 3px;
  }
  
  .slider-dots .dot.active {
    width: 30px;
  }
}

/* Main Carousel Dots (Program Indicators) */
.main-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 10px;
  background: linear-gradient(135deg, #f8f0fa 0%, #f0e6f5 100%);
}

.main-dot {
  width: 40px;
  height: 5px;
  background-color: rgba(90, 90, 122, 0.3);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-dot.active {
  background-color: var(--accent-color);
  width: 60px;
}

.main-dot:hover {
  background-color: var(--accent-secondary);
}

/*--------------------------------------------------------------
# Main Navigation Arrows - Always Visible
--------------------------------------------------------------*/

/* Main Navigation Arrows */
.main-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: #2c3e50;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 0 #c47a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.main-nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: #ffb7b7;
  opacity: 1;
  box-shadow: 0 6px 0 #c47a7a;
}

.main-prev {
  left: -25px;
}

.main-next {
  right: -25px;
}

/* Make arrows visible inside container */
.programs-wrapper {
  position: relative;
  overflow: visible;
}

/* Ensure the container doesn't clip the arrows */
.programs-carousel .container {
  overflow: visible;
}

.programs-carousel .row {
  overflow: visible;
}

/* Responsive arrow positioning */
@media (min-width: 1400px) {
  .main-prev {
    left: -35px;
  }
  .main-next {
    right: -35px;
  }
}

@media (max-width: 1399px) and (min-width: 992px) {
  .main-prev {
    left: -20px;
  }
  .main-next {
    right: -20px;
  }
  .main-nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .main-prev {
    left: -15px;
  }
  .main-next {
    right: -15px;
  }
  .main-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .main-prev {
    left: 5px;
  }
  .main-next {
    right: 5px;
  }
  .main-nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .main-prev {
    left: 0px;
  }
  .main-next {
    right: 0px;
  }
  .main-nav-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Portfolio / Gallery Section - SIMPLE FIXED VERSION
--------------------------------------------------------------*/

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
  margin-bottom: 10px;
}

.section-title h2:after {
  display: none;
}
.portfolio .portfolio-filters {
  background: white;
  border-radius: 60px;
  padding: 15px 25px;
  border: 3px solid #fff;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 0 40px 0;
  flex-wrap: wrap;
}

.portfolio .portfolio-filters li {
  padding: 9px 8px;
  border-radius: 40px;
  font-weight: 600;
  color: #5a5a7a;
  transition: 0.3s;
  list-style: none;
  cursor: pointer;
}

.portfolio .portfolio-filters li:hover {
  background: var(--accent-secondary);
  transform: scale(1.05);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: #2c3e50;
  box-shadow: 0 4px 0 #c47a7a;
}

/* Grid layout for gallery items */
.isotope-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.portfolio-item {
  width: calc(33.333% - 24px);
  margin: 0 12px 24px 12px;
}

/* Initially hide ALL items - JavaScript will show the correct ones */
.portfolio-item {
  display: none;
}

.portfolio-item.filter-active-category {
  display: block;
}

/* Project card styling */
.portfolio .project-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio .project-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
}

.portfolio .project-card .image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio .project-card .image-wrapper img,
.portfolio .project-card .image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio .project-card:hover .image-wrapper img {
  transform: scale(1.1);
}

.portfolio .project-card .category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 20px;
  background: var(--accent-secondary);
  border-radius: 40px;
  font-weight: 600;
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
  z-index: 2;
  font-size: 0.85rem;
}

.portfolio .project-card .featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 20px;
  background: #ffd700;
  border-radius: 40px;
  font-weight: 600;
  border: 2px solid white;
  box-shadow: 0 4px 0 #c47a7a;
  z-index: 2;
  font-size: 0.85rem;
}

.portfolio .project-card .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio .project-card .image-wrapper:hover .hover-overlay {
  opacity: 1;
}

.portfolio .project-card .hover-overlay .action-btn {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: white;
  color: var(--accent-color);
  font-size: 2rem;
  border: 3px solid #fff;
  box-shadow: 0 6px 0 #c47a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio .project-card .hover-overlay .action-btn:hover {
  transform: scale(1.1);
  background: var(--accent-color);
  color: white;
}

.portfolio .project-card .project-info {
  padding: 20px 25px;
  text-align: left;
  flex: 1;
}

.portfolio .project-card .project-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #2c3e50;
}

.portfolio .project-card .project-info p {
  font-size: 0.9rem;
  color: #5a5a7a;
  margin: 0;
}

.portfolio .cta-section {
  margin-top: 60px;
  padding: 60px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary) 100%);
  border-radius: 60px;
  border: 4px solid white;
  box-shadow: 0 20px 0 #7fb3a0;
  position: relative;
  overflow: hidden;
}

.portfolio .cta-section .floating-shape {
  font-size: 40px;
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

/* Visit Us Today! button */
.portfolio .cta-section .btn-cta-primary {
  background: none;
  color: #000000;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio .cta-section .btn-cta-primary:hover {
  color: #0d0d0d;
  transform: translateX(5px);
  background: none;
  box-shadow: none;
}

/* Follow Us button */
.portfolio .cta-section .btn-cta-secondary {
  background: none;
  color: #000000;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio .cta-section .btn-cta-secondary:hover {
  color: #0e0b0b;
  transform: translateX(5px);
  background: none;
  box-shadow: none;
}

.gallery-description {
  font-size: 1.2rem;
}

/* Load More Button Styling */
.load-more-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 15px 35px;
  background: var(--accent-color);
  color: #2c3e50;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid white;
  box-shadow: 0 8px 0 #c47a7a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--default-font);
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 #c47a7a;
  background: #ff8e8e;
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-item {
    width: calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    padding: 15px;
    gap: 8px;
  }
  
  .portfolio .portfolio-filters li {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .portfolio-item {
    width: calc(100% - 24px);
  }
  
  .portfolio .cta-section {
    padding: 40px 20px;
  }
}

/* Fix for Gallery section */
#portfolio {
  scroll-margin-top: 100px;
  position: relative;
  display: block;
}

/* Ensure gallery section is visible */
.portfolio {
  display: block;
  min-height: 400px;
}

/* Video styling for gallery - User controlled playback */
.portfolio .project-card .image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* Hide video controls by default for cleaner look */
.portfolio .project-card .image-wrapper video::-webkit-media-controls {
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show video controls on hover */
.portfolio .project-card .image-wrapper:hover video::-webkit-media-controls {
  opacity: 1;
}

/* Don't scale video on hover to avoid control issues */
.portfolio .project-card:hover .image-wrapper video {
  transform: none;
}

/* Optional: Add play button overlay */
.portfolio .project-card .image-wrapper video:not(:playing) {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Team Section - CARTOON STYLE
--------------------------------------------------------------*/

.team {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

/* Floating background elements */
.team::before {
  content: "👩‍🏫";
  position: absolute;
  top: 5%;
  left: 3%;
  font-size: 80px;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
}

.team::after {
  content: "🍎";
  position: absolute;
  bottom: 5%;
  right: 3%;
  font-size: 70px;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite reverse;
}

/* Section Title Styling */
.team .section-title {
  margin-bottom: 50px;
}

.team .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
  display: inline-block;
  margin-bottom: 20px;
}

.team .section-title p {
  font-size: 1.1rem;
  color: var(--default-color);
}

/* Team Cards */
.team .team-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
}

.team .team-card::before {
  content: "🧸";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  transform: rotate(10deg);
}

.team .team-card:hover::before {
  opacity: 0.15;
  transform: rotate(0deg) scale(1.1);
}

.team .team-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 22px 0 rgba(0, 0, 0, 0.1);
}

/* Featured Card */
.team .team-card.featured {
  background: linear-gradient(135deg, #fff9c4 0%, #ffe0b2 100%);
  position: relative;
}

.team .team-card.featured::after {
  content: "⭐ Most Popular ⭐";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #2c3e50;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
  border: 2px solid white;
  box-shadow: 0 4px 0 #c47a7a;
  z-index: 3;
  letter-spacing: 0.5px;
}

.team .team-card.featured:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Member Image */
.team .team-card .member-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.team .team-card .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .team-card:hover .member-img img {
  transform: scale(1.1);
}

/* Social Overlay */
.team .team-card .social-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  text-align: center;
  transition: bottom 0.3s ease;
  z-index: 2;
}

.team .team-card:hover .social-overlay {
  bottom: 0;
}

.team .team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-card .social-links a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  box-shadow: 0 4px 0 #c47a7a;
  text-decoration: none;
}

.team .team-card .social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  background: var(--accent-color);
  color: white;
  box-shadow: 0 6px 0 #c47a7a;
}

/* Member Info */
.team .team-card .member-info {
  padding: 25px;
  text-align: center;
}

.team .team-card .member-info .member-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--accent-secondary);
  color: #2c3e50;
  border: 2px solid white;
  box-shadow: 0 3px 0 #7fb3a0;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.team .team-card .member-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--heading-color);
}

.team .team-card .member-info p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin: 0;
}

/* Team Stats Section */
.team .team-stats {
  margin-top: 60px;
}

.team .team-stats .stats-wrapper {
  background: white;
  border-radius: 60px;
  padding: 35px 30px;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.team .team-stats .stats-wrapper::before {
  content: "👩‍🏫";
  position: absolute;
  bottom: -15px;
  left: -15px;
  font-size: 90px;
  opacity: 0.05;
  transform: rotate(-10deg);
}

.team .team-stats .stats-wrapper::after {
  content: "🧸";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 70px;
  opacity: 0.05;
  transform: rotate(10deg);
}

.team .team-stats .stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  position: relative;
  z-index: 2;
}

.team .team-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.team .team-stats .stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--default-color);
  display: block;
}

.team .team-stats .stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent-secondary), transparent);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .team .team-stats .stats-wrapper {
    flex-direction: column;
    padding: 30px;
  }
  
  .team .team-stats .stat-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-secondary), transparent);
  }
  
  .team .team-card.featured::after {
    font-size: 0.6rem;
    padding: 4px 12px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .team {
    padding: 60px 0;
  }
  
  .team .section-title h2 {
    font-size: 1.8rem;
    padding: 12px 30px;
  }
  
  .team .team-card {
    margin-bottom: 20px;
  }
  
  .team .team-card .member-info {
    padding: 20px;
  }
  
  .team .team-card .member-info h4 {
    font-size: 1.1rem;
  }
  
  .team .team-card .member-info p {
    font-size: 0.8rem;
  }
  
  .team .team-stats .stat-item .stat-number {
    font-size: 1.8rem;
  }
  
  .team .team-stats .stat-item .stat-label {
    font-size: 0.75rem;
  }
  
  .team .team-card.featured {
    transform: scale(1);
  }
  
  .team .team-card.featured:hover {
    transform: translateY(-12px);
  }
  
  .team .team-card.featured::after {
    font-size: 0.55rem;
    padding: 3px 10px;
  }
}

@media (max-width: 576px) {
  .team .section-title h2 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .team .section-title p {
    font-size: 0.9rem;
  }
  
  .team .team-card .member-info .member-badge {
    font-size: 0.65rem;
    padding: 4px 15px;
  }
  
  .team .team-card .member-info h4 {
    font-size: 1rem;
  }
  
  .team .team-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
  
  .team .team-stats .stat-item .stat-label {
    font-size: 0.7rem;
  }
  
  .team .team-card .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .team .team-card.featured::after {
    font-size: 0.5rem;
    padding: 3px 8px;
    white-space: nowrap;
  }
}

/* Animation for floating elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}


/*--------------------------------------------------------------
# Why Us Section - Short & Creative
--------------------------------------------------------------*/

.why-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

/* Split Header */
.why-us-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--accent-secondary);
}

.header-left {
  flex: 1;
  min-width: 250px;
}

.section-title-main {
  font-size: 2rem;  /* Changed to match Programs heading */
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 10px 0;
  font-family: var(--heading-font);
  position: relative;
  display: inline-block;
  background: var(--accent-secondary);  /* Add this - green background like Programs */
  border-radius: 60px;  /* Add this - rounded corners like Programs */
  padding: 15px 40px;  /* Add this - padding like Programs */
  border: 4px solid white;  /* Add this - white border like Programs */
  box-shadow: 0 10px 0 #7fb3a0;  /* Add this - shadow like Programs */
}

.title-underline {
  display: none;
}

.header-right {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.tagline-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.4;
  margin: 0;
}

.tagline-highlight {
  background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* Flip Cards */
.pillars-row {
  margin-bottom: 50px;
}

.pillar-card {
  background: white;
  border-radius: 25px;
  height: 200px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.08);
}

.pillar-front, .pillar-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  transition: transform 0.6s;
}

.pillar-front {
  background: white;
  transform: rotateX(0deg);
}

.pillar-back {
  background: linear-gradient(135deg, var(--accent-secondary), #7fb3a0);
  transform: rotateX(180deg);
  color: #2c3e50;
}

.pillar-card:hover .pillar-front {
  transform: rotateX(180deg);
}

.pillar-card:hover .pillar-back {
  transform: rotateX(0deg);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.pillar-front h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.pillar-stat {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  background: rgba(255, 154, 158, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

.pillar-back p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Parent Love Grid */
.parent-love {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.love-item {
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--default-color);
  border: 2px solid #fff;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.love-item:hover {
  transform: translateY(-3px);
  background: var(--accent-secondary);
}

.love-icon {
  font-size: 1.2rem;
}

/* Simple CTA */
.why-us-cta-simple {
  background: linear-gradient(135deg, #2c3e50, #1a2a3a);
  border-radius: 60px;
  padding: 35px 45px;
  box-shadow: 0 15px 0 #0f1a1f;
  text-align: center;
}

.cta-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  text-align: center;
}

.cta-spark {
  font-size: 2rem;
  display: inline-block;
  animation: spark 1s infinite;
}

@keyframes spark {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.cta-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 10px 0 8px 0;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), #ffb7b7);
  color: #2c3e50;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid white;
  box-shadow: 0 5px 0 #c47a7a;
  transition: all 0.2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #c47a7a;
  color: #2c3e50;
}

.btn-cta-outline {
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent-color);
  transition: all 0.2s ease;
}

.btn-cta-outline:hover {
  background: var(--accent-color);
  color: #2c3e50;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .why-us-header h2 {
    font-size: 1.8rem;
  }
  
  .pillar-card {
    height: 180px;
  }
  
  .pillar-icon {
    font-size: 2.5rem;
  }
  
  .pillar-front h3 {
    font-size: 1.1rem;
  }
  
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }
  
  .why-us-header h2 {
    font-size: 1.5rem;
  }
  
  .pillar-card {
    height: 200px;
  }
  
  .parent-love {
    gap: 10px;
  }
  
  .love-item {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .why-us-cta-simple {
    padding: 25px 20px;
  }
  
  .cta-text h3 {
    font-size: 1.2rem;
  }
  
  .btn-cta-primary, .btn-cta-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section - CARTOON STYLE
--------------------------------------------------------------*/

.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0e6f5 0%, #f8f0fa 100%);
  position: relative;
  overflow: hidden;
}

/* Floating background elements */
.testimonials::before {
  content: "💕";
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 80px;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.testimonials::after {
  content: "⭐";
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-size: 60px;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite reverse;
}

/* Section Title Styling */
.testimonials .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
  display: inline-block;
  margin-bottom: 20px;
}

.testimonials .section-title p {
  font-size: 1.1rem;
  color: var(--default-color);
}

/* Left Sidebar */
.testimonials .testimonials-sidebar {
  background: white;
  border-radius: 50px;
  padding: 40px;
  text-align: center;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonials .testimonials-sidebar::before {
  content: "🌈";
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 80px;
  opacity: 0.1;
  transform: rotate(-15deg);
}

/* Avatar Stack */
.testimonials .testimonials-sidebar .avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 6px 0 #7fb3a0;
  object-fit: cover;
  transition: all 0.3s ease;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar:hover {
  transform: translateY(-5px) scale(1.05);
}

.testimonials .testimonials-sidebar .avatar-stack .avatar-count {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 4px solid white;
  box-shadow: 0 6px 0 #c47a7a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar-count:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Sidebar Content */
.testimonials .testimonials-sidebar .sidebar-content {
  position: relative;
  z-index: 2;
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
  display: inline-block;
  background: var(--accent-secondary);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
  border: 2px solid white;
  box-shadow: 0 4px 0 #7fb3a0;
  margin-bottom: 20px;
}

.testimonials .testimonials-sidebar .sidebar-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.testimonials .testimonials-sidebar .sidebar-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonials .testimonials-sidebar .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #2c3e50;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: 3px solid white;
  box-shadow: 0 6px 0 #c47a7a;
  transition: all 0.3s ease;
}

.testimonials .testimonials-sidebar .btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #c47a7a;
  background: #ffb7b7;
  color: #2c3e50;
}

/* Testimonial Cards */
.testimonials .testimonial-card {
  background: white;
  border-radius: 40px;
  padding: 30px;
  border: 4px solid #fff;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-card::before {
  content: "🧸";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 60px;
  opacity: 0.05;
  transform: rotate(15deg);
}

.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
}

/* Card Top Section */
.testimonials .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonials .testimonial-card .stars {
  display: flex;
  gap: 4px;
}

.testimonials .testimonial-card .stars i {
  color: #ffb700;
  font-size: 1.2rem;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-card .quote-mark {
  width: 50px;
  height: 50px;
  background: var(--accent-secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 5px 0 #7fb3a0;
}

.testimonials .testimonial-card .quote-mark i {
  font-size: 1.5rem;
  color: #2c3e50;
}

/* Testimonial Text */
.testimonials .testimonial-card .testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 25px;
  font-style: italic;
}

/* Author Info */
.testimonials .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 2px dashed var(--accent-secondary);
}

.testimonials .testimonial-card .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 5px 0 #7fb3a0;
  object-fit: cover;
}

.testimonials .testimonial-card .author-details h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--heading-color);
}

.testimonials .testimonial-card .author-details span {
  font-size: 0.8rem;
  color: var(--default-color);
}

/* Swiper Pagination */
.testimonials .swiper-pagination {
  position: relative;
  margin-top: 30px;
  bottom: auto;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--accent-secondary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 10px;
  background: var(--accent-color);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .testimonials .testimonials-sidebar {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials .section-title h2 {
    font-size: 1.8rem;
    padding: 12px 30px;
  }
  
  .testimonials .testimonials-sidebar {
    padding: 30px;
  }
  
  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 1.3rem;
  }
  
  .testimonials .testimonial-card {
    padding: 25px;
  }
  
  .testimonials .testimonial-card .card-top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .testimonials .testimonial-card .quote-mark {
    align-self: flex-end;
  }
}

@media (max-width: 576px) {
  .testimonials .section-title h2 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 50px;
    height: 50px;
  }
  
  .testimonials .testimonial-card .author-img {
    width: 50px;
    height: 50px;
  }
  
  .testimonials .testimonial-card .author-details h5 {
    font-size: 0.9rem;
  }
  
  .testimonials .testimonial-card .author-details span {
    font-size: 0.7rem;
  }
  
  .testimonials .testimonial-card .testimonial-text {
    font-size: 0.9rem;
  }
  
  .testimonials .testimonials-sidebar .btn-view-all {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact Section - CARTOON STYLE
--------------------------------------------------------------*/

.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}

/* Floating background elements */
.contact::before {
  content: "📞";
  position: absolute;
  top: 5%;
  left: 3%;
  font-size: 70px;
  opacity: 0.05;
  animation: float 8s ease-in-out infinite;
}

.contact::after {
  content: "💌";
  position: absolute;
  bottom: 5%;
  right: 3%;
  font-size: 60px;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite reverse;
}

/* Section Title Styling */
.contact .section-title {
  margin-bottom: 50px;
}

.contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
  display: inline-block;
  margin-bottom: 20px;
}

.contact .section-title p {
  font-size: 1.1rem;
  color: var(--default-color);
}

/* Info Panel (Left Side) */
.contact .info-panel {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffb7b7 100%);
  border-radius: 50px;
  padding: 40px;
  border: 5px solid white;
  box-shadow: 0 20px 0 #c47a7a;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact .info-panel::before {
  content: "🌈";
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 100px;
  opacity: 0.1;
  transform: rotate(-15deg);
}

.contact .info-panel::after {
  content: "🧸";
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 70px;
  opacity: 0.08;
  transform: rotate(10deg);
}

/* Panel Header */
.contact .info-panel .panel-header {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.contact .info-panel .section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 40px;
  border: 2px solid white;
  font-weight: 600;
  font-size: 0.85rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.contact .info-panel .panel-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact .info-panel .panel-header p {
  color: #2c3e50;
  opacity: 0.9;
  line-height: 1.5;
}

/* Contact Methods */
.contact .info-panel .contact-methods {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact .info-panel .method-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px;
  border: 2px solid white;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.contact .info-panel .method-item:last-child {
  margin-bottom: 0;
}

.contact .info-panel .method-item:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(10px);
}

.contact .info-panel .method-icon {
  background: white;
  width: 55px;
  height: 55px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 0 #c47a7a;
  transition: all 0.3s ease;
}

.contact .info-panel .method-item:hover .method-icon {
  transform: rotate(5deg) scale(1.05);
}

.contact .info-panel .method-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.contact .info-panel .method-details {
  flex: 1;
}

.contact .info-panel .method-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
  opacity: 0.7;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .info-panel .method-details a,
.contact .info-panel .method-details span {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  transition: 0.3s;
}

.contact .info-panel .method-details a:hover {
  color: white;
}

/* Stats Strip */
.contact .info-panel .stats-strip {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px;
  border: 2px solid white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact .info-panel .stat-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.contact .info-panel .stat-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 5px;
}

.contact .info-panel .stat-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #2c3e50;
  opacity: 0.8;
}

/* Social Connect */
.contact .info-panel .social-connect {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact .info-panel .social-connect > span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact .social-connect .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .social-connect .social-icons a {
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  border: 2px solid #fff;
  box-shadow: 0 5px 0 #c47a7a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact .social-connect .social-icons a:hover {
  transform: translateY(-5px) rotate(10deg);
  background: var(--accent-color);
  color: white;
  box-shadow: 0 8px 0 #c47a7a;
}

/* Form Card (Right Side) */
.contact .form-card {
  background: white;
  border-radius: 50px;
  padding: 40px;
  border: 5px solid #fff;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact .form-card::before {
  content: "✉️";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 80px;
  opacity: 0.05;
  transform: rotate(15deg);
}

/* Form Card Header */
.contact .form-card .form-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact .form-card .header-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-secondary);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 6px 0 #7fb3a0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact .form-card .form-card-header:hover .header-icon {
  transform: rotate(5deg) scale(1.05);
}

.contact .form-card .header-icon i {
  font-size: 2rem;
  color: #2c3e50;
}

.contact .form-card .header-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--heading-color);
}

.contact .form-card .header-text p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin: 0;
}

/* Input Groups */
.contact .form-card .input-group-custom {
  margin-bottom: 5px;
}

.contact .form-card .input-group-custom label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  margin-left: 15px;
}

.contact .form-card .input-wrapper {
  position: relative;
}

.contact .form-card .input-wrapper input,
.contact .form-card .input-wrapper textarea {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 3px solid #e0e0e0;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
  font-family: var(--default-font);
}

.contact .form-card .input-wrapper input:focus,
.contact .form-card .input-wrapper textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 5px rgba(255, 154, 158, 0.2);
  transform: scale(1.02);
  background: white;
}

.contact .form-card .input-wrapper input::placeholder,
.contact .form-card .input-wrapper textarea::placeholder {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.contact .form-card .input-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-color);
  transition: 0.3s;
}

.contact .form-card .input-wrapper.textarea-wrapper i {
  top: 25px;
  transform: none;
}

.contact .form-card .input-wrapper input:focus + i,
.contact .form-card .input-wrapper textarea:focus + i {
  color: #ff6b6b;
  transform: translateY(-50%) scale(1.1);
}

.contact .form-card .input-wrapper.textarea-wrapper textarea:focus + i {
  transform: scale(1.1);
}

/* Form Actions */
.contact .form-card .form-actions {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.contact .form-card .btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent-color);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c3e50;
  border: 3px solid white;
  box-shadow: 0 8px 0 #c47a7a;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--default-font);
}

.contact .form-card .btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #c47a7a;
  background: #ffb7b7;
}

.contact .form-card .btn-submit:active {
  transform: translateY(2px);
  box-shadow: 0 6px 0 #c47a7a;
}

.contact .form-card .btn-submit i {
  font-size: 1.3rem;
  transition: 0.3s;
}

.contact .form-card .btn-submit:hover i {
  transform: translateX(5px);
}

/* Secure Note */
.contact .form-card .secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: #5a5a7a;
  font-size: 0.8rem;
}

.contact .form-card .secure-note i {
  font-size: 1rem;
  color: var(--accent-color);
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* Loading, Error, Success Messages */
.contact .form-card .loading,
.contact .form-card .error-message,
.contact .form-card .sent-message {
  display: none;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.contact .form-card .sent-message {
  display: block;
  background: #a8e6cf;
  color: #2c3e50;
  border: 2px solid white;
}

.contact .form-card .error-message {
  background: #ffb7b7;
  color: #2c3e50;
  border: 2px solid white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact .info-panel {
    margin-bottom: 30px;
  }
  
  .contact .form-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact .section-title h2 {
    font-size: 1.8rem;
    padding: 12px 30px;
  }
  
  .contact .info-panel {
    padding: 30px;
  }
  
  .contact .info-panel .panel-header h3 {
    font-size: 1.5rem;
  }
  
  .contact .info-panel .method-item {
    padding: 15px;
  }
  
  .contact .info-panel .method-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact .info-panel .method-icon i {
    font-size: 1.2rem;
  }
  
  .contact .form-card {
    padding: 25px;
  }
  
  .contact .form-card .form-card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .contact .form-card .header-text h4 {
    font-size: 1.2rem;
  }
  
  .contact .form-card .btn-submit {
    padding: 14px;
    font-size: 1rem;
  }
  
  .contact .info-panel .stats-strip {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .contact .section-title h2 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .contact .section-title p {
    font-size: 0.9rem;
  }
  
  .contact .info-panel {
    padding: 20px;
  }
  
  .contact .info-panel .panel-header h3 {
    font-size: 1.3rem;
  }
  
  .contact .info-panel .method-details a,
  .contact .info-panel .method-details span {
    font-size: 0.85rem;
  }
  
  .contact .form-card {
    padding: 20px;
  }
  
  .contact .form-card .header-icon {
    width: 55px;
    height: 55px;
  }
  
  .contact .form-card .header-icon i {
    font-size: 1.5rem;
  }
  
  .contact .form-card .input-wrapper input,
  .contact .form-card .input-wrapper textarea {
    padding: 12px 12px 12px 45px;
    font-size: 0.9rem;
  }
  
  .contact .form-card .input-wrapper i {
    font-size: 1.1rem;
    left: 15px;
  }
  
  .contact .social-connect .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .contact .form-card .secure-note {
    font-size: 0.7rem;
  }
}

/* Animation for heartbeat */
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Animation for float */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Contact Section Header Improvements */
.contact .section-title {
  margin-bottom: 50px;
}

.contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-secondary);
  border-radius: 60px;
  padding: 15px 40px;
  border: 4px solid white;
  box-shadow: 0 10px 0 #7fb3a0;
  display: inline-block;
  margin-bottom: 25px;
}

.contact .section-title .section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 15px;
  max-width: 600px;
  
}

/* Contact Form Success/Error Messages */
.contact .form-card .sent-message {
  background: #a8e6cf;
  color: #2c3e50;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  animation: fadeInUp 0.5s ease;
}

.contact .form-card .error-message {
  background: #ffb7b7;
  color: #2c3e50;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.contact .form-card .loading {
  background: #ffd3b6;
  color: #2c3e50;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Footer - Improved Cartoon Style
--------------------------------------------------------------*/

.footer {
  background: linear-gradient(135deg, #f0e6f5 0%, #e8d8f0 100%);
  padding: 60px 0 30px;
  margin-bottom: 80px; /* Creates space below footer for fixed buttons */
  position: relative;
  overflow: hidden;
}

/* Footer background pattern */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 154, 158, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(168, 230, 207, 0.08) 0%, transparent 30%);
  pointer-events: none;
}

/* Fun Floating Elements */
.footer-fun {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-fun .floating-emoji {
  position: absolute;
  font-size: 45px;
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
  transition: all 0.3s ease;
}

.footer-fun .floating-emoji:hover {
  opacity: 0.5;
  transform: scale(1.1);
}

.footer-fun .emoji-1 {
  top: 15%;
  left: 3%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.footer-fun .emoji-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: 2s;
  animation-duration: 9s;
}

.footer-fun .emoji-3 {
  top: 45%;
  right: 8%;
  animation-delay: 4s;
  animation-duration: 8s;
}

/* Footer Top Section */
.footer .footer-top {
  position: relative;
  z-index: 2;
}

/* Footer About Section */
.footer-about {
  margin-bottom: 30px;
}

.footer-about .sitename {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.footer-about .sitename:hover {
  transform: scale(1.02);
}

.footer-description {
  color: var(--default-color);
  line-height: 1.5;
  font-size: 0.85rem;
  margin: 15px 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--accent-color);
  border: 2px solid #fff;
  box-shadow: 0 3px 0 #ddd;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--accent-color);
  color: white;
  box-shadow: 0 5px 0 #c47a7a;
}

/* Footer Headings */
.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  border-radius: 2px;
}

/* Footer Links Lists */
.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Footer Contact */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--default-color);
}

.footer-contact li i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--accent-color);
}

.footer-contact li span {
  line-height: 1.4;
}

/* Footer Map */
.footer-map {
  margin-top: 5px;
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  border-radius: 15px;
  border: 3px solid white;
  box-shadow: 0 5px 0 rgba(0,0,0,0.05);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 2px dashed rgba(168, 230, 207, 0.5);
  padding-top: 25px;
  padding-bottom: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.copyright p {
  font-size: 0.75rem;
  color: var(--default-color);
  margin: 0;
}

.credits {
  font-size: 0.7rem;
  color: var(--default-color);
  margin-top: 5px;
}

.credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.credits a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.credits i {
  color: #ff6b6b;
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

/* Legal Links */
.legal-links {
  text-align: right;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.7rem;
  transition: 0.3s;
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.legal-links a:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer {
    padding: 50px 0 30px;
    margin-bottom: 90px;
  }
  
  .footer-about {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer h4 {
    text-align: center;
    display: block;
  }
  
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links, .footer-contact {
    text-align: center;
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .legal-links {
    text-align: center;
    justify-content: center;
    margin-top: 15px;
  }
  
  .copyright, .credits {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 25px;
    margin-bottom: 100px;
  }
  
  .footer-about .sitename {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.8rem;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .footer h4 {
    font-size: 1rem;
  }
  
  .footer-links li a, .footer-contact li {
    font-size: 0.8rem;
  }
  
  .footer-map iframe {
    height: 140px;
  }
  
  .copyright p, .credits, .legal-links a {
    font-size: 0.7rem;
  }
  
  .legal-links {
    gap: 12px;
  }
  
  .legal-links a {
    padding: 3px 8px;
  }
  
  .footer-fun .floating-emoji {
    font-size: 30px;
    opacity: 0.15;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 20px;
    margin-bottom: 120px;
  }
  
  .footer-about .sitename {
    font-size: 1.2rem;
  }
  
  .social-links {
    gap: 8px;
  }
  
  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-contact li {
    margin-bottom: 10px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .legal-links a {
    padding: 4px 12px;
    width: auto;
    display: inline-block;
  }
  
  .footer-fun .floating-emoji {
    font-size: 25px;
    opacity: 0.1;
  }
  
  .footer-fun .emoji-1 {
    top: 10%;
    left: 2%;
  }
  
  .footer-fun .emoji-2 {
    bottom: 15%;
    right: 2%;
  }
  
  .footer-fun .emoji-3 {
    top: 50%;
    right: 3%;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  background: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 3px solid white;
  box-shadow: 0 6px 0 #c47a7a;
  transition: 0.3s;
}

.scroll-top i {
  font-size: 1.8rem;
  color: #2c3e50;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 0 #c47a7a;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader:before {
  border: 6px solid #f0f0f0;
  border-color: var(--accent-color) transparent var(--accent-secondary) transparent;
  width: 80px;
  height: 80px;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .hero .hero-content .hero-headline {
    font-size: 2.8rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
    padding: 12px 30px;
  }

  .about-images-wrapper {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-offset {
    position: relative !important;
    left: 0 !important;
    top: -20px !important;
    width: 80% !important;
  }
  
  .experience-badge {
    position: relative !important;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero .stats-grid {
    margin-top: 40px;
  }
  
  .about h2 {
    font-size: 2rem;
  }
  
  .services .service-card {
    padding: 30px 20px;
  }
  
  .portfolio .cta-section {
    padding: 40px 20px;
  }
  
  .contact .info-panel,
  .contact .form-card {
    padding: 30px 20px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }

  .header .btn-getstarted {
    display: inline-block !important;
    padding: 8px 15px;
    font-size: 13px;
    margin-right: 10px;
    box-shadow: 0 4px 0 #7fb3a0;
  }

  .header .logo h1 {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .header .btn-getstarted span {
    display: none;
  }
  
  .header .btn-getstarted::before {
    content: "📅";
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .header .logo h1 {
    font-size: 18px;
  }

  .btn-getstarted {
    display: none;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero .hero-content .hero-headline {
    font-size: 1.8rem;
  }
  
  .hero .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  
  .about .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services .service-card .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .services .service-card .icon-wrapper i {
    font-size: 2rem;
  }
  
  .services .service-card h3 {
    font-size: 1.3rem;
  }
  
  .team .team-stats .stats-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .team .team-stats .stat-divider {
    display: none;
  }
}



/*--------------------------------------------------------------
# Animation Delays
--------------------------------------------------------------*/
[data-aos-delay] {
  transition-delay: 0s !important;
}

[data-aos].aos-animate {
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

#preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/*--------------------------------------------------------------
# Tour Modal - Popup Form
--------------------------------------------------------------*/

.tour-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tour-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.tour-modal-container {
  background: white;
  border-radius: 50px;
  width: 90%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  border: 5px solid #fff;
  box-shadow: 0 25px 0 rgba(0, 0, 0, 0.1);
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.tour-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  color: var(--accent-color);
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
  border: none;
  z-index: 10;
}

.tour-modal-close:hover {
  color: #ff6b6b;
  transform: rotate(90deg);
}

.tour-modal-header {
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff9e6 100%);
  border-radius: 45px 45px 0 0;
}

.tour-modal-icon {
  font-size: 4rem;
  margin-bottom: 10px;
  animation: bounce 1s infinite;
}

.tour-modal-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.tour-modal-header p {
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-modal-form {
  padding: 30px;
}

.tour-form-group {
  margin-bottom: 20px;
}

.tour-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  margin-left: 10px;
}

.tour-form-group label i {
  color: var(--accent-color);
  margin-right: 5px;
}

.tour-form-group input,
.tour-form-group select,
.tour-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 3px solid #e0e0e0;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: var(--default-font);
  background: #f9f9f9;
}

.tour-form-group input:focus,
.tour-form-group select:focus,
.tour-form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 154, 158, 0.2);
  background: white;
}

.tour-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 0;
}

.tour-form-row .tour-form-group {
  flex: 1;
}

.tour-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffb7b7 100%);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c3e50;
  border: 3px solid white;
  box-shadow: 0 8px 0 #c47a7a;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--default-font);
  margin-top: 10px;
}

.tour-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 #c47a7a;
  background: #ffb7b7;
}

.tour-submit-btn:active {
  transform: translateY(2px);
  box-shadow: 0 6px 0 #c47a7a;
}

.tour-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--default-color);
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #e0e0e0;
}

.tour-note i {
  color: var(--accent-color);
  margin-right: 5px;
}

/* Scrollbar Styling */
.tour-modal-container::-webkit-scrollbar {
  width: 8px;
}

.tour-modal-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.tour-modal-container::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.tour-modal-container::-webkit-scrollbar-thumb:hover {
  background: #ff6b6b;
}

/* Responsive */
@media (max-width: 576px) {
  .tour-modal-container {
    width: 95%;
    border-radius: 35px;
  }
  
  .tour-modal-header {
    padding: 25px 20px 15px;
  }
  
  .tour-modal-header h3 {
    font-size: 1.4rem;
  }
  
  .tour-modal-form {
    padding: 25px 20px;
  }
  
  .tour-form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .tour-submit-btn {
    padding: 14px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Fixed Action Buttons - Bottom Right Corner
--------------------------------------------------------------*/

.fixed-buttons-right {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fixed-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
  font-family: var(--default-font);
  cursor: pointer;
}

.fixed-btn i {
  font-size: 1.3rem;
}

.fixed-btn span {
  font-size: 0.95rem;
}

/* Schedule Visit Button */
.schedule-btn {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, #7fb3a0 100%);
  color: #2c3e50;
  box-shadow: 0 6px 0 #5a8f7a;
}

.schedule-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 #5a8f7a;
  color: #2c3e50;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 6px 0 #0a5a4e;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 #0a5a4e;
  color: white;
}

/* Pulse animation for attention */
@keyframes soft-pulse-green {
  0%, 100% {
    box-shadow: 0 6px 0 #5a8f7a, 0 0 0 0 rgba(168, 230, 207, 0.7);
  }
  50% {
    box-shadow: 0 6px 0 #5a8f7a, 0 0 0 15px rgba(168, 230, 207, 0);
  }
}

@keyframes soft-pulse-wa {
  0%, 100% {
    box-shadow: 0 6px 0 #0a5a4e, 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 6px 0 #0a5a4e, 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

.schedule-btn {
  animation: soft-pulse-green 2s infinite;
}

.whatsapp-btn {
  animation: soft-pulse-wa 2s infinite 0.5s;
}

/* Hover effect - stop animation on hover */
.schedule-btn:hover,
.whatsapp-btn:hover {
  animation: none;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-buttons-right {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .fixed-btn {
    padding: 10px 18px;
  }
  
  .fixed-btn i {
    font-size: 1.1rem;
  }
  
  .fixed-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .fixed-buttons-right {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  
  .fixed-btn {
    padding: 8px 14px;
  }
  
  .fixed-btn span {
    display: none;
  }
  
  .fixed-btn i {
    font-size: 1.3rem;
    margin: 0;
  }
  
  .fixed-btn {
    padding: 12px;
    border-radius: 50%;
  }
}

/* Smooth scrolling for all anchor links */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Increased for taller header */
}

/* Ensure sections have proper scroll-margin for fixed header */
section {
  scroll-margin-top: 120px;
}

/* Fix for any hash link issues */
:target {
  scroll-margin-top: 120px;
}

/* Hero section needs special handling */
#hero {
  scroll-margin-top: 0;
}

/*--------------------------------------------------------------
# Summer Camp Poster Popup Modal
--------------------------------------------------------------*/

.poster-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.poster-popup.active {
  visibility: visible;
  opacity: 1;
}

.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.poster-container {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  animation: posterZoomIn 0.4s ease;
  z-index: 10;
}

@keyframes posterZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.poster-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.poster-close:hover {
  color: #ff6b6b;
  transform: rotate(90deg) scale(1.1);
  background: white;
}

.poster-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.poster-footer {
  text-align: center;
  padding: 15px 20px 20px;
  background: white;
  margin-top: -5px;
  border-radius: 0 0 20px 20px;
}

.poster-enroll-btn {
  background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
  color: #2c3e50;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid white;
  box-shadow: 0 4px 0 #c47a7a;
  font-family: var(--default-font);
}

.poster-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #c47a7a;
}

/* For mobile devices */
@media (max-width: 768px) {
  .poster-close {
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  
  .poster-enroll-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .poster-footer {
    padding: 12px 15px 15px;
  }
}

@media (max-width: 576px) {
  .poster-container {
    max-width: 95%;
  }
  
  .poster-close {
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}