* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--theme-font);
}

:root {
  --primary-color: #f61d23;
  --black: #000;
  --light: #fff;
  --theme-font: "Roboto", sans-serif;
  --heading-font: "Oswald", sans-serif;
  --theme-font:"Bai Jamjuree", sans-serif;
  --text-main: #e5e7eb;
  --text-muted: #e5e7eb;
  --border-dark: rgba(255, 255, 255, 0.08);
}

body {
  font-family: var(--theme-font);
  font-size: 16px;
}

ul {
  padding-left: 0px;
}

ul li {
  list-style: none;
  list-style-type: none;
  padding-left: 0px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.common-space {
  padding: 100px 0px;
}

.btn {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0px;
  padding: 12px 22px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  display: flex;
  border: none;
  justify-content: center;
  align-items: center;
}
.btn i {
  font-size: 25px;
  margin-right: 5px;
}
.btn:hover {
  background-color: var(--black);
  color: var(--light);
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-card.tall {
    height: 520px;
}

.gallery-card.full-height {
    height: 520px;
}

.gallery-card:not(.tall):not(.full-height) {
    height: 250px;
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

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

.gallery-card:hover .g-overlay {
    opacity: 1;
}

.g-overlay i {
    color: #fff;
    font-size: 26px;
}

.g-overlay p {
    color: #fff;
    margin-top: 8px;
}
.common-heading {
  color: #212121;
  font-size: 34px;
  font-weight: 700;
}

.title {
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--heading-font);
}
.title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
}

.title-des {
  font-size: 15px;
  color: var(--primary-color);
}

/* ================================ HEADER ================================ */
header {
  color: var(--primary-color);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header .header-top {
  background-color: #161616;
  border-bottom: 1px solid var(--border-dark);
  font-size: 14px;
}
header .header-top .header-links ul {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
header .header-top .header-links li {
  color: var(--light);
  font-family: var(--heading-font);
}
header .header-top .header-links li i {
  color: var(--light);
  margin-right: 6px;
}
header .header-top .social-links a {
  margin-left: 15px;
  font-size: 14px;
}
header .header-top .social-links a i {
  color: var(--light);
  font-size: 18px;
}
header .header-top .social-links a:hover i {
  color: var(--primary-color);
}
header .menu-area {
  background-color: var(--black);
}
header .navbar-right-desc {
  font-weight: 500;
  color: var(--primary-color);
}
header .navbar-right-desc i {
  color: var(--light);
  margin-right: 6px;
}
header .navbar-nav li {
  margin-right: 12px;
  margin-left: 12px;
}
header .navbar-nav li a {
  color: #000;
  font-weight: 600;
  border-radius: 0;
}
header .navbar-nav li a:hover {
  color: var(--primary-color);
}
header .navbar-brand img {
  max-width: 150px;
}
header .btn {
  background-color: var(--primary-color);
  color: #fff;
}

.hero-slider {
  position: relative;
  height: 81vh;
  overflow: hidden;
}
.hero-slider:before {
  background-repeat: no-repeat;
  background-image: url(img/BG2.png);
  content: "";
  position: absolute;
  right: 84px;
  bottom: -54px;
  width: 11vw;
  height: 250px;
  background-size: contain;
  z-index: 9;
  transform: rotate(210deg);
}
.hero-slider p {
  color: var(--light);
}
.hero-slider .hero-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider .hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.hero-slider .hero-content h1 span {
  color: var(--light);
}
.hero-slider .hero-overlay {
  background-image: linear-gradient(79deg, rgba(0, 0, 0, 0.7607843137) 42%, transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
.hero-slider .container {
  position: relative;
}

.hero-slider .hero-content .hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-slider .hero-content .hero-btns .btn-primary {
  background: var(--primary-color);
  color: #ffffff;
}

.hero-slider .hero-content .hero-btns .btn-primary {
  background: transparent;
  color: #ffffff;
}

.hero-slider .hero-content .hero-btns .btn-primary:hover {
  background: #2a3234;
}

.hero-slider .hero-content .hero-btns .btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.hero-slider .hero-content .hero-btns .btn-outline:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #ffffff;
}

.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.hero-slider .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.35s ease;
}

.hero-slider .owl-nav button:hover {
  background: var(--primary-color);
  color: var(--light);
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

/* --- Modern About Section Styles --- */
.about-modern {
  background-color: #0b0b0b; /* Deep black to make red pop */
  color: var(--light);
  overflow: hidden;
  position: relative;
}
.about-modern:before {
  background-repeat: no-repeat;
  background-image: url(img/BG2.png);
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 11vw;
  height: 250px;
  background-size: contain;
}
.about-modern:after {
  background-repeat: no-repeat;
  background-image: url(img/BG1.png);
  content: "";
  position: absolute;
  left: 0;
  bottom: -42px;
  width: 11vw;
  height: 250px;
  background-size: contain;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}

/* Red decorative shape behind image */
.image-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 90%;
  background: var(--primary-color);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  opacity: 0.8;
}

.main-about-img {
  border-radius: 4px;
  filter: grayscale(20%);
  transition: 0.5s ease;
  box-shadow: 20px 20px 0px rgba(255, 255, 255, 0.05);
}

.main-about-img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--primary-color);
  padding: 20px;
  color: #fff;
  text-align: center;
  min-width: 140px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}

.experience-badge .number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
}

.experience-badge .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text Content Styling */
.about-text-content .subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text-content .main-title {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.about-text-content .main-title span {
  color: var(--primary-color);
  -webkit-text-stroke: 1px var(--primary-color); /* Outlined effect if desired */
}

.brand-partner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-left: 4px solid var(--primary-color);
}

.brand-logo {
  height: 40px; /* Adjust based on your logo image */
}

.brand-desc {
  font-size: 14px;
  margin-bottom: 0;
}

.benefit-box h4 {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

/* Stylish List with Icons */
.stylish-list {
  padding: 0;
}

.stylish-list li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--text-main);
}

.stylish-list li i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 14px;
}

.cert-tags {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .about-text-content .main-title {
    font-size: 32px;
  }
  .image-shape {
    width: 100%;
  }
}
/* --- Modern Pricing Section Nested CSS --- */
.pricing-modern {
  background-color: #050505;
  background-image: radial-gradient(circle at center, rgba(246, 29, 35, 0.05) 0%, transparent 70%);
  color: var(--light);
  position: relative;
  z-index: 1;
}
.pricing-modern:before {
  background-repeat: no-repeat;
  background-image: url(img/BG2.png);
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 11vw;
  height: 250px;
  background-size: contain;
}
.pricing-modern .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-modern .desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 500px;
  margin: 15px auto 0;
}
.pricing-modern .pricing-card {
  background: #111;
  border: 1px solid var(--border-dark);
  padding: 30px 20px;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  /* Subtle top border glow effect on hover */
}
.pricing-modern .pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pricing-modern .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border-color: rgba(246, 29, 35, 0.3);
}
.pricing-modern .pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-modern .pricing-card .card-header {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}
.pricing-modern .pricing-card .card-header h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--light);
}
.pricing-modern .pricing-card .card-header p {
  color: var(--primary-color);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}
.pricing-modern .pricing-card .price-box {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
}
.pricing-modern .pricing-card .price-box .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  margin-right: 5px;
}
.pricing-modern .pricing-card .price-box .amount {
  font-size: 37px;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--light);
}
.pricing-modern .pricing-card .price-box .duration {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 10px;
  margin-left: 8px;
}
.pricing-modern .pricing-card .features-list {
  margin-bottom: 35px;
}
.pricing-modern .pricing-card .features-list li {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.pricing-modern .pricing-card .features-list li i {
  width: 20px;
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 14px;
}
.pricing-modern .pricing-card .features-list li .text-muted {
  color: #555 !important;
}
.pricing-modern .pricing-card .plan-btn {
  width: 100%;
  background: transparent;
  border: 2px solid var(--border-dark);
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-modern .pricing-card .plan-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.pricing-modern .pricing-card {
  /* Highlighted "Popular" Card Style */
}
.pricing-modern .pricing-card.popular {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-color: rgba(246, 29, 35, 0.4);
  transform: scale(1.05); /* Makes the center card slightly larger */
  box-shadow: 0 15px 35px rgba(246, 29, 35, 0.08);
}
.pricing-modern .pricing-card.popular::before {
  transform: scaleX(1); /* Always show the red top line */
}
.pricing-modern .pricing-card.popular .popular-badge {
  position: absolute;
  top: 28px;
  right: -35px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.pricing-modern .pricing-card.popular .active-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.pricing-modern .pricing-card.popular .active-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .pricing-modern .pricing-card.popular {
    transform: scale(1); /* Reset scale on smaller screens */
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* --- Modern Services Section Nested CSS --- */
.services-modern {
  background-color: #000;
  color: var(--light);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8392156863), rgba(0, 0, 0, 0.8509803922)), url(img/banner-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.services-modern:before {
  background-repeat: no-repeat;
  background-image: url(img/BG2.png);
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 11vw;
  height: 250px;
  background-size: contain;
}
.services-modern .service-content .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.services-modern .service-content .title {
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.services-modern .service-content .title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
}
.services-modern .service-content .services-list-wrapper .service-item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
}
.services-modern .service-content .services-list-wrapper .service-item::after { /* Red line on hover */
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}
.services-modern .service-content .services-list-wrapper .service-item .service-number {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.34);
  margin-right: 40px;
  font-family: var(--heading-font);
  transition: 0.3s;
}
.services-modern .service-content .services-list-wrapper .service-item .service-info {
  flex-grow: 1;
}
.services-modern .service-content .services-list-wrapper .service-item .service-info h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: 0.3s;
}
.services-modern .service-content .services-list-wrapper .service-item .service-info p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 450px;
}
.services-modern .service-content .services-list-wrapper .service-item .service-link {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.4s ease;
}
.services-modern .service-content .services-list-wrapper .service-item .service-link i {
  font-size: 18px;
}
.services-modern .service-content .services-list-wrapper .service-item {
  /* Hover States */
}
.services-modern .service-content .services-list-wrapper .service-item:hover::after {
  width: 100%;
}
.services-modern .service-content .services-list-wrapper .service-item:hover {
  padding-left: 20px; /* Moves the row slightly right */
}
.services-modern .service-content .services-list-wrapper .service-item:hover .service-number {
  color: var(--primary-color);
}
.services-modern .service-content .services-list-wrapper .service-item:hover .service-info h3 {
  color: var(--primary-color);
  letter-spacing: 1px;
}
.services-modern .service-content .services-list-wrapper .service-item:hover .service-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(-45deg); /* Pointing arrow up-right */
}
.services-modern {
  /* Right Side Image Styling */
}
.services-modern .service-image-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-modern .service-image-box .ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03); /* Extremely faint */
  z-index: 1;
  font-family: var(--heading-font);
  letter-spacing: 10px;
}
.services-modern .service-image-box .athlete-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  /* Adds a subtle red glow behind the person */
  filter: opacity(1);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .services-modern .service-image-box {
    margin-top: 50px;
  }
  .services-modern .service-image-box .ghost-text {
    font-size: 100px;
  }
  .services-modern .service-content .title {
    font-size: 36px;
  }
}
/* --- Modern Testimonial Section Nested CSS --- */
.testimonial-modern {
  background-color: #0a0a0a;
  color: var(--light);
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8392156863), rgba(0, 0, 0, 0.75)), url(img/gallery4.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-modern .testimonial-heading .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.testimonial-modern .testimonial-heading .title {
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
}
.testimonial-modern .testimonial-heading .title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
}
.testimonial-modern .testimonial-heading .desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}
.testimonial-modern .testimonial-heading .slider-nav {
  gap: 15px;
}
.testimonial-modern .testimonial-heading .slider-nav .nav-btn {
  width: 55px;
  height: 55px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.testimonial-modern .testimonial-heading .slider-nav .nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}
.testimonial-modern .testimonial-wrapper {
  position: relative;
}
.testimonial-modern .testimonial-wrapper .quote-bg {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 250px;
  line-height: 1;
  font-family: serif;
  color: rgba(246, 29, 35, 0.08); /* Faint Red Quote */
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimonial-modern .testimonial-wrapper .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  padding: 50px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.testimonial-modern .testimonial-wrapper .testimonial-card .rating {
  margin-bottom: 25px;
}
.testimonial-modern .testimonial-wrapper .testimonial-card .rating i {
  color: var(--primary-color);
  font-size: 14px;
  margin-right: 4px;
}
.testimonial-modern .testimonial-wrapper .testimonial-card .quote-text {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--light);
  margin-bottom: -12px;
  font-style: italic;
}
.testimonial-modern .testimonial-wrapper .testimonial-card .client-info {
  display: flex;
  align-items: center;
}
.testimonial-modern .testimonial-wrapper .testimonial-card .client-info .details h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.testimonial-modern .testimonial-wrapper .testimonial-card .client-info .details span {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-modern .testimonial-wrapper .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  transform: scale(1.02);
}
.testimonial-modern {
  /* Styling Owl Dots to match Tiger Gym */
}
.testimonial-modern .owl-dots {
  margin-top: 30px;
  text-align: left;
}
.testimonial-modern .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #333 !important;
  margin: 5px;
  border-radius: 0; /* Square dots for a more aggressive look */
  transition: 0.3s;
}
.testimonial-modern .owl-dots .owl-dot.active span {
  background: var(--primary-color) !important;
  width: 30px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .testimonial-modern .testimonial-heading .title {
    font-size: 36px;
  }
  .testimonial-modern .testimonial-card {
    padding: 30px;
  }
  .testimonial-modern .testimonial-card .quote-text {
    font-size: 18px;
  }
}
.running-text-section {
  background-color: #0b0b0b;
  padding: 0 0 60px;
  overflow: hidden; /* Hides the scrollbar */
  display: flex;
  font-family: var(--theme-font);
}
.running-text-section .marquee-wrapper {
  display: flex;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-scroll 30s linear infinite; /* Adjust speed here */
}
.running-text-section .marquee-wrapper .marquee-content {
  display: flex;
  align-items: center;
}
.running-text-section .marquee-wrapper .marquee-content span {
  font-size: 150px; /* Big impact font size */
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-right: 60px; /* Space between phrases */
  display: inline-block;
  line-height: 1;
}
.running-text-section .marquee-wrapper .marquee-content span i {
  font-style: normal;
  /* This creates the outline effect from your image */
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  opacity: 1;
}

/* --- Modern Gallery Section Nested CSS --- */
.gallery-modern {
  background-color: #050505;
  color: var(--light);
}
.gallery-modern .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.gallery-modern .title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
}
.gallery-modern .title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--light);
}
.gallery-modern .desc {
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 10px;
  border-left: 2px solid var(--primary-color);
  padding-left: 20px;
}
.gallery-modern .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  height: 100%;
}
.gallery-modern .gallery-item.large {
  height: 450px;
}
.gallery-modern .gallery-item.small {
  height: 450px;
}
.gallery-modern .gallery-item { /* Same height for balance on desktop */ }
.gallery-modern .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-modern .gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(246, 29, 35, 0.8), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}
.gallery-modern .gallery-item .overlay .overlay-content {
  text-align: center;
  color: #fff;
}
.gallery-modern .gallery-item .overlay .overlay-content i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
  transform: scale(0.5);
  transition: 0.4s;
}
.gallery-modern .gallery-item .overlay .overlay-content span {
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 18px;
}
.gallery-modern .gallery-item {
  /* Hover State */
}
.gallery-modern .gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.gallery-modern .gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-modern .gallery-item:hover .overlay .overlay-content i {
  transform: scale(1);
}
.gallery-modern .view-all {
  color: var(--light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-color);
  transition: 0.3s;
}
.gallery-modern .view-all:hover {
  color: var(--primary-color);
  letter-spacing: 4px;
}

/* --- Modern Footer Nested CSS --- */
/* --- Premium Modern Footer Nested CSS --- */
.footer-premium {
  background-color: #030303;
  color: var(--light);
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.9607843137)), url(img/about-img-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* Subtle background pattern */
}
.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/tiger-pattern.png") center/cover no-repeat;
  opacity: 0.02; /* Extremely faint */
  pointer-events: none;
}
.footer-premium .footer-main-grid .footer-logo-v2 {
  max-width: 150px;
  margin-bottom: 25px;
}
.footer-premium .footer-main-grid .f-info p {
  color: #fff;
  line-height: 1.8;
  padding-right: 40px;
}
.footer-premium .footer-main-grid .f-info .f-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
}
.footer-premium .footer-main-grid .f-info .f-contact-info:hover {
  color: #fff;
}
.footer-premium .footer-main-grid .f-nav-col h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--light);
}
.footer-premium .footer-main-grid .f-nav-col ul {
  padding: 0;
}
.footer-premium .footer-main-grid .f-nav-col ul li {
  list-style: none;
  margin-bottom: 12px;
}
.footer-premium .footer-main-grid .f-nav-col ul li a {
  color: #fff;
  transition: 0.3s;
}
.footer-premium .footer-main-grid .f-nav-col ul li a:hover {
  color: var(--light);
  padding-left: 5px;
}
.footer-premium .footer-main-grid .f-location-card {
  border-radius: 4px;
}
.footer-premium .footer-main-grid .f-location-card h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer-premium .footer-main-grid .f-location-card p {
  color: #fff;
  margin-bottom: 20px;
}
.footer-premium .footer-main-grid .f-location-card .opening-hours .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-premium .footer-main-grid .f-location-card .opening-hours .hour-row span:first-child {
  color: #fff;
}
.footer-premium .footer-main-grid .f-location-card .opening-hours .hour-row span:last-child {
  color: var(--primary-color);
  font-weight: 700;
}
.footer-premium .footer-copyright-v2 {
  margin-top: 80px;
  padding: 13px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  color: #fff;
}
.footer-premium .footer-copyright-v2 .legal-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}
.footer-premium .footer-copyright-v2 .legal-links li {
  list-style: none;
}
.footer-premium .footer-copyright-v2 .legal-links li a {
  olor: #fff;
}
.footer-premium .footer-copyright-v2 .legal-links li a:hover {
  color: var(--light);
}

/* --- Modern Breadcrumb Nested CSS --- */
.breadcrumb-area {
  position: relative;
  padding: 120px 0;
  background: url("img/breadcrumb-bg.jpg") no-repeat center center; /* Use a gritty gym image */
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.breadcrumb-area .breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.69), rgba(0, 0, 0, 0.9607843137)), url(img//gallery4.png);
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.breadcrumb-area .container {
  position: relative;
  z-index: 2;
}
.breadcrumb-area .breadcrumb-content {
  text-align: center;
  position: relative;
}
.breadcrumb-area .breadcrumb-content .ghost-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  font-weight: 900;
  font-family: var(--heading-font);
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 15px;
  z-index: -1;
  text-transform: uppercase;
  white-space: nowrap;
}
.breadcrumb-area .breadcrumb-content .page-title {
  font-size: 65px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 15px;
  font-family: var(--heading-font);
  letter-spacing: 2px;
}
.breadcrumb-area .breadcrumb-content .page-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
}
.breadcrumb-area .breadcrumb-content .breadcrumb-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}
.breadcrumb-area .breadcrumb-content .breadcrumb-links li {
  list-style: none;
  color: var(--light);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.breadcrumb-area .breadcrumb-content .breadcrumb-links li a {
  color: var(--light);
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.7;
}
.breadcrumb-area .breadcrumb-content .breadcrumb-links li a:hover {
  color: var(--primary-color);
  opacity: 1;
}
.breadcrumb-area .breadcrumb-content .breadcrumb-links li i {
  font-size: 10px;
  color: var(--primary-color);
}
.breadcrumb-area .breadcrumb-content .breadcrumb-links li.active {
  color: var(--primary-color);
}

/* --- Services Content Nested CSS --- */
.bg-darker {
  background-color: #080808;
}

/* --- About Us Page Specific Nested CSS --- */
.about-vision {
  background-color: #000;
  color: #fff;
}
.about-vision .vision-image-stack {
  position: relative;
  padding: 20px;
}
.about-vision .vision-image-stack .main-vision-img {
  border: 1px solid var(--border-dark);
  filter: grayscale(100%);
  transition: 0.5s;
}
.about-vision .vision-image-stack .main-vision-img:hover {
  filter: grayscale(0%);
}
.about-vision .vision-image-stack .floating-label {
  position: absolute;
  top: 50%;
  right: -20px;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  font-weight: 800;
  transform: rotate(90deg);
  letter-spacing: 3px;
}
.about-vision .vision-text {
  padding-left: 40px;
}
.about-vision .vision-text .lead-text {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.about-vision .vision-text .stat-mini-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.about-vision .vision-text .stat-mini-grid .s-item h3 {
  font-size: 40px;
  color: var(--primary-color);
  margin: 0;
}
.about-vision .vision-text .stat-mini-grid .s-item p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hammer-tech {
  background-color: #080808;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8392156863), rgba(0, 0, 0, 0.8509803922)), url(img/banner-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.hammer-tech .tech-card {
  padding: 40px;
  border: 1px solid var(--border-dark);
  height: 100%;
  transition: all 0.4s;
}
.hammer-tech .tech-card i {
  font-size: 35px;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: block;
  transition: all 0.4s;
}
.hammer-tech .tech-card h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: 0.4s;
  color: #fff;
}
.hammer-tech .tech-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  transition: 0.4s;
}
.hammer-tech .tech-card:hover, .hammer-tech .tech-card.active {
  border-color: var(--primary-color);
  background: linear-gradient(145deg, #1a1a1a, #000);
  transform: translateY(-10px);
  transition: all 0.4s;
}

.facilities-bento {
  background-color: #000;
}
.facilities-bento .certifications-pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  display: inline-block;
}
.facilities-bento .certifications-pill span {
  color: var(--primary-color);
  margin-left: 10px;
}
.facilities-bento .bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 15px;
  margin-top: 40px;
}
.facilities-bento .bento-grid .bento-item {
  background: #111;
  border: 1px solid var(--border-dark);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.facilities-bento .bento-grid .bento-item i {
  font-size: 25px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.facilities-bento .bento-grid .bento-item h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  color: #fff;
}
.facilities-bento .bento-grid .bento-item:hover {
  background: var(--primary-color);
}
.facilities-bento .bento-grid .bento-item:hover i, .facilities-bento .bento-grid .bento-item:hover h4 {
  color: #fff;
}
.facilities-bento .bento-grid .bento-item.item-lg {
  grid-column: span 2;
  grid-row: span 2;
}
.facilities-bento .bento-grid .bento-item.item-lg i {
  font-size: 50px;
}
.facilities-bento .bento-grid .bento-item.item-lg h4 {
  font-size: 20px;
}
.facilities-bento .bento-grid .bento-item.item-md {
  grid-column: span 2;
}

/* --- Modern Contact Page Nested CSS --- */
.contact-page-modern {
  background-color: #050505;
  color: var(--light);
}
.contact-page-modern .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.contact-page-modern .title {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.contact-page-modern .title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
}
.contact-page-modern .desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 90%;
}
.contact-page-modern .info-cards-stack .info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border: 1px solid var(--border-dark);
  margin-bottom: 15px;
  transition: 0.3s;
}
.contact-page-modern .info-cards-stack .info-card .icon-box {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-page-modern .info-cards-stack .info-card .text-box h5 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-page-modern .info-cards-stack .info-card .text-box p {
  margin: 0;
  color: var(--text-muted);
}
.contact-page-modern .info-cards-stack .info-card:hover {
  background: rgba(246, 29, 35, 0.05);
  border-color: var(--primary-color);
  transform: translateX(10px);
}
.contact-page-modern .social-connect {
  margin-top: 40px;
}
.contact-page-modern .social-connect h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.contact-page-modern .social-connect .s-links {
  display: flex;
  gap: 15px;
}
.contact-page-modern .social-connect .s-links a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: 0.3s;
}
.contact-page-modern .social-connect .s-links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}
.contact-page-modern {
  /* Form Styling */
}
.contact-page-modern .contact-form-wrapper {
  background: #0a0a0a;
  padding: 50px;
  border: 1px solid var(--border-dark);
  position: relative;
}
.contact-page-modern .contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 50px;
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
}
.contact-page-modern .contact-form-wrapper input::-moz-placeholder {
  color: var(--text-main);
}
.contact-page-modern .contact-form-wrapper input::placeholder {
  color: var(--text-main);
}
.contact-page-modern .contact-form-wrapper textarea::-moz-placeholder {
  color: var(--text-main);
}
.contact-page-modern .contact-form-wrapper textarea::placeholder {
  color: var(--text-main);
}
.contact-page-modern .contact-form-wrapper .form-group label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-color);
  letter-spacing: 1px;
}
.contact-page-modern .contact-form-wrapper .form-group .form-control {
  background: #111;
  border: 1px solid #222;
  color: #fff;
  padding: 15px;
  border-radius: 0;
  transition: 0.3s;
}
.contact-page-modern .contact-form-wrapper .form-group .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
  background: #151515;
}
.contact-page-modern .contact-form-wrapper .btn-submit {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}
.contact-page-modern .contact-form-wrapper .btn-submit:hover {
  background: #fff;
  color: #000;
}

.map-section {
  line-height: 0;
}
.map-section .map-wrapper {
  border-top: 1px solid var(--border-dark);
}
.map-section .map-wrapper iframe {
  /* This filter makes the map look dark/industrial to match your theme */
  filter: grayscale(1) invert(0.92) contrast(1.2);
}

/* --- Modern Gallery Page Nested CSS --- */
.gallery-page-main {
  background-color: #050505;
  color: var(--light);
}
.gallery-page-main .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.gallery-page-main .title {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.gallery-page-main .title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--light);
}
.gallery-page-main .gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: #000;
}
.gallery-page-main .gallery-card.tall {
  height: 520px;
}
.gallery-page-main .gallery-card.full-height {
  height: 100%;
  min-height: 520px;
}
.gallery-page-main .gallery-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-page-main .gallery-card .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(246, 29, 35, 0.9), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
  transform: translateY(20px);
}
.gallery-page-main .gallery-card .g-overlay i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}
.gallery-page-main .gallery-card .g-overlay p {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.gallery-page-main .gallery-card {
  /* Hover Interaction */
}
.gallery-page-main .gallery-card:hover {
  border-color: var(--primary-color);
}
.gallery-page-main .gallery-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.gallery-page-main .gallery-card:hover .g-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* --- Common Global CTA Nested CSS --- */
.common-cta-section {
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 4px solid var(--primary-color);
}
.common-cta-section .cta-texture {
  position: absolute;
  inset: 0;
  background-image: url("img/tiger-pattern.png"); /* A subtle tiger stripe or noise pattern */
  opacity: 0.05;
  pointer-events: none;
}
.common-cta-section .cta-wrapper {
  position: relative;
  z-index: 2;
}
.common-cta-section .cta-wrapper .cta-ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 900;
  font-family: var(--heading-font);
  color: rgba(255, 255, 255, 0.02); /* Extremely faint */
  letter-spacing: 20px;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}
.common-cta-section .cta-wrapper .cta-content .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.common-cta-section .cta-wrapper .cta-content .cta-title {
  font-size: 55px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.common-cta-section .cta-wrapper .cta-content .cta-title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
}
.common-cta-section .cta-wrapper .cta-content p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 550px;
  margin: 0;
}
.common-cta-section .cta-wrapper .cta-actions .btn-group-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.common-cta-section .cta-wrapper .cta-actions .btn-group-v2 .cta-btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 18px 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 10px 10px 0px rgba(246, 29, 35, 0.2);
}
.common-cta-section .cta-wrapper .cta-actions .btn-group-v2 .cta-btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0px 0px 0px transparent;
  transform: translate(5px, 5px);
}
.common-cta-section .cta-wrapper .cta-actions .btn-group-v2 .cta-btn-link {
  color: var(--light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  transition: 0.3s;
}
.common-cta-section .cta-wrapper .cta-actions .btn-group-v2 .cta-btn-link:hover {
  color: var(--primary-color);
  letter-spacing: 4px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .gallery-page-main .gallery-card.tall, .gallery-page-main .gallery-card.full-height {
    height: 350px;
    min-height: 350px;
  }
  .gallery-page-main .title {
    font-size: 34px;
  }
  .common-cta-section {
    padding: 70px 0;
  }
  .common-cta-section .cta-wrapper .cta-ghost-text {
    font-size: 80px;
    letter-spacing: 10px;
  }
  .common-cta-section .cta-wrapper .cta-content {
    text-align: center;
    margin-bottom: 40px;
  }
  .common-cta-section .cta-wrapper .cta-content .cta-title {
    font-size: 36px;
  }
  .common-cta-section .cta-wrapper .cta-actions .btn-group-v2 {
    align-items: center;
  }
  .common-cta-section .cta-wrapper .cta-actions .btn-group-v2 .cta-btn-primary {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .contact-page-modern .title {
    font-size: 36px;
  }
  .contact-page-modern .contact-form-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .about-vision .vision-text {
    padding-left: 0;
    margin-top: 40px;
  }
  .facilities-bento .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facilities-bento .bento-grid .bento-item.item-lg {
    grid-column: span 2;
  }
}
/* Mobile Adjustments */
@media (max-width: 768px) {
  .breadcrumb-area {
    padding: 80px 0;
  }
  .breadcrumb-area .breadcrumb-content .page-title {
    font-size: 40px;
  }
  .breadcrumb-area .breadcrumb-content .ghost-watermark {
    font-size: 60px;
    letter-spacing: 5px;
  }
}
/* The Animation for Continuous Sliding */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* --- Modern Service Listing Page Nested CSS --- */
.services-page-grid {
  background-color: #050505;
  color: var(--light);
}
.services-page-grid .tagline {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.services-page-grid .title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
}
.services-page-grid .title span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--light);
}
.services-page-grid .service-card-modern {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
}
.services-page-grid .service-card-modern .service-img {
  width: 100%;
  height: 100%;
}
.services-page-grid .service-card-modern .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.services-page-grid .service-card-modern .service-overlay {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent 60%);
  z-index: 2;
}
.services-page-grid .service-card-modern .service-overlay .service-desc {
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.services-page-grid .service-card-modern .service-overlay .service-desc .category {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.services-page-grid .service-card-modern .service-overlay .service-desc h3 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}
.services-page-grid .service-card-modern .service-overlay .service-desc p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0;
  transition: 0.3s;
}
.services-page-grid .service-card-modern .service-overlay .service-desc .more-link {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.services-page-grid .service-card-modern .service-overlay .service-desc .more-link i {
  color: var(--primary-color);
  transition: 0.3s;
}
.services-page-grid .service-card-modern .service-overlay .service-desc .more-link:hover i {
  transform: translateX(5px);
}
.services-page-grid .service-card-modern {
  /* Hover Interaction */
}
.services-page-grid .service-card-modern:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(246, 29, 35, 0.2);
}
.services-page-grid .service-card-modern:hover .service-img img {
  filter: grayscale(0%) brightness(0.6);
  transform: scale(1.1);
}
.services-page-grid .service-card-modern:hover .service-overlay {
  background: linear-gradient(to top, rgba(246, 29, 35, 0.3) 0%, rgba(0, 0, 0, 0.9) 80%);
}
.services-page-grid .service-card-modern:hover .service-overlay .service-desc {
  transform: translateY(0);
}
.services-page-grid .service-card-modern:hover .service-overlay .service-desc p {
  opacity: 1;
}

.facilities-classes {
  background-color: #050505;
  color: #FFF;
}
.facilities-classes .class-list-wrap {
  margin-top: 30px;
}
.facilities-classes .class-list-wrap .c-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  transition: 0.3s;
  cursor: pointer;
}
.facilities-classes .class-list-wrap .c-row i {
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.3s;
}
.facilities-classes .class-list-wrap .c-row:hover {
  color: var(--primary-color);
  padding-left: 10px;
}
.facilities-classes .class-list-wrap .c-row:hover i {
  opacity: 1;
  transform: translateX(0);
}
.facilities-classes .facility-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
.facilities-classes .facility-bento-grid .f-bento-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-dark);
  transition: 0.3s;
}
.facilities-classes .facility-bento-grid .f-bento-item i {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.facilities-classes .facility-bento-grid .f-bento-item p {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
.facilities-classes .facility-bento-grid .f-bento-item:hover {
  background: var(--primary-color);
  color: #fff;
}
.facilities-classes .facility-bento-grid .f-bento-item:hover i {
  color: #fff;
}
.facilities-classes .pt-highlight {
  background: linear-gradient(90deg, var(--primary-color), #8b1114);
  padding: 30px;
  text-align: center;
}
.facilities-classes .pt-highlight h5 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.facilities-classes .pt-highlight p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
}

@media (max-width: 991px) {
  .services-grid-modern .s-box {
    height: 350px;
  }
  .hammer-spotlight .hammer-info-text {
    padding-left: 0;
    margin-top: 40px;
  }
  .services-page-grid .title {
    font-size: 32px;
  }
  .services-page-grid .service-card-modern {
    height: 380px;
  }
  .services-page-grid .service-card-modern .service-overlay .service-desc p {
    opacity: 1;
    font-size: 14px;
  }
  .hero-slider .hero-slide {
    height: 70vh;
  }
  .hero-slider .hero-content h1 {
    font-size: 42px;
  }
  .footer-premium .footer-top-wrap .footer-social-v2 {
    justify-content: flex-start;
    margin-top: 20px;
  }
  .footer-premium .footer-copyright-v2 .legal-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .footer-premium .f-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
/* Mobile Adjustments */
@media (max-width: 768px) {
  .running-text-section {
    padding: 30px 0;
  }
  .running-text-section .marquee-wrapper .marquee-content span {
    font-size: 50px;
    margin-right: 30px;
  }
  .gallery-modern .gallery-item.large, .gallery-modern .gallery-item.small {
    height: 300px;
  }
  .gallery-modern .title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .hero-slider .hero-slide {
    height: 60vh;
  }
  .hero-slider .hero-content h1 {
    font-size: 32px;
  }
  .hero-slider .hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
  }
  .hero-slider .hero-content p {
    font-size: 15px;
  }
  .header-button {
    position: absolute;
    right: 77px;
    top: 23px;
  }
  .services-modern .service-content .services-list-wrapper .service-item .service-link i {
    font-size: 15px;
  }
  .services-modern .service-content .services-list-wrapper .service-item .service-link {
    aspect-ratio: 1;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
  }
  header .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 7px 11px;
    font-size: 13px;
  }
  header .navbar-brand img {
    max-width: 125px;
  }
  .hero-slider {
    height: auto;
  }
  .common-space {
    padding: 60px 0px;
  }
  .services-modern .service-content .services-list-wrapper .service-item .service-number {
    margin-right: 20px;
    font-size: 22px;
  }
  .testimonial-modern .testimonial-wrapper .testimonial-card {
    padding: 25px;
  }
  .footer-premium .footer-copyright-v2 {
    margin-top: 40px;
    padding: 13px 0 12px;
  }
  .testimonial-modern .testimonial-heading .title {
    font-size: 30px;
  }
  .gallery-modern .title {
    font-size: 30px;
  }
  .services-modern .service-content .title, .pricing-modern .title {
    font-size: 30px;
  }
  .pricing-modern .pricing-card .price-box .amount {
    font-size: 40px;
  }
  .about-text-content .main-title {
    font-size: 30px;
  }
}/*# sourceMappingURL=style.css.map */