/* ----------------------page loader----------------- */
.page_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
  /* fast */
}

.page_loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --------------------navbar------------------- */
/* Navbar background */
.navbar-custom {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Nav links */
.navbar-nav .nav-link {
  color: #2a2929c6 !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
}

/* Active + Hover */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0E7490 !important;
  /* cyan-600 */
}

/* Dropdown menu */
.dropdown-menu {
  background-color: white !important;
  border: none !important;
  /* NO border */
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Dropdown items */
.dropdown-item {
  color: #555 !important;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none !important;
}

.dropdown-item:hover {
  background-color: #0E7490 !important;
  color: #fff !important;
}

/* Remove default focus blue border */
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Hamburger icon */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300A4C7' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* When menu is open → show X */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300A4C7' stroke-width='3' stroke-linecap='round' d='M6 6l18 18M24 6L6 24'/%3E%3C/svg%3E") !important;
}

/* No border for toggler */
.navbar-toggler {
  border: none !important;
  padding: 4px 6px !important;
}

/* Mobile logo smaller */
@media (max-width: 991px) {
  .mobile-logo {
    height: 42px;
  }
}

/* Close menu when clicking any link */
#navbarMenu .nav-link,
#navbarMenu .dropdown-item {
  cursor: pointer;
}

/* X button */
.hamburger-x {
  font-size: 32px;
  color: var(--active-blue);
  background: none;
  border: none;
  line-height: 1;
}

/* HAMBURGER */
.navbar-toggler {
  border: none !important;
  padding: 4px 6px !important;
  background: none !important;
}

:root {
  --active-blue: #0E7490;
  --gray-text: #4a4a4a;
}

/* NAVBAR BASE */
.navbar-custom {
  background: #fff !important;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: var(--gray-text);
  font-weight: 500;
  text-decoration: none !important;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--active-blue) !important;
}

.navbar-nav .nav-link.active {
  color: var(--active-blue) !important;
  font-weight: 600;
}

/* DROPDOWN */
.dropdown-menu {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.dropdown-item {
  padding: 10px 18px;
  font-size: 15px;
  text-decoration: none !important;
}


.dropdown-item:hover {
  background: var(--active-blue) !important;
  color: #fff !important;
}

/* HAMBURGER */
.navbar-toggler {
  border: none !important;
  padding: 4px 6px !important;
  background: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:hover,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* X button */
.hamburger-x {
  font-size: 32px;
  color: var(--active-blue);
  background: none;
  border: none;
  line-height: 1;
}

/* MOBILE LOGO */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 40px !important;
  }
}


/* ------------------footer---------------------------- */
/* NEWSLETTER BOX */
.newsletter-box {
  background: #eff8f9;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-60%);
  z-index: 10;

}

/* Blue highlight text */
.newslettercolor {
  color: #0891b2;
}

/* INPUT + BUTTON inside */
.newsletter-input-wrapper {
  position: relative;
  max-width: 380px;
}

/* Input spacing to fit button */
.newsletter-input-wrapper input {
  padding-right: 70px !important;
}

/* Send Button */
.newslettersubmit {
  background-color: #0891b2 !important;
  color: #fff !important;
  border: none;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px !important;
  height: 38px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* White send icon */
.newslettersubmit i {
  color: #fff !important;
  font-size: 18px;
}

/* FOOTER TOP SPACE INCREASED */
.footertop {
  margin-top: 150px;
}

footer {
  background: #cffafe;
  padding-top: 150px;
  /* Increased space so newsletter fits nicely */
}

/* FOOTER LOGO */
.footer-logo img {
  height: 70px;
}

/* FOOTER COLUMN HEADINGS */
.footer-section h5 {
  color: #0891b2;
  font-weight: bold;
  margin-bottom: 10px;
}

/* FOOTER LINKS */
.footer-section a {
  display: block;
  text-decoration: none;
  padding: 4px 0;
  color: #333;
  font-weight: 500;
}

.footer-section a:hover {
  color: #0891b2;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

/* COPYRIGHT AREA */
.copyright {
  text-align: center;
  background: #cffafe;
  padding: 12px 0;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .newsletter-box {
    width: 95%;
    padding: 25px;
    transform: translateX(-50%) translateY(-50%);
  }

  footer {
    padding-top: 180px;
    /* More space for mobile */
  }

  .social-icons {
    justify-content: center;
  }
}


/* -----------hero section style start---------------- */
/* --- Global Carousel Fade (Keep) --- */
.page_loader {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_loader img {
  width: 90px;
  /* Adjust size here */
  height: 90px;
  /* Adjust size here */
  object-fit: contain;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* --- Height (Keep) --- */
.hero-slide {
  height: 100vh;
  margin-top: 35px;
  position: relative;
  /* Essential for absolute positioning of the caption */
}

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


/* ---------------------------------------------------- */
/* --- CAPTION STYLING: DEFAULT (DESKTOP: LEFT CENTER) --- */
/* ---------------------------------------------------- */
.slide-caption {
  /* Position absolute */
  position: absolute;
  /* color: white; */
  z-index: 10;

  /* Desktop Positioning (Left Center) */
  top: 50%;
  /* Start at the vertical middle */
  left: 10%;
  /* Fixed left position */
  transform: translateY(-50%);
  /* Pull it back up by half its height for true vertical center */

  /* Reset Mobile-specific styles for Desktop */
  width: auto;
  max-width: none;
  text-align: left;
  padding: 0;
}

.caption-title {
  color: #1F2034;
  font-weight: 800;
  font-size: 40px;
  text-transform: capitalize;
  font-family: 'Poppins' !important;
}

/* extra large desktop */
@media (min-width: 1850px) {
  .caption-title {
    font-size: 6rem;
    min-width: 800px;
    padding: 30px;
  }

  .caption-sub {
    font-size: 2.75rem !important;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-left: 30px;
    min-width: 1200px;

  }

  .phone-btn {
    padding: 25px;
    margin-left: 30px;
    font-size: 2.25rem !important;
  }

  .navheightincrease {
    padding: 20px;
  }

  .navbar-brand img {
    height: 55px !important;
    padding-left: 3rem;
  }

  .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 25px;

  }
}

.caption-sub {
  max-width: 400px;
  color: #1F2034;
}

/* Phone Button (Keep) */
.phone-btn {
  /* color: white; */
  color: #1F2034;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}

.phone-btn:hover {
  opacity: 0.8;
}

.gradiendbtn {

  background: #91D551;
  background: linear-gradient(90deg, rgba(145, 213, 81, 1) 0%, rgba(39, 183, 231, 1) 100%);
  box-shadow: 0 6px 14px rgba(0, 206, 221, 0.6);
  transition: 0.3s ease;
}

.gradiendbtn:hover {
  opacity: 0.8;
}


/* --- Custom Controls (Keep) --- */

.custom-arrow {
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-arrow i {
  color: white;
  font-size: 24px;
}

/* Position arrows at extreme left & right */
.custom-arrow-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}

/* Left arrow */
.carousel-control-prev.custom-arrow-btn {
  left: 8px;
}

/* Right arrow */
.carousel-control-next.custom-arrow-btn {
  right: 8px;
}

/* Dot indicators (Keep) */
.carousel-indicators {
  margin-bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: #848181;
  border-radius: 50%;
  text-decoration: none !important;
}

.carousel-indicators .active {
  background-color: #fff;
}


/* ---------------------------------------------------- */
/* 📱 MEDIA QUERY: MOBILE (TOP CENTER, WIDER BOX) 📱 */
/* ---------------------------------------------------- */
@media (max-width: 768px) {

  /* Caption Positioning Override */
  .slide-caption {
    /* **NEW WIDTH:** Force the box to be wide (approx. 3/4) */
    width: 90%;
    max-width: 400px;

    /* **MODIFIED:** Top Positioning (Moved down further) */
    top: 15%;
    /* Moves content down from the top edge */

    /* Horizontal Centering */
    left: 50%;
    transform: translateX(-50%);
    /* Only translate X for centering */

    /* Text alignment within the caption box */


    /* **NEW PADDING:** Add Padding to prevent text touching the screen edge */
    padding: 0 15px;
  }

  /* Reset caption sub-elements for center alignment */
  .caption-sub {
    margin-left: auto;
    margin-right: auto;
  }

  /* Arrow Adjustments for Mobile */
  .custom-arrow-btn {
    top: 60%;
  }

  .custom-arrow {
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-arrow i {
    color: white;
    font-size: 18px;
  }
}

/* -----------hero section style end---------------- */

/* -------------------about section style start------------------ */

.hero-section {
  position: relative;
  height: 50vh;
  width: 100%;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
}

.hero-title {
  color: #AEE7F8;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 35px;
}

.hero-subtitle {
  color: #fff;
  margin-top: 15px;
  font-size: 28px;
}

.aboutustextcolor {
  color: #0891b2;
}


/* ABOUT SECTION */
.about-section {
  background: #fff8f9;
}

.about-text {
  background: white;
  border-radius: 30px;

}

/* IMAGE GRID */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

}

.grid-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* VERTICAL FOCUS LIST */
.focus-list-container {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.focus-item {
  background: #ebf5f7;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 150, 150, 0.2);
  opacity: 0.3;
  transform: scale(0.9);
  transition: 0.8s;
}

.focus-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 20;
}

.custom-box {
  flex: 1;
  text-align: center;
  text-align: justify;
  margin-right: 5%;
  margin-left: 4%;
  font-size: larger;

  /* padding */
  padding: 1rem;
  /* p-4 */

  /* shadow-md + rose-300 */
  box-shadow:
    0 4px 6px -1px rgba(253, 164, 175, 0.35),
    0 2px 4px -2px rgba(253, 164, 175, 0.25);
}

/* md:screen (≥768px) */
@media (min-width: 768px) {
  .custom-box {
    text-align: left;
    /* md:text-left */
    order: 1;
    /* md:order-1 */
    padding: 1.5rem;
    /* md:p-6 */
  }
}

/* Reduce height on mobile */
@media (max-width: 767px) {
  .about-section .row {
    min-height: auto;
  }
}

/* Default font size for desktop */
.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Heading responsive */
.about-section h2,
.about-section h1 {
  font-size: 2rem;
}

/* MOBILE — SMALLER FONTS */
@media (max-width: 767px) {
  .about-section p {
    font-size: 0.95rem;
    /* smaller text */
    line-height: 1.5;
  }

  .about-section h2,
  .about-section h1 {
    font-size: 1.4rem;
    /* smaller heading */
  }
}

/* LARGE SCREENS (OPTIONAL) */
@media (min-width: 1200px) {

  .about-section h2,
  .about-section h1 {
    font-size: 2.4rem;
    /* slightly larger heading */
  }
}

.about-text-color {
  color: rgb(79, 79, 79);
  margin: 0px;
  padding-bottom: 10px;
}

/* -------------------about section style end------------------ */

/* ----------------services section style start------------- */

.services-section {
  background: #f3f4f6;
  padding: 60px 20px;
}

.service-card {
  background: #ebf5f7;
  border-radius: 15px;
  padding: 30px 20px;
  transition: 0.3s;
  text-align: center;
  box-shadow: 3px 3px 8px rgba(0, 128, 128, 0.25);
}

.service-card:hover {
  background: #d1e4e7;
}

.service-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-title {
  color: #0e7490;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
}

.service-text {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.service-btn {
  background: #0891b2;
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #0c728a;
}

.servicesheadingcolor {
  color: #0891b2;
}

/* ----------------services style end------------- */

/* youtube section style end */

/* testimonial section style start */
.testimonial-home-container {
      padding-top: 5rem;
      padding-bottom: 2.5rem;
    }

    .header-title {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    @media (min-width: 992px) {
      .header-title {
        font-size: 2rem;
      }
    }

    @media (min-width: 1200px) {
      .header-title {
        font-size: 2.5rem;
      }
    }

    .text-cyan-600 {
      color: #0891b2;
      /* A shade of cyan for emphasis */
    }

    .bg-custom-pink {
      background-color: #0891b2;
      /* bg-[#990E53] */
    }

    .bg-custom-pink:hover {
      background-color: #0c728a;
      /* hover:bg-[#450A28] */
    }

    .card-bg-yellow {
      background-color: #fffbeb;
      /* bg-yellow-50 */
    }

    .card-height {
      height: 300px;
    }

    @media (min-width: 768px) {

      /* md */
      .card-height {
        height: 360px;
      }
    }

    .review-text {
      height: 150px;
      /* h-[150px] */
      overflow-y: auto;
      text-align: left;
    }

    @media (min-width: 768px) {

      /* md */
      .review-text {
        height: 180px;
        /* md:h-[180px] */
      }
    }
    
/* testimonial section style end */

/* contactus section style start */
/* Icons */
.icon-img {
  width: 25px;
  height: 25px;
}

.contact-link {
  text-decoration: none;
  color: #333;
}

.contact-link:hover {
  color: gray;
}

/* Contact box styling */
.contact-box {
  background: #eff8f9;
  box-shadow: 0 4px 10px rgba(255, 0, 100, 0.15);
  border-radius: 10px;
}

.submit-btn {
  background: #0891b2;
  color: white;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.submit-btn:hover {
  background: #0c728a;
  color: white;
}

.form-control {
  background: #eff8f9;
}

.contactsubtitle {
  color: gray;
  font-weight: normal;
}

/* contactus section style end */

/* yoga section services */

/* ----- Yoga Section (Background & Layout) ----- */
.yoga-section {
  background: #fff8f9;
  padding: 60px 0;
}

/* Image Shadow + Rounded */
.yoga-img-box {
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 4px 10px rgba(153, 14, 83, 0.15);
}

/* Checkmark Icon Color */
.yoga-benefit-icon {
  color: #990E53;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* WhatsApp Button */
.yoga-btn {
  color: white;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.yoga-banner:hover {
  background-color: #0891b2;
}




/* ----- Responsive (Mobile First) ----- */
@media (max-width: 992px) {
  .yoga-img-box {
    max-width: 300px;
  }
}

.bannercenter-text {
  padding-top: 60px;
  width: 100%;

}

.props-banner {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.props-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.banner-title {
  color: #AEE7F8;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
}

.banner-subtitle {
  font-size: 20px;
}

.bannercenter-text {
  padding-top: 60px;
  width: 100%;

}

/* Responsive Font Sizes */
@media (min-width: 576px) {
  .banner-title {
    font-size: 30px;
  }

  .banner-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 34px;
  }

  .banner-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .banner-title {
    font-size: 38px;
  }

  .banner-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .banner-title {
    font-size: 42px;
  }

  .banner-subtitle {
    font-size: 20px;
  }
}

/* workout section and cardio and fatburning - services */
/* Image box shadow + rounded */
.props-img-box {
  max-width: 400px;
  max-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 4px 10px rgba(153, 14, 83, 0.15);
}

/* Pink icon color */
.check-icon {
  color: #0891b2;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* Pink Button */
.props-btn {
  color: white;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

/* ----------------- trainers section style -------------------- */
.trainer-card {
  border-radius: 16px;
  width: 80%;
  margin: auto;
  overflow: hidden;
  height: 300px;
  /* FIXED HEIGHT FOR ALL CARDS */
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  background: #d1e4e7;
  border-color: #bed6da;
  /* background: #ebf5f7; */
  box-shadow: 3px 3px 8px rgba(0, 128, 128, 0.25);
}

.trainer-card:hover {
  transform: translateY(-5px);
  /* background: #d1e4e7; */
  box-shadow: 3px 3px 8px rgba(0, 128, 128, 0.25);
}

.trainer-card img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  margin: auto;
  box-shadow: 3px 3px 8px rgba(0, 128, 128, 0.25);
}


.trainer-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* PUSH TEXT DOWN */
}

.bannercenter-text {
  padding-top: 60px;
  width: 100%;

}

.trainers-section {
  background: #f3f4f6;
}

/* management section */
.managemnet-card {
            border-radius: 12px 50px;
            height: 340px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            background: #ebf5f7;
            box-shadow: 3px 3px 8px rgba(0, 128, 128, 0.25);
        }
        .managemnet-card:hover {
            transform: translateY(-5px);
            background: #d1e4e7;
            box-shadow: 3px 3px 8px rgba(0, 128, 128, 0.25);
        }
        .managemnet-card img {
            object-fit: cover;
            width: 100%;
        }
        .managemnet-card .card-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            
        }
        .social-icons1 img {
            height: 30px;
            width: 30px;
        }
  
/* refund policy section */

.refine-content {
      height: 100vh;
    }

/* aboutus trainer section */
        .trainer-box {
         /* background-image: url('assets/img/main-page/trainers-bg.webp'); 
        background-size: cover;
        background-position: center; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 20px;
        background: #fff8f9;
        color: rgb(79, 79, 79);
        box-shadow:
    0 4px 6px -1px rgba(253, 164, 175, 0.35),
    0 2px 4px -2px rgba(253, 164, 175, 0.25);
    
    }

    .trainers-btn {
      color: white;
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s;

    }


    .trainer-box h2, 
    .trainer-box p,
    .trainer-box button {
        z-index: 2;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .trainer-box h2 {
            font-size: 1.4rem;
        }

        .trainer-box p {
            font-size: 1rem;
        }
    }
    @media (min-width: 450px) {
        .trainers-btn {
            width: 50%;
            margin: auto;
        }
    }

/* career section styling */
.careersubmit-btn {
            background: #990E53;
            color: white;
            padding: 12px;
            font-weight: 600;
            border-radius: 8px;
            width: 80%;

        }

        .careersubmit-btn:hover {
            background: #7f164cb9;
            color: white;
        }

/* career scection styling */
.career-form-control {
            background: #fff8f9;
        }

