* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  /* font-style: normal; */

}

html,
body {
  background: white;
  color: black;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  /* font-family: 'Orbitron', sans-serif; */
  font-family: 'Orbitron', sans-serif;
  font-style: normal;
  /* font-weight: 700; */
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}


:root {
  --my_color1: #14529C;
  --my_color2: #D72622;
  --my_color3: black;
  --my_color4: #726e6e;
}

/* NAVBAR */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: white;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgb(219, 216, 216);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 22px;
}

/* .gym-name {
  font-size: xx-large;
} */
.gym-name {
  /* letter-spacing: 1px; */
  text-transform: uppercase;
}

/* .my-brand-gradient-text {
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;
  font-weight: 600;
} */
.my-brand-gradient-text {
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  font-family: emoji;

  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-shadow: 0 0 1px rgba(255, 255, 255, 0.08);
}

.gym-name:hover {
  scale: 1.1;
}

.gym-name .be-text {
  color: var(--my_color1);
}

.gym-name .fit-text {
  color: var(--my_color2);
}

.logo img {
  height: 80px;
  border-radius: 50%;
}

/* NAV LINKS */

nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin-bottom: 0;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

nav a:hover {
  color: #0874e7;
}

#navMenu a.active {
  /* color: #0874e7; */
  font-weight: 600;
}

/* BUTTON */

.btn {
  background: black;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--my_color1);
  color: white;
}

/* HAMBURGER */

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Dropdown Base */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 190px;
  display: none;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu li a {
  padding: 10px 15px;
  display: block;
  color: #070707;
}

.dropdown-menu li a:hover {
  color: var(--my_color1);
  background-color: #007bff24;
}

/* Hover for Desktop */
@media (min-width: 768px) {


  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile Dropdown */
#navMenu.active .dropdown-menu {
  position: static;
  display: none;
}

#navMenu.active .dropdown.open .dropdown-menu {
  display: block;
  text-align: center;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 450px;
  overflow: hidden;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}


.slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}


/* OVERLAY */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay h1 {
  font-size: 75px;
  margin-bottom: 15px;
}

.overlay p {
  margin-bottom: 25px;
  font-size: 18px;
  width: 50%;
  font-family: emoji;
}

.info-btn {
  background: var(--my_color1);
  padding: 12px 25px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
}

.info-btn:hover {
  background: var(--my_color3);
  color: white;
}

/* ARROWS */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000045;
  color: white;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

.arrow:hover {
  background: #16a34a;
}

.left {
  left: 20px;
}

.right {
  right: 20px;
}

/* NAVBAR BUTTON */
.nav-contact-btn {
  position: relative;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #085095, #D72631);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* HOVER EFFECT */
.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: white;
}

/* GLOW ANIMATION */
.nav-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

/* SLIDE GLOW */
.nav-contact-btn:hover::before {
  left: 100%;
}

/* MOBILE */

@media(max-width:1500px) {

  nav {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-left: 0;
  }

  nav.active {
    display: flex;
  }

  .dropdown {
    position: relative;
    text-align: center;
  }

  .menu-btn {
    display: block;
  }

  .btn {
    display: none;
  }

  .overlay h1 {
    font-size: 34px;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    position: relative;
    z-index: 1000;
  }

  .overlay p {
    margin-bottom: 0;
    font-size: 18px;
    width: 50%;
    font-family: emoji;
    font-weight: 600;
  }

  .gym-name {
    font-size: larger;
    font-family: emoji;
    margin-bottom: 0;
  }

  .my-message-container {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    text-align: center;

  }

}



/* service.html  */


/* SECTION */
.services-section {
  background: #ffffff;
  padding: 80px 20px;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADINGS */
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #085095;
  ;
}

.section-subtitle {
  color: var(--my_color4);
  margin: 15px 0 50px;
}

/* GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.service-card {
  width: 300px;
}

/* Center last item when it's alone */
.services-grid .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2 / 3;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  position: relative;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* CONTENT */
.service-content {
  padding: 20px;
  text-align: left;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  /* color: #111; */
  font-weight: 600;
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;
}

.service-content p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT 🔥 */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* IMAGE ZOOM */
.service-card:hover img {
  transform: scale(1.08);
}

/* GLOW BORDER EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  /* background: linear-gradient(120deg, transparent, #4004e5, transparent); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.no-services {
  text-align: center;
  padding: 50px 20px;
  width: 100%;
}

.no-services h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.no-services p {
  color: #777;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .logo img {
    height: 55px;
    border-radius: 50%;
  }
}


/* SECTION */
.membership-section {
  padding: 80px 20px;
  background: #ffffff;
}

.membership-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.membership-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #085095;
}

.membership-section-subtitle {
  color: var(--my_color4);
  margin: 15px 0 50px;
}


/* GRID */
.membership-program-grid {
  display: grid;
  gap: 30px;
}

/* CARD */
.membership-program-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgb(209, 205, 205);
  transition: 0.4s ease;
  position: relative;
}

/* IMAGE */
.membership-program-img {
  width: 40%;
  overflow: hidden;
}

.membership-program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* CONTENT */
.membership-program-content {
  width: 60%;
  padding: 25px;
  text-align: left;
}

.membership-program-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #111;
}

.membership-program-content ul {
  padding-left: 15px;
}

.membership-program-content li {
  margin-bottom: 8px;
  color: #555;
}

/* HOVER EFFECT */
.membership-program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.membership-program-card:hover img {
  transform: scale(1.1);
}

/* GLOW BORDER */
.membership-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  /* background: linear-gradient(120deg, transparent, #00c896, transparent); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.membership-program-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .membership-program-card {
    flex-direction: column;
  }

  .membership-program-img,
  .membership-program-content {
    width: 100%;
  }

  .membership-program-img img {
    height: 220px;
  }

  .membership-section-title {
    font-size: 30px;
  }
}


/* GRID */
.membership-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* PACKAGE CARD */
.membership-package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.4s ease;
  position: relative;
  max-width: 350px;
}

.membership-package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
}

.membership-package-content {
  padding: 25px;
}

.membership-package-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;
}

.membership-package-content p {
  color: #666;
  font-size: 14px;
}

/* HOVER */
.membership-package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.membership-package-card:hover img {
  transform: scale(1.08);
}

/* GLOW BORDER */
.membership-package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  /* background: linear-gradient(120deg, transparent, #a9b9f1, transparent); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.membership-package-card:hover::before {
  opacity: 1;
}

/* PROGRAM CARDS */
.membership-program-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  /* border: 1px solid var(--my_color1); */
  transition: 0.4s;
  text-align: left;
  position: relative;
  margin: auto;
  max-width: 800px;
}

.membership-program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.membership-program-card h3 {
  margin-bottom: 15px;
  /* color: var(--my_color1); */
  font-size: 25px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;
}

.membership-program-card ul {
  padding-left: 15px;
}

.membership-program-card li {
  margin-bottom: 8px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .membership-section-title {
    font-size: 30px;
  }
}

/* ================================
   MY OFFERS SECTION
================================ */

.my-offers-cl-section {
  background: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.my-offers-cl-container {
  max-width: 1250px;
  margin: 0 auto;
}

.my-offers-cl-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-offers-cl-tag {
  display: inline-block;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  border: 1px solid rgba(220, 38, 38, 0.12);
}

.my-offers-cl-header h2 {
  font-size: 3rem;
  color: var(--my_color1);
  margin-bottom: 15px;
  font-weight: 800;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.my-offers-cl-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FLEXBOX CARD LAYOUT */
.my-offers-cl-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.my-offers-cl-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

  width: calc(33.333% - 20px);
  max-width: 380px;
  flex: 0 0 calc(33.333% - 20px);

  display: flex;
  flex-direction: column;
}

.my-offers-cl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 70px;
  height: 4px;
  background: var(--my_color1);
  border-radius: 0 0 10px 10px;
}

.my-offers-cl-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 18px 45px rgba(220, 38, 38, 0.12);
}

.my-offers-cl-featured {
  border: 1px solid rgba(220, 38, 38, 0.2);
  background: linear-gradient(180deg, rgb(84 152 255 / 24%), #ffffff);
  box-shadow: 0 16px 40px rgba(220, 38, 38, 0.08);
}

.my-offers-cl-badge {
  display: inline-block;
  background: var(--my_color1);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  align-self: flex-start;
}

.my-offers-cl-badge-alt {
  background: #111111;
  color: #ffffff;
}

.my-offers-cl-card h3 {
  font-size: 2rem;
  color: #111111;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.my-offers-cl-card h3 span {
  display: block;
  color: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  font-size: 1.2rem;
  margin-top: 6px;
  font-weight: 700;
}

.my-offers-cl-card p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.my-offers-cl-validity {
  display: inline-block;
  background: #f8f8f8;
  color: #111111;
  font-size: 0.92rem;
  padding: 10px 16px;
  border-radius: 14px;
  margin-bottom: 24px;
  border: 1px solid #ececec;
  align-self: flex-start;
}

.my-offers-cl-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.my-offers-cl-list li {
  color: #222222;
  margin-bottom: 12px;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.my-offers-cl-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(38, 50, 220, 0.267);
  margin-top: auto;
  text-align: center;
}

.my-offers-cl-btn:hover {
  background: linear-gradient(90deg, var(--my_color2), var(--my_color1));
  color: #ffffff;
  transform: translateY(-3px);
}

/* ================================
   EMPTY OFFERS STATE
================================ */

.my-offers-cl-empty-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.my-offers-cl-empty-box {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 60px 35px;
  max-width: 750px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.my-offers-cl-empty-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background: #dc2626;
  border-radius: 0 0 12px 12px;
}

.my-offers-cl-empty-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 1px solid rgba(220, 38, 38, 0.12);
}

.my-offers-cl-empty-box h3 {
  font-size: 2rem;
  color: #111111;
  margin-bottom: 16px;
  font-weight: 800;
}

.my-offers-cl-empty-box p {
  color: #555555;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .my-offers-cl-empty-box {
    padding: 45px 22px;
    border-radius: 22px;
  }

  .my-offers-cl-empty-box h3 {
    font-size: 1.6rem;
  }

  .my-offers-cl-empty-box p {
    font-size: 0.97rem;
  }

  .my-offers-cl-empty-icon {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .my-offers-cl-empty-box {
    padding: 38px 18px;
  }

  .my-offers-cl-empty-box h3 {
    font-size: 1.4rem;
  }

  .my-offers-cl-empty-box p {
    font-size: 0.94rem;
  }
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {
  .my-offers-cl-header h2 {
    font-size: 2.4rem;
  }

  .my-offers-cl-card {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    max-width: 300px;
  }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
  .my-offers-cl-section {
    padding: 80px 18px;
  }

  .my-offers-cl-header {
    margin-bottom: 45px;
  }

  .my-offers-cl-header h2 {
    font-size: 2rem;
  }

  .my-offers-cl-header p {
    font-size: 0.98rem;
  }

  .my-offers-cl-grid {
    gap: 24px;
  }

  .my-offers-cl-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 300px;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .my-offers-cl-card::before {
    left: 22px;
    width: 60px;
  }

  .my-offers-cl-card h3 {
    font-size: 1.7rem;
  }

  .my-offers-cl-card h3 span {
    font-size: 1.05rem;
  }

  .my-offers-cl-btn {
    width: 100%;
  }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
  .my-offers-cl-section {
    padding: 70px 15px;
  }

  .my-offers-cl-header h2 {
    font-size: 1.75rem;
  }

  .my-offers-cl-tag {
    font-size: 12px;
    padding: 7px 15px;
  }

  .my-offers-cl-card {
    padding: 24px 18px;
  }

  .my-offers-cl-card h3 {
    font-size: 1.5rem;
  }

  .my-offers-cl-card p,
  .my-offers-cl-list li {
    font-size: 0.95rem;
  }

  .my-offers-cl-validity {
    font-size: 0.88rem;
    padding: 9px 14px;
  }

  .my-offers-cl-btn {
    padding: 13px 22px;
    font-size: 0.95rem;
  }
  
}



/* service.html  */




.video-section {
  padding: 80px 10%;
  text-align: center;
  background: white;
  color: black;
}

.video-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #085095;
}

.video-section p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 40px;
  color: var(--my_color4);
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.video-container img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.video-container:hover img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #16a34a;
  color: white;
  font-size: 30px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* VIDEO MODAL */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.video-modal video {
  width: 80%;
  max-width: 900px;
  border-radius: 8px;
}

.close-video {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.no-video-text {
  color: white;
  text-align: center;
  padding: 40px;
}

.no-video-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
}

.video-container:not([onclick]) {
  cursor: not-allowed;
  opacity: 0.8;
}


/* FOOTER */

.footer {
  background: var(--my_color1);
  color: white;
  padding-top: 60px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.footer-col h1 {
  color: white;
  font-weight: 700;
}


.footer-col h3 {
  margin-bottom: 15px;
  color: white;
  font-weight: 700;

}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #d6b7b7;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: white;
  /* padding-left: 5px; */
  font-size: 16px;

}


/* SOCIAL ICONS */

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  /* background: #222; */
  border-radius: 50%;
  color: whitesmoke;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.social-links a i:hover {
  color: white;
  transform: translateY(-3px);
}

.privacy-links1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: whitesmoke;
}

.privacy-links1 p a {
  text-decoration: none;
  color: #d6b7b7;
}

.privacy-links1 p a:hover {
  color: white;
}


/* CONTACT ICONS */

.footer-col i {
  color: #d6b7b7;
  margin-right: 8px;
  text-decoration: none;
}

.footer-col i:hover {
  color: white;

}


/* BOTTOM */

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
}

.footer-bottom p a {
  text-decoration: none;
  color: #d6b7b7;
}

.footer-bottom p a:hover {
  color: white;

}


/* RESPONSIVE */

@media(max-width:768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-links a {
    margin: 5px;
  }

}



/* testimonial SECTION */

.testimonial-section {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 800px;
  min-height: 450px;
  margin: 2rem auto 6rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #278ded27, #d7263200);
}

.testimonial-title {
  text-align: center;
  margin-top: 7rem;
  color: #085095;
  font-size: 40px;
  font-weight: 700;
}

.testimonial-card {
  text-align: center;
  padding: 20px;
}

.slide .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #007bff;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.testimonial-stars {
  color: #34f251;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

.multi-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  /* for Chrome, Safari */
  line-clamp: 5;
  /* standard property */
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}

.my-rev-decor {
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;
}

/* Optional: carousel arrows styling */
/* .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(217, 213, 213, 0.5);
      border-radius: 50%;
      width: 40px;
      height: 40px;
    } */

/* testimonial SECTION */

/* results SECTION */

.trans-title {
  text-align: center;
  margin-bottom: 40px;
}

.trans-title h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #085095;
}

.trans-title p {
  font-size: 1.1rem;
  color: #555;
}

.transformation-container {
  max-width: 90vw;
  margin: auto;
}

/* Transformation Cards */
.transformation-container-main {
  background: #f5f5f569;
}

.transformation-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  margin: 25px;
  display: flex;
  flex-direction: column;
}

.transformation-images {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.transformation-images img {
  width: 50%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.transformation-content {
  padding: 20px;
  text-align: center;
}

.transformation-content h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.transformation-content p {
  color: #555;
  line-height: 1.6;
}

/* CTA Button */
.cta-btn {
  position: relative;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #085095, #D72631);
  transition: all 0.3s ease;
  overflow: hidden;
}

.cta-btn:hover {
  color: white;
  background: #085095;
  transform: translateY(-2px);
}



/* Responsive */
@media (max-width: 768px) {
  .transformation-images {
    flex-direction: row;
  }

  .transformation-images img {
    width: 50%;
    height: 250px;
    object-fit: cover;
  }

  .testimonial-title {
    text-align: center;
    margin-top: 7rem;
    color: #085095;
    font-size: 32px;
    font-weight: 700;
  }

  .video-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #085095;
  }

  .best-blog-hero h1 {
    font-size: 32px;
    color: #085095;
    font-weight: 700;
  }



}

.transformation-empty {
  width: 100%;
  padding: 60px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.transformation-empty h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.transformation-empty p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
}

.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
    filter: invert(1);
}

.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next {
    width: 5%;
}

/* results SECTION */

/* review.html  */

.review-cta {
  background: white;
  padding: 80px 20px;
}

.review-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */

.review-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* TEXT */

.review-content {
  flex: 1;
}

.review-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  margin-bottom: 20px;
  color: #085095;
  font-weight: 700;
}

.review-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* BUTTON */

.review-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  background: var(--my_color1);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.review-btn:hover {
  background: #090909;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: white;
}

/* RESPONSIVE */

@media(max-width:900px) {

  .review-container {
    flex-direction: column;
    text-align: center;
  }

  .review-image img {
    max-width: 100%;
  }

}

/* equipments redirect button style  */

.equipment-premium {
  background: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48") center/cover no-repeat;
  /* padding: 120px 20px; */
  position: relative;
}

.equipment-overlay {
  /* background: rgba(0, 0, 0, 0.65); */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* GLASS CONTENT BOX */

.equipment-box {
  max-width: 800px;
  background: white;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* HEADING */

.equipment-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  color: #085095;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TAGLINE */

.tagline {
  font-size: 18px;
  color: #00c853;
  margin-bottom: 15px;
  font-weight: 500;
}

/* PARAGRAPH */

.equipment-box p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FEATURES */

.equip-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #333;
}

/* BUTTON */

.equip-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--my_color1);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.equip-btn:hover {
  background: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */

@media(max-width:768px) {

  .equipment-box {
    padding: 35px 25px;
  }

  .equipment-box h2 {
    font-size: 30px;
  }

  .equip-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

}

/* review.html  */

/* contact.html */

.contact-hero {
  padding: 50px 0 0 0;
  text-align: center;
  /* background: #007bff; */
}

.contact-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #085095;
  font-weight: 700;
}

.contact-hero p {
  color: #7f7a7a;
  max-width: 600px;
  margin: auto;
}



/* CONTACT CARDS */

.contact-cards {

  padding: 70px 8%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;

}

.contact-card1 {

  background: white;
  padding: 35px;
  width: 260px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s;

}

.contact-card1 div {

  margin: 1.5rem 0;

}

.contact-card1:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}

.contact-card1 i {

  font-size: 36px;
  color: #142cca;
  margin-bottom: 15px;

}

.contact-card1 h3 {

  margin-bottom: 25px;

}

.contact-card1 p {

  font-size: 14px;
  color: #666;
  margin-bottom: 10px;

}

.contact-card1 a {

  color: #090909;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #070707;
  /* border-radius: 10px; */
  padding: 5px 10px;

}

.contact-card1 a:hover {

  color: white;
  text-decoration: none;
  font-weight: bold;

  background: #0f0f0f;

}



/* CONTACT FORM SECTION */

.contact-wrapper {

  padding: 90px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;

}

.contact-form {

  flex: 1;
  min-width: 300px;
  max-width: 500px;

}

.contact-form h2 {

  margin-bottom: 20px;
  text-align: center;
  color: #007bff;

}

.contact-form input,
.contact-form textarea {

  width: 100%;
  padding: 13px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;

}

.contact-form textarea {

  height: 120px;
  resize: none;

}

.contact-btn {

  background: #1809bf;
  border: none;
  padding: 13px 30px;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;

}

.contact-btn:hover {

  background: #111;
  color: white;

}

/* new contact SECTION */
.my-contact-info-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.my-contact-info-container {
  max-width: 1100px;
  width: 100%;
}

/* GRID */
.my-contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* CARD */
.my-contact-info-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* DECOR */
.my-contact-info-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #085095;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: 0.08;
}

/* HOVER */
.my-contact-info-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.my-contact-info-icon {
  width: 70px;
  height: 70px;
  background: #f1f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #085095;
  transition: 0.3s;
}

/* ICON HOVER */
.my-contact-info-card:hover .my-contact-info-icon {
  background: #085095;
  color: #fff;
}

/* TITLE */
.my-contact-info-card h4 {
  color: #085095;
  margin-bottom: 10px;
}

/* TEXT */
.my-contact-info-text {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

/* LINK */
.my-contact-info-link {
  text-decoration: none;
  color: #25D366;
  font-weight: 500;
  font-size: 14px;
}

.my-contact-info-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .my-contact-info-grid {
    flex-direction: column;
  }
}



/* MAP SECTION */

.map-section {

  padding: 80px 8%;
  background: #f6f6f64a;
  text-align: center;

}

.map-section h2 {

  margin-bottom: 25px;
  color: #085095;
  font-weight: 700;

}

.map-box {

  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow:0 10px 25px rgba(0,0,0,0.15); */

}

.view-location {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 26px;
  background: var(--my_color1);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;

}

.view-location:hover {

  background: #111;

}



/* SOCIAL */

.social {

  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.social a {

  font-size: 24px;
  margin-right: 15px;
  color: #eb200c;
  transition: 0.3s;

}

.social a:hover {

  color: #2779f4;

}

.gym-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}



/* MOBILE */

@media(max-width:768px) {

  .contact-wrapper {

    flex-direction: column;

  }

  .contact-hero h1 {

    font-size: 30px;

  }

  .gym-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
  }

}

/* WhatsApp Button */
.best-whatsapp-float {
  position: fixed;
  bottom: 50%;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transition: all 0.3s ease;
}

/* Hover Effect */
.best-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation (premium feel) */
.best-whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 101, 0.771);
  animation: best-pulse 1.5s infinite;
  z-index: -1;
}

@keyframes best-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ===========================
   Floating Call Button
=========================== */
.gym-call-float-btn {
  position: fixed;
  top: 57%;
  right: 20px;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #0361e8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9998;
  transition: all 0.3s ease;
  overflow: visible;
}

/* Hover */
.gym-call-float-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Icon */
.gym-call-icon {
  animation: gym-call-shake 1.5s infinite;
}

/* Pulse Ring */
.gym-call-float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0362e8f9;
  animation: gym-call-pulse-ring 1.6s infinite;
  z-index: -1;
}

/* Pulse Animation */
@keyframes gym-call-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Phone Shake Animation */
@keyframes gym-call-shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(-8deg);
  }

  60% {
    transform: rotate(8deg);
  }

  70% {
    transform: rotate(-4deg);
  }

  80% {
    transform: rotate(4deg);
  }
}


/* Mobile adjustment */
@media (max-width: 768px) {
  .best-whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    /* bottom: 15px; */
    right: 15px;
  }

  .gym-call-float-btn {
    position: fixed;
    top: 57%;
    right: 15px;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #0361e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9998;
    transition: all 0.3s ease;
    overflow: visible;
  }
}




/* watspp SECTION */
.my-contact-whatsapp-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CARD */
.my-contact-whatsapp-card {
  background: #fff;
  max-width: 650px;
  width: 100%;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* DECOR */
.my-contact-whatsapp-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #085095;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  opacity: 0.08;
}

/* ICON */
.my-contact-whatsapp-icon {
  font-size: 60px;
  color: #25D366;
  margin-bottom: 20px;
}

/* TITLE */
.my-contact-whatsapp-card h2 {
  color: #085095;
  font-weight: 700;
}

/* TEXT */
.my-contact-whatsapp-text {
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

/* BUTTON */
.my-contact-whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.my-contact-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* DIVIDER */
.my-contact-whatsapp-divider {
  margin: 35px 0;
  height: 1px;
  background: #eee;
}

/* FOLLOW SECTION */
.my-contact-follow-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #085095;
}

/* ICON GRID */
.my-contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ICON STYLE */
.my-contact-social a {
  width: 50px;
  height: 50px;
  background: #f1f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #085095;
  font-size: 20px;
  transition: 0.3s;
  position: relative;
}

/* HOVER EFFECT */
.my-contact-social a:hover {
  transform: translateY(-5px) scale(1.1);
  background: #085095;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* DISCLAIMER */
.my-contact-whatsapp-note {
  margin-top: 25px;
  font-size: 12px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .my-contact-whatsapp-card {
    padding: 40px 20px;
  }

  .my-contact-social a {
    width: 45px;
    height: 45px;
  }
}


/* contact.html */

/* about.html  */


.why-us-hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

.why-us-section {
  padding: 60px 15px;
  max-width: 900px;
  margin: auto;
}


.why-us-section-title {
  text-align: center;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 30px;
}


.why-us-premium-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.why-us-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


.why-us-premium-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}


.why-us-text-box h4 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  /* background: linear-gradient(90deg, #17c6c3, #4b9ef7, #7b61c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  line-height: 1;
  background-clip: text; */
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;

  /* Required for Safari / Chrome */
  -webkit-text-fill-color: transparent;
}

.why-us-text-box p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  text-align: center;
}


.reverse {
  flex-direction: row-reverse;
}


@media(max-width: 768px) {
  .why-us-premium-card {
    flex-direction: column;
    text-align: center;
    margin-top: 3rem;
  }

  .why-us-premium-img {
    width: 100%;
    height: 200px;
  }
}


.why-us-cta {
  text-align: center;
  margin-top: 30px;
}

.why-us-cta a {
  background: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.why-us-cta a:hover {
  background: #0056b3;
}


/* =========================
       WHY CHOOSE US SECTION
    ========================= */
.my-new-choose-us-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

.my-new-choose-us-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.my-new-choose-us-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--my_color1);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.my-new-choose-us-subheading {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* FLEX WRAPPER */
.my-new-choose-us-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.my-new-choose-us-card {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 10px 15px 20px;
  transition: all 0.35s ease;
}

.my-new-choose-us-card:hover {
  transform: translateY(-10px);
}

/* CIRCLE ICON */
.my-new-choose-us-circle {
  width: 170px;
  height: 170px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.my-new-choose-us-circle::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  /* background: linear-gradient(90deg, #18d3c5, #42a5f5, #7e57c2);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude; */

}

.my-new-choose-us-circle i {
  font-size: 58px;
  color: #111;
  z-index: 2;
  transition: all 0.35s ease;
  background: linear-gradient(90deg, #17c6c3, #4b9ef7, #7b61c8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.my-new-choose-us-card:hover .my-new-choose-us-circle {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 180, 255, 0.18);
}

.my-new-choose-us-card:hover .my-new-choose-us-circle i {
  transform: scale(1.08);
}

/* TITLE */
.my-new-choose-us-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;

  /* Fallback color for unsupported browsers */
  color: #4b9ef7;
}

/* Apply gradient text only if supported */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .my-new-choose-us-title {
    /* background: linear-gradient(90deg, #17c6c3, #4b9ef7, #7b61c8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent; */
    background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: emoji;
  }
}

/* TEXT */
.my-new-choose-us-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  max-width: 240px;
  margin: auto;
}

/* =========================
       RESPONSIVE
    ========================= */
@media (max-width: 1024px) {
  .my-new-choose-us-heading {
    font-size: 36px;
  }

  .my-new-choose-us-circle {
    width: 155px;
    height: 155px;
  }

  .my-new-choose-us-circle i {
    font-size: 52px;
  }

  .my-new-choose-us-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .my-new-choose-us-section {
    padding: 70px 18px;
  }

  .my-new-choose-us-heading {
    font-size: 30px;
  }

  .my-new-choose-us-subheading {
    font-size: 15px;
    margin-bottom: 45px;
  }

  .my-new-choose-us-wrapper {
    gap: 35px;
  }

  .my-new-choose-us-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .my-new-choose-us-circle {
    width: 145px;
    height: 145px;
    margin-bottom: 22px;
  }

  .my-new-choose-us-circle i {
    font-size: 48px;
  }

  .my-new-choose-us-title {
    font-size: 22px;
  }

  .my-new-choose-us-text {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .my-new-choose-us-heading {
    font-size: 26px;
  }

  .my-new-choose-us-subheading {
    font-size: 14px;
    line-height: 1.7;
  }

  .my-new-choose-us-circle {
    width: 130px;
    height: 130px;
  }

  .my-new-choose-us-circle i {
    font-size: 42px;
  }

  .my-new-choose-us-title {
    font-size: 20px;
  }

  .my-new-choose-us-text {
    font-size: 14px;
  }
}

/* =========================
       STATS SECTION
    ========================= */
.my-stats-section {
  width: 100%;
  padding: 90px 20px;
  background: #ffffff;
}

.my-stats-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.my-stats-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--my_color1);
  letter-spacing: 1px;
}

.my-stats-subheading {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* FLEX WRAPPER */
.my-stats-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.my-stat-box {
  flex: 1 1 240px;
  max-width: 280px;
  min-height: 230px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.my-stat-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.12), transparent 70%);
  top: -60px;
  right: -60px;
  transition: 0.4s ease;
}

.my-stat-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 180, 255, 0.12);
  border-color: rgba(0, 255, 255, 0.25);
}

.my-stat-box:hover::before {
  transform: scale(1.2);
}

/* NUMBER */
.my-stat-number {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;

  /* Fallback color */
  color: #4b9ef7;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .my-stat-number {
    background: linear-gradient(90deg, #17c6c3, #4b9ef7, #7b61c8);

    /* Standard + WebKit */
    background-clip: text;
    -webkit-background-clip: text;

    /* Make text transparent */
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* LABEL */
.my-stat-label {
  font-size: 23px;
  font-weight: 700;
  /* color: #111; */
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--my_color1), var(--my_color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: emoji;
}

/* SMALL TEXT */
.my-stat-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 220px;
}

/* =========================
       RESPONSIVE
    ========================= */
@media (max-width: 1024px) {
  .my-stats-heading {
    font-size: 36px;
  }

  .my-stat-number {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .my-stats-section {
    padding: 75px 18px;
  }

  .my-stats-heading {
    font-size: 30px;
  }

  .my-stats-subheading {
    font-size: 15px;
    margin-bottom: 45px;
  }

  .my-stats-wrapper {
    gap: 20px;
  }

  .my-stat-box {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 210px;
  }

  .my-stat-number {
    font-size: 44px;
  }
}

@media (max-width: 480px) {
  .my-stats-heading {
    font-size: 26px;
  }

  .my-stats-subheading {
    font-size: 14px;
  }

  .my-stat-number {
    font-size: 40px;
  }

  .my-stat-label {
    font-size: 17px;
  }

  .my-stat-text {
    font-size: 13px;
  }
}

/* about.html  */

/* team.html  */
.team-container2 {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* SECTION TITLE */
.team-sect-title {
  text-align: center;
  margin-bottom: 1rem;
}

.team-sect-title h2 {
  font-weight: 700;
  color: var(--my_color1);
  margin-top: 1.5rem;
}

/* OWNER SECTION */
.team-owner-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  /* margin-bottom: 70px; */
  max-width: 900px;
  margin: 0 auto 5rem;
  background: linear-gradient(45deg, #278ded33, #d7263200);
}

.team-owner-card:hover {
  border: 2px solid var(--my_color1);
}

.team-owner-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}

.team-owner-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-owner-content p {
  color: #555;
  line-height: 1.7;
}

/* TRAINERS */
.team-trainer-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
  width: 300px;
  background: linear-gradient(45deg, #278ded24, #d7263100);
}

.team-trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--my_color1);

}

.team-trainer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #007bff;
}

.team-trainer-name {
  font-weight: 700;
  margin-bottom: 5px;
  color: black;
}

.team-trainer-role {
  font-size: 0.9rem;
  color: var(--my_color1);
  margin-bottom: 8px;
}

.team-trainer-exp {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
}

/* SOCIAL ICONS */
.team-trainer-social-icons a {
  color: black;
  margin: 0 8px;
  font-size: 1rem;
  transition: 0.3s;
  text-decoration: none;
}

.team-trainer-social-icons a:hover {
  color: #007bff;
  font-size: 1.3rem;
  /* border: 1px solid blue; */
  padding: 5px 10px;
  border-radius: 50%;
  /* transform: scale(1.5); */
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .team-owner-card {
    flex-direction: column;
    text-align: center;
    margin: 1rem;
  }

  .team-owner-img {
    width: 200px;
    height: 200px;
  }

  .team-trainer-card {
    margin: auto;
  }
}


.best-trainer-section {
  background: #ffffff;
}

.best-heading h2 {
  color: var(--my_color1);
}

/* Card Design */
.best-trainer-card {
  background: linear-gradient(45deg, #d2b67824, #d7263100);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Icon */
.best-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0d6efd;
}

/* Title */
.best-trainer-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.best-trainer-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Hover Effect */
.best-trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 2px solid #f8dd0c;

}

/* Responsive */
@media (max-width: 768px) {
  .best-trainer-card {
    padding: 25px 20px;
  }
}

.best-hours-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  margin: 5rem 2rem 2rem;

}

/* Overlay for readability */
.best-hours-overlay {
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 50px 20px;
}

/* Main box */
.best-hours-box {
  max-width: 500px;
  margin: auto;
  background: #ffffffe8;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Icon */
.best-hours-icon {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* Title */
.best-hours-title {
  font-weight: 700;
  margin-bottom: 25px;
}

/* Content */
.best-hours-row h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.best-hours-row p {
  margin: 0;
  color: #555;
}

/* Divider */
.best-hours-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .best-hours-section {
    padding: 60px 0;
    margin: 3rem 2rem 1rem;

  }

  .best-hours-box {
    padding: 30px 20px;
  }

  .best-hours-overlay {
    padding: 20px;
  }

  .best-hours-row p {
    font-size: small;
    margin: 0;
    color: #555;
  }
}


/* team.html  */

/* blog.html  */
/* Hero */
.best-blog-hero {
  background: #fff;
  text-align: center;
  padding: 60px 20px 0px;
}

.best-blog-hero h1 {
  font-size: 40px;
  color: #085095;
  font-weight: 700;
}

.my-best-blogs {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blog Card */
.best-blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.best-blog-card:hover {
  transform: translateY(-8px);
}

/* Image */
.best-blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.best-blog-content {
  padding: 20px;
}

.best-blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.best-blog-content h5 {
  color: black;
  font-weight: 600;
}

.best-blog-content p {
  font-size: 13px;
  color: #777777cd;
  margin-bottom: 10px;
}

.best-read-btn {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
  background: #085095;
  padding: 8px 18px;
  border-radius: 30px;
}

.best-read-btn:hover {

  color: white;
  background: black;

}

.best-no-blog-found {
  width: 100%;
  padding: 60px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.best-no-blog-found h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.best-no-blog-found p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
}

/* ================================
   PREMIUM FAQ SECTION
================================ */

.my-faq-cl-section {
  background: #f7f7f7;
  padding: 100px 20px;
}

.my-faq-cl-container {
  max-width: 1280px;
  margin: 0 auto;
}

.my-faq-cl-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-faq-cl-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  background: rgba(220, 38, 38, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(220, 38, 38, 0.12);
}

.my-faq-cl-header h2 {
  font-size: 3rem;
  color: var(--my_color1);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.my-faq-cl-header h2 span {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: #111111;
}

.my-faq-cl-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555555;
  font-size: 1.02rem;
  line-height: 1.8;
}

.my-faq-cl-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 35px;
  align-items: stretch;
}

/* LEFT PANEL */
.my-faq-cl-left {
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid #ececec;
}

.my-faq-cl-top-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 22px;
  padding: 20px 22px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.my-faq-cl-small-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #888888;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.my-faq-cl-top-box p {
  margin: 0;
  font-size: 1rem;
  color: #111111;
  font-weight: 600;
}

.my-faq-cl-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.my-faq-cl-contact-btn:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-2px);
}

/* FAQ ITEMS */
.my-faq-cl-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.my-faq-cl-item {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.my-faq-cl-item.active {
  border-color: rgba(220, 38, 38, 0.18);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.05);
  background: #ffffff;
}

.my-faq-cl-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
}

.my-faq-cl-question span:first-child {
  flex: 1;
  line-height: 1.6;
}

.my-faq-cl-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.my-faq-cl-item.active .my-faq-cl-icon {
  background: #dc2626;
  transform: rotate(180deg);
}

.my-faq-cl-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.my-faq-cl-answer-inner {
  padding: 0 24px 24px;
}

.my-faq-cl-answer p {
  margin: 0;
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.9;
}

/* EMPTY STATE */
.my-faq-cl-empty {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 45px 25px;
  text-align: center;
}

.my-faq-cl-empty h3 {
  font-size: 1.7rem;
  color: #111111;
  margin-bottom: 12px;
}

.my-faq-cl-empty p {
  color: #666666;
  margin: 0;
  line-height: 1.8;
}

/* RIGHT IMAGE */
.my-faq-cl-right {
  position: relative;
  height: 100%;
}


.my-faq-cl-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  display: block;
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {
  .my-faq-cl-wrapper {
    grid-template-columns: 1fr;
  }

  .my-faq-cl-header h2 {
    font-size: 2.4rem;
  }

  .my-faq-cl-image {
    min-height: 450px;
  }
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
  .my-faq-cl-section {
    padding: 80px 16px;
  }

  .my-faq-cl-header {
    margin-bottom: 45px;
  }

  .my-faq-cl-header h2 {
    font-size: 2rem;
  }

  .my-faq-cl-header p {
    font-size: 0.97rem;
  }

  .my-faq-cl-left {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .my-faq-cl-top-box {
    padding: 18px;
    border-radius: 18px;
  }

  .my-faq-cl-question {
    padding: 18px 18px;
    font-size: 0.96rem;
  }

  .my-faq-cl-answer-inner {
    padding: 0 18px 20px;
  }

  .my-faq-cl-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 1.1rem;
  }

  .my-faq-cl-image {
    min-height: 320px;
    border-radius: 22px;
  }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
  .my-faq-cl-header h2 {
    font-size: 1.75rem;
  }

  .my-faq-cl-tag {
    font-size: 12px;
    padding: 7px 14px;
  }

  .my-faq-cl-top-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .my-faq-cl-contact-btn {
    width: 100%;
  }

  .my-faq-cl-question {
    font-size: 0.93rem;
  }

  .my-faq-cl-answer p {
    font-size: 0.94rem;
  }
}

/* blog.html  */

/* blog_details.html  */

/* Container */
.best-blog-detail {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
}


/* Image */
.best-detail-img {
  width: 50%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Meta */
.best-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

/* Title */
.best-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Content */
.best-content {
  line-height: 1.8;
  color: #444;
}


@media (max-width: 768px) {
  .best-detail-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}

/* blog_details.html  */

/* events.html  */

/* Section */
.my-events-section {
  padding: 80px 20px;
}

/* Header */
.my-events-header h2 {
  font-weight: 700;
  color: #085095;
}

.my-events-header p {
  color: #666;
}

/* Tabs */
.my-events-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.my-events-tab {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  background: #f1f1f1;
  cursor: pointer;
  transition: 0.3s;
}

.my-events-tab.active {
  background: #085095;
  color: #fff;
}

/* Grid */
.my-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Card */
.my-events-card {
  width: 320px;
  height: 525px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.my-events-card:hover {
  transform: translateY(-8px);
}

/* Image */
.my-events-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Body */
.my-events-body {
  padding: 20px;
}

.my-events-body h5 {
  margin-top: 1rem;
}

/* Badge */
.my-events-badge {
  background: #D72631;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

.my-events-badge.past {
  background: #999;
}

/* Meta */
.my-events-meta {
  font-size: 14px;
  color: #777;
  margin: 10px 0;
}

/* Desc */
.my-events-desc {
  font-size: 14px;
  color: #555;
}

/* Buttons */
.my-events-btn {
  display: inline-block;
  margin-top: 10px;
  background: #085095;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.my-events-btn:hover {
  background: #063a6d;
}

/* Content Toggle */
.my-events-content {
  display: none;
}

.my-events-content.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .my-events-card {
    width: 100%;
  }
}

.my-events-empty {
  width: 100%;
  padding: 60px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.my-events-empty h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.my-events-empty p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
}

/* events.html  */

/* career_page.html  */


/* HERO */
.my-careerrole-hero {
  background: linear-gradient(rgba(8, 80, 149, 0.85), rgba(8, 80, 149, 0.85)),
    url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1');
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

/* SECTION */
.my-careerrole-section {
  padding: 30px 20px;
}

.my-careerrole-section h2 {
  color: #085095;
  font-weight: 700;
  margin-top: 3rem;
}

.my-careerrole-section p {
  color: var(--my_color3);
  font-weight: 600;
}

/* JOB GRID */
.my-careerrole-jobs {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

/* CARD */
.my-careerrole-card {
  width: 320px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.my-careerrole-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.my-careerrole-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BODY */
.my-careerrole-body {
  padding: 20px;
}

.my-careerrole-body h5 {
  color: #085095;
  font-weight: 700;
}

.my-careerrole-meta {
  font-size: 14px;
  color: #777;
}

/* BUTTONS */
.my-careerrole-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  background: #085095;
  color: #fff;
}

.my-careerrole-btn1 {
  display: block;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  background: #085095;
  color: #fff;
}

.my-careerrole-btn:hover {
  background: #063a6d;
}

.my-careerrole-btn-green {
  background: #25D366;
}

.my-careerrole-btn-green:hover {
  background: #1ebe5d;
}

/* APPLY SECTION */
.my-careerrole-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

/* WHATSAPP */
.my-careerrole-whatsapp {
  flex: 1;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
}

.my-careerrole-whatsapp:hover {
  border: 1px solid #25D366;
}

.my-careerrole-whatsapp img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* FORM */
.my-careerrole-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.my-careerrole-form input,
.my-careerrole-form select,
.my-careerrole-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}


.my-careerrole-empty {
  width: 100%;
  padding: 60px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.my-careerrole-empty h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.my-careerrole-empty p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
}

/* career_page.html  */

/* privacy_policy_page.html  */

.my-policy-cl-page {
  --my-policy-cl-bg: #f8f9fb;
  --my-policy-cl-card: rgba(255, 255, 255, 0.92);
  --my-policy-cl-card-border: rgba(17, 24, 39, 0.08);
  --my-policy-cl-text: #111827;
  --my-policy-cl-muted: #5b6472;
  --my-policy-cl-accent: #d4a017;
  --my-policy-cl-accent-2: #0b30b8;
  --my-policy-cl-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --my-policy-cl-radius: 24px;
  --my-policy-cl-max: 1200px;

  background:
    radial-gradient(circle at top left, rgb(254 253 249 / 5%), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 215, 120, 0.015), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  color: var(--my-policy-cl-text);
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.my-policy-cl-container {
  width: min(92%, var(--my-policy-cl-max));
  margin: 0 auto;
}

.my-policy-cl-hero {
  padding: 90px 0 50px;
  position: relative;
}

.my-policy-cl-hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
}

.my-policy-cl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(95 116 166 / 10%);
  border: 1px solid rgba(24, 76, 220, 0.651);
  color: #2020d0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.my-policy-cl-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f172a;
}

.my-policy-cl-title span {
  color: var(--my-policy-cl-accent);
}

.my-policy-cl-subtitle {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--my-policy-cl-muted);
  max-width: 760px;
  margin-bottom: 28px;
}

.my-policy-cl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.my-policy-cl-meta-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--my-policy-cl-card-border);
  padding: 14px 18px;
  border-radius: 16px;
  color: #0f172a;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.my-policy-cl-hero-card {
  background: linear-gradient(180deg, rgb(195 206 247 / 96%), rgb(241 218 218 / 86%));
  border: 1px solid var(--my-policy-cl-card-border);
  border-radius: var(--my-policy-cl-radius);
  padding: 28px;
  box-shadow: var(--my-policy-cl-shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.my-policy-cl-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.10), transparent 45%);
  pointer-events: none;
}

.my-policy-cl-hero-card h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  color: #111827;
}

.my-policy-cl-hero-card p {
  color: var(--my-policy-cl-muted);
  line-height: 1.9;
  margin: 0;
  position: relative;
  z-index: 2;
}

.my-policy-cl-main {
  padding: 10px 0 80px;
}

.my-policy-cl-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

.my-policy-cl-sidebar {
  position: sticky;
  top: 110px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--my-policy-cl-card-border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--my-policy-cl-shadow);
}

.my-policy-cl-sidebar h4 {
  margin: 0 0 18px;
  font-size: 1.15rem;
  color: #111827;
}

.my-policy-cl-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-policy-cl-sidebar li+li {
  margin-top: 10px;
}

.my-policy-cl-sidebar a {
  display: block;
  color: var(--my-policy-cl-muted);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.my-policy-cl-sidebar a:hover {
  color: #111827;
  background: rgba(142, 167, 240, 0.08);
  border-color: rgba(212, 160, 23, 0.18);
  transform: translateX(4px);
}

.my-policy-cl-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.my-policy-cl-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--my-policy-cl-card-border);
  border-radius: 26px;
  padding: 34px;
  backdrop-filter: blur(16px);
  box-shadow: var(--my-policy-cl-shadow);
}

.my-policy-cl-section h2 {
  font-size: 1.65rem;
  margin: 0 0 18px;
  line-height: 1.3;
  color: #0f172a;
}

.my-policy-cl-section h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
  color: var(--my-policy-cl-accent-2);
}

.my-policy-cl-section p {
  color: var(--my-policy-cl-muted);
  line-height: 1.95;
  margin: 0 0 14px;
  font-size: 1rem;
}

.my-policy-cl-section ul {
  margin: 0;
  padding-left: 22px;
}

.my-policy-cl-section li {
  color: var(--my-policy-cl-muted);
  line-height: 1.9;
  margin-bottom: 10px;
}

.my-policy-cl-highlight-box {
  margin-top: 20px;
  background: rgb(150 188 251 / 7%);
  border: 1px solid rgba(8, 49, 231, 0.433);
  border-radius: 20px;
  padding: 22px;
}

.my-policy-cl-highlight-box strong {
  color: #111827;
}

.my-policy-cl-footer-note {
  margin-top: 10px;
  text-align: center;
  color: var(--my-policy-cl-muted);
  font-size: 0.95rem;
  padding: 24px 0 0;
}

.my-policy-cl-contact-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.my-policy-cl-contact-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--my-policy-cl-card-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.my-policy-cl-contact-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #111827;
}

.my-policy-cl-contact-card p,
.my-policy-cl-contact-card a {
  margin: 0;
  color: var(--my-policy-cl-muted);
  text-decoration: none;
  line-height: 1.8;
  word-break: break-word;
}

.my-policy-cl-contact-card a:hover {
  color: var(--my-policy-cl-accent);
}

.my-policy-cl-dynamic-content p {
  color: var(--my-policy-cl-muted);
  line-height: 1.95;
  margin: 0 0 14px;
  font-size: 1rem;
}

.my-policy-cl-dynamic-content br {
  display: block;
  margin-bottom: 10px;
  content: "";
}

@media (max-width: 1100px) {

  .my-policy-cl-hero-wrap,
  .my-policy-cl-layout {
    grid-template-columns: 1fr;
  }

  .my-policy-cl-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .my-policy-cl-hero {
    padding: 70px 0 35px;
  }

  .my-policy-cl-title {
    font-size: 2rem;
    text-align: center;
  }

  .my-policy-cl-hero-content {
    text-align: center;
  }

  .my-policy-cl-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .my-policy-cl-section,
  .my-policy-cl-sidebar,
  .my-policy-cl-hero-card {
    padding: 24px;
    border-radius: 22px;
  }

  .my-policy-cl-contact-box {
    grid-template-columns: 1fr;
  }

  .my-policy-cl-section h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .my-policy-cl-meta {
    flex-direction: column;
  }

  .my-policy-cl-badge {
    font-size: 0.82rem;
    padding: 9px 14px;
  }

  .my-policy-cl-section p,
  .my-policy-cl-section li {
    font-size: 0.96rem;
  }
}

/* privacy_policy_page.html  */


/* terms_page.html  */

.my-terms-cl-page {
  --my-terms-cl-bg: #f8f9fb;
  --my-terms-cl-card: rgba(255, 255, 255, 0.92);
  --my-terms-cl-card-border: rgba(17, 24, 39, 0.08);
  --my-terms-cl-text: #111827;
  --my-terms-cl-muted: #5b6472;
  --my-terms-cl-accent: #2020d0;
  --my-terms-cl-accent-2: #2020d0;
  --my-terms-cl-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --my-terms-cl-radius: 24px;
  --my-terms-cl-max: 1200px;

  background:
    radial-gradient(circle at top left, rgb(254 253 249 / 5%), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 215, 120, 0.015), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  color: var(--my-terms-cl-text);
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.my-terms-cl-container {
  width: min(92%, var(--my-terms-cl-max));
  margin: 0 auto;
}

.my-terms-cl-hero {
  padding: 90px 0 50px;
  position: relative;
}

.my-terms-cl-hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
}

.my-terms-cl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(95 116 166 / 10%);
  border: 1px solid rgba(24, 76, 220, 0.651);
  color: var(--my-terms-cl-accent-2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.my-terms-cl-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0f172a;
}

.my-terms-cl-title span {
  color: var(--my_color1);
}

.my-terms-cl-subtitle {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--my-terms-cl-muted);
  max-width: 760px;
  margin-bottom: 28px;
}

.my-terms-cl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.my-terms-cl-meta-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--my-terms-cl-card-border);
  padding: 14px 18px;
  border-radius: 16px;
  color: #0f172a;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.my-terms-cl-hero-card {
  background: linear-gradient(180deg, rgb(195 206 247 / 96%), rgb(241 218 218 / 86%));
  border: 1px solid var(--my-terms-cl-card-border);
  border-radius: var(--my-terms-cl-radius);
  padding: 28px;
  box-shadow: var(--my-terms-cl-shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.my-terms-cl-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.10), transparent 45%);
  pointer-events: none;
}

.my-terms-cl-hero-card h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  color: #111827;
}

.my-terms-cl-hero-card p {
  color: var(--my-terms-cl-muted);
  line-height: 1.9;
  margin: 0;
  position: relative;
  z-index: 2;
}

.my-terms-cl-main {
  padding: 10px 0 80px;
}

.my-terms-cl-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

.my-terms-cl-sidebar {
  position: sticky;
  top: 110px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--my-terms-cl-card-border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: var(--my-terms-cl-shadow);
}

.my-terms-cl-sidebar h4 {
  margin: 0 0 18px;
  font-size: 1.15rem;
  color: #111827;
}

.my-terms-cl-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-terms-cl-sidebar li+li {
  margin-top: 10px;
}

.my-terms-cl-sidebar a {
  display: block;
  color: var(--my-terms-cl-muted);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.my-terms-cl-sidebar a:hover {
  color: #111827;
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.18);
  transform: translateX(4px);
}

.my-terms-cl-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.my-terms-cl-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--my-terms-cl-card-border);
  border-radius: 26px;
  padding: 34px;
  backdrop-filter: blur(16px);
  box-shadow: var(--my-terms-cl-shadow);
}

.my-terms-cl-section h2 {
  font-size: 1.65rem;
  margin: 0 0 18px;
  line-height: 1.3;
  color: #0f172a;
}

.my-terms-cl-section p {
  color: var(--my-terms-cl-muted);
  line-height: 1.95;
  margin: 0 0 14px;
  font-size: 1rem;
}

.my-terms-cl-highlight-box {
  margin-top: 20px;
  background: rgb(150 188 251 / 7%);
  ;
  border: 1px solid rgba(8, 49, 231, 0.433);
  border-radius: 20px;
  padding: 22px;
}

.my-terms-cl-highlight-box strong {
  color: #111827;
}

.my-terms-cl-footer-note {
  margin-top: 10px;
  text-align: center;
  color: var(--my-terms-cl-muted);
  font-size: 0.95rem;
  padding: 24px 0 0;
}

.my-terms-cl-contact-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.my-terms-cl-contact-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--my-terms-cl-card-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.my-terms-cl-contact-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #111827;
}

.my-terms-cl-contact-card p,
.my-terms-cl-contact-card a {
  margin: 0;
  color: var(--my-terms-cl-muted);
  text-decoration: none;
  line-height: 1.8;
  word-break: break-word;
}

.my-terms-cl-contact-card a:hover {
  color: var(--my-terms-cl-accent);
}

@media (max-width: 1100px) {

  .my-terms-cl-hero-wrap,
  .my-terms-cl-layout {
    grid-template-columns: 1fr;
  }

  .my-terms-cl-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .my-terms-cl-hero {
    padding: 70px 0 35px;
  }

  .my-terms-cl-title {
    font-size: 2rem;
    text-align: center;
  }

  .my-terms-cl-hero-content {
    text-align: center;
  }

  .my-terms-cl-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .my-terms-cl-section,
  .my-terms-cl-sidebar,
  .my-terms-cl-hero-card {
    padding: 24px;
    border-radius: 22px;
  }

  .my-terms-cl-contact-box {
    grid-template-columns: 1fr;
  }

  .my-terms-cl-section h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .my-terms-cl-meta {
    flex-direction: column;
  }

  .my-terms-cl-badge {
    font-size: 0.82rem;
    padding: 9px 14px;
  }

  .my-terms-cl-section p {
    font-size: 0.96rem;
  }
}




/* terms_page.html  */