/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  
}
h1, h2, h3, h4, h5, h6{
      font-family: 'Poppins', sans-serif;
}

/* =========================
   HEADER
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background:black;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 10px;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
}

.cta-btn {
 background: #F2184F;
    color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
h2{
    color:#F2184F;
    font-weight:600;
}
p {
    font-size: 16px;
}
/* =========================
   HERO SECTION
========================= */
.hero-section {
  background: url("https://www.motherspridenoida.com/images/pre/Landing-Page-Banner.jpg")
    center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: #3232392b;
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  padding:50px 0px;
}

.hero-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  color: #fff;
}
.banner-form{
    display: flex;
    align-items: center;
}

/* =========================
   HERO LEFT CONTENT
========================= */
.hero-content {
  flex: 1;
    padding:0px 20px;

}

.hero-content h1 {
  font-size: 46px;
    line-height: 1.25em;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.trust-points li {
  margin-bottom: 8px;
  font-size: 15px;
}

.btn-primary {
  display: inline-block;
  background: #f9b000;
  color: #000;
  padding: 12px 22px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

.secondary-cta {
  margin-top: 10px;
  font-size: 14px;
}

/* =========================
   HERO FORM
========================= */
.hero-form {
  flex: 0 0 360px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  color: #000;
}

.hero-form h3 {
  text-align: center;
  margin-bottom: 20px;
}

.hero-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #F2184F;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit:hover {
  background: black;
}

.error {
  color: #e63946;
  font-size: 13px;
  margin-top: -6px;
  margin-bottom: 10px;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section.light {
  background: #f7f7f7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
}
.card-title{
    color: #F2184F;
    padding: 10px;
    font-weight:700;
}
.card-title-2{
     color: #F2184F;
    padding: 10px;
    font-weight:600;
}
.card-img{
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}
/* =========================
   PROGRAM HOVER
========================= */
.program-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

@media (hover: none) {
  .program-card:hover {
    transform: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
  }
}

/* =========================
   TESTIMONIAL
========================= */
.testimonial-slider {
  max-width: 900px;
  margin: 30px auto 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 30px;
}

.testimonial-dots {
  margin-top: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: #2ab6d6;
}

/* =========================
   FAQ
========================= */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}



.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: #f9f9f9;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #eee;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 15px;
    text-align: left;
}

.faq-answer p {
    margin: 10px 0;
     text-align: left;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 16px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-form {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-form {
    flex: 1;
    max-width: 100%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }
  .card {
      padding:15px;
  }
}

ul, li {
    list-style: none;
    margin: 0px;
}
.cta-container{
    padding:30px;
}
/* Section Styling */
.contact-section {
    color: #333;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

/* Cards Styling with Background Color */
.contact-card {
     /* soft pastel background */
    padding: 25px;
    text-align: left;
    color:white;
}

.map-card {
    background-color: #e6f7ff; /* soft pastel background for map */
    padding: 10px;
}

/* Links Styling */
.contact-card a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
    color: #F2184F;
}

/* Make columns equal height using flex */
.row.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .contact-card, .map-card {
        margin-bottom: 20px;
    }
}
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #F2184F;
    color: #fff;
    font-weight: 600;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999; /* ensures it stays on top */
}

.floating-cta:hover {
    background-color: #ff3b20;
    transform: scale(1.05);
}
.why-choose-section {
  padding: 80px 0;
}
.testi{
    background-color: rgba(146, 39, 143, .8);
}
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #ff2b63;
  margin-bottom: 50px;
}

.why-card {
  height: 170px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  padding: 20px;
  border-radius: 18px;
  color: black;
}


/* 🎨 Background Images */
.bg-award {
  background-image: url("https://www.motherspridenoida.com/images/pre/award.jpg");
}

.bg-students {
  background-image: url("https://www.motherspridenoida.com/images/pre/300.jpg");
}

.bg-safe {
  background-image: url("https://www.motherspridenoida.com/images/pre/safe-nurturing.jpg");
}

.bg-curriculum {
  background-image: url("https://www.motherspridenoida.com/images/pre/holistic-play.jpg");
}

.bg-parents {
  background-image: url("https://www.motherspridenoida.com/images/pre/happy-parent.jpg");
}

/* Mobile */
@media(max-width:768px){
  .why-card {
    height: 140px;
  }
  .extra{
      display:none;
  }  
}
.sub-title{
    font-size: 16px;
    line-height: 1.5em;
}
.gallery-section {
  padding: 60px 20px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-container-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.gallery-container-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.gallery-container-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom animation */
.gallery-item:hover img {
  transform: scale(1.15);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: .1;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
.pb-20{
    padding-bottom:20px;
}
.text-black{
    color:black;
}
.btn-submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
ul, li {
    list-style: disc;
    margin: 0px;
}