/* Montessori Programs Plugin Styles */
.montessori-program-section {
  text-align: center;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
}

/* Subheading (Our Programs) */
.montessori-program-section h5 {
  font-size: 20px;
  font-weight: 500;
  color: #1e73be; /* Elementor blue */
  font-family: "Comic Neue", "Poppins", cursive;
  margin-bottom: 10px;
}

/* Main heading */
.montessori-program-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0d2545;
  line-height: 1.3;
}

.montessori-programs {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.montessori-program-card {
  position: relative;
  width: 360px;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.montessori-program-card svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.montessori-program-content {
  position: relative;
  z-index: 1;
  padding: 30px 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.montessori-program-content img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.montessori-program-content h3 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Comic Neue", "Poppins", cursive;
  margin: 10px 0 5px;
}

.montessori-program-content span {
  font-size: 15px;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.montessori-program-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.montessori-program-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #FFAA23;
  color: inherit;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-decoration: none;
  transition: all 0.3s ease;
}

.montessori-program-btn:hover {
  transform: scale(1.1);
  text-decoration: none;
}

/* Toddler card specific */
.montessori-program-card.toddler svg path {
  fill: #e74c3c;
}

/* Preschool card specific */
.montessori-program-card.preschool svg path {
  fill: #d5e9d0;
}

.montessori-program-card.preschool {
  color: #222;
}

.montessori-program-card.preschool .montessori-program-btn {
  background: #4CAF50;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .montessori-program-section h2 {
    font-size: 30px;
  }
  .montessori-program-section h5 {
    font-size: 18px;
  }
  .montessori-program-card {
    width: 320px;
  }
  .montessori-program-content img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .montessori-program-section h2 {
    font-size: 26px;
  }
  .montessori-program-section h5 {
    font-size: 16px;
  }
  .montessori-programs {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .montessori-program-section h2 {
    font-size: 22px;
  }
  .montessori-program-section h5 {
    font-size: 15px;
  }
  .montessori-program-card {
    width: 100%;
    max-width: 340px;
  }
}