
        
/* Mindraga Code start */

 /* STATS BAR */
.stats-bar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* IMAGE */
.stats-img {
  height: 36px;
  width: auto;
}

/* MOBILE VERSION */
@media (max-width: 768px) {
  .stats-bar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stats-img {
    height: 40px;
  }

  /* 2 + 1 GRID STYLE */
  .stats-img:nth-child(1),
  .stats-img:nth-child(2) {
    flex: 0 0 40%;
  }

  .stats-img:nth-child(3) {
    flex: 0 0 40%;
  }
}



 .age-btn {
  height: 36px;
  padding: 0 8px;
  border: 1px solid #49454F;
  border-radius: 4px;
  background: #1B152C;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.age-btn.active {
  background: white;
  color: #FF4D8D;
  border-color: #FF4D8D;
}


  .info-badge {
  display: inline-block;
  padding: 10px 18px;
  margin-right: 12px;
  border-radius: 999px; /* fully rounded pill */
  font-size: 16px;
  font-weight: 500;
  color: oklch(27.8% .033 256.848); /* purple text */
  text-align: center;

  /* Gradient border trick */
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #a855f7, #ec4899) border-box;

  border: 2px solid transparent;
}

/* INFO BADGE – MOBILE ONLY */
@media (max-width: 768px) {
  .info-badge {
    font-size: 13px;        /* thoda chhota text */
    padding: 8px 14px;     /* compact pills */
    margin-right: 0;       /* gap flex se handle hoga */
    margin-bottom: 8px;
  }

  .mt-5.mb-4.text-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .mt-5.mb-4.text-center .info-badge {
    flex: 0 0 48%;         /* 👈 2 badges per row */
    text-align: center;
  }
}


  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;   /* 👈 Yaha aap apni required height set karo */
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* poster + video same fill karega */
    display: block;
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: none;   /* 👈 yaha flex ki jagah none kar diya */
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
}

.play-icon {
    width: 70px;
    height: 70px;
    /*background: #ffffff;*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}




.stats-wrapper {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-family: Inter, Arial, sans-serif;
}

.stat-card {
  background: #F7F5FF;
  border: 1px solid #D7CFFF;
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #9A52FF; /* pink */
  margin-bottom: 12px;
}

.stat-text {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}

.stat-text span {
  font-size: 13px;
  color: #555;
}

/* Tablet */
@media (max-width: 900px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.team-section {
  padding: 60px 20px;
}

/* GRID */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #141E30, #42275a);
}

/* OVERLAY DESCRIPTION */
.team-lead .jay-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;

  background: linear-gradient(
    to top,
    rgba(30, 22, 60, 0.95),
    rgba(30, 22, 60, 0.6),
    transparent
  );

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.team-lead:hover .jay-desc {
  opacity: 1;
  transform: translateY(0);
}

.team-lead .jay-desc p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* INFO */
.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.team-role {
  display: block;
  font-size: 15px;
  color: #1c1a23;
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .team-card img {
    height: 300px;
            object-fit: contain;
  }
}


/* why choose us */
  .why-choose-mindraga {
  position: relative;
  max-width: 100%;
  margin: 00px auto;
  display: flex;
  align-items: center;
}

.wc-viewport {
  flex: 1;          /* 👈 add this */
  overflow: hidden;
}

.wc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

 .wc-card {
  background: #f7f6ff;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  padding: 16px;
}

/* Desktop & Laptop → exactly 3 cards */
@media (min-width: 1024px) {
  .wc-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}


.wc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.wc-content {
  position: relative;
  text-align: center;
}

.wc-main-img {
  width: 100%;
  max-height: 100%;
  height: 200px;
  object-fit: cover;
}

.wc-main-img.small {
  max-height: 100%;
      margin-bottom: 12px;
    border-radius: 12px;
}

.wc-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.wc-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.wc-nav {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 0 10px;
  
   width: 40px;
  flex-shrink: 0;
}

.wc-nav:hover {
  color: #ff4fa3;
}

@media (max-width: 768px) {
.wc-card {
  min-width: 100%;}
}



/* holistic card slide  */
.holistic-wrapper {
      max-width: 100%;
    margin: 0px auto;
  padding: 0 40px;
  position: relative;
}

.holistic-slider {
  overflow: hidden;
}

.holistic-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.holistic-learning-card {
  /*min-width: 300px;*/
  background: #F7F5FF;
  border-radius: 18px;
  overflow: hidden;
}

/* Desktop & Laptop → exactly 3 cards */
@media (min-width: 1024px) {
  .holistic-learning-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}

/* IMAGE WRAPPER */
.card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* CONTENT */
.card-content {
  padding: 18px 20px 22px;
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /*background: #ffffff;*/
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: #aaa;
  /*box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
  font-size: 24px;
}

.prev { left: 0; }
.next { right: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .holistic-learning-card {
    min-width: 100%;
  }
}



/* testimonials start */
.testimonial-slider {
                                    max-width: 100%;
                                    margin: 0px auto;
                                    display: flex;
                                    align-items: center;
                                    position: relative;
                                }

                                .ts-viewport {
                                    overflow: hidden;
                                    width: 100%;
                                }

                               .ts-track {
  display: flex;
  gap: 24px;
  padding: 10px;
      height: 400px;
  transition: transform 0.4s ease;
 
}



.ts-card {
      display: flex;
  flex-direction: column;
  justify-content: space-between;
    
  background: #f7f6ff;
  border: 1px solid #d5cafc;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
}

/* Desktop & Laptop → exactly 3 cards */
@media (min-width: 1024px) {
  .ts-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}


                                /* TEXT CARD */
                                .ts-avatar {
                                    width: 100px;
                                    height: 100px;
                                    border-radius: 50%;
                                    object-fit: cover;
                                    margin: 0 auto 16px;
                                    /* 👈 center horizontally */
                                    display: block;
                                    /* 👈 important for img centering */
                                }


                                .ts-text h3 {
                                    margin: 0;
                                    color: #1c1a23;
                                    font-weight: 500;
                                    font-size: 20px;
                                }


                                .ts-text p {
                                    font-size: 15px;
                                    line-height: 1.6;
                                    margin: 16px 0;
                                    color: #1c1a23;
                                }

                                .ts-read {
                                    color: #ff2d8d;
                                    font-size: 14px;
                                    text-decoration: underline;
                                }

                                /* VIDEO CARD */
                                .ts-video {
                                    background: #000;
                                    padding: 0;
                                    position: relative;
                                    overflow: hidden;
                                     display: flex;
                                }
                                
     
.ts-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
}

.video-play-btn {
    width: 60px;
    height: 60px;
}

                                

                                .ts-video-bg {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    border-radius: 18px;
                                }

                                .ts-video-overlay {
                                    position: absolute;
                                    inset: 0;
                                    background: linear-gradient(to bottom, #ff000000 0%, #ff000000 75%, #000000 100%);
                                    color: #fff;
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: flex-end;
                                    align-items: center;
                                    padding: 32px;
                                }

                                .ts-play {
                                    width: 60px;
                                    height: 60px;
                                    border-radius: 50%;
                                    border: 2px solid #fff;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    font-size: 22px;
                                    margin-bottom: auto;
                                    cursor: pointer;
                                }

                                .ts-video h3 {
                                    margin: 12px 0 4px;
                                    font-size: 24px;
                                    font-weight: 500;
                                }

                                .ts-nav {
                                    background: none;
                                    border: none;
                                    font-size: 24px;
                                    padding: 10px;
                                    cursor: pointer;
                                    color: #aaa;
                                }

                                .ts-nav:hover {
                                    color: #ff2d8d;
                                }

                                /* MODAL */
                                .ts-modal {
                                    position: fixed;
                                    inset: 0;
                                    background: rgba(0, 0, 0, 0.6);
                                    display: none;
                                    align-items: center;
                                    justify-content: center;
                                    z-index: 9999;
                                }

                                .ts-modal-content {
                                    background: #fff;
                                    max-width: 500px;
                                    width: 90%;
                                    padding: 30px;
                                    border-radius: 16px;
                                    position: relative;
                                    text-align: left;
                                }

                                .ts-modal-content h3 {
                                    margin-top: 0;
                                    font-size: 32px;
                                    font-weight: 600;
                                    color: #ff2d8d;
                                }

                                .ts-modal-content p {
                                    font-size: 16px;
                                    line-height: 1.7;
                                    color: #000000;
                                    padding-top: 20px;
                                }

                                .ts-close {
                                    position: absolute;
                                    top: 12px;
                                    right: 16px;
                                    font-size: 22px;
                                    cursor: pointer;
                                }

                                @media (max-width: 768px) {
                                 .ts-card {
    min-width: 100%;
  }
}


/* FAQ Start */

.faq-item {
  background: #1f1b2e;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.faq-answer p {
  color: #cfcfcf;
  font-size: 14px;
  padding-bottom: 18px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(180deg);
}
/* FAQ END */






   /* Desktop par completely hidden */
#mobileBottomBtn {
  display: none;
}

/* Only Mobile */
@media (max-width: 768px) {

  #mobileBottomBtn {
    display: block;   /* 👈 yeh important hai */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #07011a;
    padding: 15px;
    text-align: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
  }

  #mobileBottomBtn a {
    border-radius: 24px;
    border: 1px solid #6D3AB5;
    background: radial-gradient(73.3% 90.61% at 72.2% 11.84%, rgba(109, 58, 181, 0.45) 15.68%, rgba(187, 139, 255, 0.45) 40.7%, rgba(109, 58, 181, 0.42) 74.84%, rgba(187, 139, 255, 0.32) 100%), linear-gradient(0deg, #600CFF 0%, #600CFF 100%), #000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
  }

  #mobileBottomBtn.active {
    opacity: 1;
    visibility: visible;
  }
}


  
                    

/* Mindraga Code end */
