@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --theme-color: #000000;
  --theme-color-second: #fadb06;
  --theme-color-third: #fe31e6;
  --theme-color-forth: #807dfe;
  --theme-color-fifth: #d4d6e2;
  --heading-font: 'Montserrat', 'Arial Black', sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: 'spanist';
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  /* color: var(--theme-color) !important; */
}

.mobile-header {
  display: none;
}

.header-info {
  display: flex;
  flex-direction: row;
  gap: 11px;
  flex-wrap: wrap;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.sub-heading {
  font-weight: 600;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 400;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}

.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #000;
  display: inline-block;
  font-size: 14px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 13rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 6px;
  position: relative;
  border: 1px solid var(--theme-color-second);
}

a.btn-2 {
  background-color: var(--theme-color-third);
  color: #fff;
  border: 1px solid var(--theme-color-third);
}

a.btn-3 {
  background-color: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color-fifth);
}

a.comon-btn:hover {
  background: #0f0f0f;
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.desktop-logo img {
  width: fit-content;
  height: 94px;
  object-fit: contain;
  padding-top: 5px;
}

.desktop-header-menu li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 29px;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1px;
}

.desktop-header-menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-third);
}

.navbar li:hover .dropdown-menu {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.submenu-2 li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#desktop-header ul.submenu-2 li:last-child {
  border-bottom: 0px;
}

#desktop-header ul.submenu-2 li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0;
}

ul.submenu-2 li a {
  color: #000 !important;
  font-size: 14px;
  display: flex;
  width: 100%;
  padding: 11px 12px;
  align-items: center;
  justify-content: space-between;
}

ul.submenu-2 {
  border: none;
  background: #fff;
  padding: 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0;
}

.has-submenu-2 i {
  top: -9px !important;
}

.has-submenu-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* banner_sec */
.banner_sec {
  height: 100vh;
  display: flex;
  align-items: end;
  margin-bottom: 18px;
}

.banner_sec .title {

  font-weight: 900;
  font-size: 80px;

  letter-spacing: 0.02em;
  text-transform: uppercase;

  display: inline-flex;
  flex-direction: column;
}

/* "ARTISTIC" - Yellow to Magenta/Pink Gradient */
.banner_sec .title-gradient {
  background: linear-gradient(180deg, #fce028 0%, #f8188e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* "GYMNASTICS" - Solid White */
.banner_sec .title-white {
  color: #ffffff;
}


.banner_sec .stats-container {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

.banner_sec .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner_sec .stat-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  /* Apply yellow-to-pink gradient */
  background: linear-gradient(180deg, #fce028 0%, #f8188e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.banner_sec .stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #e0e0e0;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Yellow vertical line in the middle */
.banner_sec .divider {
  width: 3px;
  height: 80px;
  background-color: #e3be10;
}

.home_Sec_2 .home_Sec_2_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin: 0;
}

.home_Sec_2 .home_Sec_2_desc {
  font-family: var(--paragraph-font);
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
}

/* Card Styling */
.home_Sec_2 .home_Sec_2_card {
  background-color: transparent;
  border: none;
}

.home_Sec_2 .home_Sec_2_img_wrapper {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.home_Sec_2 .home_Sec_2_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.home_Sec_2 .home_Sec_2_card:hover .home_Sec_2_img_wrapper img {
  transform: scale(1.03);
}

.home_Sec_2 .home_Sec_2_card_title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--theme-color);
  line-height: 1.25;
  margin: 0;
  min-height: 2.5em;
  /* Ensures alignment across grid items */
}



.home_sec_3 {
  height: 100vh;
  display: flex;
  align-items: center;
}

.home_sec_3 .home_sec_3_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.home_sec_3 .home_sec_3_subheading {

  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.home_sec_3 .home_sec_3_desc {

  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

/* List Items with Custom Yellow Bullet */
.home_sec_3 .home_sec_3_list {
  margin-bottom: 30px;
}

.home_sec_3 .home_sec_3_list li {
  position: relative;
  padding-left: 20px;

  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.home_sec_3 .home_sec_3_list .bullet {
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--theme-color-second);
  border-radius: 50%;
  display: inline-block;
}

.home_sec_3 .home_sec_3_list strong {
  color: #ffffff;
}

.home_sec_4 .home_sec_4_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.home_sec_4 .home_sec_4_text {
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Highlighted Prefix Text */
.home_sec_4 .highlight-text {
  color: var(--theme-color-third);
  font-weight: 700;
}

/* Rounded Corner Image Wrapper */
.home_sec_4 .home_sec_4_img_wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.home_sec_4 .home_sec_4_img_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Button 1: Pink Outline */
.home_sec_4 .comon-btn.btn-2.btn-outline {
  background-color: transparent;
  color: var(--theme-color-third);
  border: 2px solid var(--theme-color-third);
}

.home_sec_4 .comon-btn.btn-2.btn-outline:hover {
  background-color: var(--theme-color-third);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Button 2: Black Solid */
.home_sec_4 .comon-btn.btn-2.btn-solid {
  background-color: var(--theme-color);
  color: #ffffff;
  border: 2px solid var(--theme-color);
}

.home_sec_4 .comon-btn.btn-2.btn-solid:hover {
  background-color: transparent;
  color: var(--theme-color);
  box-shadow: var(--shadow-base);
}

.home_sec_5 .home_sec_5_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.05;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.home_sec_5 .home_sec_5_subheading {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Rounded Corner Image Wrapper */
.home_sec_5 .home_sec_5_img_wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.home_sec_5 .home_sec_5_img_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bullet List Styling */
.home_sec_5 .home_sec_5_list {
  margin-bottom: 1.5rem;
}

.home_sec_5 .home_sec_5_list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 6px;
}

.home_sec_5 .home_sec_5_list .asterisk {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--theme-color);
}

.home_sec_5 .home_sec_5_list strong {
  font-weight: 700;
  color: #222222;
}

.home_sec_5 .home_sec_5_list .desc {
  color: #777777;
}


/* Button 1: Pink Outline */
.home_sec_5 .comon-btn.btn-2.btn-outline {
  background-color: transparent;
  color: var(--theme-color-third);
  border: 2px solid var(--theme-color-third);
}

.home_sec_5 .comon-btn.btn-2.btn-outline:hover {
  background-color: var(--theme-color-third);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Button 2: Pink Solid */
.home_sec_5 .comon-btn.btn-2.btn-solid {
  background-color: var(--theme-color-third);
  color: #ffffff;
  border: 2px solid var(--theme-color-third);
}

.home_sec_5 .comon-btn.btn-2.btn-solid:hover {
  background-color: transparent;
  color: var(--theme-color-third);
  box-shadow: var(--shadow-base);
}

.home_sec_6 {
  height: 100vh;
  display: flex;
  align-items: center;
}

/* Title Styling */
.home_sec_6 .home_sec_6_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.home_sec_6 .home_sec_6_heading .text-white {
  color: #ffffff;
}

/* "BOOKING" Gradient (Yellow to Pink/Magenta) */
.home_sec_6 .home_sec_6_heading .text-gradient {
  background: linear-gradient(180deg, #fce028 0%, #f8188e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Description Text */
.home_sec_6 .home_sec_6_desc {
  font-size: 0.9rem;
  color: #2b2b2b;
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 1.5rem;
}

/* Solid Pink Button */
.home_sec_6 .comon-btn.btn-2.btn-solid-pink {
  background-color: var(--theme-color-third);
  color: #ffffff;
  border: 2px solid var(--theme-color-third);
}

.home_sec_6 .comon-btn.btn-2.btn-solid-pink:hover {
  background-color: transparent;
  color: var(--theme-color-third);
  box-shadow: var(--shadow-base);
}

/* Solid Black Button */
.home_sec_6 .comon-btn.btn-2.btn-solid-black {
  background-color: var(--theme-color);
  color: #ffffff;
  border: 2px solid var(--theme-color);
}

.home_sec_6 .comon-btn.btn-2.btn-solid-black:hover {
  background-color: transparent;
  color: var(--theme-color);
  box-shadow: var(--shadow-base);
}

.home_sec_7 .home_sec_7_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.home_sec_7 .home_sec_7_subheading {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

/* Card Container with Soft Pinkish/Light Shadow */
.home_sec_7 .home_sec_7_card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0px 8px 24px rgba(254, 49, 230, 0.08), 0px 2px 8px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.home_sec_7 .home_sec_7_card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 30px rgba(254, 49, 230, 0.15);
}

/* Card Image Wrapper */
.home_sec_7 .home_sec_7_img_wrapper {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
}

.home_sec_7 .home_sec_7_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Typography */
.home_sec_7 .home_sec_7_card_title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--theme-color);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.home_sec_7 .home_sec_7_card_text {
  font-size: 0.8rem;
  color: #777777;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Navigation Buttons */
.home_sec_7 .home_sec_7_nav button {
  background: transparent;
  border: none;
  outline: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.home_sec_7 .home_sec_7_nav button:hover {
  opacity: 0.7;
}

/* Owl Carousel Spacing Adjustment */
.home_sec_7 .home_sec_7_carousel .owl-stage-outer {
  padding: 15px 5px;
  /* Provides overflow space for card shadows */
  margin: -15px -5px;
}

.home_sec_8 .home_sec_8_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.home_sec_8 .home_sec_8_subheading {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

/* Gallery Item Styling */
.home_sec_8 .home_sec_8_item {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
}

.home_sec_8 .home_sec_8_img_wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Square crop matching the layout */
  border-radius: 16px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.home_sec_8 .home_sec_8_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.home_sec_8 .home_sec_8_item:hover .home_sec_8_img_wrapper img {
  transform: scale(1.05);
}

.home_sec_9 {
  background: linear-gradient(180deg, #fce028 0%, #fffde6 60%, #ffffff 100%);
  font-family: var(--paragraph-font);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Main Section Heading */
.home_sec_9 .home_sec_9_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}

/* Descriptive Paragraphs */
.home_sec_9 .home_sec_9_text {
  font-size: 0.825rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.6;
}

/* Button Group Base Styles */


/* Solid Pink Button */
.home_sec_9 .comon-btn.btn-2.btn-solid-pink {
  background-color: var(--theme-color-third);
  color: #ffffff;
  border: 2px solid var(--theme-color-third);
}

.home_sec_9 .comon-btn.btn-2.btn-solid-pink:hover {
  background-color: transparent;
  color: var(--theme-color-third);
  box-shadow: var(--shadow-base);
}

/* Solid Black Button */
.home_sec_9 .comon-btn.btn-2.btn-solid-black {
  background-color: var(--theme-color);
  color: #ffffff;
  border: 2px solid var(--theme-color);
}

.home_sec_9 .comon-btn.btn-2.btn-solid-black:hover {
  background-color: transparent;
  color: var(--theme-color);
  box-shadow: var(--shadow-base);
}

/* Left Card: Image Background with Rounded Corners */
.home_sec_10 .home_sec_10_bg_card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%),
    url('../image/home-page-images/Contact-Details.png') center/cover no-repeat;
  border-radius: 16px;
  min-height: 480px;
  box-shadow: var(--shadow-small);
}

.home_sec_10 .home_sec_10_yellow_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--theme-color-second);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.home_sec_10 .home_sec_10_text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #dddddd;
  max-width: 500px;
}

/* Right Card: Form Container */
.home_sec_10 .home_sec_10_form_card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 8px 30px rgba(254, 49, 230, 0.08), 0px 2px 10px rgba(0, 0, 0, 0.03);
}

.home_sec_10 .home_sec_10_form_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
}

/* Yellow-to-Pink Gradient Border on Input Wrappers */
.home_sec_10 .gradient-input-wrapper {
  position: relative;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(180deg, #fce028 0%, #fe31e6 100%);
}

.home_sec_10 .gradient-input-wrapper .form-control {
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  font-size: 0.85rem;
  color: #333333;
  padding: 10px 14px;
}

.home_sec_10 .gradient-input-wrapper .form-control::placeholder {
  color: #a0a0a0;
}

.home_sec_10 .gradient-input-wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  background-color: #ffffff;
}

.home_sec_10 button.comon-btn {
  background-color: var(--theme-color-third);
  padding: 10px;
  border-radius: 5px;
  color: #fff;
}

footer.footer {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--paragraph-font);
  padding-top: 70px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

/* Logo & Brand Styling */
footer.footer .footer_logo_circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fce028 0%, #fe31e6 100%);
}

footer.footer .footer_brand_name {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0;
}

footer.footer .footer_text {
  font-size: 0.8rem;
  color: #aaaaaa;
  line-height: 1.6;
}

/* Yellow Action Button */
footer.footer .footer_quote_btn {
  display: inline-block;
  background-color: var(--theme-color-second);
  color: #000000;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer.footer .footer_quote_btn:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: var(--shadow-base);
}

/* Headings */
footer.footer .footer_heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--theme-color-second);
  letter-spacing: 0.5px;
}

footer.footer .footer_sublabel {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  display: block;
}

/* Footer Navigation Links */
footer.footer .footer_links li {
  margin-bottom: 12px;
}

footer.footer .footer_links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.825rem;
  line-height: 1.5;
  transition: color 0.2s ease;
  display: inline-block;
}

footer.footer .footer_links a:hover {
  color: var(--theme-color-second);
}

/* Contact Info Styling */
footer.footer .icon-yellow {
  color: var(--theme-color-second);
  font-size: 1.1rem;
  line-height: 1;
}

footer.footer .footer_contact_text {
  font-size: 0.8rem;
  color: #aaaaaa;
  line-height: 1.4;
}

footer.footer .footer_phone_link {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}

footer.footer .footer_phone_link:hover {
  color: var(--theme-color-second);
}

/* Social Media Icons */
footer.footer .social_icon_btn {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

footer.footer .social_icon_btn:hover {
  background-color: var(--theme-color-third);
  color: #ffffff;
}

/* Bottom Copyright Section */
footer.footer .footer_copyright {
  font-size: 0.75rem;
  color: #888888;
}

/* Responsive Styles */
@media (max-width: 922px) {
  footer.footer {
    padding-top: 50px;
  }
}

@media (max-width: 567px) {
  footer.footer {
    text-align: center;
  }

  footer.footer .footer_logo_circle {
    margin-left: auto;
    margin-right: auto;
  }

  footer.footer .footer_contact_item .d-flex {
    justify-content: center;
  }

  footer.footer .footer_social_block {
    justify-content: center;
    flex-direction: column;
  }
}


/* Conytact Page */

/* Map Iframe Wrapper */
.contact_sec_1 .contact_sec_1_map_wrapper {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.contact_sec_1 .contact_sec_1_map_wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Section Headings */
.contact_sec_1 .contact_sec_1_heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--theme-color);
  letter-spacing: -0.3px;
}

/* Pink Icon Accent */
.contact_sec_1 .icon-pink {
  color: var(--theme-color-third);
  line-height: 1;
}

/* Info Labels and Text */
.contact_sec_1 .contact_label {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--theme-color);
  letter-spacing: 0.5px;
}

.contact_sec_1 .contact_text {
  font-size: 0.85rem;
  color: #444444;
  line-height: 1.5;
}

.contact_sec_1 .contact_phone {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--theme-color);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.contact_sec_1 .contact_phone:hover {
  color: var(--theme-color-third);
}

/* Middle Divider Line on Desktop */
@media (min-width: 992px) {
  .contact_sec_1 .border-start-lg {
    border-left: 1px solid #e0e0e0;
  }
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .contact_sec_1 .contact_sec_1_map_wrapper {
    height: 260px;
  }

  .contact_sec_1 .contact_sec_1_heading {
    font-size: 1.3rem;
  }
}

@media (max-width: 567px) {
  .contact_sec_1 .contact_sec_1_map_wrapper {
    height: 220px;
  }

  .contact_sec_1 .contact_phone {
    font-size: 1.1rem;
  }
}

/* Section Headings */
.contact_sec_2 .contact_sec_2_heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.contact_sec_2 .contact_sec_2_subheading {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.6;
}

/* Form Controls & Select Dropdown Styling */
.contact_sec_2 .contact_sec_2_form .form-control,
.contact_sec_2 .contact_sec_2_form .form-select {
  background-color: #eeeeee;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.85rem;
  color: #333333;
  font-family: var(--paragraph-font);
  transition: all 0.3s ease;
}

/* Custom styling for unselected dropdown placeholder color */
.contact_sec_2 .contact_sec_2_form .form-select:invalid {
  color: #888888;
}

.contact_sec_2 .contact_sec_2_form option {
  color: #333333;
  background-color: #ffffff;
  padding: 8px;
}

.contact_sec_2 .contact_sec_2_form .form-control::placeholder {
  color: #888888;
}

.contact_sec_2 .contact_sec_2_form .form-control:focus,
.contact_sec_2 .contact_sec_2_form .form-select:focus {
  background-color: #ffffff;
  border-color: var(--theme-color-third);
  box-shadow: 0 0 0 3px rgba(254, 49, 230, 0.15);
  outline: none;
}

/* Button Variation */
.contact_sec_2 .comon-btn.btn-2.btn-solid-pink {
  background-color: var(--theme-color-third);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 48px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--theme-color-third);
  transition: all 0.3s ease;
}

.contact_sec_2 .comon-btn.btn-2.btn-solid-pink:hover {
  background-color: transparent;
  color: var(--theme-color-third);
  box-shadow: var(--shadow-base);
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .contact_sec_2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact_sec_2 .contact_sec_2_heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 567px) {
  .contact_sec_2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact_sec_2 .contact_sec_2_heading {
    font-size: 1.8rem;
  }

  .contact_sec_2 .contact_sec_2_subheading {
    font-size: 0.8rem;
  }

  .contact_sec_2 .comon-btn.btn-2.btn-solid-pink {
    width: 100%;
  }
}


/*  about page */


/* Heading Styling */
.about_sec_1 .about_sec_1_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

/* Pink Color Highlight */
.about_sec_1 .about_sec_1_heading .text-pink {
  color: var(--theme-color-third);
}

/* Primary Dark Text Block */
.about_sec_1 .about_sec_1_subtext {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.6;
}

/* Secondary Light Text Block */
.about_sec_1 .about_sec_1_desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888888;
  line-height: 1.65;
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .about_sec_1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about_sec_1 .about_sec_1_heading {
    font-size: 2.4rem;
  }

  .about_sec_1 .about_sec_1_subtext {
    font-size: 0.825rem;
  }
}

@media (max-width: 567px) {
  .about_sec_1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about_sec_1 .about_sec_1_heading {
    font-size: 1.8rem;
  }

  .about_sec_1 .about_sec_1_subtext {
    font-size: 0.8rem;
  }

  .about_sec_1 .about_sec_1_desc {
    font-size: 0.75rem;
  }
}


/* Headings and Highlighted Text */
.about_sec_2 .about_sec_2_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.about_sec_2 .highlight-text {
  color: var(--theme-color-third);
  font-weight: 700;
}

/* Text Formatting */
.about_sec_2 .about_sec_2_text {
  font-size: 0.85rem;
  color: #222222;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.about_sec_2 .about_sec_2_subtext {
  font-size: 0.825rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.6;
}

.about_sec_2 .about_sec_2_desc {
  font-size: 0.775rem;
  font-weight: 400;
  color: #888888;
  line-height: 1.6;
}

/* Image Wrappers with Soft Rounded Corners */
.about_sec_2 .about_sec_2_img_wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  aspect-ratio: 1 / 1;
}

.about_sec_2 .about_sec_2_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .about_sec_2 .about_sec_2_heading {
    font-size: 2.2rem;
  }

  .about_sec_2 .about_sec_2_text {
    font-size: 0.825rem;
  }

  .about_sec_2 .about_sec_2_img_wrapper {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 567px) {
  .about_sec_2 .about_sec_2_heading {
    font-size: 1.75rem;
    text-align: center;
  }

  .about_sec_2 .about_sec_2_text,
  .about_sec_2 .about_sec_2_subtext,
  .about_sec_2 .about_sec_2_desc {
    text-align: left;
    font-size: 0.8rem;
  }

  .about_sec_2 .about_sec_2_img_wrapper {
    aspect-ratio: 1 / 1;
  }
}

/* Image Container */
.about_sec_3 .about_sec_3_img_wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.about_sec_3 .about_sec_3_img_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Main Heading */
.about_sec_3 .about_sec_3_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.about_sec_3 .about_sec_3_subheading {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.55;
}

/* Custom Pink Bullet List */
.about_sec_3 .about_sec_3_list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}

.about_sec_3 .about_sec_3_list .bullet {
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: var(--theme-color-third);
  border-radius: 50%;
  display: inline-block;
}

.about_sec_3 .about_sec_3_list .list_title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--theme-color);
  margin-bottom: 4px;
}

.about_sec_3 .about_sec_3_list .list_desc {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Detailed Paragraphs */
.about_sec_3 .about_sec_3_desc {
  font-size: 0.775rem;
  color: #888888;
  line-height: 1.6;
}

/* Solid Pink Button Style */
.about_sec_3 .comon-btn.btn-2.btn-solid-pink {
  background-color: var(--theme-color-third);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--theme-color-third);
}

.about_sec_3 .comon-btn.btn-2.btn-solid-pink:hover {
  background-color: transparent;
  color: var(--theme-color-third);
  box-shadow: var(--shadow-base);
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .about_sec_3 .about_sec_3_heading {
    font-size: 2.2rem;
  }

  .about_sec_3 .about_sec_3_subheading {
    font-size: 0.825rem;
  }
}

@media (max-width: 567px) {
  .about_sec_3 .about_sec_3_heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .about_sec_3 .about_sec_3_subheading {
    text-align: center;
  }

  .about_sec_3 .about_sec_3_btn_wrapper {
    text-align: center;
  }

  .about_sec_3 .comon-btn.btn-2.btn-solid-pink {
    width: 100%;
  }
}

.about_sec_4 {

  padding-bottom: 700px;
  background-position-x: 100%!important;  
  background-position: bottom!important;
}

/* Dark Bold Lead Text */
.about_sec_4 .about_sec_4_lead {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.6;
}

/* Lighter Secondary Text */
.about_sec_4 .about_sec_4_desc {
  font-size: 0.775rem;
  font-weight: 400;
  color: #888888;
  line-height: 1.65;
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .about_sec_4 {
    padding-top: 40px;
  }

  .about_sec_4 .about_sec_4_lead {
    font-size: 0.825rem;
  }


  
}

@media (max-width: 567px) {
  .about_sec_4 .about_sec_4_lead {
    font-size: 0.8rem;
  }

  .about_sec_4 .about_sec_4_desc {
    font-size: 0.75rem;
  }

  
}

/* Base Section Styling */
.trainees_sec_1 {
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  padding-top: 80px;
  padding-bottom: 60px;
}

/* Main Section Heading */
.trainees_sec_1 .trainees_sec_1_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

/* Darker Lead Text Block */
.trainees_sec_1 .trainees_sec_1_lead {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.6;
}

/* Lighter Secondary Text Block */
.trainees_sec_1 .trainees_sec_1_desc {
  font-size: 0.775rem;
  font-weight: 400;
  color: #888888;
  line-height: 1.65;
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .trainees_sec_1 {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .trainees_sec_1 .trainees_sec_1_heading {
    font-size: 2.4rem;
  }

  .trainees_sec_1 .trainees_sec_1_lead {
    font-size: 0.825rem;
  }
}

@media (max-width: 567px) {
  .trainees_sec_1 {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .trainees_sec_1 .trainees_sec_1_heading {
    font-size: 1.8rem;
  }

  .trainees_sec_1 .trainees_sec_1_lead {
    font-size: 0.8rem;
  }

  .trainees_sec_1 .trainees_sec_1_desc {
    font-size: 0.75rem;
  }
}

/* Base Section Styling */
.traine_sec_2 {
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Image Container with Soft Rounded Corners */
.traine_sec_2 .traine_sec_2_img_wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  aspect-ratio: 1 / 1;
}

.traine_sec_2 .traine_sec_2_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Trainee Heading */
.traine_sec_2 .traine_sec_2_heading {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--theme-color);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

/* Subheading Paragraph */
.traine_sec_2 .traine_sec_2_subheading {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.55;
}

/* Pink Bullet Feature List */
.traine_sec_2 .traine_sec_2_list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 18px;
}

.traine_sec_2 .traine_sec_2_list li:last-child {
  margin-bottom: 0;
}

.traine_sec_2 .traine_sec_2_list .bullet {
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: var(--theme-color-third);
  border-radius: 50%;
  display: inline-block;
}

.traine_sec_2 .traine_sec_2_list .list_title {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--theme-color);
  margin-bottom: 4px;
}

.traine_sec_2 .traine_sec_2_list .list_desc {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Custom Responsive Breakpoints */
@media (max-width: 922px) {
  .traine_sec_2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .traine_sec_2 .traine_sec_2_heading {
    font-size: 2rem;
  }

  .traine_sec_2 .traine_sec_2_subheading {
    font-size: 0.825rem;
  }

  .traine_sec_2 .traine_sec_2_img_wrapper {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 567px) {
  .traine_sec_2 .traine_sec_2_heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .traine_sec_2 .traine_sec_2_subheading {
    text-align: center;
  }

  .traine_sec_2 .traine_sec_2_img_wrapper {
    aspect-ratio: 1 / 1;
  }
  footer.footer .footer_brand.mb-4 img {
    width: 60%;
  margin:  0 auto;
}
}

footer.footer .footer_brand.mb-4 img {
    width: 60%;
}