@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.5px;
  background: #f2f5f8;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

p {
  color: #666666;
}

.breadcrumb {
  padding: 20px 0;
}

.custom-btn {
  background: #fff;
  color: #000;
  border: 1px solid #032A22;
  font-family: "Poppins";
  font-weight: 500;
  line-height: 20px;
  vertical-align: middle;
}

.sec-padding {
  padding: 80px 0;
}

.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

img {
  transition: all 0.4s;
  overflow: hidden;
}

img:hover {
  transform: scale(1.1);
}

.footer-section .f-shape img:hover {
  transform: unset !important;
}


/* Breadcuumb */
.breadcrumb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #04407E;
  opacity: 0.7;
}

.b_inner {
  flex-direction: column;
}

.b_inner h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.bread_ul {
  gap: 10px;
}

.bread_ul li {
  font-size: 16px;
}

.bread_ul li i {
  font-size: 16px;
}

.main-heading p {
  color: #05427E;
  font-family: "poppins";
  font-size: 16px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #04407E;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  transform: translateY(0);
  will-change: transform;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.navbar.nav-sticky {
  padding: 4px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Nunito";
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #a52914;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-expand-lg .navbar-nav {
  gap: 60px;
}

.navbar-nav .nav-link.active {
  font-weight: 800;
  color: #a52914;
}

.navbar .custom-btn {
  background-color: #a52914;
  border: none;
  box-shadow: 2px 2px #fff;
  color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 10px;
  text-align: right;
  border-bottom: 1px solid #eee;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
}

.close-btn:hover {
  color: #000;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  display: block;
  padding: 15px 30px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
  border-bottom: 1px solid #ccc;
}

.mobile-nav>li:nth-child(5) .mobile-nav-link {
  border-bottom: none;
}

.navbar-toggler {
  background-color: #fff;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #04407E;
  color: #fff;
  font-weight: 700;
}

.mobile-nav-item .custom-btn {
  margin: 20px 30px;
  width: calc(100% - 60px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* Banner */
.hero-slider {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  background: #04407E;
  /* Fallback background */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: #1a1a1a; */
  /* Prevent black flash */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

/* Previous slide animation - KEEP VISIBLE during transition */
.slide.prev {
  transform: translateX(-100%);
  opacity: 1;
  /* Changed from 0 to 1 */
  visibility: visible;
  z-index: 1;
}

/* Next slide animation - KEEP VISIBLE during transition */
.slide.next {
  transform: translateX(100%);
  opacity: 1;
  /* Changed from 0 to 1 */
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(4, 64, 126, 0.95) 0%,
      rgba(4, 64, 126, 0.7) 50%,
      rgba(0, 51, 102, 0.4) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.content-wrapper {
  max-width: 600px;
  padding-top: 70px;
}

/* Text animations */
.slide.active .slide-text-top {
  animation: slideInUp 0.6s ease-out 0.2s both;
}

.slide.active .slide-title {
  animation: slideInUp 0.6s ease-out 0.4s both;
}

.slide.active .slide-subtitle {
  animation: slideInUp 0.6s ease-out 0.6s both;
}

.slide.active .slide-description {
  animation: slideInUp 0.6s ease-out 0.8s both;
}

.slide.active .slide-buttons {
  animation: slideInUp 0.6s ease-out 1s both;
}

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

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

.slide-text-top {
  font-size: 36px;
  font-weight: 300;
}

.title-highlight {
  display: inline-block;
  background-color: #a52914;
  padding: 8px 12px;
  font-size: 52px;
  font-weight: 600;
}

.slide-subtitle {
  font-size: 60px;
  font-weight: 400;
}

.slide-description {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.slide-buttons {
  display: flex;
  gap: 18px;
  /* flex-wrap: wrap; */
}

.slide-buttons .custom-btn:nth-child(1) {
  background-color: #a52914;
  border: none;
  box-shadow: 2px 2px #fff;
  color: #fff;
  width: max-content;
}

.slide-buttons .custom-btn:nth-child(2) {
  border: 1px solid #000;
  width: max-content;
}

.slider-nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav-arrow:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-arrow:active {
  transform: scale(0.95);
}



/* .slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
} */

/* .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background-color: #a52914;
  border-color: #fff;
  transform: scale(1.3);
} */

.slider-dots {
  display: none;
}

.nav-arrow:focus,
.dot:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .slide,
  .nav-arrow,
  .dot,
  .btn {
    transition: none;
  }

  .slide.active .slide-text-top,
  .slide.active .slide-title,
  .slide.active .slide-subtitle,
  .slide.active .slide-description,
  .slide.active .slide-buttons {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* About */
.section-title p {
  color: #06427E;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0;
}

.main-heading h2 {
  text-align: center;
  color: #06427E;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
}

.abt_back {
  background-color: #05427E;
  border-radius: 30px;
  padding: 30px;
}

.abt-text p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0;
}

.abt-img,
.why_img {
  border-radius: 30px;
}

.abt-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
}

/* Services */
.services {
  background: #fff;
  position: relative;
}

.shape1 img {
  position: absolute;
  width: 100px;
  left: -20px;
  top: 40px;
  animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.shapes2 img {
  position: absolute;
  width: 210px;
  right: 0;
  bottom: 0;
  animation: bounce-in-right 2s ease;
}

@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.icon-wrap {
  width: 100px;
  height: 100px;
  border: 6px solid #0b3d75;
  font-size: 34px;
  color: #0b3d75;
  top: -50px;
  background: #fff;
}

.card-body h4 {
  font-size: 24px;
  border-bottom: 2px solid #E4E6ED;
  padding-bottom: 0;
}

.card-body p.fw-semibold {
  font-size: 22px;
}

.card-body p.text-muted.small {
  border-top: 2px solid #E4E6ED;
  border-bottom: 2px solid #E4E6ED;
  font-size: 13px !important;
}

.red p.small {
  font-size: 15px !important;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.icon-wrap.featured {
  border-color: #fff;
  color: #fff;
}

.card-body .custom-btn {
  background-color: #05427E;
  border: 1px solid #05427E;
  width: 100%;
  display: block;
  color: #fff;
  box-shadow: 2px 2px #000;
}

.card-body.red .custom-btn {
  background-color: #a52914;
  border: 1px solid #a52914;
  box-shadow: 2px 2px #fff;
}

/* Slider */





.age-badge {
  display: inline-block;
  color: #000000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  margin: 0;
}



.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  height: 100%;
  transform-style: preserve-3d;
  border: none;
}

.card-body {
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 18px;
}

.third_party_sec {
  margin-bottom: 20px;
}

.icon-wrap {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}

.icon-wrap i {
  color: #000;
}

.card h4 {
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.card p {
  color: #000;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #000;
  margin: 20px 0;
  font-size: 16px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: #a52914;
  color: #fff;
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-btn i {
  font-size: 16px;
}

.dots-container {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #a52914;
  width: 40px;
  border-radius: 6px;
}

/* Why */
.why-text h2 {
  color: #06427E;
  font-weight: 800;
  font-size: 45px;
}

.why-text p {
  font-weight: 400;
  font-size: 16px;
}

.why_img img {
  width: 100%;
  border-radius: 30px;
  height: 450px;
  object-fit: cover;
  object-position: top;
}

.why-box img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
  transition: transform 0.5s ease;
  display: block;
  position: relative;
  z-index: 1;
}

.box1,
.box2,
.box3 {
  position: relative;
  margin-bottom: 20px;
  border-radius: 30px;
}

.why-box>div:hover img {
  transform: scale(1.1);
}

.why-box>div {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.why-box>div:hover img {
  transform: scale(1.1);
}

.why-box>div:hover::before {
  background: rgba(6, 66, 126, 0.7);
}

.box1::before,
.box2::before,
.box3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 66, 126, 0.7);
  border-radius: 30px;
  z-index: 2;
  transition: background 0.4s ease;
  pointer-events: none;
}

.why-box h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  margin: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  pointer-events: none;
}

/* Coaches */
.coaches {
  background: #fff;
}

.accordion-row {
  display: flex;
  gap: 20px;
  height: 360px;
}

.accordion-card {
  position: relative;
  flex: 1;
  background: #f3f6f9;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s ease, background 0.4s ease;
  display: flex;
}

.accordion-card img {
  position: absolute;
  right: -10px;
  bottom: 0;
  height: 85%;
  transition: all 0.6s ease;
}

.card-body2 {
  padding: 30px;
}

.accordion-card.active .card-body2 h5 {
  margin: 0;
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  max-width: min-content;
  line-height: 40px;
}

.card-body2 h5 {
  color: #05427E;
  font-size: 22px;
  font-weight: 600;
}

.custom-btnn {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-card.active {
  flex: 2;
  background: #05427E;
}

.accordion-card.active h5 {
  color: #fff;
}

.accordion-card.active .custom-btnn {
  opacity: 1;
  max-width: 250px;
  margin-top: 12px;
  border-radius: 50px;
  /* text-decoration: none;
  white-space: nowrap; */
}

.accordion-card.active img {
  right: -30px;
  height: 95%;
}

.custom-btnn {
  display: inline-block;
  background: #fff;
  color: #05427E;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 15px;
}

.title-prefix {
  display: none;
}

.accordion-card.active .title-prefix {
  display: inline;
}

/* Footer */
.footer-section {
  position: relative;
  background-image: url("../img/footer.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}

.footer-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2f5f8;
  opacity: 0.9;
}

.footer-section .f-shape img {
  max-width: 200px;
  position: absolute;
  right: 0;
  top: -100px;
}

.footer-top h3 {
  color: #06427E;
  font-size: 36px;
}

.footer-top .custom-btn:nth-child(1) {
  color: #fff;
  background: #a52914;
  box-shadow: 2px 2px #04407E;
  width: auto !important;
  border: none;
}

.footer-top .custom-btn:nth-child(2) {
  width: auto !important;
  border: 1px solid #a52914;
  background-color: #fff;
  color: #000;
}

.footer-logo img {
  max-width: 130px;
}

.footer-logo p {
  font-size: 14px;
  font-family: "Poppins";
}

.footer-section h6 {
  font-size: 18px;
  color: #05427E;
}

.footer-links li {
  margin-bottom: 20px;
  font-family: "poppins";
}

.footer-links a {
  color: #666666;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.4s;
}

.footer-links a:hover {
  padding-left: 5px;
  color: #a52914;
}

.footer-links li i {
  font-size: 12px;
  margin-right: 6px;
}

.footer-bottom {
  background: #05427E;
  padding: 10px 0;
  color: #fff;
  font-family: "Poppins";
}

.footer-bottom span a {
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* About */
.images-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 6px solid #04407E;
  ;
}

.image-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  z-index: 10 !important;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right;
}

.image-left {
  width: 320px;
  height: 380px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  z-index: 2;
}

.image-left:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.05);
}

.image-right {
  width: 360px;
  height: 420px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(5deg);
  z-index: 3;
  border: 6px solid #04407E;
}

.image-right:hover {
  transform: translateY(-50%) rotate(0deg) scale(1.05);
}

.center-badge {
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 111111;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

.badge-circle {
  width: 100%;
  height: 100%;
  background: #a52914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.badge-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.badge-text span {
  position: absolute;
  left: 50%;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  transform-origin: 0 80px;
}

.badge-logo {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.abb_text p {
  font-size: 16px;
  margin: 0;
  text-align: justify;
}

/* What */
.what:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #06427E;
  opacity: 0.8;
}

.what_text h2 {
  font-size: 40px;
}

.what_text p {
  font-size: 16px;
}

.feature-card {
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card h5 {
  color: #05427E;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  transition: all 0.3s ease;
}

.feature-card p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s ease;
}

.step-badge {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: #0b1b4d;
  z-index: 1;
  transition: all 0.4s ease;
}

.step-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(-30%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #4d46c721;
  z-index: -1;
  transition: all 0.4s ease;
}

.col-md-4:nth-child(2) .step-badge::before {
  background: #ee2a5233;
}

.col-md-4:nth-child(3) .step-badge::before {
  background: #fab33f47;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .step-badge {
  transform: scale(1.15);
}

.feature-card:hover .step-badge::before {
  width: 56px;
  height: 56px;
  opacity: 0.8;
}

.col-md-4:nth-child(1) .feature-card:hover .step-badge::before {
  box-shadow: 0 0 20px rgba(77, 70, 199, 0.4);
}

.col-md-4:nth-child(2) .feature-card:hover .step-badge::before {
  box-shadow: 0 0 20px rgba(238, 42, 82, 0.4);
}

.col-md-4:nth-child(3) .feature-card:hover .step-badge::before {
  box-shadow: 0 0 20px rgba(250, 179, 63, 0.4);
}

.feature-card:hover h5 {
  transform: translateX(10px);
  color: #0b1b4d;
}

.feature-card {
  border: 2px solid transparent;
}

.feature-card>* {
  position: relative;
  z-index: 2;
}

.nav-tabs .nav-link {
  color: #06427E;
  font-weight: 500;
  font-size: 28px;
  border: none;
  padding: 10px 0;
}

#missionTabs {
  display: flex;
  width: 100%;
}

#missionTabs .nav-item {
  flex: 1;
  text-align: center;
}

#missionTabs .nav-link {
  width: 100%;
  justify-content: center;
}

.nav-tabs .nav-link.active {
  color: #06427E;
  border-bottom: 4px solid #a52914;
  font-weight: 800;
}

.mission-content {
  padding: 15px 0;
}

.mission-images {
  display: flex;
  gap: 1.25rem;
}

.mission-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-text h2 {
  color: #06427E;
  font-size: 40px;
  font-weight: 700;
}

.mission-text p {
  text-align: left;
  font-size: 16px;
}

/* .training-section {
  display: grid;
  grid-template-columns:
    minmax(320px, 420px) repeat(3, minmax(220px, 1fr));
}

.training-title {
  background: linear-gradient(135deg, #003b7a, #0b5ea8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.training-title h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
}

.training-card {
  position: relative;
  overflow: hidden;
}

.training-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.training-card:hover .card-label {
  background: #05427E;
  color: #fff;
}

.card-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #05427E;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
  width: 85%;
  text-align: center;
} */

.training-title {
  font-size: 40px;
  font-weight: 800;
  color: #05427E;
}

.training-text.mt-3 {
  font-size: 16px;
  font-weight: 400;
}

.approach-tabs {
  border-left: 2px solid #cfd8e3;
  padding-left: 30px;
}

.approach-tabs .nav-link {
  padding: 0 0 40px 15px;
  font-size: 26px;
  font-weight: 400;
  color: #05427E;
  position: relative;
  text-align: left;
  line-height: 35px;
}

.approach-tabs .nav-link::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 0;
  width: 2px;
  height: 100%;
  background: transparent;
}

.approach-tabs .nav-link.active {
  color: #a52914;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
}

.approach-tabs .nav-link.active::before {
  background: #a52914;
}

.image-stack {
  position: relative;
  height: 340px;
}

.stack-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  z-index: 1;
}

.stack-img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 3;
}

.stack-img.behind {
  opacity: 0.7;
  transform: scale(0.96) translateY(14px);
  z-index: 2;
}

/* Counter */
.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stats-section {
  position: relative;
  padding: 30px 0;
  border-radius: 10px;
  background-color: #05427E;
}

.stats-section::before {
  background: url(../img/counter.png);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-size: cover;
  opacity: 0.2;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background-color: #fff;
  flex-shrink: 0;
}

.stat-number {
  font-size: 70px;
  font-weight: 800;
  color: #fff;
  -webkit-text-stroke: 2px #a52914;
  text-stroke: 2px #dc3545;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Arial Black', sans-serif;
}

.stat-label {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: italic;
  font-family: "poppins";
}

/* Popup  */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ================================================================
   POPUP CONTAINER
   ================================================================ */

.popup-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(-50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-overlay.show .popup-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Custom scrollbar */
.popup-container::-webkit-scrollbar {
  width: 8px;
}

.popup-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb {
  background: #a52914;
  border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb:hover {
  background: #b82410;
}

/* ================================================================
   CLOSE BUTTON
   ================================================================ */

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
  background: #a52914;
  border-color: #a52914;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(220, 46, 17, 0.3);
}

.popup-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* ================================================================
   POPUP HEADER
   ================================================================ */

.popup-header {
  text-align: center;
  padding: 40px 30px 30px;
  background: linear-gradient(135deg, #04407e 0%, #003366 100%);
  border-radius: 20px 20px 0 0;
  color: #fff;
  position: relative;
}

.popup-icon {
  width: 70px;
  height: 70px;
  background: #a52914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(220, 46, 17, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(220, 46, 17, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 30px rgba(220, 46, 17, 0.6);
  }
}

.popup-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.popup-subtitle {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.5;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */

.contact-form {
  padding: 35px 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-label i {
  color: #04407E;
  font-size: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #f9f9f9;
  color: #333;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #a52914;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(220, 46, 17, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ================================================================
   SUBMIT BUTTON
   ================================================================ */

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #a52914 0%, #b82410 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 46, 17, 0.3);
  margin-top: 10px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(220, 46, 17, 0.4);
  background: linear-gradient(135deg, #b82410 0%, #a52914 100%);
}

.form-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(220, 46, 17, 0.3);
}

.form-submit i {
  transition: transform 0.3s ease;
}

.form-submit:hover i {
  transform: translateX(5px);
}

/* ================================================================
   ANIMATIONS ON SHOW
   ================================================================ */

.popup-overlay.show .popup-header {
  animation: slideInDown 0.6s ease 0.2s both;
}

.popup-overlay.show .form-group {
  animation: slideInUp 0.5s ease both;
}

.popup-overlay.show .form-group:nth-child(1) {
  animation-delay: 0.3s;
}

.popup-overlay.show .form-group:nth-child(2) {
  animation-delay: 0.4s;
}

.popup-overlay.show .form-group:nth-child(3) {
  animation-delay: 0.5s;
}

.popup-overlay.show .form-group:nth-child(4) {
  animation-delay: 0.6s;
}

.popup-overlay.show .form-group:nth-child(5) {
  animation-delay: 0.7s;
}

.popup-overlay.show .form-submit {
  animation: slideInUp 0.5s ease 0.8s both;
}

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

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

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

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

.footer-top .custom-btn.red:hover {
  box-shadow: -3px -3px 0 #000;
}

.custom-btn.red {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
  background: #a52914;
}

.custom-btn.red:hover {
  box-shadow: -3px -3px 0 #fff;
  color: #fff;
}

.custom-btn,
.custom-btnn {
  position: relative;
}

.custom-btn::before,
.custom-btn::after,
.custom-btnn::before,
.custom-btnn::after {
  position: absolute;
  top: 0;
  left: 0;
  border-color: #a52914;
  border-radius: 5px;
  border-style: solid;
  transition: all 0.35s;
  content: "";
  z-index: 1;
}

.custom-btn::before,
.custom-btnn::before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
}

.custom-btn::after,
.custom-btnn::after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
}

.custom-btn:hover,
.custom-btnn:hover {
  border-color: #a52914;
  color: #a52914;
}

.custom-btn:hover::before,
.custom-btnn:hover::before {
  width: 100%;
  border-width: 1px 0 1px 0;
}

.custom-btn:hover::after,
.custom-btnn:hover::after {
  height: 100%;
  border-width: 0 1px 0 1px;
}

/* Coach */
.coach-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .coach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
} */

.coach-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  cursor: pointer;
}

.coach-info {
  padding: 20px;
}

.coach-badge {
  font-size: 18px;
  font-weight: 800;
  color: #04407E;
}

.coach-card .coach-title {
  color: #5F6155;
  font-size: 15px;
  margin: 0;
  font-weight: 400;
}

/* Coach Details */
.coach-profile-card {
  background: white;
  border-radius: 20px;
  padding: 60px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin: auto;
}

.coach-profile-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coach-name {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.coach-title {
  font-size: 16px;
  color: #888;
  margin-bottom: 15px;
  font-weight: 400;
}

.coach-bio {
  font-size: 17px;
  line-height: 1.8;
  color: #666666;
  text-align: center;
  margin: 0 auto;
}

/* Contact */
.contact-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  display: flex;
  min-height: 650px;
}

.contact-form-section {
  flex: 1;
  background: #04407E;
  padding: 60px 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-form-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/ca.jpg');
  background-size: cover;
  opacity: 0.1;
}

.form-content {
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.contact-subheading {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-control-custom {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control-custom:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

textarea.form-control-custom {
  min-height: 130px;
  resize: vertical;
}

.select-wrapper {
  position: relative;
}


select.form-control-custom {
  appearance: none;
  padding-right: 45px;
  cursor: pointer;
}

select.form-control-custom option {
  background: #0d3b66;
  color: #fff;
}

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: #ff4757;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3);
}

.submit-btn:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
}

/* Right Side - Image/Info Section */
.contact-image-section {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
}

.image-container {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.image-container img {
  width: 100%;
}

.cricket-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.social-icons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3b66;
  font-size: 18px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #0d3b66;
  color: #fff;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background: #F2F5F8;
  padding: 35px 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s;
}

.contact-info-card:hover {
  background: #05427E;
}

.contact-info-card:hover .info-content h5,
.contact-info-card:hover .info-content p,
.contact-info-card:hover .info-content a {
  color: #fff;
}

.contact-info-card:hover .info-icon {
  background: #fff;
}

.contact-info-card:hover .info-icon i {
  color: #04407E;
}

.info-icon {
  width: 65px;
  height: 65px;
  background: #05427E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;
}

.info-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #05427E;
  margin-bottom: 5px;
  transition: all 0.4s;
}

.info-content p {
  font-size: 15px;
  color: #666;
  margin: 0;
  transition: all 0.4s;
}

.info-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Map Section */
.map-section {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-container {
  width: 100%;
  height: 450px;
  background: #e0e0e0;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Sticky Button */
.sticky-callback-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #04407e;
  color: #ffffff;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 10px 4px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 40px;
  border: 2px solid #ffffff59;
}

.sticky-callback-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.callback-text {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.callback-icon {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 2.5s linear infinite rotateIcon;
}

.callback-icon i {
  color: #04407E;
  font-size: 14px;
}


@keyframes rotateIcon {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Back To Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #04407e;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  animation: upDown 0.8s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* Services */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 25px 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-number {
  font-size: 30px;
  font-weight: 700;
  color: #04407E;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-arrow {
  width: 35px;
  height: 35px;
  background: transparent;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-arrow i {
  color: #666;
  font-size: 14px;
}

.service-card:hover .card-arrow {
  background: #04407E;
  border-color: #04407E;
}

.service-card:hover .card-arrow i {
  color: white;
}

.card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loader {
  position: relative;
  width: 200px;
  height: 200px;
}

#ball {
  width: 32px;
  position: absolute;
  top: 120px;
  left: 50px;
  animation: ballMove 1.2s infinite ease-in-out;
  z-index: 999;
}

#bat {
  width: 140px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform-origin: bottom center;
  animation: batSwing 1.1s infinite ease-in-out;
}

@keyframes batSwing {
  0% {
    transform: rotateX(0deg);
  }

  33% {
    transform: rotateX(-25deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

@keyframes ballMove {
  0% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

  50% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -60px, 0);
  }

  100% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
}

.form-content .form-label {
  color: #ffffff;
}

.whatsapp .whatsapp-btn {
  background: green;
  text-decoration: none;
  border-radius: 50px;
  right: 30px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: upDown 0.8s ease-in-out infinite;
  position: fixed;
}

.whatsapp .whatsapp-btn i {
  font-size: 36px;
  color: white;
}

.breadcrumb {
  display: none;
}

.third_party_sec ul {
  margin: 0;
}


.card-body p {
  font-size: 15px;
}




#vision .age-badge {
  display: none;
}

.third_party_sec ul li:last-child {
  border-bottom: none !important;
}

.card h4 {
  max-width: 300px;
}

.mission-text h4 {
  color: #05427E;
}

.mission-text ul li {
  color: #666666;
}

.pop_images {
  overflow: hidden;
}

img#lightboxImage:hover {
  transform: unset;
}

.lightbox-nav {
  z-index: 999;
}

.mobile-btn {
  margin-top: 10px;
}

.accordion-item {
  border-radius: 15px;
  margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
  border-radius: 15px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-radius: 15px 15px 0 0;
}

.wheel-item1 {
  flex: 1;
}


a.home_btn_sec {
  border: 2px solid #0b3d75;
  padding: 9px 20px;
  margin: 20px 0 0;
  /* background: #000; */
  border-radius: 4px;
  color: #0b3d75;
  width: 100%;
  font-weight: 600;
}

.section-title1 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-top: 40px;
}

.section-title1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #a52914 0%, #04407e 100%);
  border-radius: 2px;
}



svg.icon.icon-angle-down {
    width: 15px;
    position: relative;
    left: 4px;
}