:root {
  --primary-color: #FFF8F6;
  /*WHITE */
  --secondary-color: #F25435;
  /* RED TONE */
  --success-color: #DB2038;
  /* BLUE BLACK */
  --danger-color: #333333;
  /* BLACK */
  --warning-color: #FEECEE;
  /* LIGHT PINK */
  --info-color: #F14079;
  /* LOGO COLOR */
  --light-color: #F8F5ED;
  /* LIGHT WHITE */
  --dark-color: #72BE48;
  /* GREEN*/
  --text-color: #F4F5F3;
  /* GREAY */
  --background-color: #1BBBB4;
  /* BLUE */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* 🔹 Navbar Base */
.navbar {
  background-color: white;
  color: #F14079;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid black;
  font-size: 25px;
  font-weight: 600;
}

/* Logo */
.navbar-brand img {
  height: 60px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Links */
.nav-link {
  color: var(--info-color) !important;
  font-weight: 500;
  padding: 10px 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: yellow !important;
  transform: translateY(-2px);
}

/* 🔹 Dropdown (Show on Hover) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-menu {
  background-color: #FEECEE;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #333333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #F25435;
  color: #fff;
}

/* 🔹 Support Button */
.btn-danger {
  background-color: #F14079;
  border: none;
  /* transition: all 0.3s ease; */
}

.btn-danger a {
  color: #fff;
  text-decoration: none;
}

.btn-danger:hover {
  background-color: #DB2038;
  transform: scale(1.05);
}

/* 🔹 Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.containerr {
  width: 100%;
  height: 50%;
  text-align: center;
  background-color: #F14079;
}

.container .hero-img {
  width: 100%;
  height: 50%;
  border-radius: 12px;
}

.hero-section-text {
  margin-top: -45%;
  background-color: var(--text-color);
  color: var(--info-color);
  font-size: xx-large;
}

.hero-section-text p {
  font-size: 80px;
  font-weight: 600;
  font-style: normal;
  text-shadow: 4px 6px 12px var(--danger-color);
  text-align: center;
  color: rgba(253, 253, 0, 0.966);
}

/* Button styling */
.hero-buttons {
  display: flex;
  gap: 55px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  /* mobile me line break allow karega */
}

/* 🎨 Button styling (Your existing style applied to both) */
.hero-section-text button {
  width: 20%;
  min-width: 140px;
  border-radius: 20px;
  font-size: 18px;
  padding: 10px 20px;
  box-shadow: 25px 10px 16px var(--danger-color);
  cursor: pointer;
  /* border: 1.5px solid var(--danger-color); */
  transition: all 0.3s ease;
  background-color: yellow;
  color: black;
  font-weight: 600;
}

/* ✨ Hover effect (applies to both buttons) */
.hero-section-text button:hover {
  transform: scale(1.1);
  background-color: #333333;
  color: yellow;
}

/* 🧭 Visit Button custom tweak */
.visit-btn {
  background-color: transparent;
  color: var(--danger-color);
}

.visit-btn:hover {
  background-color: #333333;
  color: yellow;
}

.cr-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* padding: 60px 10%; */
  flex-wrap: wrap;
  /* safety for small screens */
  margin-top: 40%;
}

/* Image container */
.video-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  /* ensures responsive stacking */
}

/* 🎥 Video Container */
.video-container {
  flex: 1 1 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive Video */
.responsive-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

/* 📝 Text Container */
.text-container {
  flex: 1 1 50%;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  padding: 20px 25px;
}

.text-container h1 {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 30px;
  color: #6E196E;
}

.text-container ul {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  padding-left: 20px;
}

.text-container ul li strong {
  font-weight: 600;
}

.cartoon-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 60px 10%;
  background: #f9f9f9;
  text-align: center;
}

.section-heading {
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  background-color: rgb(243, 163, 190);
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(110, 25, 110);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
  animation: fadeInUp 1s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 120px;
    opacity: 1;
  }
}


/* 🧩 Box Style */
.cartoon-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 350px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
  /* ensures pointer not clickable */
}

/* ✨ Hover animation (mouse arrow ke upar jaye tab chale) */
.cartoon-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* 🖼️ Image (zoom thoda sa on hover) */
.cartoon-box img {
  width: 100%;
  height: 75%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.cartoon-box:hover img {
  transform: scale(1.08);
}

/* 🔹 Border line */
.cartoon-box .line {
  width: 60%;
  height: 3px;
  background-color: var(--danger-color);
  margin: 10px 0;
  border-radius: 5px;
  transition: width 0.4s ease, background-color 0.4s ease;
}

/* Line animation on hover */
.cartoon-box:hover .line {
  width: 80%;
  background-color: var(--primary-color);
}

/* 📝 Heading */
.cartoon-box h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 5px;
  transition: color 0.3s ease;
}

/* Text color change on hover */
.cartoon-box:hover h3 {
  color: var(--primary-color);
}

.event-section {
  width: 100%;
  background-color: rgb(243, 163, 190);
  padding: 60px 0;
  text-align: center;
}

/* 🔹 Section Heading (same style) */
.event-section .section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgb(110, 25, 110);
  margin-bottom: 40px;
  text-transform: capitalize;
  animation: fadeInUp 1s ease;
  background: none;
  /* Remove pink background if any */
}

/* 🧱 Event box layout — now full width */
.event-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1600px;
  /* optional for large screens */
  margin: 0 auto;
  /* center content inside full width */
  padding: 0 50px;
  /* small side padding for look */
}

/* 🎀 Box Style */
.event-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.event-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 🖼️ Image */
.event-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 📜 Event text */
.event-box h3 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 700;
  margin: 15px 15px 5px;
}

.event-box p {
  font-size: 1rem;
  color: #555;
  margin: 0 15px 20px;
  line-height: 1.5;
}

/* 🔘 Show Button */
.event-btn {
  border: 2px solid var(--danger-color);
  background: transparent;
  color: #6E196E;
  font-weight: 900;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  margin-bottom: 20px;
  background-color: rgb(243, 163, 190);
  text-decoration: none;
}

.event-btn:hover {
  background: var(--danger-color);
  color: #fff;
  transform: scale(1.08);
}

.why-choose-section {
  width: 100%;
  background-color: var(--light-color);
  padding: 70px 10%;
  text-align: center;
}

/* 💖 Heading */
.why-choose-section .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--danger-color);
  margin-bottom: 60px;
  text-transform: capitalize;
  animation: fadeInUp 1s ease;
}

.why-choose-section .section-heading span {
  color: var(--info-color);
}

/* 🧱 Boxes */
.why-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 35px 25px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid transparent;
}

.why-box:hover {
  transform: translateY(-10px);
  border-color: var(--info-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* 🌟 Icons */
.why-box i {
  font-size: 3rem;
  color: var(--info-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.why-box:hover i {
  color: var(--danger-color);
  transform: scale(1.15);
}

/* 🧾 Text */
.why-box h3 {
  font-size: 1.3rem;
  color: var(--danger-color);
  margin-bottom: 12px;
  font-weight: 700;
}

.why-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.testimonial-section {
  width: 100%;
  background: linear-gradient(120deg, var(--light-color), var(--warning-color));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--danger-color);
  margin-bottom: 50px;
  text-transform: capitalize;
  animation: fadeInUp 1s ease;
}

.testimonial-section .section-heading span {
  color: var(--info-color);
}

/* Wrapper */
.testimonial-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Container */
.testimonial-container {
  width: 70%;
  max-width: 900px;
  position: relative;
}

/* Box */
.testimonial {
  display: none;
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.8s ease;
}

.testimonial.active {
  display: block;
}

/* Text */
.testimonial p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  font-style: italic;
}

/* Parent Info */
.parent-info {
  margin-top: 25px;
}

.parent-info img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--info-color);
  margin-bottom: 10px;
}

.parent-info h4 {
  font-size: 1.2rem;
  color: var(--danger-color);
  font-weight: 700;
}

.parent-info span {
  font-size: 0.95rem;
  color: #555;
}

/* Buttons */
.testimonial-wrapper button {
  position: absolute;
  background-color: var(--info-color);
  color: #fff;
  border: none;
  padding: 15px 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-wrapper button:hover {
  background-color: var(--danger-color);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 8%;
}

.next {
  right: 8%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reel-box {
  width: 280px;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
}

.reel-box video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(110, 25, 110, 0.7);
  border-radius: 50%;
  padding: 15px;
}

.accreditation-section {
  width: 100%;
  background: #f9f9f9;
  padding: 80px 10%;
  text-align: center;
}

.accreditation-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-transform: capitalize;
}

.accreditation-section .section-heading span {
  color: var(--danger-color);
}

/* 🔹 Container for logos */
.accreditation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* 🔹 Individual box */
.accreditation-box {
  width: 220px;
  height: 140px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.accreditation-box:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* 🔹 Image style */
.accreditation-box img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.accreditation-box:hover img {
  transform: scale(1.05);
}

.footer {
  background: #333;
  color: #fff;
  padding: 60px 4% 20px;
  font-family: 'Poppins', sans-serif;
}

/* Grid layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

/* Logo */
.footer-logo {
  width: 280px;
  height: auto;
}

.footer-desc {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Headings */
.footer-column h3 {
  color: #F14079;
  margin-bottom: 18px;
  font-size: 1.3rem;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #72BE48;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #F14079;
}

/* Contact text */
.footer-column p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social icons */
.footer-social {
  margin-top: 10px;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #F14079;
  transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #ccc;
}


/* 🌐 Responsive design breakpoints */

/* Tablets (max width 992px) */
@media (max-width: 992px) {

  /* 🔹 Responsive Fix */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }


  /* Dropdown menu */
  .dropdown-menu {
    background-color: #FEECEE;
    border-radius: 10px;
    border: none;
  }

  .dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
  }

  /* Support button */
  .btn-danger {
    background-color: transparent;
    border: none;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  #mainNavbar {
    background-color: #712a86;
  }

  .navbar-nav {
    color: #222222;

  }

  .hero-section-text p {
    font-size: 60px;
  }

  .hero-section-text button {
    width: 30%;
    font-size: 16px;
  }

  .cr-section {
    padding: 40px 5%;
  }

  .video-text-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .video-container,
  .text-container {
    flex: 1 1 100%;
  }

  .text-container h1 {
    font-size: 2rem;
  }

  .text-container p {
    font-size: 1rem;
  }

  .cartoon-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-container {
    width: 85%;
  }

  .prev {
    left: 5%;
  }

  .next {
    right: 5%;
  }

  .accreditation-container {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1;
  }

  .navbar-toggler {
    border: none;
    color: #fff;
    font-size: 28px;
  }

  .navbar-collapse {
    width: 100%;
    background-color: #6E196E;
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .navbar-nav .nav-link {
    color: white !important;
    font-size: 1.1rem;
    padding: 10px;
  }

  /* Support button center */
  .navbar-support {
    display: none !important;
  }

  .navbar-collapse.show .btn-danger {
    display: block;
    margin: 15px auto;
    padding: 10px 80px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    width: auto;
    white-space: nowrap;
    border-radius: 25px;
    line-height: 1.4;
  }

  .navbar-nav {
    background-color: transparent;
    margin-right: 50%;
    /* flex-flow: column; */
  }

  .animated-list {
    width: 100%;
  }

  .animated-list li {
    text-align: justify;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 10px;

  }

  .hero-section-text p {
    font-size: 45px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-section-text button {
    width: 60%;
  }

  .cartoon-section {
    grid-template-columns: 1fr;
  }

  .cartoon-box {
    height: 320px;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .section-heading p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .why-container {
    grid-template-columns: 1fr;
    /* single column layout */
    gap: 20px;
  }

  .why-box {
    width: 100%;
    padding: 25px 15px;
  }

  .why-box i {
    font-size: 2.3rem;
  }

  .why-box h3 {
    font-size: 1.2rem;
  }

  .why-box p {
    font-size: 0.95rem;
  }

  .testimonial-container {
    width: 95%;
  }

  .testimonial {
    padding: 35px 25px;
  }

  .footer {
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .navbar-nav {
    background-color: transparent;
    margin-right: 50%;
    /* flex-flow: column; */
  }

  .event-container {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-top: -20%;
    font-size: 1.8rem;
  }

  .prev,
  .next {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Mobile portrait (max width 480px) */
  @media (max-width: 480px) {
    .navbar-nav {
      background-color: transparent;
      margin-right: 50%;
      /* flex-flow: column; */
    }

    .navbar {
      display: flex;
      flex-flow: column wrap;
      transition: all 0.4s;
    }

    .navbar-collapse.show .btn-danger {
      padding: 10px 80px;
      font-size: 17px;
      margin-left: -0%;
      margin-top: -5%;

    }

    .navbar-collapse.show .btn-danger #span {
      margin-left: -80px;
    }

    .hero-section-text p {
      font-size: 30px;
      text-shadow: 2px 4px 6px var(--danger-color);
    }

    .hero-section-text button {
      width: 60%;
      font-size: 14px;
      box-shadow: 8px 4px 10px var(--danger-color);
    }

    .cr-section {
      flex-direction: column-reverse;
      /* 🔄 image niche, text upar */
      text-align: center;
      gap: 25px;
    }

    .cortoon-container {
      flex: 0 0 100%;
    }

    .text-container {
      flex: 0 0 100%;
    }

    .cortoon-container img {
      max-width: 180px;
      margin-bottom: 50%;
    }

    .text-container h1 {
      font-size: 1.8rem;
    }

    .cartoon-box {
      height: 320px;
    }

    .cartoon-box h3 {
      font-size: 1rem;
    }

    .why-container {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  @media (hover: none) {
    .why-box:hover {
      transform: none;
      border-color: transparent;
      box-shadow: none;
    }

    .cartoon-box:hover,
    .event-box:hover,
    .accreditation-box:hover {
      transform: none;
      box-shadow: none;
    }
  }
}