/* ===== GLOBAL RESET ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}



/* MAIN HEADER */
.main-header {
  display: flex;
  flex-wrap: wrap;               
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: auto;
  min-height: 70px;
  background: linear-gradient(90deg, #fef8e7, #fdd3e5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow-x: hidden;
}

/* Add top padding to body so content is not hidden under header */
body {
  padding-top: 70px;
}

/* Tablet/Mobile adjustments - starts at 990px */
@media (max-width: 990px) {
  .main-header {
    padding: 0 1rem;
  }
}


/* LEFT: LOGO */
.header-left {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  margin-right: auto;
}

.site-logo {
  max-height: 70px;
  width: auto;
  display: block;
}

/* Tablet/Mobile: logo a bit smaller */
@media (max-width: 990px) {
  .header-left {
    flex: 0 1 auto;
    margin-right: 0;
  }

  .site-logo {
    max-height: 60px;
  }
}

/* CENTER: NAV MENU - COMPRESSED FOR DESKTOP */
.header-center {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0 0.5rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #1a2c54;
  font-weight: 600;
  font-size: 0.89rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.3px;
}

.nav-menu li a:hover {
  background-color: rgba(65, 196, 169, 0.12);
  color: #41c4a9;
  transform: translateY(-1px);
}

/* RIGHT: PORTAL + HAMBURGER - ALIGNED RIGHT */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  gap: 0.35rem;
  min-width: 0;
  margin-left: auto;
}

/* Portal button */
.portal-btn {
  text-decoration: none;
  background: #ffb800;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.65rem 1.9rem;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(255, 184, 0, 0.35);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  max-width: 100%;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-btn:hover {
  background: #ff9800;
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.45);
  transform: translateY(-1px);
}

/* Hamburger icon - hidden on desktop */
.mobile-menu-toggle {
  display: none;
  width: 28px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background-color: #294d9b;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

/* Tablet/Mobile: button left, icon right; toggle appears */
@media (max-width: 990px) {
  .header-right {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0.5rem;
    order: 2;
    justify-content: flex-end;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .portal-btn {
    order: 1;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
  }

  /* Center nav menu on mobile - hidden by default */
  .header-center {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
    margin: 0;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 0.5rem;
    position: static;
    width: calc(100% + 2rem);    /* stretch beyond header's 1rem padding on each side */
    margin-left: -1rem;          /* cancel out header's left padding */
    margin-right: -1rem;         /* cancel out header's right padding */
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0 1rem;
    background: #ffffff;
    border-radius: 0;            /* no rounded corners - full bleed */
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav-menu li a {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.5rem;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* ============FOOTER FOR ALL========= */

.kids-footer {
  position: relative;
  background: linear-gradient(180deg, #fdf1ff 0%, #fef8e7 60%, #ffe6f2 100%);
  padding-top: 3rem;
  color: #374151;

}

/* Decorative top wave */
.footer-wave {
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 40px;
  background: radial-gradient(circle at 10% 150%, #fdf1ff 20%, transparent 60%),
              radial-gradient(circle at 50% 150%, #fef8e7 20%, transparent 60%),
              radial-gradient(circle at 90% 150%, #ffe6f2 20%, transparent 60%);
  opacity: 0.9;
}

/* FOOTER INNER LAYOUT */
.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1.2fr));
  gap: 2rem;
}

/* Brand / About */
.footer-brand {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.footer-logo {
  max-width: 80px;
  height: auto;
  display: block;
  margin-bottom: 0.9rem;
}

.footer-brand p {
  margin: 0;
  font-family: 'Google Sans', sans-serif;
  max-width: 350px;
}

/* Shared heading style */
.footer-inner h4 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #294d9b;
  position: relative;
  font-family: 'Cause', sans-serif;
}

/* Small playful underline on headings */
.footer-inner h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
}

/* Links columns */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.footer-links a:hover {
  color: #ff7b9b;
  transform: translateX(2px);
}

/* Contact block */
.footer-contact p {
  margin: 0.1rem 0;
  font-size: 0.95rem;
  color: #4b5563;
  font-family: 'Google Sans', sans-serif;
}

.footer-contact strong {
  color: #aa0c8b;
}

/* FOOTER BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.2rem 0.2rem 1.1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #fae3fa;
  background: rgba(46, 39, 69, 0.85);
  backdrop-filter: blur(4px);
  font-family: 'Google Sans', sans-serif;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.9px;
}

.footer-bottom a:hover {
  color: #ff7b9b;
}

/* SMALL PLAYFUL DOTS (DECORATION)  */
.kids-footer::before,
.kids-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.kids-footer::before {
  width: 12px;
  height: 12px;
  background: #f97316;
  top: 16%;
  right: 8%;
}

.kids-footer::after {
  width: 10px;
  height: 10px;
  background: #38bdf8;
  bottom: 18%;
  left: 10%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    grid-template-rows: auto auto auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    text-align: center;
  }

  .footer-inner h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a:hover {
    transform: translateY(-1px);
  }

  .footer-brand,
  .footer-contact {
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}




/* ===========COMING SOON SECTION=========== */
.coming-soon-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #fef8e7 0%, #fdf1ff 70%, #e8d6f3 100%);
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.coming-soon-section::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffb800 40%, transparent);
  border-radius: 50%;
  opacity: 0.3;
  animation: dot-bob 7s ease-in-out infinite;
}

.coming-soon-section::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10%;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #41c4a9 40%, transparent);
  border-radius: 50%;
  opacity: 0.25;
  animation: dot-bob 8s ease-in-out infinite reverse;
}

.coming-soon-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.coming-soon-content {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GLOWING BACKGROUND CIRCLE */
.coming-soon-content::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb800, #ff7b9b);
  opacity: 0.15;
  transition: all 0.6s ease;
  transform: scale(1) rotate(0deg);
  z-index: 0;
}

/* SECONDARY GLOW CIRCLE */
.coming-soon-content::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, #41c4a9, #7dd3fc);
  opacity: 0.15;
  transition: all 0.6s ease;
  transform: scale(1) rotate(0deg);
  z-index: 0;
}

.coming-soon-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(255, 184, 0, 0.25),
    0 20px 40px rgba(15, 23, 42, 0.15);
}

.coming-soon-content:hover::before {
  opacity: 0.3;
  transform: scale(1.8) rotate(180deg);
  top: -35px;
  right: -35px;
}

.coming-soon-content:hover::after {
  opacity: 0.25;
  transform: scale(1.8) rotate(-180deg);
  bottom: -35px;
  left: -35px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 184, 0, 0.12);
  color: #ff7b9b;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 184, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Google Sans', sans-serif;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: auto;
}

.coming-soon-badge::before,
.coming-soon-badge::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  margin: 0 4px;
}

.coming-soon-badge::before {
  background: #facc15;
}

.coming-soon-badge::after {
  background: #34d399;
}

.coming-soon-title {
  font-size: 2.5rem;
  color: #294d9b;
  margin-bottom: 1rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.4px;
  position: relative;
  display: inline-block;
  z-index: 2;
  width: 100%;
  text-align: center;
  letter-spacing: -0.4px;
}

.coming-soon-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
}

.coming-soon-text {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 2rem 0 1.5rem;
  font-family: 'Google Sans', sans-serif;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.coming-soon-decoration {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.coming-soon-decoration i {
  font-size: 1.8rem;
  color: #ffb800;
  animation: float 3s ease-in-out infinite;
}

.coming-soon-decoration i:nth-child(1) {
  animation-delay: 0s;
  color: #ffb800;
}

.coming-soon-decoration i:nth-child(2) {
  animation-delay: 0.5s;
  color: #ff7b9b;
}

.coming-soon-decoration i:nth-child(3) {
  animation-delay: 1s;
  color: #41c4a9;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 3rem 1.25rem;
  }
  
  .coming-soon-content {
    padding: 2.5rem 1.5rem;
  }
  
  .coming-soon-title {
    font-size: 2rem;
  }
  
  .coming-soon-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .coming-soon-decoration i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .coming-soon-section {
    padding: 2.5rem 1rem;
  }
  
  .coming-soon-content {
    padding: 2rem 1.25rem;
  }
  
  .coming-soon-title {
    font-size: 1.7rem;
  }
  
  .coming-soon-title::after {
    width: 60px;
    height: 5px;
  }
  
  .coming-soon-text {
    font-size: 0.95rem;
  }
  
  .coming-soon-decoration {
    gap: 0.75rem;
  }
  
  .coming-soon-decoration i {
    font-size: 1.3rem;
  }
}




/* ========HOME PAGE STARTS========= */

/* HERO SECTION */
.hero-image-bg {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Minimal accents */
    radial-gradient(circle at 10% 10%, rgba(255, 184, 0, 0.25), transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(65, 196, 169, 0.3), transparent 65%),
    /* HEAVY DARK NAVY */
    linear-gradient(
      135deg,
      rgba(107, 32, 68, 0.97) 0%,     /* Very dark navy */
      rgba(75, 51, 110, 0.95) 40%,   /* Slate navy */
      rgba(155, 41, 153, 0.92) 100%  /* Your brand blue */
    );
  z-index: 2;
  opacity: 0.85;
}


/* Container & Content */
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.hero-content {
  max-width: 600px;
  color: white;
  text-align: left;
  position: relative;
}

/* Subtle floating effect for whole content block */
.hero-content {
  animation: hero-float 8s ease-in-out infinite;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family:'Google Sans', sans-serif;
}

/* Little colourful dots in badge */
.hero-badge::before,
.hero-badge::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.hero-badge::before {
  background: #facc15;
}

.hero-badge::after {
  background: #34d399;
}

/* Title */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 2px 3px 6px rgba(15, 23, 42, 0.5);
  font-family: 'Cause', sans-serif;
}

/* Optional playful colour on one word – wrap it in <span> in HTML */
.hero-content h1 span {
  color: #ffdd55;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.8);
}

/* Description */
.hero-content p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  opacity: 0.99;
  max-width: 520px;
  font-family: 'Google Sans', sans-serif;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
  color: #1e293b;
  padding: 0.7rem 1.6rem;              /* reduced height */
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid #ffb800;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 8px 18px rgba(255, 184, 0, 0.4);
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.7px;
}

/* Tiny arrow for fun – add via CSS */
.btn-primary::after {
  content: "→";
  font-size: 1rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffa000, #ff5f8a);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.5);
}

/* Secondary button */
.btn-secondary {
  background: rgba(15, 23, 42, 0.1);
  color: white;
  padding: 0.7rem 1.6rem;              /* reduced height */
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.7px;
}

/* Small icon circle for secondary – purely visual */
.btn-secondary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Floating confetti dots (subtle ECD touch) */
.hero-image-bg::before,
.hero-image-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  z-index: 2;
}

.hero-image-bg::before {
  width: 14px;
  height: 14px;
  background: #f97316;
  top: 16%;
  right: 12%;
  animation: dot-bob 7s ease-in-out infinite;
}

.hero-image-bg::after {
  width: 10px;
  height: 10px;
  background: #38bdf8;
  bottom: 18%;
  left: 8%;
  animation: dot-bob 9s ease-in-out infinite reverse;
}

/* ===== ANIMATIONS ===== */
@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes dot-bob {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.08);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-image-bg {
    min-height: 73vh;
    text-align: center;
  }

  .hero-container {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    animation: none; /* less motion on small screens */
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-bg-image {
    background-position: 70% center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.55rem 1.4rem;      /* smaller height on mobile */
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;      /* further reduce button height */
    font-size: 0.88rem;
  }
}


/* LOCATION SECTION */

.location {
  padding: 3rem 1.5rem;
  /* base soft gradient */
  background:
    linear-gradient(180deg, #fef8e7 0%, #fdf1ff 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* OPTIONAL: add a pattern image with toys/books/doodles
   Save something like `location-pattern.png` in your images folder */
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/back2.jpg"); /* pattern with dolls, toys & books */
  background-repeat: no-repeat;
  background-size: 260px 260px; /* adjust tile size */
  opacity: 0.16;                /* keep it light so text stays clear */
  pointer-events: none;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative; /* above pattern */
  z-index: 1;
}

.location-title {
  font-size: 3.8rem;
  color: #294d9b;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  font-family: "Gochi Hand", sans-serif;
}

/* Playful underline */
.location-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
}

.location-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-top: 1.4rem;
  font-family: "Google Sans", sans-serif;
}

/* mobile responsive */

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .location-title {
    font-size: 3rem;
  }

  .location-title::after {
    width: 65px;
    height: 5px;
  }

  .location-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Mobile phones */
@media (max-width: 768px) {
  .location-title {
    font-size: 2.4rem;
  }

  .location-title::after {
    width: 55px;
    height: 4px;
    bottom: -5px;
  }

  .location-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .location-title {
    font-size: 2rem;
  }

  .location-title::after {
    width: 45px;
    height: 4px;
  }

  .location-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}



/*  OUR SERVICES SECTION */
.services {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #f1f0fc 0%, #fef8e7 50%, #fdf1ff 100%);
}

.services-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.services-title {
  font-size: 2.8rem;
  color: #294d9b;
  margin-bottom: 0.5rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.4px;
}

.services-intro {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.4;
  font-family: 'Google Sans', sans-serif;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Cards - ENHANCED HOVER EFFECTS */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.2rem 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* HIDE INITIALLY */
  opacity: 0;
  transform: translateY(50px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delay for 4 cards */
.service-card:nth-child(1).animate { transition-delay: 0.1s; }
.service-card:nth-child(2).animate { transition-delay: 0.2s; }
.service-card:nth-child(3).animate { transition-delay: 0.3s; }
.service-card:nth-child(4).animate { transition-delay: 0.4s; }


/* GLOWING BACKGROUND CIRCLE - MORE VISIBLE */
.service-card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb800, #ff7b9b);
  opacity: 0.2;
  transition: all 0.4s ease;
  transform: scale(1) rotate(0deg);
  z-index: 0;
}

/* SECONDARY GLOW RING */
.service-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.3), transparent);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 1;
}

/* CAPTIVATING HOVER */
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(255, 184, 0, 0.25),
    0 20px 40px rgba(15, 23, 42, 0.15);
  background: linear-gradient(145deg, #ffffff 0%, #fffaf5 100%);
  border: 1px solid rgba(255, 184, 0, 0.2);
}

/* GLOWING CIRCLE EXPANDS + ROTATES */
.service-card:hover::before {
  opacity: 0.5;
  transform: scale(1.8) rotate(180deg);
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
}

/* EXPLODING GLOW RING */
.service-card:hover::after {
  width: 300px;
  height: 300px;
  opacity: 0.6;
}

/* IMAGE ZOOMS + BRIGHTENS */
.service-image {
  width: 100%;
  border-radius: 7px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  position: relative;
}

.service-card:hover .service-image {
  transform: scale(1.05);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(255, 184, 0, 0.3);
  filter: brightness(1.1) contrast(1.1);
}

/* HEADING POPS + COLOR SHIFT */
.service-heading {
  font-size: 1.5rem;
  color: #294d9b;
  margin-bottom: 0.15rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.3px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-heading {
  color: #ffb800;
  text-shadow: 0 3px 12px rgba(255, 184, 0, 0.4);
  transform: translateY(-2px);
}

/* TEXT LIGHTENS + LIFTS */
.service-text {
  font-size: 0.88rem;
  color: #64647b;
  line-height: 1.5;
  margin-bottom: 1.1rem;
  flex: 1;
  font-family: 'Google Sans', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-text {
  color: #374151;
  transform: translateY(-1px);
}

/* BUTTON SUPERCHARGED */
.service-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
  color: #111827;
  box-shadow: 0 8px 18px rgba(255, 184, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Google Sans', sans-serif;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.service-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(255, 184, 0, 0.5),
    0 0 20px rgba(255, 184, 0, 0.3);
  background: linear-gradient(135deg, #ffa000, #ff5f8a);
}

.service-btn:hover::before {
  left: 100%;
}

/* RIPPLE EFFECT ON TAP */
.service-card:active {
  transform: translateY(-6px) scale(0.98);
}

/* ===== RESPONSIVE HOVER EFFECTS ===== */
@media (max-width: 768px) {
  .service-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
  
  .service-card:hover::before {
    transform: scale(1.5) rotate(90deg);
  }
}



@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services {
    padding: 3rem 1.25rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    text-align: center;
  }

  .service-text {
    text-align: center;
  }

  .service-btn {
    margin: 0 auto;
  }
}



/* QUALITY SCHOOL SECTION */

.quality-school {
  padding: 4.5rem 1.5rem;
  background: linear-gradient(180deg, #e8d6f3 0%, #f0e2d2 70%, #f8f5f0 100%);
}

.quality-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff5e6;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GLOWING BORDER EFFECT */
.quality-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 26px;
  background: linear-gradient(45deg, transparent, rgba(255, 184, 0, 0.6), rgba(255, 123, 155, 0.5), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.quality-inner:hover::before {
  opacity: 1;
}

/* CONTAINER ONLY HOVER */
.quality-inner:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 40px 80px rgba(255, 184, 0, 0.25),
    0 30px 60px rgba(15, 23, 42, 0.2);
}

/* SPINNING BACKGROUND ACCENT */
.quality-inner::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, #ffb800, #ff7b9b);
  border-radius: 50%;
  opacity: 0.25;
  transition: all 0.6s ease;
  z-index: 0;
}

.quality-inner:hover::after {
  transform: scale(1.8) rotate(360deg);
  opacity: 0.5;
  filter: drop-shadow(0 0 25px rgba(255, 184, 0, 0.5));
}

/* Left: Image */
.quality-image {
  flex: 1;
  position: relative;
  min-height: 280px;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Colourful accent on image corner */
.quality-image-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffb800 30%, #ff7b9b 70%);
  border-radius: 50%;
  opacity: 0.85;
}

/* Right: Content */
.quality-content {
  flex: 1;
  color: #1f2933;
}

.quality-subtitle {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(65, 196, 169, 0.12);
  color: #2b977f;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.quality-title {
  font-size: 2.3rem;
  line-height: 1.15;
  color: #294d9b;
  margin-bottom: 0.9rem;
  font-weight: 800;
  font-family: 'Cause', sans-serif;
}

.quality-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #747587;
  margin-bottom: 2rem;
  max-width: 620px;
  font-family: 'Google Sans', sans-serif;
}

/* Stats Row */
.quality-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 3.8rem;
  font-weight: 800;
  color: #ff6a00;
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
  font-family: 'Cause', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .quality-school {
    padding: 3.5rem 1.25rem;
  }

  .quality-inner {
    flex-direction: column;
    padding: 2rem 1.75rem;
    text-align: center;
    gap: 1.5rem;
  }

  .quality-image {
    min-height: 220px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .quality-subtitle {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .quality-title {
    font-size: 1.9rem;
    margin: 0 0 0.9rem 0;
  }

  .quality-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .quality-description {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  /* Smaller lift on mobile */
  .quality-inner:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .quality-inner {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .quality-stats {
    gap: 1.2rem;
  }

  .quality-image {
    min-height: 200px;
  }
}






/* =================CONTACT US PAGE STARTS HERE================ */

.hero-contact {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    /* Minimal accents */
    radial-gradient(circle at 10% 10%, rgba(255, 184, 0, 0.25), transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(65, 196, 169, 0.3), transparent 65%),
    /* HEAVY DARK NAVY */
    linear-gradient(
      135deg,
      rgba(107, 32, 68, 0.97) 0%,     /* Very dark navy */
      rgba(75, 51, 110, 0.95) 40%,   /* Slate navy */
      rgba(155, 41, 153, 0.92) 100%  /* Your brand blue */
    );
  z-index: 2;
  opacity: 0.85;
}

.hero-contact-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.hero-contact-content {
  max-width: 600px;
  color: white;
  text-align: left;
  animation: hero-float 8s ease-in-out infinite;
}

.hero-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Google Sans', sans-serif;
}

.hero-contact-badge::before,
.hero-contact-badge::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.hero-contact-badge::before {
  background: #facc15;
}

.hero-contact-badge::after {
  background: #34d399;
}

.hero-contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 2px 3px 6px rgba(15, 23, 42, 0.5);
  font-family: 'Cause', sans-serif;
}

.hero-contact-text {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  opacity: 0.99;
  max-width: 520px;
  font-family: 'Google Sans', sans-serif;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info {
  padding: 2.5rem 1.25rem;
  background: linear-gradient(180deg, #fef8e7 0%, #fdf1ff 100%);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffb800 40%, transparent);
  border-radius: 50%;
  opacity: 0.3;
  animation: dot-bob 7s ease-in-out infinite;
}

.contact-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-info-title {
  font-size: 2.4rem;
  color: #294d9b;
  margin-bottom: 1.75rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.4px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* GLOWING BACKGROUND CIRCLE */
.contact-card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb800, #ff7b9b);
  opacity: 0.2;
  transition: all 0.5s ease;
  transform: scale(1) rotate(0deg);
  z-index: 0;
}

/* EXPANDING GLOW RING */
.contact-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.25), transparent);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 1;
}

/* CONTAINER ONLY HOVER - POWERFUL! */
.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(255, 184, 0, 0.3),
    0 20px 40px rgba(15, 23, 42, 0.2);
  border: 2px solid rgba(255, 184, 0, 0.25);
}

/* SPINNING + GROWING ACCENT */
.contact-card:hover::before {
  opacity: 0.55;
  transform: scale(2) rotate(180deg);
  top: -35px;
  right: -35px;
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 15px rgba(255, 184, 0, 0.5));
}

/* GLOW RING EXPLODES */
.contact-card:hover::after {
  width: 250px;
  height: 250px;
  opacity: 0.6;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease; /* Subtle icon bounce */
}

.contact-phone { background: linear-gradient(135deg, #ffb800, #ff7b9b); }
.contact-email { background: linear-gradient(135deg, #41c4a9, #7dd3fc); }
.contact-location { background: linear-gradient(135deg, #294d9b, #1e40af); }

/* Subtle icon pulse on hover */
.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 1.2rem;
  color: #294d9b;
  margin-bottom: 0.45rem;
  font-family: 'Cause', sans-serif;
}

.contact-number {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 0.25rem;
  font-family: 'Google Sans', sans-serif;
}


/* COMPACT FORM */
.contact-form-section {
  padding: 3rem 1.25rem;
  background: linear-gradient(180deg, #e8d6f3 0%, #f0e2d2 100%);
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-title {
  font-size: 2.3rem;
  color: #294d9b;
  margin-bottom: 0.5rem;
  font-family: 'Cause', sans-serif;
}

.contact-form-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.3;
  font-family: 'Google Sans', sans-serif;
}

.contact-form {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #41c4a9 30%, transparent);
  opacity: 0.15;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-group.full {
  flex-direction: column;
  gap: 0;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
  font-family: 'Google Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffb800;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.form-submit {
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
  color: #1e293b;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.7px;
  box-shadow: 0 8px 18px rgba(255, 184, 0, 0.4);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-contact {
    min-height: 45vh;
  }
  
  .hero-contact-title {
    font-size: 2rem;
  }
  
  .hero-contact-badge {
    font-size: 0.8rem;
  }
  
  .contact-info-title {
    font-size: 2rem;
  }
  
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .contact-card {
    padding: 1.1rem 1rem;
  }
  
  .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contact-form {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-info,
  .contact-form-section {
    padding: 2rem 1rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-contact-container {
    padding: 1.25rem 1rem;
  }
  
  .hero-contact-title {
    font-size: 1.8rem;
  }
  
  .contact-info-title,
  .contact-form-title {
    font-size: 1.8rem;
  }
}

/* ===== ECD ANIMATIONS (matching home page) ===== */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes dot-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.08); }
}



/* ===========ADIMISSION PAGE STARTS=========== */

/* ===========ADMISSIONS REQUIREMENTS SECTION=========== */
.admissions-requirements {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #fef8e7 0%, #fdf1ff 70%, #e8d6f3 100%);
  position: relative;
  overflow: hidden;
}

.admissions-requirements::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffb800 40%, transparent);
  border-radius: 50%;
  opacity: 0.3;
  animation: dot-bob 7s ease-in-out infinite;
}

.admissions-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.admissions-title {
  font-size: 2.8rem;
  color: #294d9b;
  margin-bottom: 0.75rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.4px;
  position: relative;
  display: inline-block;
}

.admissions-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
}

.admissions-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 3rem;
  font-family: 'Google Sans', sans-serif;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 3rem 0;
}

.requirement-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 1.75rem 1.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* HIDE INITIALLY */
  opacity: 0;
  transform: translateY(50px);
}

.requirement-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delay */
.requirement-card:nth-child(1).animate { transition-delay: 0.1s; }
.requirement-card:nth-child(2).animate { transition-delay: 0.2s; }
.requirement-card:nth-child(3).animate { transition-delay: 0.3s; }
.requirement-card:nth-child(4).animate { transition-delay: 0.4s; }
.requirement-card:nth-child(5).animate { transition-delay: 0.5s; }
.requirement-card:nth-child(6).animate { transition-delay: 0.6s; }


.requirement-card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb800, #ff7b9b);
  opacity: 0.2;
  transition: all 0.5s ease;
  z-index: 0;
}

.requirement-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.25), transparent);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 1;
}

.requirement-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(255, 184, 0, 0.3),
    0 20px 40px rgba(15, 23, 42, 0.2);
  border: 2px solid rgba(255, 184, 0, 0.25);
}

.requirement-card:hover::before {
  opacity: 0.55;
  transform: scale(2) rotate(180deg);
  top: -35px;
  right: -35px;
  width: 100px;
  height: 100px;
}

.requirement-card:hover::after {
  width: 250px;
  height: 250px;
  opacity: 0.6;
}

.requirement-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: white;
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

.cert-icon { background: linear-gradient(135deg, #ffb800, #ff7b9b); }
.residency-icon { background: linear-gradient(135deg, #41c4a9, #7dd3fc); }
.id-icon { background: linear-gradient(135deg, #294d9b, #1e40af); }


.requirement-card:hover .requirement-icon {
  transform: scale(1.15);
}

.requirement-card h3 {
  font-size: 1.3rem;
  color: #294d9b;
  margin-bottom: 0.75rem;
  font-family: 'Cause', sans-serif;
}

.requirement-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.4;
  margin: 0;
  font-family: 'Google Sans', sans-serif;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .admissions-title {
    font-size: 1.7rem;
  }
  
  .requirements-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }
  
  .requirement-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .admissions-requirements {
    padding: 3rem 1rem;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}



/* APPLY NOW SECTION */
.apply-now-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #f0e2d2 0%, #e8d6f3 70%, #fef8e7 100%);
  position: relative;
  overflow: hidden;
}

.apply-now-section::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10%;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #41c4a9 40%, transparent);
  border-radius: 50%;
  opacity: 0.25;
  animation: dot-bob 8s ease-in-out infinite reverse;
}

.apply-now-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.apply-title {
  font-size: 2.8rem;
  color: #294d9b;
  margin-bottom: 0.75rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.4px;
  position: relative;
  display: inline-block;
}

.apply-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
}

.apply-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 3rem;
  font-family: 'Google Sans', sans-serif;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.apply-form {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
}

.apply-form::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -25px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #ffb800 30%, transparent);
  opacity: 0.15;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  position: relative;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  font-family: 'Google Sans', sans-serif;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffb800;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
  transform: translateY(-1px);
}

.apply-submit {
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
  color: #1e293b;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.8px;
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.apply-submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 184, 0, 0.5);
}

.apply-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.apply-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.4s ease;
}

.apply-message.success {
  background: #e8f5e8;
  color: #166534;
  border-left: 4px solid #41c4a9;
}

.apply-message.error {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #ff7b9b;
}

.apply-message.show {
  display: flex !important;
}

.apply-message i {
  font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .apply-now-section {
    padding: 3rem 1.25rem;
  }
  
  .apply-form {
    padding: 2rem 1.5rem;
  }
  
  .apply-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .apply-now-section {
    padding: 2.5rem 1rem;
  }
  
  .apply-form {
    padding: 1.75rem 1.25rem;
  }
}


/* APPLY FORM MESSAGES */
.apply-message {
  display: none !important;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  animation: slideIn 0.4s ease;
  border-left: 4px solid;
  position: relative;
}

.apply-message.success {
  background: #e8f5e8;
  color: #166534;
  border-left-color: #41c4a9;
  box-shadow: 0 8px 20px rgba(65, 196, 169, 0.2);
  display: flex !important;
}

.apply-message.error {
  background: #fef2f2;
  color: #991b1b;
  border-left-color: #ff7b9b;
  box-shadow: 0 8px 20px rgba(255, 123, 155, 0.2);
  display: flex !important;
}

.apply-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@keyframes slideIn {
  from { 
    opacity: 0; 
    transform: translateY(-10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.apply-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}


/* ==============ABOUT US PAGE STARTS========= */


/* MISSION VISION SECTION (COMPACT) */
.mission-vision-section {
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, #fef8e7 0%, #fdf1ff 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #ffb800 40%, transparent);
  border-radius: 50%;
  opacity: 0.3;
  animation: dot-bob 7s ease-in-out infinite;
}

.mission-vision-section::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10%;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, #41c4a9 40%, transparent);
  border-radius: 50%;
  opacity: 0.25;
  animation: dot-bob 8s ease-in-out infinite reverse;
}

.mission-vision-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.mission-card,
.vision-card,
.motto-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
}

.mission-card.animate,
.vision-card.animate,
.motto-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.mission-card.animate { transition-delay: 0.1s; }
.vision-card.animate { transition-delay: 0.2s; }
.motto-card.animate { transition-delay: 0.3s; }

.mission-card::before,
.vision-card::before,
.motto-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb800, #ff7b9b);
  opacity: 0.12;
  transition: all 0.5s ease;
  z-index: 0;
}

.vision-card::before {
  background: radial-gradient(circle at 30% 30%, #41c4a9, #7dd3fc);
}

.motto-card::before {
  background: radial-gradient(circle at 30% 30%, #294d9b, #1e40af);
}

.mission-card:hover,
.vision-card:hover,
.motto-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 30px rgba(255, 184, 0, 0.2);
}

.mission-card:hover::before,
.vision-card:hover::before,
.motto-card:hover::before {
  opacity: 0.25;
  transform: scale(1.5) rotate(180deg);
  top: -25px;
  right: -25px;
}

.mission-icon,
.vision-icon,
.motto-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.3rem;
  color: white;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.mission-icon {
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
}

.vision-icon {
  background: linear-gradient(135deg, #41c4a9, #7dd3fc);
}

.motto-icon {
  background: linear-gradient(135deg, #294d9b, #1e40af);
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon,
.motto-card:hover .motto-icon {
  transform: scale(1.08);
}

.mission-title,
.vision-title,
.motto-title {
  font-size: 1.4rem;
  color: #294d9b;
  margin-bottom: 0.6rem;
  font-family: 'Cause', sans-serif;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 2;
}

.mission-title::after,
.vision-title::after,
.motto-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 35px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b);
}

.vision-title::after {
  background: linear-gradient(90deg, #41c4a9, #7dd3fc);
}

.motto-title::after {
  background: linear-gradient(90deg, #294d9b, #1e40af);
}

.mission-text,
.vision-text,
.motto-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.4;
  margin: 0.75rem 0 0;
  font-family: 'Google Sans', sans-serif;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE - ALL CARDS EQUAL ON MOBILE */
@media (max-width: 900px) {
  .mission-vision-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .mission-card,
  .vision-card,
  .motto-card {
    width: 100%;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .mission-vision-section {
    padding: 1.5rem 1rem;
  }
  
  .mission-card,
  .vision-card,
  .motto-card {
    min-height: 180px;
    padding: 1.25rem 1rem;
  }
  
  .mission-title,
  .vision-title,
  .motto-title {
    font-size: 1.2rem;
  }
  
  .mission-text,
  .vision-text,
  .motto-text {
    font-size: 0.88rem;
  }
  
  .mission-icon,
  .vision-icon,
  .motto-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}


/* ABOUT OWNER SECTION */
.about-owner-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fdf1ff 50%, #fef8e7 100%);
  position: relative;
  overflow: hidden;
}

.about-owner-section::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 5%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffb800 40%, transparent);
  border-radius: 50%;
  opacity: 0.2;
  animation: dot-bob 8s ease-in-out infinite;
}

.about-owner-section::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 5%;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #41c4a9 40%, transparent);
  border-radius: 50%;
  opacity: 0.2;
  animation: dot-bob 7s ease-in-out infinite reverse;
}

.about-owner-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.owner-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.owner-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.owner-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 184, 0, 0.25);
}

.owner-image-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #ffb800;
  border-radius: 24px;
  z-index: 1;
  opacity: 0.3;
  transition: all 0.5s ease;
}

.owner-image-wrapper:hover .owner-image-accent {
  top: -10px;
  right: -10px;
  opacity: 0.6;
}

.owner-content {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.owner-content::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #ffb800, #ff7b9b);
  opacity: 0.08;
  border-radius: 50%;
  transition: all 0.6s ease;
}

.owner-content:hover::before {
  transform: scale(1.5) rotate(180deg);
  opacity: 0.15;
}

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 184, 0, 0.1);
  color: #ff7b9b;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 184, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Google Sans', sans-serif;
}

.owner-title {
  font-size: 2rem;
  color: #294d9b;
  margin-bottom: 1.5rem;
  font-family: 'Cause', sans-serif;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  margin-top: -6px;
}

.owner-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
}

.owner-story {
  margin-bottom: 1.5rem;
}

.owner-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: 'Google Sans', sans-serif;
}

.owner-text:last-of-type {
  margin-bottom: 0;
}

.owner-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 184, 0, 0.3);
}

.signature-name {
  font-size: 1rem;
  font-weight: 600;
  color: #294d9b;
  font-family: 'Cause', sans-serif;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-owner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .owner-image-wrapper {
    max-width: 320px;
  }
  
  .owner-content {
    padding: 2rem;
  }
  
  .owner-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .about-owner-section {
    padding: 2.5rem 1.25rem;
  }
  
  .owner-content {
    padding: 1.75rem;
  }
  
  .owner-title {
    font-size: 1.6rem;
  }
  
  .owner-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .about-owner-section {
    padding: 2rem 1rem;
  }
  
  .owner-image-wrapper {
    max-width: 280px;
  }
  
  .owner-content {
    padding: 1.5rem;
  }
  
  .owner-title {
    font-size: 1.4rem;
  }
  
  .owner-title::after {
    width: 50px;
    height: 3px;
  }
  
  .owner-text {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
  
  .owner-badge {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
  }
  
  .signature-name {
    font-size: 0.9rem;
  }
}


/* ABOUT STATS SECTION */
.about-stats-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #fef8e7 0%, #fdf1ff 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-stats-section::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffb800 40%, transparent);
  border-radius: 50%;
  opacity: 0.2;
  animation: dot-bob 7s ease-in-out infinite;
}

.about-stats-section::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10%;
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, #41c4a9 40%, transparent);
  border-radius: 50%;
  opacity: 0.2;
  animation: dot-bob 8s ease-in-out infinite reverse;
}

.about-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.about-stat-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 0, 0.1);
}

.about-stat-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #ffb800, #ff7b9b);
  opacity: 0.1;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(255, 184, 0, 0.15);
  border-color: rgba(255, 184, 0, 0.3);
}

.about-stat-card:hover::before {
  transform: scale(1.8) rotate(180deg);
  opacity: 0.2;
}

.about-stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #294d9b;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-family: 'Cause', sans-serif;
}

.about-stat-label {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .about-stats-section {
    padding: 2.5rem 1.25rem;
  }
  
  .about-stat-card {
    padding: 1.5rem 0.75rem;
  }
  
  .about-stat-number {
    font-size: 2rem;
  }
  
  .about-stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .about-stats-section {
    padding: 2rem 1rem;
  }
  
  .about-stats-container {
    gap: 1rem;
  }
  
  .about-stat-card {
    padding: 1.25rem 0.5rem;
  }
  
  .about-stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .about-stat-number {
    font-size: 1.6rem;
  }
  
  .about-stat-label {
    font-size: 0.75rem;
  }
}


/* ENROLL WITH US SECTION */
.enroll-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.enroll-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/students.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.04);
  filter: saturate(1.05);
  transition: transform 8s ease;
}

.enroll-section:hover .enroll-bg {
  transform: scale(1.08);
}

.enroll-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(41, 77, 155, 0.85) 0%,
    rgba(155, 41, 153, 0.8) 100%
  );
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.enroll-section:hover .enroll-overlay {
  opacity: 0.85;
}

.enroll-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
}

.enroll-content-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 2.5rem 2rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.8s ease;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.enroll-content-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ffb800, #ff7b9b);
  opacity: 0;
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 0;
}

.enroll-content-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #41c4a9, #7dd3fc);
  opacity: 0;
  border-radius: 50%;
  transition: all 0.6s ease;
  z-index: 0;
}

.enroll-content-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 184, 0, 0.25);
}

.enroll-content-card:hover::before {
  opacity: 0.15;
  transform: scale(2) rotate(180deg);
  top: -20px;
  right: -20px;
}

.enroll-content-card:hover::after {
  opacity: 0.12;
  transform: scale(2) rotate(-180deg);
  bottom: -20px;
  left: -20px;
}

.enroll-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 184, 0, 0.1);
  color: #ff7b9b;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 184, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Google Sans', sans-serif;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.enroll-content-card:hover .enroll-badge {
  background: rgba(255, 184, 0, 0.15);
  border-color: #ffb800;
}

.enroll-badge::before,
.enroll-badge::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.enroll-badge::before {
  background: #facc15;
}

.enroll-badge::after {
  background: #34d399;
}

.enroll-content-card:hover .enroll-badge::before {
  transform: scale(1.2);
}

.enroll-content-card:hover .enroll-badge::after {
  transform: scale(1.2);
}

.enroll-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #294d9b;
  margin-bottom: 0.75rem;
  font-family: 'Cause', sans-serif;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.enroll-content-card:hover .enroll-title {
  color: #1e3a7a;
}

.enroll-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffb800, #ff7b9b, #41c4a9);
  margin: 0.75rem auto 0;
  border-radius: 999px;
  transition: all 0.4s ease;
}

.enroll-content-card:hover .enroll-title::after {
  width: 80px;
  background: linear-gradient(90deg, #ffa000, #ff5f8a, #34d399);
}

.enroll-text {
  font-size: 1rem;
  line-height: 1.5;
  margin: 1.5rem 0;
  color: #4b5563;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Google Sans', sans-serif;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.enroll-content-card:hover .enroll-text {
  color: #1f2937;
}

.enroll-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.enroll-btn-primary {
  background: linear-gradient(135deg, #ffb800, #ff7b9b);
  color: #1e293b;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 5px 12px rgba(255, 184, 0, 0.2);
  font-family: 'Google Sans', sans-serif;
}

.enroll-btn-primary i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.enroll-btn-primary:hover {
  background: linear-gradient(135deg, #ffa000, #ff5f8a);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 184, 0, 0.3);
}

.enroll-btn-primary:hover i {
  transform: translateX(3px);
}

.enroll-btn-secondary {
  background: #ffffff;
  color: #294d9b;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid #ffb800;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Google Sans', sans-serif;
}

.enroll-btn-secondary i {
  font-size: 1rem;
  color: #ff7b9b;
  transition: transform 0.3s ease;
}

.enroll-btn-secondary:hover {
  background: #fff9e6;
  transform: translateY(-3px);
  border-color: #ff7b9b;
  box-shadow: 0 8px 18px rgba(255, 184, 0, 0.2);
}

.enroll-btn-secondary:hover i {
  transform: translateX(3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .enroll-section {
    min-height: 380px;
  }
  
  .enroll-container {
    padding: 2rem 1.25rem;
  }
  
  .enroll-content-card {
    padding: 2rem 1.5rem;
  }
  
  .enroll-title {
    font-size: 2rem;
  }
  
  .enroll-text {
    font-size: 0.95rem;
    margin: 1.25rem 0;
  }
}

@media (max-width: 480px) {
  .enroll-section {
    min-height: 350px;
  }
  
  .enroll-container {
    padding: 1.5rem 1rem;
  }
  
  .enroll-content-card {
    padding: 1.5rem 1.25rem;
  }
  
  .enroll-title {
    font-size: 1.6rem;
  }
  
  .enroll-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }
  
  .enroll-btn-primary,
  .enroll-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}