
/* ==============================homepage============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Poppins", sans-serif; */
  font-family: 'Comic Neue', cursive;
  text-decoration: none;
  
  
}
body h1,h2,h3{
   font-family: 'Baloo 2', cursive; 
   
}
body a{
  color:black;
}


/* TOP BAR */
.top-bar {
  background: #fff;
  color: orange;
  display: flex;
  justify-content: space-between;
  padding: 8px 30px;
  font-size: 14px;

   background:url('image/download.png');
  background-repeat: no-repeat;
  background-size: cover;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  /* background: #fff; */
  background:url('image/download.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.logo img {
  height: 70px;
}

.navbar {
  display: flex;
  gap: 25px;
  z-index: 100;
}

.navbar a, .drop-btn {
  text-decoration: none;
  border: none;
  background: none;
  font-size: 16px;
  cursor: pointer;
  /* color: #ff00d0; */
  color: #ff6f91;
  
  font-weight: 500;
}

/* NAV LINK BASE */
.navbar a,
.drop-btn {
  position: relative;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* BUBBLE BACKGROUND */
.navbar a::before,
.drop-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, #f700ff, #ff00d9); */
   background: linear-gradient(
    135deg,
    #f888af 0%,
    #f879a7 25%,
    #fa80b3 50%,
    #f87eb3 75%,
    #f961a6 100%
  );
  opacity: 0;
  transform: scale(0.6);
  transition: 0.35s ease;
  z-index: -1;
  border-radius: 25px;
}

/* UNDERLINE EFFECT */
.navbar a span::after,
.drop-btn span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0%;
  height: 3px;
  /* background: #ff6600; */
  transition: 0.35s ease;
  transform: translateX(-50%);
  border-radius: 5px;
}

/* HOVER EFFECT */
.navbar a:hover,
.drop-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.navbar a:hover::before,
.drop-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}

.navbar a:hover span::after,
.drop-btn:hover span::after {
  width: 60%;
}


/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .navbar.active {
    display: flex;
  }
  .top-bar a{
    font-size: 12px;
  }
}



/*============================= HERO============================== */
.hero {
  /* background: #ffa733; */
  display: flex;
  align-items: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  width: 50%;
  color: #fff;
  animation: slideLeft 1.2s ease;
}

.hero-left h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.7;
}


.hero-btn {
  margin-top: 25px;
  display: inline-block;
  background: #ff6f91;
  color: #fff;
  padding: 14px 30px;
  border: solid rgb(44, 43, 43);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-4px);
}

.hero-right {
  width: 50%;
  text-align: center;
  animation: slideRight 1.2s ease;
}

.hero-right img {
  max-width: 90%;
  border-radius: 30px;
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  background: rgba(255,255,255,0.6);
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* ANIMATIONS */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    
  }

  .hamburger {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 32px;
  }
}


/* =====================galary section========== */

.gallery-section {
  padding: 80px 20px;
  /* background: #fffaf3; */
background:url('image/bg7.jpg');
background-repeat: no-repeat;
background-position:center;
background-size: cover;
  
  
  font-family: "Poppins", sans-serif;

}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 36px;
  color: #222;
}

.gallery-header p {
  color: #777;
  font-size: 15px;
  margin-top: 8px;
}

/* Grid Layout */
.gallery-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Gallery Card */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #ff6f91, transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  
}

.overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 28px;
  }

  .overlay span {
    font-size: 16px;
  }
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #ff6f91, #ff6f91);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 15px 30px #ff6f91b9;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.see-more-btn span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.see-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.see-more-btn:hover::before {
  transform: translateX(0);
}

.see-more-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px #f35479;
}

.see-more-btn:hover span {
  transform: translateX(6px);
}

/* Mobile */
@media (max-width: 768px) {
  .see-more-btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* ===========================================achivement=========================== */

.achievement-section {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #ffcc00, #ff9800); */
}

.achievement-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 20px;
}

.achievement-item {
  text-align: center;
  color: #272525;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #0a3d91;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.achievement-item h2 {
  font-size: 42px;
  font-weight: 700;
}

.achievement-item p {
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* Divider */
.divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.4);
}

/* Mobile */
@media (max-width: 900px) {
  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .divider {
    display: none;
  }

  .achievement-item h2 {
    font-size: 36px;
  }
}


/* ================== ANIMATIONS ================== */

/* Icon Pulse */
.icon-circle {
  animation: pulseIcon 2.8s ease-in-out infinite;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(10, 61, 145, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(10, 61, 145, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(10, 61, 145, 0);
  }
}

/* Number Bounce */
.counter {
  display: inline-block;
  animation: bounceNumber 1.6s ease infinite;
}

@keyframes bounceNumber {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-8px); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* Stagger effect */
.achievement-item:nth-child(1) .icon-circle { animation-delay: 0s; }
.achievement-item:nth-child(3) .icon-circle { animation-delay: 0.4s; }
.achievement-item:nth-child(5) .icon-circle { animation-delay: 0.8s; }
.achievement-item:nth-child(7) .icon-circle { animation-delay: 1.2s; }

/* Hover bounce (Desktop only) */
@media (hover: hover) {
  .achievement-item:hover {
    transform: translateY(-10px) scale(1.04);
  }
}



/*======================= whychoose as======================= */
.why-choose {
  padding: 80px 30px;
  /* background: linear-gradient(135deg, #fff6e5, #ffffff); */
  /* background:#fffaf3; */

  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ff6600;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1.1rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.choose-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient hover layer */
.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, #ffcc00, #ff7b00); */
    background: linear-gradient(
    135deg,
    #fa2d75 0%,
    #f14282 25%,
    #f95499 50%,
    #f87eb3 75%,
    #ed89b6 100%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.choose-card * {
  position: relative;
  z-index: 1;
}

.choose-card:hover::before {
  opacity: 1;
}

.choose-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.choose-card:hover h3,
.choose-card:hover p {
  color: #fff;
}

.choose-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.choose-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.choose-card p {
  font-size: 1rem;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}




/* ===============================================unique=================== */





/*============================== testimonials========================================= */

.testimonial-fade {
  padding: 60px 20px;
  background: #fffaf0;
  text-align: center;

  background:url('image/bg4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-fade h2 {
  font-size: 32px;
  color: #ff6b6b;
  margin-bottom: 25px;

  
}



/* Slider */
.fade-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: 320px;
}

.fade-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.fade-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Navigation */
.fade-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6b6b;
  border: none;
  color: white;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.fade-nav.prev { left: 10px; }
.fade-nav.next { right: 10px; }

.fade-nav:hover {
  background: #ff3b3b;
}

/* Dots */
.fade-dots {
  margin-top: 15px;
}

.fade-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 6px;
  cursor: pointer;
}

.fade-dot.active {
  background: #ff6b6b;
}

/* Mobile */
@media (max-width: 600px) {
  .fade-slider {
    height: 280px;
  }
  .testimonial-fade h2 {
    font-size: 24px;
  }

  .fade-nav.prev { display: none; }
.fade-nav.next { display: none; }


 
}


/* our core value=====================================================*/

.core-values {
  padding: 90px 20px;
  /* background: #fffaf3; */
  text-align: center;
  font-family: "Poppins", sans-serif;
  
  
}

.section-title {
  font-size: 36px;
  color: #222;
}

.section-subtitle {
  max-width: 620px;
  margin: 12px auto 55px;
  font-size: 15px;
  color: #777;
}

.values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.value-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 38px 28px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 50px rgba(0,0,0,0.12);
   background: linear-gradient(135deg, #ffcc00, #ff7b00);

  
}
.value-card:hover h3,
.value-card:hover p{
    color: white;
}


.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.value-card p {
  font-size: 14px;
  color: #555353;
  line-height: 1.7;
}

/* Cartoon Icon Animation */
.value-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  animation: cuteFloat 3s ease-in-out infinite;
}

.value-card:nth-child(2) .value-icon { animation-delay: .4s; }
.value-card:nth-child(3) .value-icon { animation-delay: .8s; }
.value-card:nth-child(4) .value-icon { animation-delay: 1.2s; }

@keyframes cuteFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}


/* ----------------------------- ----------------------------------------------------------------*/
/* Testimonials Section */
/* ----------------------------- */
.testimonials {
  /* background: linear-gradient(135deg, #fff7ec, #ffe6f0); */
  /* background:#fffaf3; */
  background:url('image/bg3.jpg');
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #ff6f91;
  /* color: #ff6600; */
  
  margin-bottom: 10px;
}

.testimonials .sub-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

/* Wrapper */
.testimonial-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  /* content: "❝"; */
  font-size: 4rem;
  color: #ffd1dc;
  position: absolute;
  top: 15px;
  left: 20px;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* Stars */
.stars {
  font-size: 1.2rem;
  color: #ffb703;
  margin-bottom: 15px;
}

/* Review */
.review {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Name */
.testimonial-card h4 {
  color: #444;
  font-weight: 600;
}

/* ----------------------------- */
/* Responsive */
/* ----------------------------- */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2rem;
  }
}



.programs {
  padding: 60px 20px;
}
.programs h2{
  text-align: center;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.program-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.program-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 68%;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* SUPER CURVED SHAPE */
  border-radius: 70% 70% 0 0 / 45% 45% 0 0;
  overflow: hidden;
}


.program-content::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -15%;
  width: 130%;
  height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}


/* Curved wave layer */
.program-content::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -10%;
  width: 120%;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

/* Slide on hover */
.program-card:hover .program-content,
.program-card:focus-within .program-content {
  bottom: 0;
}

.program-card:hover .program-content,
.program-card:focus-within .program-content {
  bottom: 0;
}

/* Colors */
.program-card.green .program-content { background: #7cb342; }
.program-card.blue .program-content { background: #1ebac6; }
.program-card.purple .program-content { background: #5e1675; }
.program-card.orange .program-content { background: #f4511e; }

.program-content h3 {
  font-size: 28px;
  margin: 10px 0;
}

.program-content p {
  font-size: 15px;
  line-height: 1.6;
}

.icon {
  font-size: 32px;
  background: #fff;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 65px;
  height: 65px;
  border-radius: 25px;
  background: #fff;
  color: #333;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}


/* Button */
.btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.btn:hover {
  background: #fff;
  color: #000;
}



/* 📱 Mobile Support */
@media (max-width: 768px) {
  .program-card {
    height: 380px;
  }

  /* Always visible on mobile */
  .program-content {
    bottom: 0;
    height: 58%;
    border-radius: 65% 65% 0 0 / 40% 40% 0 0;
  }


}

/* ===================footer================== */



.footer {
  /* background: #ffffff; */

   background:url('image/download.png');
  background-repeat: no-repeat;
  background-position:bottom;
  background-size: cover;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #eee;
  
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-box h3,
.footer-box h4 {
  color: #222;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.footer-logo {
  width: 180px;
  
}

.tagline {
  font-weight: 600;
  margin: 10px 0 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
   color: #ff6f91;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background:  #ff6f91;
  color: #fff;
  transform: translateY(-3px);
}

.footer-btn {
  margin-top: 15px;
  padding: 10px 25px;
  border: 2px solid   #ff6f91;
  background: transparent;
  color: #ff6f91;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #ff6f91;
  color: #fff;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
  display: flex;
  gap: 10px;
}

.contact-list i {
  color: #ff6f91;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fa2d75;
}


.social-icons a,
.social-icons a:visited,
.social-icons a:hover,
.social-icons a:active {
  text-decoration: none;
}

.endfooter{
  text-align: center;
}



/* Mobile footer center alignment */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* stack columns */
    text-align: center;
  }

  .footer-box {
    align-items: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
    display: block;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-list li {
    justify-content: center;
    text-align: center;
  }

  .footer-links li {
    text-align: center;
  }
}

/*  ===============gallery page======================== */




/* Hero */
.gallery-hero {
  text-align: center;
  padding: 100px 20px;
  
  /* background: linear-gradient(135deg, #ff9800, #ffb347); */
  background: linear-gradient(
    135deg,
    #fd6ea0 0%,
    #f971a3 25%,
    #fa72ab 50%,
    #f76ca8 75%,
    #f95ba2 100%
  );
  color: #fff;
}

.gallery-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.gallery-hero p {
  font-size: 16px;
}

/* Filters */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* margin: 20px 20px; */
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 30px;
}

.gallery-filter button {
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  background: #fff;
  color: #444;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: #ff6f91;
  color: #fff;
}

.section{
     background:url('image/bg3.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Gallery Grid */
.gallery-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;

}


.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  animation: fadeUp 0.8s ease forwards;
  height: 350px;
  /* width: 300px; */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 30px;
  }
  
}

/*====================about page==================================== */


/* HERO */
.about-hero {
  text-align: center;
  padding: 100px 20px;
  /* background: linear-gradient(135deg, #ff9800, #ffb347); */
  background: linear-gradient(
    135deg,
    #fd6ea0 0%,
    #f971a3 25%,
    #fa72ab 50%,
    #f76ca8 75%,
    #f95ba2 100%
  );

  color: #fff;
}

.about-hero h1 {
  font-size: 42px;
}

.about-hero p {
  margin-top: 10px;
  font-size: 16px;
}



.aboutbg{
    background: url('image/bg7.jpg');
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SECTIONS */
.about-section {
  max-width: 1200px;
  
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  animation: fadeUp 1s ease;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse > * {
  direction: ltr;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
}

.about-image img {
    margin-top: 20px;
    margin-bottom: 20px;
  width: 100%;

  
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-image{
  z-index: 1;
}

/* WHY US */
.why-us {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  background: #ffefd5;
  padding: 30px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* ENVIRONMENT */
.environment {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.environment img {
  width: 100%;
  border-radius: 25px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 30px;
  }

  .about-section,
  .environment {
    grid-template-columns: 1fr;
  }

  .about-section.reverse {
    direction: ltr;
  }
}



/* ======================core value=========================== */

.flip-card {
  perspective: 1200px;
  height: 260px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
}

/* Rotate on hover */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 35px 25px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* FRONT */
.flip-front {
  background: #ffffff;
}

.flip-front .icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.flip-front h3 {
  font-size: 1.4rem;
  color: #333;
}

/* BACK */
.flip-back {
  /* background: linear-gradient(135deg, #ffcc00, #ff7b00); */
    background: linear-gradient(
    135deg,
    #f45c91 0%,
    #f978a7 25%,
    #fc6fa9 50%,
    #fb75af 75%,
    #f47eb3 100%
  );
  color: #fff;
  transform: rotateY(180deg);
}

.flip-back h3 {
  margin-bottom: 10px;
}

.flip-back p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 576px) {
  .flip-card {
    height: 240px;
  }

  /* Mobile tap flip support */
.flip-card.active .flip-inner {
  transform: rotateY(180deg);
}

}

/* slider  */
.testimonials {
  /* background: linear-gradient(135deg, #fff7ec, #ffe6f0); */
  background: url('image/bg4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.4rem;
  /* color: #f76d3f; */
  color:#fa2d75;
  margin-bottom: 40px;
}

/* Slider */
.testimonial-slider {
  max-width: 360px;
  margin: auto;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

/* Track */
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* Card */
.testimonial-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 25px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff6f91;
  margin-bottom: 15px;
}

/* Text */
.review {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.stars {
  color: #ffb703;
  margin-bottom: 8px;
}

.testimonial-card h4 {
  color: #333;
  font-weight: 600;
}

/* Dots */
.testimonial-dots {
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ffd1dc;
  border-radius: 50%;
  margin: 0 5px;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #ff6f91;
}

/* Desktop improvement */
@media (min-width: 768px) {
  .testimonial-slider {
    max-width: 500px;
  }
}



/* ==============================contact page=================================== */

/* HERO */
.contact-hero {
 background: linear-gradient(
    135deg,
    #fd6ea0 0%,
    #f971a3 25%,
    #fa72ab 50%,
    #f76ca8 75%,
    #f95ba2 100%
  );
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.contact-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* MAIN SECTION */
.contact-section {
  display: flex;
  gap: 40px;
  padding: 70px 40px;
  max-width:100%;


    background:url('image/bg3.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  animation: slideLeft 1.2s ease;

  z-index: 1;
}

.contact-form h2 {
  margin-bottom: 25px;
  color:#ff6f91;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 15px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* DETAILS */
.school-details {
  flex: 1;
  animation: slideRight 1.2s ease;
  z-index: 1;
}

.school-details h2 {
  color:#ff6f91;
  margin-bottom: 25px;
}

.detail-box {
  background: #fff;
  padding: 18px 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  
}

.detail-box span {
  font-size: 1.5rem;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ANIMATIONS */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 50px 20px;
  }

  .map-section iframe {
    height: 300px;
  }
}



/* ======================service page================== */

 

  .hero {
  background: linear-gradient(
    135deg,
    #fd6ea0 0%,
    #f971a3 25%,
    #fa72ab 50%,
    #f76ca8 75%,
    #f95ba2 100%
  );

  /* background: linear-gradient(135deg, #ff9800, #ffb347); */
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1.3s ease forwards;
  opacity: 0;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* ----------------------------- */
/* Courses Section Styling */
/* ----------------------------- */
.courses {
  max-width: 100%px;
  margin: auto;
  padding: 0 20px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;

  background:url('image/bg7.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ----------------------------- */
/* Course Card Styling */
/* ----------------------------- */
.course-card {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

/* Image inside Card */
.course-card img {
  width: 100%;
  height: 300px;
  object-fit:fill;
  padding:20px;
  
  transition: transform 0.4s ease;
}
.rounded-image{
    border-radius: 50px;
}

.course-card:hover img {
  transform: scale(1.05);
}

/* Content inside Card */
.course-card .content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card .content h3 {
  color: #ff6f91;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.course-card .content p {
  color: #666;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Button Styling */
.course-card .content button {
  background: #ff6f91;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.course-card .content button:hover {
  background: #ff4f70;
  transform: scale(1.05);
}

/* ----------------------------- */
/* Responsive Design */
/* ----------------------------- */
@media (max-width: 1024px) {
  .hero h1 {font-size: 2.5rem;}
  .hero p {font-size: 1.1rem;}
}

@media (max-width: 768px) {
  .hero {padding: 60px 20px;}
  .hero h1 {font-size: 2rem;}
  .hero p {font-size: 1rem;}

  .course-card img {height: 200px;}
  .course-card .content h3 {font-size: 1.3rem;}
  .course-card .content p {font-size: 0.9rem;}
}

@media (max-width: 480px) {
  .courses {gap: 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));}
  .course-card img {height: 180px;}
  .course-card .content h3 {font-size: 1.2rem;}
  .course-card .content p {font-size: 0.85rem;}
}


/* call floating button */
.floating-call {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #3e4aea;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  animation: pulse 1.8s infinite;
}

.floating-call i {
  line-height: 1;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .floating-call {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 15px;
    }
    /* .whatsapp-float img {
        width: 28px;
        height: 28px;
    } */
}


/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40, 95, 167, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(40,167,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}





        