/******************************************************************
  Template Name: ELEVATE
  Description: ELEVATE
  Author: Webnet Pakistan
  Author URI: https://webnetpk.com/
  Version: 1.0
  Created: Webnet Pakistan
******************************************************************/

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Service Section
6.  Class Section
7.  Price Plan Section
8.  Trainer Section
9.  Contact
10.  Footer Style

-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: 'Qaranta';
  src: url('../fonts/qaranta/Qaranta\ Bold.otf');
}

:root {
  --primary-color: #2a6cce;
  --primary-dark: #0050c8;
  --shine-color: rgba(255, 255, 255, 0.5);
  --primary-font: "Inter", sans-serif;
  --text-color: #323232;
}

html,
body {
  height: 100%;
  font-family: var(--primary-font);
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* ---- Smooth Scroll ---- */
html {
  scroll-behavior: smooth;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: var(--primary-font);
}

h1 {
  margin: 0;
  color: #111111;
  font-weight: 600;
  font-family: var(--primary-font);
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-family: var(--primary-font);
  color: #323232;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  /* color: #fff;	 */
}

ul,
ol {
  padding: 0;
  margin: 0;
  width: max-content;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
  margin-bottom: 45px;
  text-align: center;
}

.section-title span {
  font-size: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.section-title h2 {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 8px;
}
.section-title p {
  max-width: 600px;
  /*justify-self: center;*/
  margin:0 auto !important;
}
.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.spad-2 {
  padding-top: 50px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* new css */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  flex: 1 1 calc(33.33% - 25px);
  position: relative;
  overflow: hidden;
  border: 1px solid #0069ff;
  transition: all 0.75s ease;
  min-width: 260px;

  padding-left: 15px;
  padding-right: 15px;
  padding: 15px;
}
.feature-card .content,
.feature-card .icon,
.feature-card h4,
.feature-card p {
  padding-left: 10px; /* 👈 Soft left-side spacing */
}

/* IMAGE (added & fixed) */
.feature-card .card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

/* CONTENT BOX UNDER IMAGE */
.feature-card .content {
  padding: 28px;
  text-align: center;
}

/* SHINE EFFECT */
/* SHINE EFFECT - LIGHTER VERSION */
.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 220%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(53, 123, 221, 0.15) 35%,  
    rgba(255, 255, 255, 0.4) 50%,  
    rgba(53, 123, 221, 0.15) 65%, 
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(16px); 
  transform: skewX(-25deg);
  opacity: 0.9; 
  animation: shineCard 8s ease-in-out infinite; 
  pointer-events: none;
}


/* HOVER */
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #357bdd;
  box-shadow: 0 12px 40px rgba(53, 123, 221, 0.22);
}

/* TEXT + ICONS */
.feature-card .icon {
  font-size: 34px;
  color: #357bdd;
  margin-bottom: 15px;
}

.feature-card h4 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #000000;
  font-size: 15px;
  line-height: 1.5;
}

/* Animation Keyframes */
@keyframes shineCard {
  0% {
    left: -80%;
  }
  

  100% {
    left: 130%;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .feature-card {
    flex: 1 1 calc(50% - 25px);
  }
}

@media (max-width: 768px) {
  .feature-card {
    flex: 1 1 100%;
  }
  .feature-cards {
    padding: 20px;
  }
}

.geschichte-section {
  width: 100%;
  padding: 80px 0;
  background: #f1f1f1e3;
}

.geschichte-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.geschichte-text {
  flex: 1;
}

.geschichte-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.geschichte-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 550px;
}

.geschichte-logos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  align-items: center;
}

.logo-box {
  text-align: center;
}

.old-logo {
  filter: grayscale(100%);
  height: 60px;
}

.new-logo {
  filter: none;
}

.logo-box img {
  width: 240px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.logo-box img:hover {
  transform: translateY(0) scale(1.4);
}

.logo-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #000000;
}

/* Fade-up animation */
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 992px) {
  .geschichte-content {
    flex-direction: column;
    text-align: center;
  }

  .geschichte-desc {
    margin: 0 auto 40px;
  }
}

.community-section {
  width: 100%;
  padding: 100px 20px;
  background: #f7f7f7;
}

.community-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.community-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.community-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

/* Gallery */
.community-gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Each item */
.community-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

/* Image */
.community-img {
  flex: 1;
}

.community-img img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Text */
.community-text {
  flex: 1;
}

.community-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.community-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .community-item {
    flex-direction: column;
    text-align: center;
  }
  .community-item.reverse {
    flex-direction: column;
  }
  .community-text {
    margin-top: 20px;
  }
}

/* Personal Training */
.personal-training-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.personal-training-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #111;
}

.personal-training-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

.pt-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: 0.3s ease;
}

.pt-btn:hover {
  background: #333;
}

/* Image */
.pt-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .personal-training-section {
    text-align: center;
  }

  .pt-text {
    margin-bottom: 30px;
  }

  .pt-btn {
    margin: 0 auto;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 20px;
}

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

.gallery-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.gallery-slider .gs-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-slider .gs-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
}

.gallery-slider .gs-item:hover img {
  transform: scale(1.05);
}

.crossfit-pro{
  /* background:#0c0f18; */
  position:relative;
  overflow:hidden;
}

/* aura glow (same concept) */
.crossfit-pro::before{
  content:"";
  position:absolute;
  left: 8%;
  top: 20%;
  width:450px;
  height:450px;
  background: radial-gradient(rgba(0, 140, 255, 0.30), transparent 70%);
  filter: blur(40px);
  z-index:1;
}

.crossfit-pro-container{
  max-width:1350px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  position:relative;
  z-index:2;
  padding: 0; /* keep same spacing like hyrox */
}

/* RIGHT vertical title (same style as HYROX) */
.crossfit-pro-title{
  z-index:2;
}
.crossfit-pro-title span{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size:90px;
  font-weight:700;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing:6px;
}

/* CONTENT (same as HYROX) */
.crossfit-pro-card{
  flex:1;
  z-index:3;
  color:#fff;
  position:relative;
  padding:20px;
}

.crossfit-pro-card h2{
  font-size:50px;
  margin-bottom:12px;
  font-weight:700;
  color:#000000;
}

/* reuse same classes like hyrox */
.crossfit-pro-card .subtext{
  font-size:18px;
  line-height:1.5;
  margin-bottom:30px;
  color:#000000;
  opacity:0.9;
}

.crossfit-pro-card .desc{
  color:#000000;
  opacity:0.85;
  margin-bottom:30px;
}

/* glass same as HYROX */
.crossfit-pro-card .glass-box{
  padding:18px 22px;
  margin-bottom:30px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  color:#000000;
}

.crossfit-pro-card .glass-box h4{
  margin-bottom:6px;
  font-size:20px;
  font-weight:600;
  color:#000000;
}

/* IMAGE (same as HYROX) */
.crossfit-pro-image{
  flex:1;
  position:relative;
  z-index:2;
}

.crossfit-pro-image img{
  width:100%;
  /*height: 500px;*/
   border-radius:18px; 
  object-fit:cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Responsive same as HYROX */
@media (max-width: 900px){
  .crossfit-pro-container{
    flex-direction: column;
    text-align:center;
  }

  .crossfit-pro-title span{
    display:none;
  }

  /* keep image under content or above as you like */
  .crossfit-pro-image{
    order:2;
  }
  .crossfit-pro-card{
    order:1;
  }
}



.hyrox-pro {
  /* padding: 80px 0; */
  background: #0c0f18;
  position: relative;
  overflow: hidden;
}

/* Lighting aura */
.hyrox-pro::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(rgba(0, 140, 255, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.hyrox-pro-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

/* LEFT VERTICAL TITLE */
.hyrox-pro-title span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 90px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25); /* white but soft */
  letter-spacing: 6px;
}

/* CONTENT CARD */
.hyrox-pro-card {
  flex: 1;
  z-index: 3;
  color: #fff; /* ALL TEXT WHITE */
  position: relative;
  padding: 20px;
}

.hyrox-pro-card h2 {
  font-size: 50px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #fff;
}

.subtext {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
  opacity: 0.9;
}

/* STATS */
.hyrox-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}

.hyrox-stats .stat strong {
  font-size: 40px;
  color: #fff; /* WHITE */
}

.hyrox-stats .stat span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* NORMAL TEXT */
.desc {
  color: #fff;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* GLASS BOX */
.glass-box {
  padding: 18px 22px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
}

.glass-box h4 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.hyrox-pro-btn {
  padding: 12px 26px;
  background: #1f77ff;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.hyrox-pro-btn:hover {
  background: #1257c7;
}

/* IMAGE */
.hyrox-pro-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hyrox-pro-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hyrox-pro-container {
    flex-direction: column;
    text-align: center;
  }

  .hyrox-stats {
    justify-content: center;
  }

  .hyrox-pro-title span {
    display: none;
  }
}

.intro-section {
  padding: 80px 0;
  background: #ffffff;
}

.intro-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: 43px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 35px;
  color: #0b0b0b;
}

.intro-text {
  font-size: 22px;
  line-height: 36px;
  color: #444;
  font-weight: 400;
}

.hof-grid-section {
  padding: 80px 0;
  background: #f7f7f7;
}

.hof-title {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hof-subtitle {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 60px;
}

.hof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 30px;
}

/* Card Styling */
/* HOF CARD (with shine animation like button) */
.hof-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden; /* important for shine */
  border: 2px solid transparent; /* default border */
}

/* Same hover effect as button */
.hof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color); /* blue border */
}

/* SHINE EFFECT (same as .primary-btn::before but adapted for card) */
.hof-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    var(--shine-color) 40%,
    rgba(255, 255, 255, 0.7) 50%,
    var(--shine-color) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(6px);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Activate shine on hover */
.hof-card:hover::before {
  opacity: 1;
  animation: shineMove 2.8s linear infinite;
}

/* SAME animation you already use */
@keyframes shineMove {
  0% {
    left: -60%;
  }
  50% {
    left: 20%;
  }
  100% {
    left: 140%;
  }
}

.hof-img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.hof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Title + Text */
.hof-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.hof-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hof-desc {
    text-align:start;
  font-size: 16px;
  color: #555;
  line-height: 26px;
}

/* Responsive */
@media (max-width: 991px) {
  .hof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .hof-grid {
    grid-template-columns: 1fr;
  }

  .hof-title {
    font-size: 38px;
  }
}
/* =========================
   TEAM 2-COLUMN (FIXED)
========================= */

.team-top{
  margin-bottom: 28px;
}

/* 2 columns wrapper */
.team-columns{
  display: flex;
  gap: 28px;
  align-items: start;
  justify-content: center;
  width: 100%;
}

@media (min-width: 992px){
  .team-columns{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* each column */
.team-col{
  display: flex;
  flex-direction: column;
  gap: 18px;
   /* IMPORTANT: prevents overflow */
  width: 50%;
  position: sticky;
}

.team-col-title{
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);
}

/* cards grid inside a column */
.team-col-grid{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Optional: if you want 2 cards per column on very large screens */
/*
@media (min-width: 1400px){
  .team-col-grid{
    grid-template-columns: 1fr 1fr;
  }
}
*/

/* =========================
   CARD FIXES (IMPORTANT)
========================= */
.coach-card{
  width: 48%;
  min-width: 0;
}

/* image height responsive */
.coach-photo-wrap{
  width: 100%;
  height: 550px;
  overflow: hidden;
}

@media (max-width: 992px){
  .coach-photo-wrap{ height: 360px; }
}

@media (max-width: 600px){
  .coach-photo-wrap{ height: 480px; }
}

@media (max-width: 1024px){
  .team-col-grid.extra-grid {margin-top:60px;}
}
@media (max-width: 1450px){
 .coach-content{
  min-width: 0;
  padding:  30px 20px 60px 20px;
  border-radius: 0px 0 20px 20px;
  box-shadow: 0 0 15px 1px #4444;
  height: 630px !important;
}
}
/* ensure text doesn’t overflow */
.coach-content{
  min-width: 0;
  padding:  30px 20px 60px 20px;
  border-radius: 0px 0 20px 20px;
  box-shadow: 0 0 15px 1px #4444;
  height: 580px;
}

.coach-name,
.coach-role,
.coach-text{
  word-break: break-word;
}

/* Inaktiv badge */
.coach-head-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coach-badge{
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  color: #222;
  white-space: nowrap;
}

/* =========================
   PARTNER (KEEP AS IS)
========================= */
.partner-section {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-title {
  text-align: center;
  color: #333;
  margin-bottom: 32px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}

/* center card */
.partner-card {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.partner-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-photo-circle {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #f0f0f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-photo-circle {
  transform: scale(1.05);
}

.partner-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.partner-role {
  color: #666;
  font-size: 1rem;
  margin-bottom: 16px;
}

.partner-links a {
  display: inline-block;
  margin: 0 10px;
  color: #0069ff;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.partner-links a:hover {
  border-bottom: 1px solid #0069ff;
}

@media (max-width: 600px) {
  .partner-card {
    padding: 32px 24px;
  }
  .partner-photo-circle {
    width: 150px;
    height: 150px;
  }
  .team-section{
    padding:20px ;
  }
}

/* FIX: this was wrong */
.link a {
  background: none;
}


/* General Section Styles */
.elevate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.elevate-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 500;
}
section {
  font-family: "Arial", sans-serif;
  color: #222;
}

/* Trainings Section */
.elevate-cards-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.elevate-training-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px 20px;
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}
.elevate-training-card:hover {
  transform: translateY(-5px);
}
.elevate-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.elevate-training-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.elevate-training-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
.elevate-training-card a {
  color: #007bff;
  text-decoration: none;
}

/* Container & Section */
.elevate-contact-section {
  margin-top: -30px;
  padding: 0px 0px 90px; 
  color: #000000;
  font-family: "Segoe UI", sans-serif;
}

.elevate-section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #000000; /* dark blue */
  margin-bottom: 15px;
}

.elevate-intro-text {
  text-align: center;
  font-size: 1rem;
  color: #0b1d3a;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Wrapper */
.elevate-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Form Styling */
.elevate-contact-form {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.elevate-contact-form input,
.elevate-contact-form textarea {
  padding: 15px;
  border: 1px solid #cce0ff;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  outline: none;
}

.elevate-contact-form input:focus,
.elevate-contact-form textarea:focus {
  border-color: #3399ff;
  box-shadow: 0 0 8px rgba(51, 153, 255, 0.3);
}

.elevate-contact-form button {
  background: #0073e6;
  color: #fff;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.elevate-contact-form button:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

/* Contact Info */
.elevate-contact-info {
  flex: 1;
  min-width: 300px;
  background: #e6f0ff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #003366;
  line-height: 1.6;
}

.elevate-contact-info a {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.elevate-contact-info a:hover {
  color: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
  .elevate-contact-wrapper {
    flex-direction: column;
  }
}

.impressum-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 140px 30px; /* padding von links/rechts und oben/unten */
}

h1 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  margin-top: 20px;
}

p {
  margin-bottom: 23px;
  line-height: 1.5;
}

ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  /* text-decoration: underline; */
}

/* new css end*/

/* ---- Base Style ---- */
.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.2);
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* ---- Icon ---- */
.back-to-top span {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: color 0.3s ease;
  pointer-events: none;
}

/* ---- Shine Animation ---- */
.back-to-top::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    var(--shine-color) 40%,
    rgba(255, 255, 255, 0.95) 50%,
    var(--shine-color) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(3px);
  animation: shineMove 2.5s linear infinite;
  z-index: 2;
}

/* ---- Hover Fill ---- */
.back-to-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: all 0.5s ease;
}

.back-to-top:hover::after {
  left: 0;
}

.back-to-top:hover span {
  color: var(--primary-color);
}

.back-to-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(13, 110, 253, 0.25);
}

/* ---- Visible when scrolling ---- */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---- Shine Animation ---- */
@keyframes shineMove {
  0% {
    left: -70%;
  }

  50% {
    left: 20%;
  }

  100% {
    left: 130%;
  }
}

/* Base */
.primary-btn {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  /* default text color */
  background: linear-gradient(135deg, var(--primary-color), #0069ff);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.18);
}

/* Text stays on top */
.primary-btn > span {
  position: relative;
  z-index: 3;
  display: inline-block;
  transition: color 0.35s ease;
  pointer-events: none;
}

/* Continuous sheen (ABOVE the white fill but below text) */
.primary-btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    var(--shine-color) 40%,
    rgba(255, 255, 255, 0.2) 50%,
    var(--shine-color) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(14px);
  opacity: 0.65;
  z-index: 2;
  /* above fill, below text */
  pointer-events: none;
  animation: shineMove 3.8s linear infinite;
}

/* Hover: slide white fill in, change text color and border */
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(13, 110, 253, 0.18);
  border-color: var(--primary-color);
  background: #fff !important;
  color: var(--primary-color) !important;
}

.primary-btn:hover::after {
  width: 100%;
}

.primary-btn:hover > span {
  color: var(--primary-color);
  /* text becomes blue (visible on white) */
}

/* Focus/active */
.primary-btn:focus {
  outline: none;
}

.primary-btn:focus-visible {
  box-shadow: 0 14px 36px rgba(13, 110, 253, 0.18),
    0 0 0 6px rgba(13, 110, 253, 0.08);
}

.primary-btn:active {
  transform: translateY(-1px) scale(0.998);
  transition-duration: 0.12s;
}

/* Keyframes for continuous shine */
@keyframes shineMove {
  0% {
    left: -60%;
  }

  50% {
    left: 20%;
  }

  100% {
    left: 140%;
  }
}

/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid var(--primary-color);
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #626262;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid var(--primary-color);
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid var(--primary-color);
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #626262;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid var(--primary-color);
    border-left-color: transparent;
  }
}

.spacial-controls {
  position: fixed;
  width: 111px;
  height: 91px;
  top: 0;
  right: 0;
  z-index: 999;
}

.spacial-controls .search-switch {
  display: block;
  height: 100%;
  padding-top: 30px;
  background: #323232;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  z-index: 99999;
}

.search-model-form {
  padding: 0 15px;
}

.search-model-form input {
  width: 500px;
  font-size: 40px;
  border: none;
  border-bottom: 2px solid #333;
  background: none;
  color: #999;
}

.search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*---------------------
  Header
-----------------------*/
/* Header Section */
.header-section {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 15px;
  z-index: 99;
  background-color: #fff;
}

.header-section .row {
  align-items: center;
}

.logo a {
  display: inline-block;
}

.logo a img {
  width: 130px;
  padding: 10px 0;
}

/* Nav Menu */
.nav-menu {
  text-align: center;
}

.nav-menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 32px;
  position: relative;
  z-index: 1;
}

.nav-menu ul li:last-child {
  margin-right: 0;
}

/* Dropdown Menu */
.nav-menu ul li .dropdown {
  position: absolute;
  left: -30px;
  top: 58px;
  width: 220px;
  background: #fff;
  z-index: 99;
  text-align: left;
  padding: 13px 0 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-menu ul li .dropdown li {
  margin-right: 0;
  display: block;
}

.nav-menu ul li .dropdown li a {
  display: block;
  text-transform: none;
  padding: 6px 0 6px 30px;
  font-weight: 600;
}

.nav-menu ul li .dropdown li a:after {
  display: none;
}

.nav-menu ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

/* Links */
.nav-menu ul li a {
  color: #000;
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--primary-font);
  padding: 10px 0px;
  position: relative;
  transition: all 0.3s;
}

/* Underline */
.nav-menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;               /* Thick underline */
  width: 100%;
  background: var(--primary-color);
  content: "";
  transform: rotate(0deg);    /* horizontal */
  opacity: 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Hover effect */
.nav-menu ul li:hover > a {
  color: var(--primary-color);
}

.nav-menu ul li:hover > a:after {
  opacity: 1;
  transform: rotate(0deg);
}

/* Active state */
/* active style: blue line under the active link */
/* ACTIVE MENU ENFORCED */
.nav-menu ul li a.active {
    color: var(--primary-color) !important;
}

/* Remove default hover overriding active */
.nav-menu ul li.active:hover > a {
    color: var(--primary-color) !important;
}



.nav-menu ul li.active > a:after,
.nav-menu ul li a.active:after {
  opacity: 1;
  transform: rotate(0deg);
  bottom: 0;
  background: var(--primary-color);
}



/* Mobile Canvas Menu */
.canvas-menu ul li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
}

.canvas-menu ul li a {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--primary-font);
  padding: 10px 0;
  display: block;
  position: relative;
  transition: all 0.3s;
}

.canvas-menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  content: "";
  transform: rotate(0deg);
  opacity: 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.canvas-menu ul li:hover > a {
  color: var(--primary-color);
}

.canvas-menu ul li:hover > a:after {
  opacity: 1;
  transform: rotate(0deg);
}

.canvas-menu ul li.active > a,
.canvas-menu ul li a.active {
  color: var(--primary-color);
}

.canvas-menu ul li.active > a:after,
.canvas-menu ul li a.active:after {
  opacity: 1;
  transform: rotate(0deg);
  height: 3px;
  bottom: 0;
  background: var(--primary-color);
}

.top-option {
  text-align: right;
  padding: 9px 0;
}

.top-option .to-search {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}

.top-option .to-search:after {
  position: absolute;
  right: 0;
  top: 5px;
  height: 15px;
  width: 1px;
  background: rgba(0, 0, 0, 0.3);
  content: "";
}

.top-option .to-search i {
  font-size: 16px;
  color: #000;
  cursor: pointer;
}

.top-option .to-social {
  display: inline-block;
}

.top-option .to-social a {
  display: inline-block;
  color: #000;
  font-size: 16px;
  margin-left: 15px;
}

.offcanvas-menu-wrapper {
  display: none;
}

.canvas-open {
  display: none;
}
.hero-section {
    position: relative;
}

/* Slider Items */
/* ===== Desktop (keep as is) ===== */
.hs-slider .hs-item{
  height: 1000px !important;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
}



/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* overlay ko text ke neeche rakho */
    background: linear-gradient(103deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);


  background: linear-gradient(
    103deg,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 51%,
    rgba(0, 0, 0, 0.884) 66%,
    rgba(0, 47, 104, 0.8) 66%,
    rgba(0, 46, 102, 0.8) 80%,
    rgba(2, 115, 236, 0.603) 80%,
    rgba(2, 115, 236, 0.603) 100%
  );
}

@media screen and (max-width: 520px) and (min-width: 0px){
 article.coach-card.animate-zoom.fade-up.active-zoom.visible {
    width: 1000%;
}
.coach-content{
  height: auto !important;
}
.team-top{
  /* height: 400px !important; */
}
  .gradient-overlay {
    background: transparent !important;
    background: #00000086 !important;
 
  }
}



/* Text */
.hi-text {
  position: absolute;
  top: 355px;
  left: 0;
  right: 0;
  z-index: 999; /* ABOVE gradient */
  color: #fff;
}

.hi-text span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  /*margin-bottom: 18px;*/
}

.hi-text h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 80px;
  /*margin-bottom: 42px;*/
  color: #fff;
}

.hi-text h1 strong {
  color: var(--primary-color);
  font-family: 'Qaranta' !important;
}

.hi-text .primary-btn {
  margin-top: 16px;
  display: inline-block;
}

/*---------------------
  ChoseUs Section
-----------------------*/

.choseus-section {
  background: #fff;
  padding-bottom: 70px;
}

.cs-item {
  text-align: center;
  margin-bottom: 30px;
}

.cs-item:hover span {
  background: var(--primary-color);
  color: #fff;
}

.cs-item span {
  height: 90px;
  width: 90px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: inline-block;
  color: var(--primary-color);
  line-height: 90px;
  text-align: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cs-item h4 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 16px;
}

/*---------------------
  Classes Section
-----------------------*/

.classes-section {
  background: #f5f5f5;
  padding-bottom: 80px;
}

.classes-section .section-title {
  margin-bottom: 35px;
}

.class-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.class-item .ci-pic img {
  min-width: 100%;
}

.class-item .ci-text {
  background: #0a0a0a;
  position: relative;
  padding: 10px 30px 26px 30px;
  z-index: 1;
}

.class-item .ci-text:after {
  position: absolute;
  left: -5px;
  top: -44px;
  height: 100px;
  width: 600px;
  border-top: 4px solid #464646;
  background: #0a0a0a;
  content: "";
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  z-index: -1;
}

.class-item .ci-text span {
  color: var(--primary-color);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.class-item .ci-text h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.class-item .ci-text h4 {
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.class-item .ci-text a {
  display: inline-block;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  line-height: 46px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  position: absolute;
  right: 30px;
  bottom: 26px;
}

/*---------------------
  Banner Section
-----------------------*/

.banner-section {
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bs-text.service-banner .bt-tips {
  margin-bottom: 35px;
}

.bs-text h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.bs-text .bt-tips {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.bs-text .primary-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
}

.bs-text .play-btn {
  display: inline-block;
  height: 70px;
  width: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  font-size: 36px;
  color: #000;
}

/*---------------------
  Pricing Section
-----------------------*/

.pricing-section {
  background: #fff;
}

.pricing-section .section-title {
  margin-bottom: 56px;
}

.ps-item {
  text-align: center;
  padding: 40px 30px 52px;
  border: 1px solid #464646;
  -webkit-transform: skewY(-4deg);
  -ms-transform: skewY(-4deg);
  transform: skewY(-4deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 30px;
  position: relative;
}

.ps-item:hover {
  background: #000;
  border-color: #000;
}

.ps-item:hover h3 {
  color: #111111;
}

.ps-item:hover .pi-price span {
  color: #444444;
}

.ps-item:hover ul li {
  color: #111111;
  font-weight: 600;
}

.ps-item:hover .primary-btn.pricing-btn {
  background: var(--primary-color);
}

.ps-item:hover .thumb-icon {
  opacity: 1;
  visibility: visible;
}

.ps-item h3 {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  margin-bottom: 16px;
  -webkit-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  transform: skewY(4deg);
}

.ps-item .pi-price {
  margin-bottom: 30px;
  -webkit-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  transform: skewY(4deg);
}

.ps-item .pi-price h2 {
  font-size: 60px;
  color: var(--primary-color);
  font-weight: 600;
}

.ps-item .pi-price span {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.ps-item ul {
  margin-bottom: 40px;
  -webkit-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  transform: skewY(4deg);
}

.ps-item ul li {
  font-size: 14px;
  color: var(--text-color);
  line-height: 32px;
  list-style: none;
}

.ps-item .primary-btn.pricing-btn {
  display: block;
  background: #323232;
  -webkit-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  transform: skewY(4deg);
}

.ps-item .thumb-icon {
  font-size: 48px;
  color: var(--primary-color);
  position: absolute;
  left: 50px;
  bottom: 120px;
  -webkit-transform: skewY(4deg);
  -ms-transform: skewY(4deg);
  transform: skewY(4deg);
  opacity: 0;
  visibility: hidden;
}

/*---------------------
  Gallery Section
-----------------------*/

#gallery-section {
  padding: 80px 0;
  background: #fafafa;
}

.gallery-wrap {
  max-width: 1000px;
  margin: auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 10px;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* arrows */
.arrow {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}

/*---------------------
  Team Section
-----------------------*/

.team-section {
  background: #fff;
}

.team-section.team-page {
  padding-bottom: 70px;
}

.team-section.team-page .ts-item {
  margin-bottom: 30px;
}

.team-section.team-page .ts-item:hover .ts_text {
  bottom: -30px;
}

.team-section.team-page .ts-item .tt_social {
  -webkit-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  transform: skewY(5deg);
  margin-top: 13px;
}

.team-section.team-page .ts-item .tt_social a {
  font-size: 14px;
  color: var(--text-color);
  margin-right: 10px;
}

.team-section.team-page .ts-item .tt_social a:last-child {
  margin-right: 0;
}

.team-title .section-title {
  text-align: center;
  /* float: left; */
  text-align: -webkit-center;
  margin: 0 auto;
}

.primary-btn.appoinment-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  /* float: right; */
  margin-top: 10px;
  color: #000;
}

.primary-btn.appoinment-btn:hover {
  color: #fff;
}

.ts-slider .col-lg-4 {
  max-width: 100%;
}

.ts-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.ts-slider.owl-carousel .owl-dots button {
  height: 4px;
  width: 20px;
  background: #5c5c5c;
  margin-right: 15px;
  -webkit-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  transform: skewY(-5deg);
}

.ts-slider.owl-carousel .owl-dots button.active {
  background: var(--primary-color);
}

.ts-slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.ts-item {
  height: 450px;
  position: relative;
  overflow: hidden;
}

.ts-item:hover .ts_text {
  bottom: -35px;
}

.ts-item .ts_text {
  padding: 40px 0 60px;
  text-align: center;
  background: #ffffffe3;
  border-top: 4px solid #464646;
  -webkit-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  transform: skewY(-5deg);
  position: absolute;
  left: 0;
  bottom: -250px;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.ts-item .ts_text h4 {
  color: #000;
  font-weight: 600;
  margin-bottom: 14px;
  -webkit-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  transform: skewY(5deg);
}

.ts-item .ts_text span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #aaaaaa;
  text-transform: uppercase;
  -webkit-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  transform: skewY(5deg);
}

/*---------------------
  Get Touch Section
-----------------------*/

.gettouch-section {
  background: #0a0a0a;
  padding: 30px 0 15px;
}

.gt-text {
  overflow: hidden;
  margin-bottom: 30px;
}

.gt-text i {
  font-size: 30px;
  color: #000;
  display: inline-block;
  height: 65px;
  width: 65px;
  background: var(--primary-color);
  border-radius: 50%;
  line-height: 65px;
  text-align: center;
  float: left;
  margin-right: 20px;
}

.gt-text p {
  overflow: hidden;
  color: #fff;
  margin-bottom: 0;
  padding-top: 10px;
}

.gt-text ul {
  overflow: hidden;
  padding-top: 20px;
}

.gt-text ul li {
  list-style: none;
  font-size: 14px;
  color: #fff;
  margin-right: 25px;
  display: inline-block;
  position: relative;
}

.gt-text ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "|";
  color: #656565;
}

.gt-text ul li:last-child {
  margin-right: 0;
}

.gt-text ul li:last-child:after {
  display: none;
}

.gt-text.email p {
  padding-top: 20px;
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
  background: #000000;
  padding-top: 50px;
}

.fs-about {
  margin-bottom: 30px;
}

.fs-about .fa-logo {
  margin-bottom: 30px;
}

.fa-logo a img {
  width: 200px;
}

.fs-about .fa-logo a {
  display: inline-block;
}

.fs-about p {
  line-height: 26px;
}

.fs-about .fa-social a {
  font-size: 14px;
  color: var(--text-color);
  margin-right: 10px;
}

.fs-about .fa-social a:last-child {
  margin-right: 0;
}

.fs-widget {
  margin-bottom: 30px;
}

.fs-widget h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 18px;
}

.fs-widget ul li {
  list-style: none;
}

.fs-widget ul li a {
  font-size: 14px;
  color: #999999;
  line-height: 30px;
}

.fs-widget .fw-recent h6 a,
.fs-widget .fw-recent ul li,
.fs-about p,
.fs-about .fa-social a {
  color: #999999 !important;
}

.fs-widget ul li a:hover,
.fs-widget .fw-recent h6 a:hover {
  color: #fff !important;
}

.fs-widget .fw-recent {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}

.fs-widget .fw-recent:last-child {
  padding-bottom: 0;
  border: none;
}

.fs-widget .fw-recent h6 {
  margin-bottom: 6px;
}

.fs-widget .fw-recent h6 a {
  color: var(--text-color);
  letter-spacing: 0.5px;
}

.fs-widget .fw-recent ul li {
  font-size: 12px;
  color: #4d4d4d;
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.fs-widget .fw-recent ul li:last-child:after {
  display: none;
}

.fs-widget .fw-recent ul li:after {
  position: absolute;
  right: -16px;
  top: 0;
  content: "|";
}

.copyright-text {
  font-size: 14px;
  color: var(--text-color);
  letter-spacing: 0.5px;
  border-top: 1px solid #1a1a1a;
  padding: 25px 0;
  margin-top: 15px;
}

.copyright-text a,
.copyright-text i {
  color: var(--primary-color);
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb Section
-----------------------*/

/* ============================
   DEFAULT (Laptop + Large Screens)
============================ */

.breadcrumb-section {
  padding: 180px 0 120px 0; /* Top + Bottom spacing instead of fixed height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumb-text h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.breadcrumb-text h2:hover {
  color: #357bdd;
}

.about-btn {
  margin-top: 20px;
}

.breadcrumb-text .bt-option a {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  margin-right: 20px;
}

.breadcrumb-text .bt-option {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
}

/* ============================
   TABLET (768px – 1023px)
============================ */

@media (max-width: 1023px) {
  .breadcrumb-section {
    padding: 150px 0 100px 0;
  }

   article.coach-card.animate-zoom.fade-up.active-zoom.visible {
    width: 100%;
}
.coach-content{
  height: auto !important;
}
  .breadcrumb-text h2 {
    font-size: 32px;
    margin-bottom: 12px;
    padding-top: 40px;
  }

  .about-btn {
    margin-top: 18px;
  }
}

/* ============================
   MOBILE (0 – 767px)
============================ */

@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 120px 20px 80px 20px;
    text-align: center;
  }

  .breadcrumb-text h2 {
    font-size: 26px;
    line-height: 1.2;
    padding-top: 40px;
  }

  .breadcrumb-text .bt-option a {
    font-size: 14px;
    margin-right: 10px;
  }

  .about-btn {
    margin-top: 20px;
    display: inline-block;
  }
  .set-bg {
    padding: 30px;
  }
}
/* Responsive Breakpoints */
@media (max-width: 991px) {
  /* Tablet: 2 columns */
  .DasGym .col-lg-4 {
    margin-bottom: 25px;
  }
  .DasGym .ts-item {
    height: 280px;
  }
}

@media (max-width: 768px) {
  /* Tablet portrait and big phones */
  .team-title {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }

  .team-title .section-title {
    width: 100%;
  }

  .DasGym .ts-item {
    height: 260px;
  }
}

@media (max-width: 576px) {
  /* Mobile: 1 column full width */
  .DasGym .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .DasGym .ts-item {
    height: 240px;
  }

  .DasGym .ts_text h4 {
    font-size: 20px;
  }

  .DasGym .ts_text span {
    font-size: 14px;
  }
}
/*---------------------
  About Us Section
-----------------------*/

/* New About us Css */

/* ===== SECTION WRAPPER ===== */
.au-specialties-section {
  padding: 80px 40px;
  background: aliceblue;
}

.au-specialties-container {
  max-width: 1100px;
  margin: 0 auto;
}

.au-specialties-badge {
  display: inline-block;
  background: rgba(71, 85, 105, 0.5);
  color: #e2e8f0;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.au-specialties-section h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: start;
}

.au-specialties-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ===== NAV BUTTONS (WITH SHINE) ===== */
.au-specialties-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.au-specialties-nav-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  border-color: transparent;
  background: #0069ff;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.4);
}

.au-specialties-nav-button > span {
  position: relative;
  z-index: 3;
  display: inline-block;
  pointer-events: none;
}

/* continuous shine stripe */
.au-specialties-nav-button::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    var(--shine-color) 40%,
    rgba(255, 255, 255, 0.1) 50%,
    var(--shine-color) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  filter: blur(16px);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  animation: au-specialties-shine 3.8s linear infinite;
}

/* active tab */
.au-specialties-nav-button.active {
  background: linear-gradient(135deg, var(--primary-color), #0069ff);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.35);
}

/* hover */
.au-specialties-nav-button:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 36px rgba(13, 110, 253, 0.3);
  border-color: var(--primary-color);
  background: #ffffff;
  color: var(--primary-color);
}

.au-specialties-nav-button.active {
  transform: translateX(4px);
  box-shadow: 0 14px 36px rgba(13, 110, 253, 0.3);
  border-color: var(--primary-color);
  background: #ffffff;
  color: var(--primary-color);
}
.au-specialties-nav-button:hover > span {
  color: var(--primary-color);
}

#au-specialty-image {
  width: 100%;
  max-width: 450px;
  height: 233px;
  border-radius: 14px;
  margin-top: 24px;
  display: block;
  object-fit: cover;
}

.mobile-content {
  display: none;
  padding: 12px;
  border-radius: 12px;

  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.mobile-content.open {
  display: block;
  opacity: 1;
}

.mobile-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.mobile-content img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}


@keyframes au-specialties-shine {
  0% {
    left: -60%;
  }
  50% {
    left: 20%;
  }
  100% {
    left: 140%;
  }
}

/* ===== RIGHT CONTENT ===== */
.au-specialties-content {
  padding-top: 10px;
}

.au-specialties-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.au-specialties-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 16px;
}
.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .au-specialties-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .au-specialties-section h1 {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .au-specialties-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .au-specialties-section {
    padding: 50px 24px;
  }

  .au-specialties-section h1 {
    font-size: 36px;
  }

  .au-specialties-nav {
    gap: 12px;
  }

  .au-specialties-nav-button {
    padding: 18px 24px;
    font-size: 15px;
  }

  .au-specialties-content h2 {
    font-size: 24px;
  }

  .au-specialties-content p {
    font-size: 15px;
  }
}
.mobile-content {
  display: none;
  background: #f6f7ff;
  padding: 14px 18px;
  margin-top: 10px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}




@media (max-width: 765px) {
  .au-specialties-content {
    display: none;
  }
}

/* Css End */

.about-video {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-video .play-btn {
  display: inline-block;
  height: 70px;
  width: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  font-size: 36px;
  color: #fff;
}

.play-btn {
  position: relative !important;
  width: 90px !important;
  height: 90px !important;
  background: linear-gradient(135deg, #00c6ff, #0072ff) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 34px !important;
  text-decoration: none !important;
  box-shadow: 0 0 25px rgba(0, 114, 255, 0.5) !important;
  transition: transform 0.3s ease !important;
}

.play-btn:hover {
  transform: scale(1.1) !important;
}

.play-btn i {
  position: relative !important;
  z-index: 3 !important;
  margin-left: 3px !important;
}

/* Animated Waves */
.waves {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: wave 2s infinite ease-out;
  z-index: 1;
}

.wave1 {
  width: 90px;
  height: 90px;
  animation-delay: 0s;
}

.wave2 {
  width: 90px;
  height: 90px;
  animation-delay: 0.6s;
}

.wave3 {
  width: 90px;
  height: 90px;
  animation-delay: 1.2s;
}

@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.about-text {
  background: #000000;
  height: auto;
  padding: 85px 70px;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.about-text .at-desc {
  margin-bottom: 27px;
}

.about-text .at-desc p {
  color: var(--text-color);
}

.about-text .about-bar .ab-item {
  margin-bottom: 34px;
}

.about-text .about-bar .ab-item p {
  color: #000;
  margin-bottom: 13px;
}

.about-text .about-bar .ab-item .barfiller {
  background: #2d2d2d;
  height: 5px;
  border: none;
  margin-bottom: 0;
}

.about-text .about-bar .ab-item .barfiller .tip {
  margin-top: 0;
  padding: 0;
  font-size: 14px;
  color: #fff;
  background: transparent;
  position: initial !important;
  float: right;
  margin-top: -40px;
}

.about-text .about-bar .ab-item .barfiller .tip:after {
  display: none;
}

/*---------------------
  Testimonial Section
-----------------------*/

.testimonial-section {
  background: #fff;
}

.ts_slider.owl-carousel .owl-item img {
  display: inline-block;
}

.ts_slider.owl-carousel .owl-nav button:hover {
  background-color: #000;
  transition: all 0.2s ease-in-out;
}

.ts_slider.owl-carousel .owl-nav button {
  height: 46px;
  width: 46px;
  color: #ffffff;
  background: var(--primary-color);
  line-height: 46px;
  text-align: center;
  font-size: 24px;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-23px);
  -ms-transform: translateY(-23px);
  transform: translateY(-23px);
}

.ts_slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 30px;
}

.ts_slider .ts_item .ti_pic {
  margin-bottom: 32px;
}

.ts_slider .ts_item .ti_pic img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.tt-para {
  color: var(--text-color);
}

.ts_slider .ts_item .ti_text p {
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 20px;
  max-width: 800px;
  width: 100%;
}

.ts_slider .ts_item .ti_text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.ts_slider .ts_item .ti_text h5 {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ts_slider .ts_item .ti_text .tt-rating i {
  font-size: 30px;
  color: #d49d09;
}

.tt-rating {
  display: flex;
  gap: 10px;
}

/*---------------------
  Services Section
-----------------------*/

.services-section {
  background: #fff;
}

.ss-pic img {
  height: 100%;
  min-width: 100%;
}

.ss-text {
  background: #252525;
  padding: 72px 30px;
  height: 293px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.ss-text:hover {
  background: #fff;
}

.ss-text:hover a {
  color: var(--primary-color);
}

.ss-text:hover:after {
  background: #fff;
}

.ss-text:after {
  position: absolute;
  left: -15px;
  top: 50%;
  height: 20px;
  width: 20px;
  background: #252525;
  content: "";
  -webkit-transform: rotate(45deg) translateY(-10px);
  -ms-transform: rotate(45deg) translateY(-10px);
  transform: rotate(45deg) translateY(-10px);
  z-index: -1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.ss-text.second-row:after {
  left: auto;
  right: 0;
}

.ss-text h4 {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.ss-text p {
  margin-bottom: 11px;
}

.ss-text a {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------
  Class Timetable Section
-----------------------*/

.class-timetable-section {
  background: #fff;
}

.class-timetable-section.class-details-timetable {
  padding-top: 0;
}

.class-timetable-section .section-title {
  text-align: left;
}

.class-details-timetable_title {
  margin-bottom: 35px;
}

.class-details-timetable_title h5 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.table-controls {
  text-align: right;
  margin-top: 14px;
  margin-bottom: 50px;
}

.table-controls ul {
  background: #000000;
  padding: 12px 30px 15px;
  display: inline-block;
}

.table-controls ul li {
  list-style: none;
  font-size: 14px;
  color: #aaaaaa;
  list-style: none;
  display: inline-block;
  margin-right: 35px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.table-controls ul li:after {
  position: absolute;
  right: -22px;
  top: 0;
  content: "/";
}

.table-controls ul li.active {
  color: #000;
}

.table-controls ul li.active:after {
  color: #aaaaaa;
}

.table-controls ul li:last-child {
  margin-right: 0;
}

.table-controls ul li:last-child:after {
  display: none;
}

.class-timetable .ts-meta h5,
.class-timetable .ts-meta span {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.class-timetable.filtering .ts-meta h5,
.class-timetable.filtering .ts-meta span {
  opacity: 0;
}

.class-timetable.filtering .ts-meta.show h5,
.class-timetable.filtering .ts-meta.show span {
  opacity: 1;
}

.class-timetable.details-timetable td h5 {
  color: #00001a;
}

.class-timetable.details-timetable td span {
  color: #fff;
}

.class-timetable.details-timetable td.hover-dp h5 {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.class-timetable.details-timetable td.hover-dp span {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.class-timetable.details-timetable td.hover-dp:hover h5 {
  color: #a9a9a9;
}

.class-timetable.details-timetable td.hover-dp:hover span {
  color: #a9a9a9;
}

.class-timetable.details-timetable td.dark-bg {
  background: #0a0a0a;
}

.class-timetable table {
  border: 1px solid #fff;
  text-align: center;
}

.class-timetable table thead {
  border-bottom: 1px solid #fff;
}

.class-timetable table thead tr th {
  font-size: 14px;
  color: #000;
  background: var(--primary-color);
  border-right: 1px solid #fff;
  padding: 15px 0;
  font-weight: 400;
}

.class-timetable table tbody tr td {
  width: 146px;
  padding: 35px 0;
  background-color: var(--primary-color);
}

.class-timetable table tbody tr td.class-time {
  font-size: 12px;
  color: #fff;
  background: #000000;
  border: 1px solid #fff;
}

.class-timetable table tbody tr td.dark-bg {
  background: #090909;
}

.class-timetable table tbody tr td.hover-bg {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.class-timetable table tbody tr td.hover-bg:hover {
  background: var(--primary-color);
}

.class-timetable table tbody tr td.blank-td {
  position: relative;
  overflow: hidden;
}

.class-timetable table tbody tr td.blank-td:after {
  position: absolute;
  left: -47px;
  top: 59px;
  width: 237px;
  height: 1px;
  background: #fff;
  content: "";
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg);
}

.class-timetable table tbody tr td h5 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.class-timetable table tbody tr td span {
  display: block;
  font-size: 12px;
  color: #a9a9a9;
}

/*---------------------
  Class Details Section
-----------------------*/

.class-details-section {
  background: #fff;
  padding-bottom: 60px;
}

.class-details-text .cd-pic {
  margin-bottom: 45px;
}

.class-details-text .cd-pic img {
  min-width: 100%;
}

.class-details-text .cd-text {
  margin-bottom: 33px;
}

.class-details-text .cd-text .cd-single-item h3 {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.class-details-text .cd-text .cd-single-item p {
  color: #323232;
}

.class-details-text .cd-trainer .cd-trainer-pic img {
  min-width: 100%;
}

.class-details-text .cd-trainer .cd-trainer-text {
  position: relative;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-title {
  margin-bottom: 18px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-title h4 {
  color: #000;
  font-weight: 600;
  margin-bottom: 6px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-title span {
  font-size: 12px;
  color: #aaaaaa;
  text-transform: uppercase;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-social {
  position: absolute;
  right: 0;
  top: 20px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-social a {
  display: inline-block;
  font-size: 14px;
  color: var(--text-color);
  margin-right: 9px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-social a:last-child {
  margin-right: 0;
}

.class-details-text .cd-trainer .cd-trainer-text p {
  color: var(--text-color);
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info {
  margin-top: 28px;
  margin-bottom: 26px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info li {
  font-size: 14px;
  color: var(--text-color);
  list-style: none;
  padding-bottom: 8px;
  border-bottom: 1px solid #252525;
  margin-bottom: 10px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info li span {
  color: #000;
  font-weight: 700;
  width: 150px;
  display: inline-block;
}

.sidebar-option {
  padding-left: 40px;
}

.sidebar-option .so-categories {
  margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sidebar-option .so-categories ul li {
  list-style: none;
}

.sidebar-option .so-categories ul li:hover a {
  color: var(--primary-color);
}

.sidebar-option .so-categories ul li:hover a span {
  color: #000;
}

.sidebar-option .so-categories ul li a {
  font-size: 14px;
  color: var(--text-color);
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar-option .so-categories ul li a span {
  font-size: 12px;
  float: right;
}

.sidebar-option .so-latest {
  margin-bottom: 60px;
}

.sidebar-option .so-latest .title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.sidebar-option .so-latest .latest-large {
  height: 200px;
  position: relative;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-large .ll-text {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  padding: 0 25px;
}

.sidebar-option .so-latest .latest-large .ll-text h5 a {
  color: #000;
  font-weight: 600;
  line-height: 23px;
}

.sidebar-option .so-latest .latest-large .ll-text ul li {
  list-style: none;
  font-size: 12px;
  color: #888888;
  position: relative;
  display: inline-block;
  margin-right: 25px;
}

.sidebar-option .so-latest .latest-large .ll-text ul li:last-child {
  margin-right: 0;
}

.sidebar-option .so-latest .latest-large .ll-text ul li:last-child:after {
  display: none;
}

.sidebar-option .so-latest .latest-large .ll-text ul li:after {
  position: absolute;
  right: -16px;
  top: 0;
  content: "|";
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item:last-child {
  margin-bottom: 0;
}

.sidebar-option .so-latest .latest-item .li-pic {
  float: left;
  margin-right: 20px;
}

.sidebar-option .so-latest .latest-item .li-text {
  overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
  font-size: 15px;
  color: #000;
  line-height: 21px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
  display: inline-block;
  font-size: 12px;
  color: #888888;
}

.sidebar-option .so-banner {
  height: 300px;
  position: relative;
}

.sidebar-option .so-banner h5 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  padding: 0 30px;
}

.sidebar-option .so-tags .title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.sidebar-option .so-tags a {
  display: inline-block;
  font-size: 14px;
  color: var(--text-color);
  padding: 10px 15px;
  background: #252525;
  margin-right: 5px;
  margin-bottom: 10px;
}

/*------------------------
  Bmi Calculator Section
-------------------------*/

.bmi-calculator-section {
  background: #fff;
}

.section-title.chart-title {
  text-align: left;
}

.chart-table table {
  border: 1px solid #fff;
  width: 100%;
}

.chart-table table thead {
  border-bottom: 1px solid #fff;
}

.chart-table table thead tr th {
  background: #060606;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  border-right: 1px solid #fff;
  padding: 14px 0 11px 50px;
}

.chart-table table tbody tr:nth-child(even) {
  background: #111111;
}

.chart-table table tbody tr td {
  font-size: 14px;
  color: var(--text-color);
  border-right: 1px solid #fff;
  padding: 17px 0 17px 50px;
}

.chart-table table tbody tr td.point {
  width: 200px;
}

.section-title.chart-calculate-title {
  text-align: left;
}

.chart-calculate-form p {
  color: var(--text-color);
  margin-bottom: 24px;
}

.chart-calculate-form form input {
  font-size: 14px;
  color: var(--text-color);
  width: 100%;
  height: 50px;
  border: 1px solid #fff;
  padding-left: 20px;
  padding-right: 5px;
  background: transparent;
  margin-bottom: 20px;
}

.chart-calculate-form form input::-webkit-input-placeholder {
  color: var(--text-color);
}

.chart-calculate-form form input::-moz-placeholder {
  color: var(--text-color);
}

.chart-calculate-form form input:-ms-input-placeholder {
  color: var(--text-color);
}

.chart-calculate-form form input::-ms-input-placeholder {
  color: var(--text-color);
}

.chart-calculate-form form input::placeholder {
  color: var(--text-color);
}

.chart-calculate-form form button {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border: none;
  padding: 15px 0;
  background: var(--primary-color);
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section {
  background: #fff;
}

.blog-section .sidebar-option {
  padding-left: 70px;
}

.blog-item {
  margin-bottom: 40px;
}

.blog-item .bi-pic {
  float: left;
}

.blog-item .bi-pic img {
  width: 360px;
  height: 240px;
  min-width: 100%;
}

.blog-item .bi-text {
  border: 1px solid #fff;
  overflow: hidden;
  height: 240px;
  padding: 32px 30px 0 30px;
}

.blog-item .bi-text h5 {
  margin-bottom: 10px;
}

.blog-item .bi-text h5 a {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  line-height: 28px;
}

.blog-item .bi-text ul {
  margin-bottom: 18px;
}

.blog-item .bi-text ul li {
  font-size: 12px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 25px;
  position: relative;
}

.blog-item .bi-text ul li:after {
  position: absolute;
  right: -15px;
  top: 0;
  content: "|";
}

.blog-item .bi-text ul li:last-child {
  margin-right: 0;
}

.blog-item .bi-text ul li:last-child:after {
  display: none;
}

.blog-item .bi-text p {
  color: var(--text-color);
  line-height: 22px;
  margin-bottom: 0;
}

.blog-pagination {
  padding-top: 10px;
}

.blog-pagination a {
  display: inline-block;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 600;
  margin-right: 15px;
  background: #252525;
  font-family: var(--primary-font);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-pagination a:last-child {
  margin-right: 0;
}

.blog-pagination a:hover {
  background: #555555;
}

/*--------------------------
  Blog Detils Hero Section
--------------------------*/

.blog-details-hero {
  height: 900px;
  padding-top: 365px;
}

.bh-text {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 40px 50px 34px 50px;
}

.bh-text h3 {
  color: #000;
  font-weight: 600;
  line-height: 39px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bh-text ul li {
  font-size: 12px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 25px;
  position: relative;
}

.bh-text ul li:after {
  position: absolute;
  right: -15px;
  top: 0;
  content: "|";
}

.bh-text ul li:last-child {
  margin-right: 0;
}

.bh-text ul li:last-child:after {
  display: none;
}

/*---------------------
  Blog Details Section
-----------------------*/

.blog-details-section {
  background: #fff;
  padding-top: 80px;
  overflow: hidden;
}

.blog-details-text .blog-details-title {
  text-align: center;
  margin-bottom: 32px;
}

.blog-details-text .blog-details-title p {
  color: var(--text-color);
}

.blog-details-text .blog-details-title p:first-child {
  margin-bottom: 25px;
}

.blog-details-text .blog-details-title h5 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  padding-top: 5px;
  margin-bottom: 28px;
}

.blog-details-text .blog-details-pic {
  margin-right: -10px;
  overflow: hidden;
  margin-bottom: 22px;
}

.blog-details-text .blog-details-pic .blog-details-pic-item {
  width: calc(50% - 10px);
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-details-text .blog-details-pic .blog-details-pic-item img {
  min-width: 100%;
}

.blog-details-text .blog-details-desc {
  text-align: center;
  margin-bottom: 60px;
}

.blog-details-text .blog-details-desc p {
  color: var(--text-color);
}

.blog-details-text .blog-details-quote {
  text-align: center;
  border: 2px solid #fff;
  padding: 40px 22px 25px;
  position: relative;
  margin-bottom: 30px;
}

.blog-details-text .blog-details-quote .quote-icon {
  position: absolute;
  left: 50%;
  top: -26px;
  height: 55px;
  width: 55px;
  background: #fff;
  border: 2px solid #fff;
  line-height: 47px;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: translateX(-27.5px);
  -ms-transform: translateX(-27.5px);
  transform: translateX(-27.5px);
}

.blog-details-text .blog-details-quote h5 {
  font-size: 20px;
  color: #000;
  line-height: 30px;
  margin-bottom: 6px;
}

.blog-details-text .blog-details-quote span {
  font-size: 15px;
  color: #888888;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-text .blog-details-more-desc {
  text-align: center;
  margin-bottom: 40px;
}

.blog-details-text .blog-details-more-desc p {
  color: var(--text-color);
}

.blog-details-text .blog-details-more-desc p:first-child {
  margin-bottom: 25px;
}

.blog-details-text .blog-details-tag-share {
  text-align: center;
  margin-bottom: 100px;
}

.blog-details-text .blog-details-tag-share .tags {
  margin-bottom: 25px;
}

.blog-details-text .blog-details-tag-share .tags a {
  display: inline-block;
  font-size: 14px;
  color: var(--text-color);
  padding: 10px 15px;
  background: #252525;
  margin-right: 5px;
  margin-bottom: 10px;
}

.blog-details-text .blog-details-tag-share .tags a:last-child {
  margin-right: 0;
}

.blog-details-text .blog-details-tag-share .share span {
  font-size: 14px;
  color: var(--text-color);
  text-transform: uppercase;
  margin-right: 30px;
}

.blog-details-text .blog-details-tag-share .share a {
  font-size: 14px;
  color: var(--text-color);
  margin-right: 15px;
}

.blog-details-text .blog-details-tag-share .share a:last-child {
  margin-right: 0;
}

.blog-details-text .blog-details-tag-share .share a i {
  color: #000;
  margin-right: 5px;
}

.blog-details-text .blog-details-author {
  text-align: center;
  background: #0a0a0a;
  position: relative;
  padding: 70px 50px 35px 50px;
  margin-bottom: 55px;
}

.blog-details-text .blog-details-author .ba-pic {
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-45px);
  -ms-transform: translateX(-45px);
  transform: translateX(-45px);
}

.blog-details-text .blog-details-author .ba-pic img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}

.blog-details-text .blog-details-author .ba-text h5 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-details-text .blog-details-author .ba-text p {
  color: var(--text-color);
}

.blog-details-text .blog-details-author .ba-text .bp-social a {
  font-size: 13px;
  color: var(--text-color);
  margin-right: 10px;
}

.blog-details-text .blog-details-author .ba-text .bp-social a:last-child {
  margin-right: 0;
}

.blog-details-text .comment-option .co-title {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.blog-details-text .comment-option .co-widget {
  position: absolute;
  right: 0;
  top: 5px;
}

.blog-details-text .comment-option .co-widget a {
  font-size: 14px;
  color: var(--text-color);
  margin-left: 8px;
}

.blog-details-text .comment-option .co-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 35px;
}

.blog-details-text .comment-option .co-item.reply-comment {
  margin-left: 30px;
}

.blog-details-text .comment-option .co-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  content: "";
}

.blog-details-text .comment-option .co-item .co-pic {
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-details-text .comment-option .co-item .co-pic img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.blog-details-text .comment-option .co-item .co-pic h5 {
  color: #000;
  overflow: hidden;
  line-height: 30px;
}

.blog-details-text .comment-option .co-item .co-text p {
  color: var(--text-color);
  margin-bottom: 0;
}

.leave-comment h5 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.leave-comment form input {
  font-size: 13px;
  color: var(--text-color);
  width: 100%;
  height: 46px;
  border: 1px solid #fff;
  padding-left: 20px;
  padding-right: 5px;
  background: transparent;
  margin-bottom: 20px;
}

.leave-comment form input::-webkit-input-placeholder {
  color: var(--text-color);
}

.leave-comment form input::-moz-placeholder {
  color: var(--text-color);
}

.leave-comment form input:-ms-input-placeholder {
  color: var(--text-color);
}

.leave-comment form input::-ms-input-placeholder {
  color: var(--text-color);
}

.leave-comment form input::placeholder {
  color: var(--text-color);
}

.leave-comment form textarea {
  font-size: 13px;
  color: var(--text-color);
  width: 100%;
  height: 100px;
  border: 1px solid #fff;
  padding-left: 20px;
  padding-top: 12px;
  padding-right: 5px;
  background: transparent;
  margin-bottom: 14px;
  resize: none;
}

.leave-comment form textarea::-webkit-input-placeholder {
  color: var(--text-color);
}

.leave-comment form textarea::-moz-placeholder {
  color: var(--text-color);
}

.leave-comment form textarea:-ms-input-placeholder {
  color: var(--text-color);
}

.leave-comment form textarea::-ms-input-placeholder {
  color: var(--text-color);
}

.leave-comment form textarea::placeholder {
  color: var(--text-color);
}

.leave-comment form button {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  border: none;
  padding: 14px 0 12px;
  background: var(--primary-color);
}

/*---------------------
  Contact Section
-----------------------*/

.contact-section {
  background: #fff;
}

.section-title.contact-title {
  text-align: left;
  margin-bottom: 35px;
}

.contact-widget .cw-text {
  overflow: hidden;
  margin-bottom: 35px;
}

.contact-widget .cw-text i {
  font-size: 30px;
  color: var(--primary-color);
  display: inline-block;
  height: 65px;
  width: 65px;
  background: #fff;
  border-radius: 50%;
  line-height: 65px;
  text-align: center;
  float: left;
  margin-right: 20px;
}

.contact-widget .cw-text p {
  overflow: hidden;
  color: var(--text-color);
  margin-bottom: 0;
  padding-top: 10px;
}

.contact-widget .cw-text ul {
  overflow: hidden;
  padding-top: 20px;
}

.contact-widget .cw-text ul li {
  list-style: none;
  font-size: 14px;
  color: var(--text-color);
  margin-right: 25px;
  display: inline-block;
  position: relative;
}

.contact-widget .cw-text ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "|";
  color: #545454;
}

.contact-widget .cw-text ul li:last-child {
  margin-right: 0;
}

.contact-widget .cw-text ul li:last-child:after {
  display: none;
}

.contact-widget .cw-text.email p {
  padding-top: 20px;
}

.map {
  height: 550px;
  margin-top: 35px;
}

.map iframe {
  width: 100%;
}

/*---------------------
  404 Section
-----------------------*/

.section-404 {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-404 {
  text-align: center;
}

.text-404 h1 {
  font-size: 200px;
  color: #000;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.text-404 h3 {
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
}

.text-404 p {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 43px;
}

.text-404 .search-404 {
  position: relative;
  width: 470px;
  margin: 0 auto 35px;
}

.text-404 .search-404 input {
  font-size: 15px;
  color: #ffffffb3;
  height: 46px;
  width: 100%;
  background: var(--primary-color);
  border: none;
  padding-left: 20px;
}

.text-404 .search-404 input::-webkit-input-placeholder {
  color: #ffffffb3;
}

.text-404 .search-404 input::-moz-placeholder {
  color: #ffffffb3;
}

.text-404 .search-404 input:-ms-input-placeholder {
  color: #ffffffb3;
}

.text-404 .search-404 input::-ms-input-placeholder {
  color: #ffffffb3;
}

.text-404 .search-404 input::placeholder {
  color: #ffffffb3;
}

.text-404 .search-404 button {
  font-size: 16px;
  color: #000;
  background: transparent;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  padding: 11px 20px 11px;
}

.text-404 a {
  font-size: 15px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.text-404 a:after {
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 100%;
  background: #252525;
  content: "";
}

.text-404 a i {
  color: var(--primary-color);
  margin-right: 5px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1650px) and (max-width: 1920px) {
  .nav-menu ul li {
    margin-right: 60px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nav-menu ul li {
    margin-right: 5px;
  }

  .ps-item .thumb-icon {
    left: 15px;
  }

  .blog-item .bi-pic {
    float: none;
  }

  .blog-item .bi-text {
    height: auto;
    padding: 32px 30px 30px 30px;
  }

  .blog-item .bi-pic img {
    height: auto;
  }
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-text {
    height: auto;
    padding: 120px 70px 60px 70px;
  }

  .blog-section .sidebar-option {
    padding-left: 0;
  }

  .blog-item .bi-pic {
    float: none;
  }

  .blog-item .bi-text {
    height: auto;
    padding: 32px 30px 30px 30px;
  }

  .class-details-text .cd-trainer .cd-trainer-text {
    padding-top: 30px;
  }

  .sidebar-option {
    padding-left: 0;
    padding-top: 30px;
  }

  .chart-table {
    margin-bottom: 30px;
  }

  .table-controls {
    text-align: left;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .ss-text:after {
    display: none;
  }

  .ss-text {
    padding: 72px 60px;
    margin-bottom: 30px;
  }

  .class-item .ci-text:after {
    width: 750px;
  }

  .ts_slider.owl-carousel .owl-nav button {
    left: 0;
  }

  .ts_slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

  .hs-slider.owl-carousel .owl-nav button {
    left: 0;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
 
  }

  .canvas-open {
    position: absolute;
    right: 40px;
    top: 61px;
    font-size: 22px;
    width: 30px;
    height: 30px;
    color: #000;
    border: 1px solid #000;
    border-radius: 2px;
    line-height: 29px;
    text-align: center;
    z-index: 1;
    display: block;
    cursor: pointer;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    z-index: 999;
    background: #000;
    overflow-y: auto;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 50px 30px 30px 30px;
    display: block;
  }

  .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
    left: 0;
    opacity: 1;
    visibility: visible;
    z-index: 9999 !important;
  }

  .offcanvas-menu-wrapper .canvas-close {
    font-size: 22px;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 27px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
  }

  .offcanvas-menu-wrapper .canvas-search {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
  }

  .offcanvas-menu-wrapper .canvas-menu {
    display: none;
  }

  .offcanvas-menu-wrapper .canvas-social {
    text-align: center;
    padding-top: 20px;
  }

  .offcanvas-menu-wrapper .canvas-social a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    margin-right: 6px;
  }

  .offcanvas-menu-wrapper .canvas-social a:last-child {
    margin-right: 0;
  }

  .offcanvas-menu-wrapper .slicknav_btn {
    display: none;
  }

  .offcanvas-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
  }

  .offcanvas-menu-wrapper .slicknav_nav {
    display: block !important;
  }

  .offcanvas-menu-wrapper .slicknav_nav ul {
    margin: 0;
  }

  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row,
  .offcanvas-menu-wrapper .slicknav_nav a {
    padding: 10px 0;
    margin: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: 600;
    font-family: var(--primary-font);
    font-size: 15px;
  }

  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
  }

  .offcanvas-menu-wrapper .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
  }

  .nav-menu {
    display: none;
  }

  .top-option {
    display: none;
  }

  .grid-sizer {
    width: calc(50% - 10px);
  }

  .gallery .gs-item {
    width: calc(50% - 10px);
    float: none;
  }

  .gallery .gs-item.grid-wide {
    width: 100%;
  }

  .blog-item .bi-pic img {
    height: auto;
  }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  #mobile-menu-wrap {
    padding-top: 20px;
  }

  .logo a img {
    width: 110px;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
    
  }

  .canvas-open {
    position: absolute;
    right: 40px;
    top: 40px;
    font-size: 22px;
    width: 30px;
    height: 30px;
    color: #000;
    border: 1px solid #000;
    border-radius: 2px;
    line-height: 29px;
    text-align: center;
    z-index: 1;
    display: block;
    cursor: pointer;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    z-index: 999;
    background: #000;
    overflow-y: auto;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 50px 30px 30px 30px;
    display: block;
  }

  .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
    left: 0;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
  }

  .offcanvas-menu-wrapper .canvas-close {
    font-size: 22px;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    text-align: center;
    line-height: 27px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
  }

  .offcanvas-menu-wrapper .canvas-search {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    display: none;
  }

  .offcanvas-menu-wrapper .canvas-menu {
    display: none;
  }

  .offcanvas-menu-wrapper .canvas-social {
    text-align: center;
    padding-top: 20px;
  }

  .offcanvas-menu-wrapper .canvas-social a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    margin-right: 6px;
  }

  .offcanvas-menu-wrapper .canvas-social a:last-child {
    margin-right: 0;
  }

  .offcanvas-menu-wrapper .slicknav_btn {
    display: none;
  }

  .offcanvas-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
  }

  .offcanvas-menu-wrapper .slicknav_nav {
    display: block !important;
  }

  .offcanvas-menu-wrapper .slicknav_nav ul {
    margin: 0;
    width: 100% !important;
  }

  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row,
  .offcanvas-menu-wrapper .slicknav_nav a {
    padding: 10px 0;
    margin: 0;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-weight: 600;
    font-family: var(--primary-font);
    font-size: 15px;
  }

  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
  }

  .offcanvas-menu-wrapper .slicknav_nav .slicknav_row:hover a {
    color: var(--primary-color);
  }

  .offcanvas-menu-wrapper .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
  }

  .nav-menu {
    display: none;
  }

  .top-option {
    display: none;
  }

  .gallery .gs-item {
    width: 100%;
    float: none;
  }

  .gallery .gs-item.grid-wide {
    width: 100%;
  }

  .about-text {
    height: auto;
    padding: 120px 70px 60px 70px;
  }

  .class-timetable {
    overflow-x: auto;
  }

  .chart-table {
    overflow-x: auto;
  }

  .blog-section .p-0 {
    padding: 15px !important;
  }

  .blog-section .sidebar-option {
    padding-left: 0;
  }

  .blog-item .bi-pic {
    float: none;
  }

  .blog-item .bi-text {
    height: auto;
    padding: 32px 30px 30px 30px;
  }

  .class-details-text .cd-trainer .cd-trainer-text {
    padding-top: 30px;
  }

  .sidebar-option {
    padding-left: 0;
    padding-top: 30px;
  }

  .chart-table {
    margin-bottom: 30px;
  }

  .table-controls {
    text-align: left;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .ss-text:after {
    display: none;
  }

  .ss-text {
    padding: 72px 60px;
    height: auto;
  }

  .class-item .ci-text:after {
    width: 750px;
  }

  .hs-slider .hs-item {
    height: 1000px;
    /* padding: 250px 0 150px; */
  }

  .hi-text h1 {
    font-size: 48px !important;
    line-height: normal;
  }

  .ts_slider.owl-carousel .owl-nav button {
    left: 0;
  }

  .ts_slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

  .hs-slider.owl-carousel .owl-nav button {
    left: 0;
  }

  .hs-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }

  .ss-pic img {
    height: auto;
  }

  .ss-text {
    margin-bottom: 20px;
  }

  .blog-item .bi-pic img {
    height: auto;
  }

  .blog-details-hero {
    height: auto;
    padding: 160px 0 100px;
  }

  .text-404 .search-404 {
    width: 100%;
  }

  .search-model-form input {
    width: 100%;
  }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
  .primary-btn.appoinment-btn {
    float: none;
    margin-top: 0;
  }

  .hi-text h1 {
    font-size: 25px !important;
    line-height: normal;
    margin-bottom:5px !important;
  }

  .team-title {
    margin-bottom: 20px;
  }

  .about-text {
    padding: 70px 15px 60px;
  }

  .blog-details-section .p-0 {
    padding: 15px !important;
  }

  .text-404 h1 {
    font-size: 160px;
  }

  .breadcrumb-text h2 {
    /* font-size: 38px; */
    padding-top: 40px;
  }

  .text-404 h1 {
    font-size: 80px;
  }

  .blog-details-text .blog-details-author {
    padding: 70px 15px 35px;
  }

  .search-model-form input {
    font-size: 28px;
  }
}

.hs-slider .hs-item .hi-text h1 strong,
.hs-slider.owl-carousel .owl-item.active .hs-item .hi-text h1 {
  font-weight: 700;
}

.darkSection h2,
.darkSection p {
  color: #fff !important;
}

.w-60 {
  max-width: 60%;
}

.mb-10 {
  margin-bottom: 10px;
}

.team-title {
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
  font-weight: 700;
}

.DasGym {
  background-color: #f5f5f5;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 100px;
  padding: 80px 80px 90px;
}

.team-intro-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.team-heading {
  color: #111;
  margin-bottom: 1rem;
}

.team-subtext {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.team-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 2s ease;
}

.team-image-wrap:hover .team-photo {
  transform: scale(1.03);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(33, 94, 207, 0.5) 100%
  );
  pointer-events: none;
}

.team-cta {
  margin-top: 1.5rem;
}

.partners-section {
  background: #fafdff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.partners-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner {
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.partner img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media screen and (max-width: 600px) {

  .partner img {
    max-width: 150px;
    filter: grayscale(100%);
    transition: 0.3s ease;
    cursor: pointer;
    -webkit-filter: grayscale(1) !important;
  }

  .partner img.active {
    -webkit-filter: grayscale(0%) !important;
  }

  .partners-logos {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

}


.partner:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partner:hover img {
  transform: scale(1.05);
}

.hof-subtext {
  font-size: 1.25rem;
  font-weight: 400;
  color: #f1f1f1;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* =========================
   ELEVATE Call To Action Section
   ========================= */

.ELEVATE-cta-section {
  background: #0d2d84;
  /* your brand’s deep blue */
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.ELEVATE-cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ELEVATE-cta-heading {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: #fff;
}

.ELEVATE-cta-heading span {
  color: #2ea8ff;
    font-family: 'Qaranta' !important;
  /* light blue accent for highlight */
}

.ELEVATE-cta-subtext {
  font-size: 1.25rem;
  color: #e5e7f0;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Subtle diagonal motion effect */
.ELEVATE-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: ELEVATEShineMove 6s infinite linear;
  z-index: 1;
}

@keyframes ELEVATEShineMove {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ELEVATE-cta-section {
    padding: 6rem 1.5rem;
  }
  .ab-icon-box img {
    width: 70px !important;
  }
  .darkSection {
    padding: 120px 20px 50px !important;
  }

  .ELEVATE-cta-heading {
    font-size: 3rem;
  }

  .ELEVATE-cta-subtext {
    font-size: 1.1rem;
  }

  .about-video {
    height: 400px;
  }

  .ts_slider.owl-carousel .owl-nav button {
    top: 100%;
  }

  .team-title {
    flex-direction: column;
    align-items: start;
    margin-bottom: 70px;
  }

  .w-60 {
    max-width: 100%;
  }

  .section-title {
    margin-bottom: 20px;
    text-align: center;
  }

  .bs-text h2 {
    font-size: 35px;
  }

  .aboutus-section {
    padding: 80px 15px;
  }

  .aboutus-section .row:nth-child(2),
  .aboutus-section .row:nth-child(4) {
    flex-direction: column-reverse;
  }

  .aboutus-section .row:nth-child(2) .about-text {
    padding: 50px 0px;
  }

  .about-text {
    padding: 120px 0px 50px;
  }

  .team-intro-section {
    padding: 80px 0;
  }
}

.ELEVATE_btn {
  background: #fff;
  color: var(--primary-color);
}

.ELEVATE_btn:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

/* =========================
   ELEVATE Footer Section
   ========================= */

.elevate-footer {
  background: #f8f8f8;
  color: #111;
  font-family: "Inter", sans-serif;
  position: relative;
}

.elevate-footer-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.elevate-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 2rem;
  position: relative;
}

.elevate-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.elevate-footer-block h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #0d2d84;
}

.elevate-footer-block p,
.elevate-footer-block a {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.elevate-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elevate-footer-links li {
  margin-bottom: 0.5rem;
}

.elevate-footer-links a:hover {
  color: #0d2d84;
  text-decoration: underline;
}

/* Social Links */
.elevate-social-links a {
    color: #555;           /* Default icon color */
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}

.elevate-social-links a:hover {
    color: #0069ff;       /* Highlight on hover */
    transform: translateY(-2px);
}


/* Footer Bottom */
.elevate-footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.elevate-footer-bottom a {
  color: #0d2d84;
  font-weight: 600;
  text-decoration: none;
}

.elevate-footer-bottom a:hover {
  text-decoration: underline;
}

/* Back to Top Button */
.elevate-backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0d2d84;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100;
}

.elevate-backtotop:hover {
  background: #2ea8ff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .elevate-footer-content {
    padding: 3rem 1.5rem 5rem;
  }

  .elevate-footer-bottom {
    flex-direction: column;
  }

  .elevate-footer-links.d-flex {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .mobileHidden {
    display: none;
  }
  .ab-icon-box {
    text-align: left !important;
  }
}

/*.ml-20 {*/
/*  margin-left: 20px;*/
/*}*/

#bar1 span,
#bar2 span,
#bar3 span {
  background: var(--primary-color) !important;
}

.about-icons {
  margin-top: 40px;
}

.ab-icon-box {
  text-align: center;
  color: #ffffff;
  margin-bottom: 35px;
}

.ab-icon-box span[class^="flaticon-"] {
  font-size: 32px;
  color: #000;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  transition: 0.3s ease;
}

.ab-icon-box img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
}

.ab-icon-box:hover span,
.ab-icon-box:hover img {
  transform: scale(1.12);
  color: #0069ff;
}

.ab-icon-box h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 768px) {
  .ab-icon-box {
    text-align: center !important;
  }

  .ab-icon-box span[class^="flaticon-"],
  .ab-icon-box img {
    width: 70px;
    height: 70px;
    padding: 8px;
    font-size: 26px;
  }

  .ab-icon-box h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .about-video {
    height: 600px;
  }
  .Unsere .row:nth-child(2),
  .Unsere .row:nth-child(4) {
    flex-direction: column-reverse;
  }
  .Unsere .row {
    padding: 0 70px;
  }
  .Unsere-text {
    padding: 120px 0 60px 0 !important;
  }

  .Unsere .row:nth-child(2) .about-text {
    padding: 50px 0px;
  }
}

@media (min-width: 992px) {
  .ab-icon-box span[class^="flaticon-"],
  .ab-icon-box img {
    width: 90px;
    height: 90px;
    padding: 12px;
  }
}

/* Left Animation */
.animate-left {
  transform: translateX(-35px); /* pehle -50 tha, ab subtle */
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.22, 1, 0.36, 1); /* slow + smooth */
}

.active-left {
  transform: translateX(0);
  opacity: 1;
}

/* Right Animation */
.animate-right {
  transform: translateX(35px);
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.active-right {
  transform: translateX(0);
  opacity: 1;
}

/* Zoom Animation */
.animate-zoom {
  transform: scale(0.85); /* pehle 0.5 → ab subtle */
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.22, 1, 0.36, 1); /* premium feel */
}

.active-zoom {
  transform: scale(1);
  opacity: 1;
}

/* Main row */
.gallery-row {
  display: flex;
  /* flex-wrap: wrap; */
  margin: 0;
  padding: 0;
  gap: 30px;
}

/* Each image wrapper */
.gallery-item {
  flex: 1 1 calc(33.33% - 2px); /* removes desktop spacing */
  overflow: hidden;
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  display: block; /* prevents tiny gaps */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.05) translateY(-6px);
}

/* ===== TABLET (2 per row) ===== */
@media (max-width: 991px) {
  .gallery-item {
    flex: 1 1 calc(50% - 2px);
  }
  .elevate-img {
  height: 50px !important;
  margin-top: -5px;
  }
  .elevate-text{
  font-size: 55px !important;
}
}

/* ===== MOBILE (1 per row, clean spacing) ===== */
@media (max-width: 576px) {
  .gallery-row {
    gap: 6px; /* increase spacing so images don't stick */
  }
 .ELEVATE-cta-heading {
    font-size: 2.6rem;
  }
    .elevate-img {
  height: 10px !important;
  margin-top: -15px !important;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .gallery-item img {
    height: 230px;
    border-radius: 8px;
  }
}

.ts-item {
  background-size: cover;
  background-position: center;
  height: 400px;
  width: auto;
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}

.gallery-main {
}

.img {
  width: 100%;
  height: 350px;
  margin: 10px 0;
  border-radius: 20px;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.slick-next:before,
.slick-prev:before {
  font-family: "FontAwesome";
  font-size: 20px;
  color: #ffffff;
}

.slick-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  background: var(--primary-color); 
  border-radius: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}


.slick-arrow:hover {
  background-color: #ffffff;
  color: #a7a7a7;
}

.slick-arrow:hover:before {
  color: #747474;
}


.slick-prev {
  left: -25px; 
}

.slick-next {
  right: -25px; 
}

.slick-prev {
  left: 1%;
}

.slick-next {
  right: 1%;
}

.slide-item {
  margin: 0 5px;
}
.crossfit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-nav {
    display: none;
}


.elevate-text {
  font-family: 'Qaranta' !important;
font-weight: 600;
letter-spacing: 3px;

    text-transform: uppercase;
    color: var(--primary-color);
}




/* ===========================
   ELEVATE Announcement Popup (SMOOTH)
   =========================== */

.elevate-overlay{
  position: fixed;
  inset: 0;

  /* ✅ keep in layout for smooth fade */
  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  padding: 18px;

  /* ✅ smooth show/hide */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.elevate-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* modal card */
.elevate-modal{
  width: min(820px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: clamp(18px, 3vw, 30px);

  /* ✅ smooth zoom + lift */
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    opacity 0.45s ease;
}

.elevate-overlay.is-open .elevate-modal{
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* close button */
.elevate-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease, background 0.12s ease;
}

.elevate-close:hover{
  transform: scale(1.04);
  background: rgba(0,0,0,0.03);
}

/* heading */
.elevate-title{
  margin: 6px 44px 18px 0;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  color: #111;
}

/* Replace with your logo font */
.elevate-logo-font{
  font-family: "YourLogoFontName", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* logos layout */
.elevate-logos{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 10px 0 22px;
}

.elevate-logo-box{
  background: #f7f7f8;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  place-items: center;
  min-height: 140px;
}

.elevate-logo-img{
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.elevate-arrow{
  font-size: 26px;
  font-weight: 800;
  opacity: 0.55;
}

/* button */
.elevate-btn{
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.elevate-btn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

/* mobile */
@media (max-width: 640px){
  .elevate-logos{
    grid-template-columns: 1fr;
  }
  .elevate-arrow{
    display: none;
  }
  .elevate-title{
    margin-right: 0;
  }
}


.cookie-bar{
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 0px);
  max-width: 1920px;
  background: linear-gradient(90deg, #2a6cce, #0050c8);
  color: #fff;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
}
.cookie-bar.is-open{ display:block; }

.cookie-bar-inner{
  padding: 10px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.cookie-text{ font-size:13px; opacity:.95; }
.cookie-btn{
  background:#fff;
  color:#111;
  border:0;
  border-radius:8px;
  padding:6px 16px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}



/* =========================
   PSWD-STYLE BOXED CTA
   ========================= */

.pswd-cta-wrap{
  padding: 42px 16px;              
  display: flex;
  justify-content: center;
}

.pswd-cta-box{
  width: 100%;
  max-width: 1050px;              
  background: #eef2f6;             
  border-radius: 22px;             
  padding: clamp(22px, 3.2vw, 40px);
  text-align: center;

  /* subtle border + shadow (premium) */
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pswd-cta-text{
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  max-width: 760px;                /* text ko tight/center feel */
  margin-left: auto;
  margin-right: auto;
}

.pswd-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 999px;            /* pill button */
  background: #0b0f2b;             
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;

  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.pswd-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  opacity: .96;
}

/* optional: blue version (just add class 'is-blue' to box) */
.pswd-cta-box.is-blue{
  background: #eaf3ff;
}

/* mobile */
@media (max-width: 640px){
  .pswd-cta-wrap{ padding: 28px 12px; }
  .pswd-cta-box{ border-radius: 18px; }
}

.coach-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-name {
    font-size: 24px;
    font-family: 'Inter';
    font-weight: 500;
    margin: 0px 0 10px;
}

.coach-role {
    font-size: 16px;
    color: #000;
    margin: 0 0 10px;
}

.coach-label {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter';
    margin: 26px 0 10px;
}

.coach-text {
    font-size: 14px;
    color: #444;
    margin: 0  0 10px;
}

.link {
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width : 958px) {
  .elevate-img{
    /* height: 35px !important; */
    margin-top: -13px !important;
  }
  
}

@media (max-width : 577px) {
  .elevate-img{
    height: 32px !important;
   
  }
  .team-top{
    height: auto !important;
  }
  .team-columns{
    display: block;
  }
  .team-col{
    width: 100%;
    margin-top: 40px;
  }
  
}

@media (max-width : 460px) {
  .elevate-img{
    height: 20px !important;
    margin-top: -8px !important;
   
  }
  
}

@media (max-width : 1024px) {
 .coach-card{
 width: 100%;
    
   
  }
  
}


.pricing-section{
  position: relative;
  overflow: hidden;
  padding: 10px 10px 80px;
  /* background: linear-gradient(180deg, #ffffff 0%, #fbfbff 45%, #ffffff 100%); */
  isolation: isolate;
}

/* soft decor blobs */
/* .pricing-section::before{
  content:"";
  position:absolute;
  inset:-20%;
  z-index:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(138,75,255,.10) 0 24%, transparent 25%),
    radial-gradient(circle at 85% 25%, rgba(255,90,166,.10) 0 24%, transparent 25%),
    radial-gradient(circle at 25% 85%, rgba(0,170,255,.08) 0 22%, transparent 23%),
    radial-gradient(circle at 80% 85%, rgba(255,196,66,.08) 0 22%, transparent 23%);
  filter: blur(0px);
  pointer-events:none;
} */

.pricing-container{
  width: min(1100px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* header */
.pricing-header{
  text-align:center;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.pricing-title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: .2px;
  color: #1f1f2e;
}

.pricing-intro{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(31,31,46,.80);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.7;
}

/* cards */
.pricing-card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(20,20,40,.08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
  margin-top: 18px;
  overflow: hidden;
}

.pricing-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 18px 18px 14px;

}

.pricing-card__title{
  margin:0;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 18px);
  letter-spacing: .6px;
  color:#1f1f2e;
  text-transform: uppercase;
}

/* badges */
.pricing-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color:#fff;
  background: #2a6cce !important;
  box-shadow: 0 10px 24px rgba(138,75,255,.18);
  white-space: nowrap;
}


/* tables */
.pricing-table-wrap{
  padding: 0 14px 14px;
}

.pricing-table{
  width:100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.65);
  border-radius: 18px;
  overflow:hidden;
}

.pricing-table thead th{
  text-align:left;
  padding: 14px 14px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .3px;
  color: rgba(31,31,46,.85);
  background: rgba(31,31,46,.04);
  border-bottom: 1px solid rgba(20,20,40,.08);
}

.pricing-table tbody td{
  padding: 14px 14px;
  font-size: 14px;
  color: rgba(31,31,46,.85);
  border-bottom: 1px solid rgba(20,20,40,.06);
  vertical-align: top;
}

.pricing-table tbody tr:hover{
  background: rgba(16, 95, 243, 0.06);
}

.pricing-table tbody tr:last-child td{
  border-bottom: 0;
}

.col-price{
  width: 170px;
  white-space: nowrap;
  font-weight: 900;
  color: #1f1f2e;
}

/* CTA */
.pricing-cta{
  text-align:center;
  margin-top: 26px;
}

.pricing-cta-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration:none;
  color:#fff;
  font-weight: 900;
  background: linear-gradient(180deg, #ff5aa6 0%, #8a4bff 100%);
  box-shadow: 0 18px 44px rgba(138,75,255,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.pricing-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(138,75,255,.28);
  filter: brightness(1.03);
}

.pricing-footnote{
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(31,31,46,.60);
}


@media (max-width: 900px){
  .col-price{ width: 30%; }
}


@media (max-width: 720px){
  .pricing-table-wrap{
    padding: 0 12px 12px;
  }
  .pricing-table{
    /*display:block;*/
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }
  .pricing-table thead th,
  .pricing-table tbody td{
    padding: 12px 3px;
    font-size: 11px;
  }

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .pricing-cta-btn{ transition:none; }
}

.extra-btn{
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 600px;  
  width: 100%;
}

/* Mobile fix */
@media (max-width: 768px){
  .extra-btn{
    /*flex-direction: column; */
    gap: 12px;
  }

  .extra-btn button,
  .extra-btn a{
    width: 90%; 
    text-align: center;
    font-size: 14px;
  }
  .contact-text{
    font-size: 28px !important;
  }
}


.contact-btn {
  display: flex;
  padding:20px ;
  width: 100%;
  justify-content: center; 
  align-items: center;     
}
@media (max-width: 1040px){
.nav-menu ul{
  font-size: 0;
  padding-left: 0 !important ;
}

}
@media (max-width: 1008px){
  .nav-menu{
    display: none;

  }
  .mobileHidden{
    display: none;

  }
  .canvas-open {
        position: absolute;
        right: 40px;
        top: 61px;
        font-size: 22px;
        width: 30px;
        height: 30px;
        color: #000;
        border: 1px solid #000;
        border-radius: 2px;
        line-height: 29px;
        text-align: center;
        z-index: 1;
        display: block;
        cursor: pointer;
    }
}
@media screen and (min-width:1010px) and (max-width:1375px){
.nav-menu ul{
  width: 100% !important;
}


}


.team-col-grid.extra-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px; 
    align-items: stretch;
    margin-top:180px;
}


.team-col-grid.extra-grid .coach-card{
  margin: 0 auto;
    height: 95%;
    display: flex;
    flex-direction: column;
}


.team-col-grid.extra-grid .coach-content{
    flex: 1;
}


.team-col-grid.extra-grid .coach-photo-wrap{
    max-height: 460px;
    overflow: hidden;
}

/* ===== MOBILE ===== */
@media (max-width: 900px){
    .team-col-grid.extra-grid{
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}
.cs-item{
    text-align: center;
}

.cs-item .icon-wrap{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all .25s ease;
}

.cs-item .icon-image{
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    transition: filter .25s ease;
}


.cs-item:hover .icon-wrap{
    background-color: #0050c8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,80,200,.25);
}


.cs-item:hover .icon-wrap:not(.no-invert) .icon-image{
    filter: brightness(0) invert(1);
}


.cs-item:hover .icon-wrap.no-invert .icon-image{
    filter: none;
}

/* Mobile: 1 column (same as your current) */
@media (max-width: 767px) {
  .team-col-grid,
  .team-columns {
    display: flex;
    flex-direction: column;
  }
}

/* Tablet: 2 columns equal */
@media (min-width: 768px) and (max-width: 1024px) {
  .team-col-grid,
  .team-columns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 16px; /* optional */
  }

  /* Each item takes half width */
  .team-col-grid > *,
  .team-columns > * {
    width: calc(50% - 8px); /* gap ka half adjust */
  }
}


.height-card{
    height:auto !important
}

@media (min-width: 1008px) and (max-width: 1380px) {
header .col-lg-2 {
    max-width: 10%;
    flex: 0 0 9%;
}

header .col-lg-7
 {
    max-width: 73%;
    flex: 0 0 73%;
}
header .col-lg-3 {
    max-width: 18%;
    flex: 0 0 18%;
}
.nav-menu ul li a{
    font-size:12px !important;
}

}

@media (min-width: 968px) and (max-width: 1030px) {
.nav-menu ul li a{
    font-size:10px !important;
}

    
}
.myTabs {
    display: block;
    width: 100%;
}

#myTab li a {
    border-radius: 10px;
    border: 2px solid transparent;
}

#myTab li {
    margin: 0 0 15px;
}

#myTab li a.active {
    border: 2px solid #0069ff !important;
}
.articleBox h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.articleBox p {
    font-size: 20px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 16px;
}
.wkpdf{
        margin-top: 50px;
  background: #e4e6ea; 
  padding: clamp(40px, 6vw, 80px) 20px;
}

.wkpdf__wrap{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;

  padding: clamp(30px, 4vw, 60px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.wkpdf__title{
  margin: 0 0 clamp(20px, 3vw, 35px);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.wkpdf__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 14px 28px;
  border-radius: 14px;

  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 16px;

  text-decoration: none;
  white-space: nowrap; 
  transition: all .2s ease;
}

.wkpdf__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.wkpdf__btn:active{
  transform: translateY(0px);
}

.wkpdf__btn:focus-visible{
  outline: 3px solid rgba(0,0,0,.25);
  outline-offset: 4px;
}


.wkpdf__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
}


@media (max-width: 820px){
  .wkpdf__wrap{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .wkpdf__btn{
    width: 70%;
    max-width: 520px;
    margin: 6px auto 0;
    white-space: normal; 
    line-height: 1.2;
  }
}

@media (max-width: 420px){
  .wkpdf__wrap{
    padding: 16px;
    border-radius: 16px;
  }

  .wkpdf__btn{
    max-width: 70%;
    padding: 13px 14px;
    border-radius: 14px;
  }
}

p.hof-descs {
    text-align: left    ;
    margin: 0 0 0 5px;
    color: #555;
}
@media screen and (max-width: 768px){
  .hero_Desktop{
    display: none;
  }
}
@media screen and (min-width: 768px){
  .hero_mobile{
    display: none;
  }
}
.row.animate-zoom.fade-up.active-zoom.visible {
  margin-top: 20px !important;
}


@media only screen and (max-width: 768px) {
  .hi-text span {
    margin-bottom: 56px !important;
  }
  
  .hi-text h1 {
    margin-bottom: 18px !important;
    line-height: 1.2 !important;
  }
  .elevate-text {
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}
  .hi-text .primary-btn {
    /*margin-top: 0 !important;*/
    /*margin-bottom: 18px !important;*/
  }
}

.header-right-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    height: 100%;
}

.header-social-nav {
    display: flex;
    align-items: center;
}

.header-social-nav ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-social-nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-social-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-size: 25px;
    color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-social-nav ul li a:hover {
    color:  #2a6cce; 
}

.header-social-nav ul li a::after {
    position: absolute;
    left: 25%;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: #2a6cce; 
    content: "";
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-social-nav ul li a:hover::after {
    width: 22px;
}

.header-social-nav ul li a i {
    line-height: 1;
}

.top-option {
    display: flex;
    align-items: center;
}

.get-started-btn {
    white-space: nowrap;
}

@media (max-width: 1630px) {
    .header-right-area {
        gap: 10px;
    }

    .header-social-nav ul li a {
        min-width: 40px;
        height: 40px;
        font-size: 20px !important;
        padding: 0 12px;
    }

    .get-started-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .mobileHidden {
        display: none !important;
    }

    .header-right-area {
        justify-content: flex-end;
        gap: 6px;
        padding-right: 24px; 
    }

    .header-social-nav {
        display: flex !important;
    }

    .header-social-nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .header-social-nav ul li a {
        min-width: 38px;
        height: 38px;
        font-size: 16px;
        padding: 0 10px;
    }

    .header-social-nav ul li a::after {
        bottom: 6px;
    }

    .canvas-open {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99;
    }
}

@media (max-width: 767px) {
    .header-right-area {
        gap: 2px;
        padding-right: 42px;
    }

    .header-social-nav ul li a {
        min-width: 34px;
        height: 34px;
        font-size: 15px;
        padding: 0 8px;
    }

    .header-social-nav ul li a::after {
        width: 0;
    }

    .header-social-nav ul li a:hover::after {
        width: 18px;
    }

    .logo img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 991px) {

    .header-social-nav ul li a {
        min-width: 46px !important;
        height: 46px !important;
        font-size: 23px !important; 
        padding: 0 !important;
        border-radius: 8px;
    }

    .header-social-nav ul li a i {
        font-size: 20px !important; 
    }
}

@media (max-width: 575px) {

    .header-social-nav ul li a {
        min-width: 44px !important;
        height: 44px !important;
        font-size: 19px !important;
    }

    .header-social-nav ul li a i {
        font-size: 19px !important;
    }
}

@media(max-width:1620px){
    .nav-menu ul li a{
        font-size:13px;
    }  
}
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    background: #fff;
    transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease, box-shadow 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-section.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-section.navbar-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-section.navbar-scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


.hero-section {
    position: relative;
    z-index: 1;
}


body {
    padding-top: 110px; 
}

@media (max-width: 991px) {
    body {
        padding-top: 85px;
    }
header#mainHeader
 {
    z-index: 999;
}


}