/* Top Bar */
.top-bar {
  background-color: #280a66;
  color: #fff;
  font-size: 14px;
}

.topbarpadding {
  padding-left: 55px;
  padding-right: 55px;
}

.navmargin {
  margin-left: 55px;
  margin-right: 55px;
}

.top-bar .call-text i {
  margin-right: 5px;
}

.social-icons svg {
  fill: #ffff;
  width: 20px;
  height: 20px;
}

.social-icons {
  gap: 20px;
  margin-bottom: 5px;
}

.top-bar .social-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
}

.top-bar .social-icons a:hover {
  opacity: 0.8;
}

/* Navbar */
.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #000;
}

/* Buttons */
.btn-login,
.btn-signup {
  background-color: #002B4E;
  color: #fff;
  border-radius: 5px;
  padding: 6px 20px;
  font-weight: 500;
}

.btn-login:hover,
.btn-signup:hover {
  opacity: 0.8;
}

/* Make navbar sticky */
.sticky-navbar {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Transition effect */
.navbar {
  transition: top 0.3s ease-in-out;
}

.navbar-brand img{
  height: 45px;
  width: 200px;
}

.d-flex .btn-login:hover {
  border: 1px solid #135b79;
}

.d-flex .btn-signup {
  border: 1px solid #135b79;
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

/* Dropdown item default */
.navbar .dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Orange hover effect */
.navbar .dropdown-item:hover {
  background-color: orange;
  color: #fff;
  border-radius: 5px;
}

/* Active nav link */
.navbar .nav-link.active {
  color: orange !important;
  font-weight: 600;
}

/* Dropdown toggle caret color */
.navbar .dropdown-toggle::after {
  margin-left: 6px;
}

.navbar .nav-link.active {
  color: #f06d08 !important;
  font-weight: 600;
}

.slider-box {
  border-radius: 20px;
  overflow: hidden;
}

.slider-text {
  background: #1e1e1e;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-text h2 {
  font-weight: 700;
}

.slider-text h4 {
  color: #f06d08;
  font-weight: 700;
}

.slider-text p {
  margin-top: 10px;
}

.slider-text .btn {
  margin-top: 20px;
  background: #f06d08;
  color: white;
  border: none;
}

.slider-img {
  background: #f06d08a6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slider-img img {
  max-width: 100%;
  height: auto;
}

.extramargin {
  margin-top: 30px;
}

.counter-section {
  padding: 60px 20px;
  text-align: center;
}

.counter-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  margin: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-number {
  font-size: 42px;
  font-weight: 700;
  color: orange;
}

.counter-label {
  font-size: 18px;
  margin-top: 10px;
  color: #333;
}
.counter-section {
  padding: 50px 20px;
  text-align: center;
}
.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}
.about-text {
  font-size: 1.1rem;
  color: #555;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.about-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}
.about-list i {
  color: #28a745;
  margin-right: 8px;
}
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  padding-bottom:5px;
  color: #333;
  position: relative;
  display: inline-block;
}

.about-title .highlight {
  color: #28a745; /* Green highlight for 'Us' */
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #f06d08, #280a66);
  border-radius: 2px;
}


/* Video thumbnail with play button */
.video-wrapper {
  position: relative;
  display: inline-block;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #f06d08;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #c82333;
}
.infra-section {
  background: #fff;
}



.infra-img-wrapper img {
  border-radius: 50%;
  width: 100%;
  max-width: 550px;
  height: auto;
}

.infra-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.infra-title span {
  color: #f06d08; /* green highlight */
}

.infra-text {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.infra-btn {
  background: #f06d08;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.infra-btn:hover {
  border: 1px solid #f06d08;
}



/* Responsive */
@media (max-width: 991px) {
  .infra-section .row {
    text-align: center;
  }

  .infra-title {
    font-size: 1.8rem;
  }
}

.footer {
  background: #000;
  color: #fff;
  padding: 50px 0 20px;

}

.footer h5 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #f06d08; /* green hover */
}

.footer-logo {
  max-width: 140px;
}

.footer-tagline {
  font-weight: 700;
  margin: 10px 0;
}

.footer-social a {
  display: inline-block;
  margin: 0 6px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f06d08;
  border-color: #f06d08;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}
.footerimg img{
  background-color: white;
  padding: 5px;
}
.programs-section h2 {
  font-weight: 700;
  font-size: 32px;
}
.programs-section .highlight {
  color: #ff6600;
}

.program-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
  height: 100%;
}

.program-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.program-img {
  max-width: 100px;
  margin: 0 auto 15px;
}

.program-title {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 10px;
}

.program-desc {
  font-size: 14px;
  color: #555;
  min-height: 60px;
}

.btn-read {
  display: inline-block;
  margin-top: 15px;
  background: #f06d08;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-read:hover {
  background: #ff6600;
}

/* Owl Carousel arrows */
.owl-nav {
    position: absolute;
    top: 40%;
    left: -2%;
    width: 104%;
    display: flex;
    justify-content: space-between;
}
.owl-nav button {
  background: #f06d08 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px !important;
  transition: 0.3s;
}
.owl-nav button:hover {
  background: #ff6600 !important;
}

/* Section */
.contact-section {
  padding: 80px 20px;
  background-color:#595959 ;
  color: #fff;
  text-align: center;
}

/* Heading */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
}

.contact-title span {
  color: #ff6600;
}

.contact-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6600;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Form */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-control {
  border: none;
  border-radius: 8px;
  padding: 14px 18px;
  width: 100%;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.6);
  transform: scale(1.02);
}

/* Textarea */
textarea.form-control {
  resize: none;
}

/* Button */
.btn-submit {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-submit:hover {
  background: #ff4500;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.why-section {
      text-align: center;
      padding: 50px 20px 0px 20px;
    }
    .why-section h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .why-section h2 span {
      color: #f06d08;
    }
    .why-section p {
      max-width: 900px;
      margin: 0 auto 50px;
      color: #555;
      font-size: 1rem;
    }
    .why-box {
      text-align: center;
      padding: 20px;
    }
    .why-box i {
      font-size: 45px;
      margin-bottom: 15px;
      color: #000;
    }
    .why-box h5 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    .why-box p {
      font-size: 0.95rem;
      color: #555;
    }
    .stats-section {
      background: #f06d08;
      color: #fff;
      padding: 50px 30px;
      border-radius: 20px;
      margin: 50px auto;
    }
    .stats-section h3 {
      font-weight: 700;
      margin-bottom: 15px;
    }
    .stats-section p {
      max-width: 700px;
      margin-bottom: 40px;
      font-size: 1rem;
    }
    .stat-box h4 {
      font-weight: 700;
      font-size: 1.8rem;
    }
    .stat-box p {
      margin: 0;
      font-size: 0.95rem;
    }
    .sports-programs {
  background: #f9f9f9;
}

.program-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.program-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.program-card h5 {
  margin-bottom: 10px;
}

.program-card p {
  font-size: 0.9rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  margin: 10px 0;
}

.stars {
  font-size: 1rem;
}

.owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.owl-nav .owl-prev {
  left: -50px;
}

.owl-nav .owl-next {
  right: -50px;
}

.owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 5px;
}

.owl-dots .owl-dot.active span {
  background: #f06d08;
}
.sports-marquee {
  width: 800px;        /* adjust width between call text & social icons */
  white-space: nowrap;
}

.sports-marquee img {
  font-size: 26px;
  margin-right: 150px;
  color: #0077b6;      /* default color */
}

.sports-marquee i:nth-child(2n) { color: #ff6b6b; }  /* basketball, tennis */
.sports-marquee i:nth-child(3n) { color: #ffd166; }  /* volleyball, running */
.sports-marquee i:nth-child(4n) { color: #06d6a0; }  /* football, biking */
.sports-marquee i:nth-child(5n) { color: #118ab2; }  /* swimming */

.swimmer-up {
  transform: rotate(-90deg);
  display: inline-block;
}

.swimmer-down {
  transform: rotate(90deg);
  display: inline-block;
}
.swimmer-right {
  transform: scaleX(-1); /* flips horizontally */
  display: inline-block;
}
.video-section {
  background: linear-gradient(to right, #0077b6, #00b4d8);
  color: white;
}

.video-section h2 {
  font-size: 2rem;
}

.video-box {
  border: 6px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}

.video-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.sports-gif img {
  width: 200px;       /* set fixed width */
  height: 150px;      /* set fixed height */
  object-fit: contain; /* keeps aspect ratio inside box */
}
.sports-gif img {
  width: 180px;         /* adjust width */
  height: auto;         /* keeps proportions */
  display: block;
  margin: 0 auto;       /* centers image */
}

/* Add background color behind GIF */
.sports-gif {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
}

/* Apply filter to tweak color (works like tinting) */
.sports-gif img {
  filter: hue-rotate(180deg) saturate(2); /* changes colors */
}
marquee .img-fluid {
    max-width: 100%;
    height: 55px;
}
.about-stats-section {
  background: #fff;
  color: #222;
}
.about-stats-section h2 {
  font-size: 2.5rem;
}
.about-stats-section p {
  font-size: 1rem;
  color: #444;
}
/* Team Section */
    .team-section {
      padding: 60px 20px;
      background: #fff;
    }
    .team-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      color: #222;
    }
    .team-card {
      background: #f9f9f9;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .team-card:hover {
      transform: translateY(-10px);
    }
    .team-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .team-card h5 {
      margin-top: 15px;
      font-weight: bold;
      color: #333;
    }
    .team-card p {
      color: #777;
      font-size: 0.9rem;
    }
    .team-social a {
      color: #555;
      margin: 0 8px;
      font-size: 1.2rem;
      transition: color 0.3s;
    }
    .team-social a:hover {
      color: #007bff;
    }
.joinus-section {
    background: #f06d08;
    padding: 50px;
    border-radius: 15px;
}


.joinus-subtitle {
  color: #fff;
  font-size: 1.5rem;
}

.joinus-btn {
  background: #fff;
  color: #ff6600;
  padding: 8px 25px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.joinus-btn:hover {
  background: #e65c00;
  color: #fff;
}
.whatwe-section {
  background: #f9fafc; 
}

.whatwe-left {
  border-left: 5px solid #f06d08; 
}

.whatwe-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.whatwe-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatwe-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.whatwe-box h4 {
  font-size: 1.2rem;
}

.whatwe-box img {
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.whatwe-sections h2 {
  font-size: 2.3rem;
  color: #222;
}

.whatwe-sections h3 {
  font-size: 1.5rem;
  color: #333;
}

.whatwe-sections p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.whatwe-sections img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.whatwe-sections img:hover {
  transform: scale(1.05);
}
.whyimage img{
  border-radius: 30px ;
}

    /* Banner */
    .banner {
      position: relative;
      height: 430px;
      background: url('../images/contact.png') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
    }

    .banner-overlay {
      background-color: rgb(0 0 0 / 38%);
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banner-title {
      color: #ffffff;
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
    }

    /* Tabs */
    .nav-tabs {
      justify-content: center;
      margin-bottom: 30px;
    }

    .nav-tabs .nav-link {
      color: #1d3557;
      font-weight: 600;
      border-radius: 0;
    }

    .nav-tabs .nav-link.active {
      background-color: #1d3557;
      color: white;
    }

    /* Gallery Cards */
    .gallery-card {
      border: none;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-card:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .card-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #343a40;
    }

    .card-body {
      background-color: #ffffff;
    }

    /* Videos */
    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
     .contact-wrapper {
      display: flex;
      min-height: 100vh;
      flex-wrap: wrap;
    }

    .left-panel {
      flex: 1;
      background: url('https://source.unsplash.com/900x1000/?sports,team') center/cover no-repeat;
      min-height: 400px;
      position: relative;
      padding: 60px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .left-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 0;
    }

    .left-panel-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 500px;
      color: #ffffff;
    }

    .left-panel-content h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #f06d08;
      text-transform: uppercase;
      margin-bottom: 25px;
    }

    .contact-card {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .contact-icon {
      font-size: 1.8rem;
      color: #f06d08;
      width: 40px;
      text-align: center;
    }

    .contact-info {
      flex: 1;
    }

    .contact-info h6 {
      margin: 0;
      font-weight: 600;
      font-size: 1rem;
      color: #ffffff;
    }

    .contact-info p {
      margin: 0;
      font-size: 0.95rem;
      color: #ddd;
    }

    .right-panel {
      flex: 1;
      background-color: #0a0a0a;
      padding: 60px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-form-box {
      width: 100%;
      max-width: 550px;
      background: rgba(255, 255, 255, 0.05);
      padding: 40px;
      border-radius: 16px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .contact-form-box h2 {
      color: #ffffff;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .form-control {
      background-color: rgba(255,255,255,0.1);
      border: none;
      border-radius: 8px;
      color: #fff;
    }

    .form-control::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .form-control:focus {
      background-color: rgba(255,255,255,0.15);
      color: #fff;
      box-shadow: none;
    }

    .btn-send {
      background-color: #f06d08 !important;
      border: none !important;
      padding: 12px 20px !important;
      font-weight: 600 !important;
      text-transform: uppercase !important;
      border-radius: 8px !important;
      width: 100% !important;
      transition: 0.3s !important;
      color: white !important;
    }

    .btn-send:hover {
      background-color: #f06d08 !important;
      color: white !important;
    }

    .map-embed {
      margin-top: 30px;
      border-radius: 12px;
      overflow: hidden;
      height: 250px;
    }
      .hero {
    background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 38%)), url(../images/infrastructure.png) center / cover no-repeat;
    color: white;
    padding: 150px 20px;
    text-align: center;
}
    .hero h1 { font-size: 3.5rem; font-weight: 700; text-transform: uppercase; }
    .section-title { text-align: center; font-weight: 700; margin-bottom: 30px; color: #f06d08; }
    .infra-section { padding: 60px 20px; }
    .feature-box {
      background: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      height: 100%;
      text-align: center;
    }
    .feature-box i { font-size: 2rem; color: #f06d08; margin-bottom: 15px; }
    .feature-box h4 { color: #f06d08; font-weight: 600; }
    
    /* Animated Gallery Styles */
    .gallery {
      padding: 60px 20px;
      background-color: #fff;
    }
    .gallery-title {
      color: #f06d08;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
    }
    .gallery figure {
      overflow: hidden;
      border-radius: 10px;
      margin: 0; /* remove default figure margin */
      position: relative;
    }
    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1) translate(0, 0);
      transition: transform 1200ms ease-in;
    }
    .gallery figure:hover img {
      transform: scale(1.2) translate(-5%, -5%);
    }
    
    /* CTA */
    .cta {
      background-color: #f06d08;
      color: white;
      padding: 50px 20px;
      text-align: center;
    }
    .cta h3 { font-weight: 600; margin-bottom: 15px; }
    .cta a {
      background: white;
      color: #f06d08;
      font-weight: bold;
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
    }
    .cta a:hover { background-color: #f1f1f1; }
 /* Banner */
    .program-banner {
      background: url("../images/contact.png") center/cover no-repeat;
      height: 50vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      color: white;
    }
    .program-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
    }
    .program-banner h1 {
      position: relative;
      z-index: 1;
      font-size: 3rem;
      text-align: center;
    }

    /* Steps */
   .level-section {
      padding: 60px 0;
    }

    .level-box {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
      transition: transform .3s;
    }
    .level-box:hover {
      transform: translateY(-6px);
    }

    .level-number {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #f06d08;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -25px;
      left: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .level-title {
      margin-left: 90px;
      font-weight: bold;
      color: #333;
    }

    .level-content {
      margin-left: 90px;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #555;
    }
    /* Program images */
    .program-image img {
      border-radius: 12px;
      width: 100%;
      height: auto;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Video Section */
    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .video-wrapper iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
      .coach-banner {
      background: url('../images/coachebackground.jfif') center/cover no-repeat;
      height: 60vh;
      position: relative;
      color: #fff;
      display: flex;
      align-items: center;
    }
    .coach-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .coach-banner .container {
      position: relative;
      z-index: 2;
    }
    .coach-banner h1 {
      font-size: 3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    /* Contact Form */
    .banner-form {
      background: rgba(255, 255, 255, 0.9);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    }
     .newform .form-control {
    color: #000000 !important;
}
    .banner-form .placeholder-custom::placeholder {
      color: #000000 !important;  

      }
    .banner-form h4 {
      color: #f06d08;
      font-weight: 700;
      margin-bottom: 15px;
      text-align: center;
    }
    .banner-form .form-control {
      border-radius: 8px;
      margin-bottom: 12px;
    }
    .banner-form button {
      width: 100%;
      border-radius: 8px;
      background: #f06d08;
      border: none;
      font-weight: 600;
      padding: 10px;
    }
    .banner-form button:hover {
      background: #f06d08;
    }
    /* Coaches Section */
  .coach-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
  }

  .coach-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
  }

  .coach-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 4px solid #f06d08;
    transition: transform 0.4s ease;
  }

  .coach-box:hover .coach-img img {
    transform: scale(1.1);
  }

  .coach-content {
    padding: 20px;
  }

  .coach-content h5 {
    color: #f06d08;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .coach-content p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .social-icons a {
    margin: 0 6px;
    font-size: 1.2rem;
    color: #f06d08;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #212529;
  }

  /* Animations */
  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .animate-coach {
    animation: fadeUp 0.8s forwards;
  }

  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }
   .academy-banner {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('../images/coachebackground.jfif') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 170px 20px;
      position: relative;
    }
    .academy-banner h1 {
      font-size: 3rem;
      font-weight: 700;
      animation: fadeInDown 1.2s ease-in-out;
    }
    .academy-banner p {
      font-size: 1.2rem;
      margin-top: 10px;
      animation: fadeInUp 1.2s ease-in-out;
    }

    /* Academy Info */
    .academy-info {
      padding: 80px 20px;
      background: #f8f9fa;
    }
    .academy-info h2 {
      font-weight: 700;
      text-align: center;
      margin-bottom: 20px;
      color: #222;
    }
    .academy-info p {
      text-align: center;
      color: #555;
      font-size: 1.1rem;
    }

    /* Courses Section */
    .courses-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    }
    .course-card {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.4s ease;
      background: #fff;
    }
    .course-card:hover {
      transform: translateY(-10px);
    }
    .course-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 15px 15px 0 0;
    }
    .course-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 15px;
    }
    .course-card:hover .course-overlay {
      opacity: 1;
    }
    .course-overlay h5 {
      font-size: 1.4rem;
      font-weight: 600;
    }
    .course-overlay p {
      font-size: 0.95rem;
      margin-top: 5px;
    }

    /* Animations */
    @keyframes fadeInDown {
      from {opacity:0; transform:translateY(-40px);}
      to {opacity:1; transform:translateY(0);}
    }
    @keyframes fadeInUp {
      from {opacity:0; transform:translateY(40px);}
      to {opacity:1; transform:translateY(0);}
    }