
/* =================== */
/* CONTACT PAGE*/
/* ====================== */

/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

/* Paragraphs, links, buttons, UI text */
body {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: inherit;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

/* Buttons & CTAs */
button,
input[type="button"],
input[type="submit"],
a.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}


/* Removes bullets from the main nav and dropdowns */
nav ul, 
nav li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* If your dropdown uses a specific class, target it directly */
.dropdown-menu {
    list-style: none;
}
.main-header {
  background: #011e3c;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a  {
  color: #ff0336;
  
  font-size: 24px;
  font-weight: bold;
  align-items: center;
 justify-content: center;
  display: flex;
  text-decoration: none;
  }


/* NAV */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #222;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
  
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
 
  transform: translateY(0);
  
}

/* LOGIN */
.login-btn {
  background: #ff3b3f;
  padding: 8px 18px;
  border-radius: 5px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    display: none;
    
  }

  .navbar.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
  
    transform: none;
    display: none;
    background: #222;
    text-decoration: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    
  }
}

/* ================banner=============== */
/* Banner Section */
.contact-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../img/blog1.jpeg ban.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* dark overlay */
  z-index: 1;
}

/* Banner Content */
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1.2s ease forwards;
}

/* Main Title */
.main-title {
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.main-title span {
  color: #ff0336; /* red color for US */
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 15px;
  font-size: 16px;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs a:hover {
  color: ff0336;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 40px;
  }
  .breadcrumbs {
    font-size: 14px;
  }
}

/* =============common=========== */

/* ===== Common Banner ===== */
/* ===== Reusable Page Banner ===== */
.page-banner {
  width: 100%;
  height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Banner title */
.page-banner h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* =================== */




/* =================contact===================== */
/* CONTACT */
/* ======================================== */
/* CONTACT */

.contact{
    padding:110px 8%;
    background:#0b0b0b;
    color:white;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:60px;
}

/* INFO BOX */
.info-box{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.info-box i{
    font-size:22px;
    color:#ff0336;
    margin-right:15px;
}

/* MAP */
.map{
    width:100%;
    height:260px;
    border:none;
    border-radius:12px;
    margin-top:20px;
}

/* FORM */
.contact-form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    background:#151515;
    border:none;
    padding:14px;
    margin-bottom:15px;
    color:white;
    border-radius:8px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid #ff0336;
}

/* BUTTON */
.contact-form button{
    padding:14px;
    border:none;
    background:#ff0336;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#fff;
}

/* MOBILE */
@media(max-width:900px){

.contact-container{
    grid-template-columns:1fr;
}

}
.contact{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.contact.show{
    opacity:1;
    transform:translateY(0);
}

/* ===============FOOTER==================== */
/* ==================================================== */
.footer{
  background:#011e3c;
  color:#fff;
  padding-top:70px;
}

.footer-container{
  width:90%;
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.footer-logo{
  font-size:28px;
  margin-bottom:15px;
}

.footer-logo span{
  color:#ff0336;
}

.footer-box p{
  color:#aaa;
  line-height:1.6;
}

/* Links */
.footer-box h3{
  margin-bottom:20px;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  text-decoration:none;
  color:#aaa;
  transition:.3s;
}

.footer-box ul li a:hover{
  color:#ff0336;
  padding-left:5px;
}

/* Social Icons */
.social-icons{
  margin-top:20px;
}

.social-icons a{
  display:inline-block;
  height:40px;
  width:40px;
  line-height:40px;
  text-align:center;
  background:#111;
  border-radius:50%;
  margin-right:10px;
  color:#fff;
  transition:.3s;
}

.social-icons a:hover{
  background:#ff0336;
  transform:translateY(-5px);
}

/* Newsletter */
.newsletter{
  display:flex;
  margin-top:15px;
}

.newsletter input{
  flex:1;
  padding:12px;
  border:none;
  outline:none;
}

.newsletter button{
  padding:12px 18px;
  border:none;
  background:#ff0336;
  color:#fff;
  cursor:pointer;
  transition:.3s;
}

.newsletter button:hover{
  background:#ff0336;
}

/* Bottom */
.footer-bottom{
  border-top:1px solid #222;
  margin-top:50px;
  text-align:center;
  padding:20px 0;
  color:#aaa;
}

/* Responsive */
@media(max-width:768px){
  .newsletter{
    flex-direction:column;
  }

  .newsletter button{
    margin-top:10px;
  }
}

/* ===================back to top==================== */
/* Back To Top */

#topBtn{
  position:fixed;
  bottom:90px;
  right:30px;
  height:50px;
  width:50px;
  border:none;
  border-radius:50%;
  background:#ff0336;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  display:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.4);
  transition:.3s;
  z-index:999;
}

#topBtn:hover{
  background:#ff0336;
  transform:translateY(-5px);
}


/* WhatsApp */

.whatsapp{
  position:fixed;
  bottom:30px;
  right:30px;
  height:55px;
  width:55px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  text-align:center;
  line-height:55px;
  font-size:26px;
  box-shadow:0 5px 15px rgba(0,0,0,0.4);
  transition:.3s;
  z-index:999;
}

.whatsapp:hover{
  transform:scale(1.1);
}


/* =================== */
/* ADMIN PAGE*/
/* ====================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI;
}

body{
background:#0e0e0e;
color:white;
}

.container{
display:flex;
}

/* SIDEBAR */
.sidebar{
width:250px;
height:100vh;
background:#111;
padding:30px 20px;
position:fixed;
transition:.3s;
}

.logo-sidebar{
color:#ff0336;
margin-bottom:40px;
}

.sidebar ul{
list-style:none;
}

.sidebar li{
padding:15px;
margin:10px 0;
border-radius:10px;
cursor:pointer;
transition:.3s;
}

.sidebar li:hover,
.active{
background:#ff0336;
color:black;
}

/* MAIN */
.main{
margin-left:250px;
width:100%;
padding:30px;
transition:.3s;
}

/* TOPBAR */
.topbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.left{
display:flex;
align-items:center;
gap:15px;
}

.toggle{
cursor:pointer;
font-size:20px;
color:#ff0336;
}

.right{
display:flex;
align-items:center;
gap:20px;
}

.right img{
width:40px;
border-radius:50%;
}

/* CARDS */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:30px;
}

.card{
background:#161616;
padding:25px;
border-radius:15px;
text-align:center;
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:28px;
color:#ff0336;
margin-bottom:10px;
}

/* CHART */
.chart-box{
background:#161616;
padding:20px;
border-radius:15px;
margin-bottom:30px;
}

/* MEMBERS */
.members{
background:#161616;
padding:20px;
border-radius:15px;
}

.title{
display:flex;
justify-content:space-between;
margin-bottom:20px;
}

button{
background:#ff0336;
border:none;
padding:10px 16px;
border-radius:8px;
cursor:pointer;
font-weight:bold;
}

table{
width:100%;
border-collapse:collapse;
}

th,td{
padding:12px;
border-bottom:1px solid #000;
}

.active-member{
color:#00e676;
}

/* MODAL */
.modal{
position:fixed;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
display:none;
justify-content:center;
align-items:center;
}

.modal-content{
background:#000;
padding:30px;
border-radius:12px;
display:flex;
flex-direction:column;
gap:10px;
width:300px;
}

.modal input{
padding:10px;
background:#111;
border:none;
color:white;
}

/* =========================== */
    /* HOME1 */
    /* ========================================== */
    .gx3-hero{
height:100vh;
position:relative;
overflow:hidden;
}

.gx3-hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.gx3-hero-text{
position:absolute;
top:50%;
left:10%;
transform:translateY(-50%);
color:#fff;
}

.gx3-hero-text h1{
font-size:90px;
font-weight:900;
line-height:1;
}

.gx3-hero-text button{
margin-top:20px;
padding:14px 32px;
background:#ff2c2c;
border:none;
color:#fff;
}
/* =====================marquee================ */


.gx3-marquee {
  background: #ff2c2c;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.gx3-track {
  display: inline-block;
  padding: 20px 0;
  font-weight: 700;
  font-size: 22px;
  animation: gx3-scroll 12s linear infinite;
}

/* Smooth continuous scroll */
@keyframes gx3-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============bento=================== */
:root {
    --gym-orange: #ff0336;
    --gym-white: #ffffff;
}

.gym-gal-section {
    padding: 80px 20px;
    background-color: #011e3c; /* Dark modern background */
    color: var(--gym-white);
}

.gym-gal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gym-gal-header {
    text-align: center;
    margin-bottom: 50px;
}

.gym-gal-subtitle {
    color: var(--gym-orange);
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: bold;
}

.gym-gal-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-top: 10px;
    font-family: 'Impact', sans-serif;
}

/* Grid Layout */
.gym-gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gym-gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #222;
}

/* Specific Item Sizing */
.gym-gal-big { grid-column: span 2; grid-row: span 2; }
.gym-gal-tall { grid-row: span 2; }

.gym-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

/* Hover Effects */
.gym-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gym-gal-item:hover img { transform: scale(1.1); }
.gym-gal-item:hover .gym-gal-overlay { opacity: 1; }

.gym-gal-overlay span {
    font-weight: bold;
    text-transform: uppercase;
    border-left: 3px solid var(--gym-orange);
    padding-left: 10px;
}

/* Animation Classes */
.gym-gal-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.gym-gal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .gym-gal-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
}

@media (max-width: 600px) {
    .gym-gal-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gym-gal-big, .gym-gal-tall { grid-column: span 1; grid-row: span 1; }
}

/* =========================FITNESS=================== */
/* AI SECTION */
.gx4-ai-section{
padding:100px 20px;
background:#011e3c;
text-align:center;
color:#fff;
}

.gx4-title{
font-size:44px;
margin-bottom:10px;
}

.gx4-sub{
color:#aaa;
margin-bottom:40px;
}

.gx4-ai-box{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.gx4-ai-box select,
.gx4-ai-box button{
padding:14px 20px;
border:none;
border-radius:8px;
font-size:16px;
}

.gx4-ai-box select{
background:#1c1c1c;
color:#fff;
min-width:200px;
}

.gx4-ai-box button{
background:#ff2c2c;
color:#fff;
cursor:pointer;
transition:.3s;
}

.gx4-ai-box button:hover{
transform:scale(1.05);
}

/* RESULT CARD */
.gx4-result{
margin-top:50px;
max-width:700px;
margin-inline:auto;
background:#161616;
padding:30px;
border-radius:12px;
display:none;
animation:gx4Fade .6s ease;
}

@keyframes gx4Fade{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}
/* =========section=========== */
:root {
    --gym-com-orange: #ff0336;
    --gym-com-bg: #000;
    --gym-com-card: #2a2a2a;
    --gym-com-white: #ffffff;
}

.gym-com-section {
    background-color: var(--gym-com-bg);
    padding: 80px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--gym-com-white);
    overflow: hidden;
}

.gym-com-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Image Box */
.gym-com-image-box img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Content Area */
.gym-com-subtitle { color: var(--gym-com-orange); font-weight: bold; text-transform: uppercase; font-size: 14px; }
.gym-com-main-title { font-size: clamp(24px, 4vw, 36px); margin: 15px 0; font-weight: 800; line-height: 1.2; }
.gym-com-text { color: #ccc; font-size: 16px; margin-bottom: 30px; line-height: 1.6; }

/* Badges */
.gym-com-badges { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 40px; }
.gym-com-badge {
    background: var(--gym-com-card);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.gym-com-badge span { color: var(--gym-com-orange); margin-right: 8px; font-weight: bold; }

/* Stats Card */
.gym-com-stats-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.gym-com-stats-label { color: var(--gym-com-orange); font-weight: bold; font-size: 12px; }
.gym-com-stats-number { font-size: 48px; margin: 5px 0; font-weight: 900; }
.gym-com-stats-desc { font-size: 14px; color: #666; }

.gym-com-stats-right img {
    height: 120px;
    width: auto;
    position: absolute;
    right: 20px;
    bottom: 0;
}

/* Button */
.gym-com-btn {
    background: var(--gym-com-orange);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.gym-com-btn:hover { transform: scale(1.05); }

/* Animation Setup */
.gym-com-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.gym-com-visible { opacity: 1; transform: translateY(0); }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gym-com-container { grid-template-columns: 1fr; text-align: center; }
    .gym-com-badges { justify-content: center; }
    .gym-com-action { text-align: center; }
    .gym-com-stats-card { max-width: 500px; margin: 0 auto 40px; }
}
/* ==================ABOUT PAGE==================== */
/* ========================================================= */

/* ================Aboutus in=============== */
/* ======================Aboutus======================== */


.about-section {
  padding: 80px 0;
  background: #000;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* QUOTE BOX */
.quote-box {
  position: absolute;
  bottom: -50px;
  left: 40px;
  background: #fff;
  padding: 25px 30px;
  max-width: 300px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.quote-box span {
  font-size: 40px;
  color: #ff0033;
  font-weight: bold;
}

.quote-box p {
  font-style: italic;
  margin-top: 10px;
  color: #000;
}

/* CONTENT */
.about-content .badge {
  display: inline-block;
  background: #ff0033;
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.about-content h2 em {
  font-style: italic;
  font-weight: 600;
}

.about-content .intro {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.about-content .desc {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* FOUNDER */
.founder .signature {
  font-family: cursive;
  font-size: 26px;
  color: #fff;
}

.founder p {
  margin-top: 5px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .quote-box {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }
}

/* ===============================
   GYM STATS SECTION (UNIQUE)
================================ */

.gym-stats-section {
  background: #011e3c;
  padding: 80px 8%;
}

.gym-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gym-stat-box {
  background: #000;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: gymStatFade 0.8s ease forwards;
}

.gym-stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 0, 0, 0.2), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.gym-stat-box:hover::before {
  transform: translateX(100%);
}

.gym-stat-box i {
  font-size: 40px;
  color: #ff2e2e;
  margin-bottom: 15px;
  animation: gymIconPop 1s ease;
}

.gym-stat-box h3 {
  font-size: 38px;
  margin-bottom: 8px;
}

.gym-stat-box p {
  color: #aaa;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* animations */
@keyframes gymStatFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gymIconPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* responsive */
@media (max-width: 992px) {
  .gym-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gym-stats-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   GYM MISSION & VISION (UNIQUE)
================================ */

.gym-mv-section {
  background: #111;
  padding: 90px 8%;
}

.gym-mv-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.gym-mv-card {
  background: #181818;
  padding: 50px 35px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: gymMVFade 0.9s ease forwards;
}

.gym-mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 46, 46, 0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.gym-mv-card:hover::before {
  transform: translateX(100%);
}

.gym-mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 46, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gymIconZoom 1s ease;
}

.gym-mv-icon i {
  font-size: 34px;
  color: #ff2e2e;
}

.gym-mv-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.gym-mv-card p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
}

/* animations */
@keyframes gymMVFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gymIconZoom {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* responsive */
@media (max-width: 768px) {
  .gym-mv-container {
    grid-template-columns: 1fr;
  }
}




/* ================================ */

/* ============================card====================== */
/* Section */
.classes-section {
  padding: 80px 20px;
  background: #000;
  font-family: "Poppins", sans-serif;
}

/* Title */
.section-title {
  text-align: center;
  
  margin-bottom: 60px;
}

.section-title .tag {
  background: #ff0033;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.section-title h2 {
  font-size: 36px;
  margin: 15px 0;

}

.section-title p {
  color: #777;
}

/* Grid */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.class-card {
  background: #011e3c;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.class-card:hover {
  transform: translateY(-12px);
}

/* Image */
.class-img {
  overflow: hidden;
}

.class-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.class-card:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

/* Content */
.class-info {
  text-align: center;
  padding: 25px;
  position: relative;
}

/* Icon */
.class-info .icon {
  width: 70px;
  height: 70px;
  background: #ff0033;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: -60px auto 15px;
  transition: 0.4s ease;
  border: 6px solid #fff;
}

/* Icon Hover Change */
.class-card:hover .icon {
  background: #000;
  color: #ff0033;
  transform: rotate(360deg);
}

.class-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.class-info p {
  font-size: 14px;
  color: #777;
}

/* Time */
.time {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: #ff0033;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .classes-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================== */

/* =====================Video section================== */
/* HERO SECTION */
.hero-video {
  position: relative;
  min-height: 100vh;
  background: url("../img/video\ back.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

/* TEXT */
.hero-content h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  color: #ddd;
  max-width: 450px;
  margin-bottom: 30px;
}

.hero-btn {
  background: #ff0033;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* VIDEO BOX */
.hero-video-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.hero-video-box img {
  width: 100%;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.play-btn i {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #ff0033;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.play-btn:hover i {
  transform: scale(1.15);
  background: #ff0033;
  color: #fff;
}

/* FADE ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.hero-content.fade-up {
  animation-delay: 0.4s;
}

.hero-video-box.fade-up {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-box {
  position: relative;
  width: 80%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-box iframe,
.video-box video {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: auto auto 30px;
  }
}
/* =========================== */
/* ===============================
   WHY CHOOSE US - GYM (UNIQUE)
================================ */

.gym-whyus-section {
  background: #011e3c;
  padding: 90px 8%;
}

.gym-whyus-header {
  text-align: center;
  margin-bottom: 60px;
  animation: gymWhyFade 0.8s ease;
}

.gym-whyus-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

.gym-whyus-header p {
  color: #bbb;
  font-size: 16px;
}

.gym-whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.gym-whyus-card {
  background: #000;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  animation: gymWhyUp 1s ease forwards;
}

.gym-whyus-card i {
  font-size: 38px;
  color: #ff0336;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.gym-whyus-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.gym-whyus-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* hover effects */
.gym-whyus-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(255, 46, 46, 0.2);
}

.gym-whyus-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* animations */
@keyframes gymWhyUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gymWhyFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* responsive */
@media (max-width: 992px) {
  .gym-whyus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gym-whyus-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   MEET OUR TRAINERS - GYM
================================ */

.gym-trainers-section {
  background: #011e3c;
  padding: 90px 8%;
}

.gym-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gym-section-header h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}

.gym-section-header p {
  color: #bbb;
}

.gym-trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.gym-trainer-card {
  text-align: center;
  color: #fff;
  animation: gymFadeUp 0.9s ease;
}

.gym-trainer-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gym-trainer-img img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.gym-trainer-social {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transition: 0.5s;
}

.gym-trainer-social i {
  color: #fff;
  font-size: 18px;
  background: #ff0336;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.gym-trainer-img:hover img {
  transform: scale(1.1);
}

.gym-trainer-img:hover .gym-trainer-social {
  opacity: 1;
}

.gym-trainer-card h4 {
  margin-top: 15px;
  font-size: 20px;
}

.gym-trainer-card span {
  color: #ff0336;
  font-size: 14px;
}

/* responsive */
@media (max-width: 992px) {
  .gym-trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gym-trainers-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   AUTO TESTIMONIAL SLIDER - GYM
================================ */

.gym-auto-testimonial {
  background: #000;
  padding: 90px 8%;
  overflow: hidden;
}

.gym-testimonial-slider {
  overflow: hidden;
  position: relative;
}

.gym-testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: gymTestimonialScroll 20s linear infinite;
}

.gym-testimonial-slider:hover .gym-testimonial-track {
  animation-play-state: paused;
}

.gym-testimonial-card {
  min-width: 350px;
  background: #011e3c;
  padding: 35px 30px;
  border-radius: 10px;
  color: #fff;
}

.gym-testimonial-card i {
  color: #ff0336;
  font-size: 28px;
  margin-bottom: 15px;
}

.gym-testimonial-card p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.gym-testimonial-card h4 {
  font-size: 18px;
}

.gym-testimonial-card span {
  color: #ff0336;
  font-size: 14px;
}

/* animation */
@keyframes gymTestimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* responsive */
@media (max-width: 768px) {
  .gym-testimonial-card {
    min-width: 280px;
  }
}

/* ======================BLOG=PAGE===================== */
/* ===================================== */
/* ===============================
   GYM BLOG LAYOUT (UNIQUE)
================================ */

.gym-blog-wrapper {
  display: flex;
  gap: 40px;
  background-color: #000;
  color: #fff;
  padding: 60px 8%;
}

/* LEFT CONTENT */
.gym-blog-left {
  flex: 3;
}

.gym-blog-card {
  animation: gymFadeUp 0.8s ease;
  
}

.gym-blog-image img {
  width: 100%;
  border-radius: 6px;
  
}

.gym-blog-meta {
  margin: 15px 0;
  font-size: 14px;
  color: #fff;
  display: flex;
  gap: 20px;
}

.gym-blog-meta i {
  color: #ff0336;
  margin-right: 6px;
}

.gym-blog-title {
  font-size: 30px;
  margin: 15px 0;
}

.gym-blog-text {
  color: #fff;
  line-height: 1.7;
}

.gym-blog-btn {
  display: inline-block;
  margin-top: 20px;
margin-bottom: 30px;
  background: #ff0336;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.gym-blog-btn:hover {
  background: #000;
}

/* RIGHT SIDEBAR */
.gym-blog-right {
  flex: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.gym-side-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  animation: gymFadeUp 1s ease;
}

.gym-side-box h3 {
  margin-bottom: 20px;
  position: relative;
  color: #000;
}

.gym-side-box h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ff0336;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* SEARCH */
.gym-side-box input {
  width: 80%;
  padding: 10px;
  border: 1px solid #ddd;
}

.gym-side-box button {
  width: 18%;
  padding: 10px;
  border: none;
  background: #ff0336;
  color: #fff;
  cursor: pointer;
}

/* CATEGORY */
.gym-category-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
  color: #000;
}

.gym-category-list li:hover {
  color: #ff0336;
}

/* TAGS */
.gym-tag-list a {
  display: inline-block;
  margin: 6px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.gym-tag-list a:hover {
  background: #ff0336;
  color: #fff;
}

/* ANIMATION */
@keyframes gymFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gym-blog-wrapper {
    flex-direction: column;
  }
  .gym-blog-right {
    position: relative;
    top: 0;
  }
}
/* ================BMI==================== */
.gym-bmi-section {
  background: #000;
  padding: 90px 8%;
  text-align: center;
}

.gym-bmi-box {
  max-width: 400px;
  margin: auto;
}

.gym-bmi-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #1a1a1a;
  border: none;
  color: #fff;
  border-radius: 6px;
}

.gym-bmi-box button {
  width: 100%;
  padding: 14px;
  background: #ff0336;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}

#gymBmiResult {
  margin-top: 20px;
  color: #ff0336;
}

/* ================SERVICE PAGE=================== */
/* ===============================
   FAQ SECTION - GYM
================================ */

.gym-faq-section {
  background: #000;
  padding: 90px 8%;
}

.gym-faq-container {
  max-width: 800px;
  margin: auto;
}

.gym-faq-item {
  background: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.gym-faq-item input {
  display: none;
}

.gym-faq-item label {
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

.gym-faq-item label i {
  transition: 0.3s;
}

.gym-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 20px;
}

.gym-faq-content p {
  color: #ccc;
  padding-bottom: 20px;
}

.gym-faq-item input:checked ~ .gym-faq-content {
  max-height: 150px;
}

.gym-faq-item input:checked + label i {
  transform: rotate(180deg);
}

/* ===============================
   CTA SECTION - GYM
================================ */

.gym-cta-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url("../img/bredcumbs-1.png") center/cover no-repeat;
  padding: 100px 8%;
  text-align: center;
}

.gym-cta-content {
  color: #fff;
  animation: gymFadeUp 1s ease;
}

.gym-cta-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.gym-cta-content p {
  color: #ddd;
  margin-bottom: 30px;
}

.gym-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0336;
  padding: 14px 32px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.gym-cta-btn:hover {
  background: #fff;
  color: #000;
}

/* ======================CLASS=============== */
.gym-schedule-section {
  background: #011e3c;
  padding: 90px 8%;
}

.gym-schedule-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: auto;
  color: #fff;
}

.gym-schedule-table div {
  padding: 15px;
  border-bottom: 1px solid #222;
}
/* ==========PRICE================== */
.gym-pricing-section {
  background: #0c0c0c;
  padding: 90px 8%;
}

.gym-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gym-price-card {
  background: #181818;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  transition: 0.4s;
}

.gym-price-card.active {
  border: 2px solid #ff0336;
  transform: scale(1.05);
}

.gym-price-card h2 {
  color: #ff0336;
}

.gym-price-btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff0336;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
}


/* =======transformation=============== */
/* ===== TRANSFORMATION ===== */

.gx-transform{
    padding:80px 20px;
    background:#0f0f0f;
    color:#fff;
    text-align:center;
}

.gx-transform-title{
    font-size:42px;
    margin-bottom:50px;
}

/* SLIDER */
.gx-transform-slider{
    position:relative;
    max-width:1100px;
    margin:auto;
    overflow:hidden;
}

.gx-transform-track{
    display:flex;
    transition:0.6s ease;
}

/* CARD */
.gx-transform-card{
    min-width:100%;
    display:flex;
    gap:10px;
    position:relative;
}

.gx-transform-card img{
    width:50%;
    height:420px;
    object-fit:cover;
    border-radius:10px;
}

/* LABEL */
.gx-transform-label{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    background:#ff0033;
    padding:10px 25px;
    border-radius:30px;
    font-weight:600;
}

/* BUTTONS */
.gx-t-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#ff0033;
    border:none;
    color:#fff;
    font-size:26px;
    width:50px;
    height:50px;
    border-radius:50%;
    cursor:pointer;
    z-index:2;
}
.gx-slider{
    width:900px;
    margin:auto;
    overflow:hidden; /* 🔥 REQUIRED */
}

.gx-track{
    display:flex;
    transition:0.6s;
}

.gx-slide{
    min-width:100%; /* 🔥 REQUIRED */
}

.gx-slide img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.gx-t-prev{ left:10px; }
.gx-t-next{ right:10px; }

.gx-t-btn:hover{
    background:#fff;
    color:#000;
}
/* ================DRAG SLIDER================ */
.gx3-img-wrap{
position:relative;
width:80%;
margin:auto;
overflow:hidden;
}

.gx3-img-wrap img{
width:100%;
display:block;
}

.gx3-before{
position:absolute;
top:0;
left:0;
width:50%;
overflow:hidden;
}

.gx3-slider{
width:100%;
margin-top:20px;
}

/* =================RESPONSIVE=============== */
@media(max-width:900px){

.gx3-menu{
display:none;
}

.gx3-hero-text h1{
font-size:48px;
}

.gx3-bento{
grid-template-columns:1fr;
padding:40px;
}

}


/* ======SERVICE CARD================ */

/* ===== Services Section ===== */
.services {
  padding: 100px 8%;
  background: #0b0b0b;
  text-align: center;
}

.services .section-title {
  color: #fff;
  font-size: 42px;
  margin-bottom: 10px;
}

.services .section-subtitle {
  color: #aaa;
  margin-bottom: 60px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Card */
.service-card {
  background: #151515;
  border-radius: 20px;
  padding: 40px 25px;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(245, 185, 33, 0.2);
}

/* Icon */
.service-icon {
  font-size: 50px;
  color: #ff0336;
  margin-bottom: 20px;
  transition: transform 0.4s, color 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  color: #fff;
}

/* Title */
.service-card h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
}

/* Description */
.service-card p {
  color: #bbb;
  font-size: 16px;
  line-height: 1.5;
}

/* Scroll Animation */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* ==========service video new=========== */
/* =============service details=video sec==================== */

/* SECTION */
.grit-section{
    padding:80px 10%;
    background:#011e3c;
}

.grit-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* IMAGE */
.grit-image{
    position:relative;
    flex:1;
    min-width:320px;
    overflow:hidden;
}

.grit-image img{
    width:100%;
    display:block;
    border-radius:6px;
    transition:0.6s;
}

/* Zoom animation */
.grit-image:hover img{
    transform:scale(1.08);
}

/* PLAY BUTTON */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:85px;
    height:85px;
    background:#ff0336;
    color:#fff;
    font-size:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    transition:0.4s;
    animation:pulse 2s infinite;
}

.play-btn:hover{
    background:#000;
}

/* Pulse Animation */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,60,42,.7);
    }
    70%{
        box-shadow:0 0 0 25px rgba(255,60,42,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,60,42,0);
    }
}

/* CONTENT */
.grit-content{
    flex:1;
    min-width:320px;
    animation:slideUp 1s ease;
}

.grit-content h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.grit-content span{
    color:#ff0336;
}

.grit-content p{
    color:#fff;
    line-height:1.7;
    margin-bottom:18px;
}

/* BUTTON */
.join-btn{
    padding:14px 32px;
    border:none;
    background:#ff0336;
    color:#fff;
    font-weight:bold;
  
    text-decoration: none;
    cursor:pointer;
    border-radius: 10px;
    transition:0.4s;
    letter-spacing:1px;
}

.join-btn:hover{
    background:#000;
    transform:translateY(-4px);
}




/* Text animation */
@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:900px){
    .grit-container{
        flex-direction:column;
    }

    .grit-content h2{
        font-size:32px;
    }
}

/* ====================testimonial about us================== */
.testimonial-section{
    background:#0f0f0f;
    padding:100px 20px;
    color:white;
    text-align:center;
    overflow:hidden;
}

.testimonial-container{
    max-width:900px;
    margin:auto;
    position:relative;
}

.testimonial-slider{
    display:flex;
    transition:0.6s ease;
}

.testimonial{
    min-width:100%;
    padding:20px;
}

.testimonial img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:3px solid #ff0336;
}

.testimonial p{
    font-size:18px;
    line-height:1.7;
    color:#ddd;
    margin-bottom:20px;
}

.quote{
    font-size:40px;
    color:#ff0336;
    display:block;
    margin-bottom:10px;
}

.testimonial h3{
    margin:5px 0;
}

.testimonial small{
    color:#aaa;
}

/* Arrows */
.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:transparent;
    border:1px solid #444;
    color:white;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    font-size:20px;
    transition:0.3s;
}

.arrow:hover{
    background:#ff0336;
    border:none;
}

.left{ left:-60px; }
.right{ right:-60px; }

/* Dots */
.dots{
    margin-top:25px;
}

.dots span{
    display:inline-block;
    width:10px;
    height:10px;
    margin:5px;
    background:#555;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.dots .active{
    background:#ff0336;
}


/* =================gallery about us============== */
/* ==================gallery================== */
/* * =======================cards=================== */ */

.classes-section {
  padding: 80px 0;
  background: #fff;
}

.classes-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.class-card {
  text-align: center;
}

.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.img-box img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

/* IMAGE ZOOM */
.class-card:hover img {
  transform: scale(1.1);
}

/* HOVER CONTENT */
.hover-box {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

/* SHOW ONLY ON HOVER */
.class-card:hover .hover-box {
  opacity: 1;
  transform: translateY(0);
}

/* TIME BOX */
.time {
  background: #ff0336;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  display: flex;
  gap: 12px;
  border-radius: 4px;
}

/* TITLE BUTTON */
.class-card h3 {
  margin-top: 20px;
  padding: 12px 0;
  border-radius: 25px;
  border: 1px solid #eee;
  transition: 0.4s;
}

.class-card:hover h3,
.class-card h3.active {
  background: #ff0336;
  color: #fff;
  border-color: #ff0336;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .classes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .classes-container {
    grid-template-columns: 1fr;
  }
}


/* ===============service video sec and detail================ */
/* =============service details=video sec==================== */
/* HERO */


.gx-hero{
    position:relative;
    min-height:95vh;
    background:#0e0e0e;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* overlay */
.gx-overlay{
    position:absolute;
    inset:0;
    background:#000;
}

/* container */
.gx-container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
    display:flex;
    gap:80px;
    flex-wrap:wrap;
    align-items:center;
}

/* text */

.gx-content{
    flex:1;
    color:#fff;
}

.gx-content h1{
    font-size:58px;
    font-weight:900;
}

.gx-content p{
    color:#bbb;
    margin:20px 0;
    font-size:18px;
}

/* button */

.gx-btn{
    display:inline-block;
    padding:14px 34px;
    background:#ff0336;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.gx-btn:hover{
    transform:translateY(-5px);
}

/* video card */

.gx-video-card{
    position:relative;
    flex:1;
    max-width:520px;
}

.gx-video-card img{
    width:100%;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.7);
}

/* play button */

.gx-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:85px;
    height:85px;
    border-radius:50%;
    border:none;
    background:#ff0336;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

/* pulse animation */

.gx-play::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#ff0336;
    animation:gxPulse 1.5s infinite;
    z-index:-1;
}

@keyframes gxPulse{
    0%{transform:scale(1);opacity:.6;}
    70%{transform:scale(1.6);opacity:0;}
}

/* MODAL */

.gx-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999;
}

.gx-modal-box{
    position:relative;
    width:80%;
    max-width:900px;
}

.gx-modal-box iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:12px;
}

.gx-close{
    position:absolute;
    top:-45px;
    right:0;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.gx-content h1{
    font-size:36px;
}

.gx-container{
    text-align:center;
}

.gx-modal-box iframe{
    height:250px;
}

}

/* =================why=================== */

/* SECTION */
.why-section{
    position:relative;
    width:100%;
    padding:120px 10%;
    background:url("../img/banner1.png") center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}

/* DARK OVERLAY */
.why-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
}

/* CONTENT */
.why-container{
    position:relative;
    max-width:1200px;
}

.why-content{
    max-width:600px;
    animation:slideRight 1.2s ease;
}

/* HEADING */
.why-content h1{
    font-size:48px;
    font-weight:900;
    letter-spacing:1px;
    margin-bottom:20px;
}

.why-content span{
    color:#ff0336;
}

/* TEXT */
.why-desc{
    color:#ddd;
    line-height:1.7;
    margin-bottom:25px;
}

/* BULLETS */
.why-list{
    list-style:none;
    padding:0;
    margin-bottom:35px;
}

.why-list li{
    margin-bottom:14px;
    padding-left:28px;
    position:relative;
    color:#eee;
}

/* Custom bullet */
.why-list li::before{
    content:"●";
    position:absolute;
    left:0;
    color:#ff0336;
    font-size:14px;
}

/* BUTTON */
.why-btn{
    padding:16px 38px;
    border:none;
    background:#ff0336;
    color:#fff;
    text-decoration: none;
    font-weight:bold;
    letter-spacing:1px;
    cursor:pointer;
    transition:.4s;
}

.why-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-6px);
}

/* ANIMATIONS */
@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* MOBILE */
@media(max-width:768px){

    .why-section{
        padding:80px 6%;
        text-align:center;
    }

    .why-content{
        margin:auto;
    }

    .why-content h1{
        font-size:34px;
    }
}

/* ===============SERVICE DETAILS=PAGE============== */



/* about car title=========== */

.section-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

/* Small Top Title */
.subtitle{
    color:#ff0336;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
}

/* Main Title */
.section-title h2{
    font-size:42px;
    color:#fff;
    margin:10px 0;
    font-weight:800;
}

/* Description */
.section-title p{
    color:#fff;
    font-size:16px;
    line-height:1.6;
}

/* ================================ */
         /* USER  */
         /* ======================================== */
        /* ================= GX USER DASHBOARD ================= */

.gxud-wrapper{
    display:flex;
    background:#0a0a0a;
    color:white;
    min-height:100vh;
    font-family:Arial;
}

/* SIDEBAR */

.gxud-sidebar{
    position:sticky;
    top:0;
    height:100vh;
    width:250px;
    background:#111;
    padding:25px 0;
    box-shadow:4px 0 20px rgba(255,0,60,.15);
    display:flex;
    flex-direction:column;
}

/* LOGO */

.gxud-logo{
    font-size:26px;
    color:#ff0033;
    font-weight:bold;
    text-align:center;
    margin-bottom:40px;
    cursor:pointer;
    transition:.3s;
}

.gxud-logo:hover{
    transform:scale(1.08);
}

/* MENU */

.gxud-menu{
    display:flex;
    flex-direction:column;
}

.gxud-menu a{
    padding:15px 30px;
    text-decoration:none;
    color:#ccc;
    transition:.3s;
}

.gxud-menu a:hover{
    background:#ff0033;
    padding-left:40px;
    color:white;
}

/* LOGOUT BUTTON */

.gxud-logout{
    margin-top:auto;
    margin:20px;
    padding:14px;
    border:none;
    background:#ff0033;
    color:white;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.gxud-logout:hover{
    background:#ff3355;
}

/* MAIN */

.gxud-main{
    flex:1;
    padding:40px;
}

/* TITLE */

.gxud-title{
    margin-bottom:20px;
}

/* CARDS */

.gxud-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gxud-card{
    background:#161616;
    padding:25px;
    border-radius:18px;
    box-shadow:0 0 20px rgba(255,0,60,.1);
    transition:.3s;
    animation:gxudFade .7s ease;
}

.gxud-card:hover{
    transform:translateY(-8px);
}

.gxud-card h2{
    color:#ff0033;
}

/* GRAPH */

.gxud-graphbox{
    margin-top:40px;
    background:#161616;
    padding:30px;
    border-radius:18px;
}

/* ANIMATION */

@keyframes gxudFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:1100px){

.gxud-cards{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:750px){

.gxud-sidebar{
display:none;
}

.gxud-cards{
grid-template-columns:1fr;
}

}

/* ============================= */
    /* ADMIN PAGE   */
    /* ============================================== */
    /* ================= ADMIN DASHBOARD ================= */

.gxad-wrapper{
    display:flex;
    min-height:100vh;
    background:#0a0a0a;
    color:white;
    font-family:Arial;
}

/* SIDEBAR */

.gxad-sidebar{
    position:sticky;
    top:0;
    height:100vh;
    width:260px;
    background:#111;
    padding:25px 0;
    display:flex;
    flex-direction:column;
    box-shadow:4px 0 25px rgba(255,0,60,.15);
}

/* LOGO */

.gxad-logo{
    font-size:28px;
    font-weight:bold;
    color:#ff0033;
    text-align:center;
    margin-bottom:45px;
    cursor:pointer;
    transition:.3s;
}

.gxad-logo:hover{
    transform:scale(1.08);
}

/* MENU */

.gxad-menu{
    display:flex;
    flex-direction:column;
}

.gxad-menu a{
    padding:16px 35px;
    text-decoration:none;
    color:#bbb;
    transition:.3s;
}

.gxad-menu a:hover{
    background:#ff0033;
    padding-left:50px;
    color:white;
}

/* LOGOUT */

.gxad-logout{
    margin-top:auto;
    margin:20px;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#ff0033;
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.gxad-logout:hover{
    background:#ff3355;
}


/* MAIN */

.gxad-main{
    flex:1;
    padding:45px;
}

/* TITLE */

.gxad-title{
    margin-bottom:25px;
}


/* CARDS */

.gxad-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gxad-card{
    background:#161616;
    padding:28px;
    border-radius:18px;
    box-shadow:0 0 25px rgba(255,0,60,.1);
    transition:.3s;
    animation:gxadFade .7s ease;
}

.gxad-card:hover{
    transform:translateY(-10px);
}

.gxad-card h2{
    color:#ff0033;
}


/* GRAPHS */

.gxad-graph-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.gxad-graph-box{
    background:#161616;
    padding:25px;
    border-radius:18px;
}


/* ANIMATION */

@keyframes gxadFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* MOBILE */

@media(max-width:1100px){

.gxad-cards{
grid-template-columns:1fr 1fr;
}

.gxad-graph-grid{
grid-template-columns:1fr;
}

}

@media(max-width:750px){

.gxad-sidebar{
display:none;
}

.gxad-main{
padding:25px;
}

.gxad-cards{
grid-template-columns:1fr;
}

}

/* ============================ */
    /* LOGIN */
    /* ============================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#f4f6f9;
    justify-content:center;
    align-items:center;
    height:100vh;
    
}

/* MAIN WRAPPER */

.login-wrapper{
    width:1100px;
    height:650px;
    margin-left: 11em;
    margin-top: 4em;
    display:flex;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
    animation:fadeIn 1s ease;
}

/* LEFT */

.gym-left{
    flex:1;
    padding:60px;
    color:white;
    background:linear-gradient(135deg,#ff3b3f);
    display:flex;
    flex-direction:column;
    justify-content:center;
    animation:slideLeft 1s ease;
}

.gym-left h1{
    font-size:32px;
    margin-bottom:20px;
}

.gym-left h2{
    margin-bottom:15px;
}

.gym-left p{
    opacity:.9;
    margin-bottom:30px;
}

.features{
    margin-top:10px;
}

.feature{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:center;
    transition:.3s;
}

.feature:hover{
    transform:translateX(8px);
}

.feature i{
    background:rgba(255,255,255,.2);
    padding:12px;
    border-radius:50%;
    font-size:18px;
}

/* RIGHT */

.gym-right{
    flex:1;
    background:white;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    animation:slideRight 1s ease;
}

.sub{
    color:gray;
    margin-bottom:30px;
}

.input-box{
    position:relative;
    margin-bottom:20px;
}

.input-box input{
    width:100%;
    padding:14px 40px;
    border-radius:10px;
    border:1px solid #ddd;
    outline:none;
    transition:.3s;
}

.input-box input:focus{
    border-color:#ff3b3f;
}

.input-box i{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:gray;
}

.input-box i:first-child{
    left:12px;
}

.toggle{
    right:12px;
    cursor:pointer;
}

/* BUTTON */

.login-btn{
    padding:15px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ff3b3f);
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,100,0,.4);
}

/* DIVIDER */

.divider{
    text-align:center;
    margin:25px 0;
    color:gray;
}

/* SOCIAL */

.social-login{
    display:flex;
    justify-content:space-between;
}

.social-login button{
    width:30%;
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
    background:white;
    cursor:pointer;
    transition:.3s;
}

.social-login button:hover{
    background:#f2f2f2;
}

/* TEXT */

.bottom-text{
    margin-top:25px;
    text-align:center;
}

.bottom-text a{
    color:#ff3b3f;
    text-decoration:none;
    font-weight:bold;
}

/* ANIMATIONS */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

/* RESPONSIVE */

@media(max-width:900px){

.login-wrapper{
    flex-direction:column;
    height:auto;
}

.gym-left{
    text-align:center;
}

.social-login{
    gap:10px;
}
}


.back-home{
    margin-top:20px;
    text-align:center;
    text-decoration:none;
    color:#555;
    font-weight:500;
    display:inline-block;
    transition:.3s;
}

.back-home i{
    margin-right:6px;
}

.back-home:hover{
    color:#ff3b3f;
    transform:translateX(-5px);
}


/* ================================== */
            /* HOME PAGE TWO  */
            /* ========================================= */
            /* HERO VIDEO */
.gx2-hero{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.gx2-bg-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.gx2-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

/* CONTENT */
.gx2-hero-content{
    position:relative;
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:20px;
}

.gx2-hero-content h1{
    font-size:64px;
    font-weight:900;
}

.gx2-hero-content span{
    color:#ff2c2c;
}

.gx2-hero-content p{
    margin:20px 0;
    font-size:18px;
}

/* BUTTONS */
.gx2-btn-primary{
    background:#ff2c2c;
    padding:14px 32px;
    color:#fff;
    text-decoration:none;
    margin-right:10px;
    border-radius:6px;
    font-weight:600;
}

.gx2-btn-outline{
    border:2px solid #fff;
    padding:12px 30px;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}

/* ANIMATION */
.gx2-animate{
    animation:gx2FadeUp 1s ease forwards;
}

.gx2-animate-delay{
    opacity:0;
    animation:gx2FadeUp 1s .4s forwards;
}

.gx2-animate-delay2{
    opacity:0;
    animation:gx2FadeUp 1s .8s forwards;
}

@keyframes gx2FadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){

.gx2-hero-content h1{
    font-size:38px;
}

}

/* ================================ */
/* ===== Gym Features Section ===== */
.sc-gym-features {
  text-align: center;
  padding: 60px 20px;
  background-color: #011e3c;
  font-family: 'Arial', sans-serif;
}

.sc-gym-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.3;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.sc-gym-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.sc-gym-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 25px;
  max-width: 300px;
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: center;
}

.sc-gym-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.sc-card-icon {
  font-size: 2.5rem;
  color: #ff0336;
  margin-bottom: 20px;
}

.sc-gym-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #111;
}

.sc-gym-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.sc-card-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

/* ===== Animations ===== */
.sc-card-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

.sc-card-animate:nth-child(2) { animation-delay: 0.5s; }
.sc-card-animate:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .sc-gym-cards { gap: 20px; }
}

@media (max-width: 768px) {
  .sc-gym-cards { flex-direction: column; align-items: center; }
  .sc-gym-card { max-width: 90%; }
}
/* ==============pring plan=============== */
/* PRICING PLAN SECTION */
.gx3-pricing-section {
 background: url('../img/a-man-doing-workouts-on-muscles-of-a-back-on-power-2023-11-27-05-35-26-utc-11111-1.jpeg ') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.gx3-container {
  max-width: 1200px;
  margin: auto;
}

.gx3-pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.gx3-subtitle {
  color: #ff0336;
  font-weight: 600;
  margin-bottom: 10px;
}

.gx3-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gx3-desc {
  color: #ccc;
  font-size: 1rem;
}

.gx3-pricing-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.gx3-card {
  background: #000;
  border-radius: 15px;
  padding: 30px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.5s, box-shadow 0.5s;
}

.gx3-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.gx3-plan-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.gx3-plan-desc {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #ccc;
}

.gx3-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ff0336;
}

.gx3-price span {
  font-size: 1rem;
  color: #ccc;
}

.gx3-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.gx3-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.95rem;
}

.gx3-icon {
  color: #ff0336;
  font-weight: bold;
}

.gx3-btn {
  background: #ff0336;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.gx3-btn:hover {
  background: #ff0336;
  transform: scale(1.05);
}

/* ANIMATION EFFECT */
.gx3-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.gx3-animate.gx3-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 1024px) {
  .gx3-pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* ====================transo==================== */
:root {
    --gt-primary: #e67e22;
    --gt-white: #ffffff;
}

.gt-section {
    padding: 60px 20px;
    background: #000; /* Dark gym theme */
    text-align: center;
    font-family: 'Impact', sans-serif;
}

.gt-main-title {
    color: var(--gt-white);
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.gt-comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid #333;
    border-radius: 8px;
}

/* Background Images Styling */
.gt-before-image, .gt-after-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

/* Before image starts at 50% width */
.gt-before-image {
    width: 50%;
    border-right: 3px solid var(--gt-primary);
    z-index: 2;
}

/* Labels */
.gt-label {
    position: absolute;
    bottom: 20px;
    padding: 5px 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
}
.gt-label-before { left: 20px; }
.gt-label-after { right: 20px; z-index: 1; }

/* The Range Input (Invisible overlay) */
.gt-slider-input {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 5;
    cursor: ew-resize;
    margin: 0;
}

/* The Visual Handle Button */
.gt-slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gt-primary);
    border: 4px solid var(--gt-white);
    border-radius: 50%;
    z-index: 4;
    pointer-events: none; /* Let clicks pass to the input */
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}

.gt-description {
    color: #888;
    margin-top: 20px;
    font-family: sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .gt-comparison-slider { height: 350px; }
    .gt-main-title { font-size: 28px; }
}





/* ========card home2======== */
:root {
    --nutri-orange: #e67e22;
    --nutri-white: #ffffff;
    --nutri-text: #333;
}

.nutri-container {
    padding: 80px 5%;
    background-color: #fff;
    overflow: hidden;
    font-family: sans-serif;
}

.nutri-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card & Image Styling */
.nutri-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.nutri-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.nutri-img-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Overlay Effect */
.nutri-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease;
}

.nutri-card:hover .nutri-overlay {
    opacity: 1; /* Shows on hover */
}

.nutri-card:hover .nutri-img-container img {
    transform: scale(1.1);
}

/* Typography */
.nutri-subtitle { color: var(--nutri-orange); font-weight: bold; font-size: 14px; }
.nutri-main-title { font-size: 32px; margin: 10px 0 30px 0; font-weight: 800;color: #000; }
.nutri-desc { font-size: 14px; color: #666; margin: 20px 0; line-height: 1.5; }

.nutri-cta {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

/* Responsive */
@media (min-width: 992px) {
    .nutri-offset { margin-top: 80px; }
}

@media (max-width: 991px) {
    .nutri-wrapper { grid-template-columns: 1fr 1fr; }
    .nutri-main-title { font-size: 24px; }
}

@media (max-width: 600px) {
    .nutri-wrapper { grid-template-columns: 1fr; }
}

/* Animation States */
.nutri-animate-left { transform: translateX(-50px); opacity: 0; transition: 1s; }
.nutri-animate-up { transform: translateY(50px); opacity: 0; transition: 1s; }
.nutri-animate-right { transform: translateX(50px); opacity: 0; transition: 1s; }

.nutri-show { transform: translate(0); opacity: 1; }

/* ============================= */

/* =================TRAINER HOVER=============== */
.gx2-trainers{
padding:90px 5%;
background:#111;
color:#fff;
text-align:center;
}

.gx2-title{
font-size:42px;
margin-bottom:50px;
}

.gx2-trainer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.gx2-trainer-card{
position:relative;
overflow:hidden;
}

.gx2-trainer-card img{
width:100%;
height:420px;
object-fit:cover;
transition:.6s;
}

.gx2-trainer-card:hover img{
transform:scale(1.1);
}

.gx2-trainer-info{
position:absolute;
bottom:0;
width:100%;
background:linear-gradient(transparent,#000);
padding:20px;
}



/* ==============parallax============ */
.gx2-parallax{
height:400px;
background:url("../img/ablog1.jpg") center/cover fixed;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:#fff;
text-align:center;
}

.gx2-parallax h1{
font-size:60px;
}
/* ===============cta home2============ */
.gx2-cta{
position:fixed;
bottom:0;
width:100%;
background:#ff0336;
color:#fff;
text-align:center;
padding:18px;
font-size:20px;
font-weight:600;
cursor:pointer;
z-index:999;
}
/* ====responsive========= */
@media(max-width:900px){

.gx2-transform-box,
.gx2-trainer-grid,
.gx2-price-grid{
grid-template-columns:1fr;
}

.gx2-hero-content h1{
font-size:38px;
}

}
/* ============================ */

/* ==================== */
/* --- MOBILE NAVIGATION --- */
@media (max-width: 991px) {
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  /* Hamburger Icon Styling */
  .hamburger {
    display: block !important;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    order: 2; /* Moves hamburger to the right */
  }

  .logo {
    order: 1;
  }

  /* Mobile Navbar Menu */
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #011e3c; /* Matches your grit section */
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    z-index: 999;
  }

  .navbar.active {
    max-height: 100vh; /* Allows menu to grow */
    overflow-y: auto;
    padding-bottom: 20px;
  }

  /* Stack Links Vertically */
  .nav-menu {
    flex-direction: column;
    padding: 20px;
    display: block !important;
  }

  .nav-menu li {
    width: 100%;
    margin: 10px 0;
  }

  /* Dropdown Menu for Mobile */
  .dropdown-menu {
    position: static !important; /* Remove absolute positioning */
    display: none; /* Hidden by default */
    background: #022a52 !important;
    width: 100% !important;
    padding-left: 20px !important;
    box-shadow: none !important;
  }

  /* Show dropdown when active */
  .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-menu li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}
/* ==============404 error================= */
/* --- 404 PAGE UNIQUE STYLES --- */
.gym-404-wrapper {
    background-color: #011e3c; /* Dark Blue Theme */
    min-height: calc(100vh - 80px); /* Subtracts header height */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.gym-404-content {
    max-width: 600px;
    text-align: center;
}

.gym-404-visual {
    position: relative;
    margin-bottom: 30px;
}

.gym-404-code {
    font-size: clamp(100px, 25vw, 200px);
    font-weight: 900;
    line-height: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.03); /* Extremely faint ghost text */
}

.gym-404-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(30px, 10vw, 70px);
    font-weight: 900;
    color: #ff0336; /* Your Theme Red */
    letter-spacing: 2px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.gym-404-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gym-404-desc {
    color: #aeb9c7;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.gym-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gym-404-btn {
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    border: 2px solid transparent;
    display: inline-block;
}

.gym-404-primary {
    background: #ff0336;
    color: #fff;
}

.gym-404-primary:hover {
    background: #d1022c;
    transform: translateY(-3px);
}

.gym-404-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.gym-404-outline:hover {
    background: #fff;
    color: #011e3c;
}

@media (max-width: 600px) {
    .gym-404-actions { flex-direction: column; }
    .gym-404-btn { width: 100%; }
}
/* coming soon===================== */
/* --- COMING SOON PAGE --- */
.fit-soon-body {
    background: #011e3c;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow: hidden;
}

.fit-soon-container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding: 20px;
}

.fit-soon-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.fit-soon-logo span { color: #ff0336; }

.fit-soon-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 10px;
}

.fit-soon-title span { color: #ff0336; }

.fit-soon-subtitle {
    color: #aeb9c7;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* LOADING DESIGN */
.fit-soon-loader-box {
    margin-bottom: 40px;
    text-align: left;
}

.fit-soon-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.fit-soon-progress-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.fit-soon-progress-fill {
    height: 100%;
    width: 0%; /* Controlled by JS */
    background: linear-gradient(90deg, #ff0336, #ff5e7e);
    box-shadow: 0 0 15px rgba(255, 3, 54, 0.5);
    border-radius: 20px;
    transition: width 0.1s linear;
}

/* FORM STYLES */
.fit-soon-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.fit-soon-input {
    flex: 1;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.fit-soon-btn {
    background: #ff0336;
    color: #fff;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.fit-soon-btn:hover { background: #d1022c; }

@media (max-width: 600px) {
    .fit-soon-form { flex-direction: column; }
    .fit-soon-btn { padding: 15px; }
}