/*Start of CSS file*/





body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
}






@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .navbar nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .navbar nav a {
    font-size: 0.95rem;
  }

  .phone {
    margin-top: 10px;
  }

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




@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-video {
    object-fit: cover;
    height: 100%;
  }
}



@media (max-width: 768px) {
  .hg-btn {
    display: none;
  }

  .hg-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hg-item {
    scroll-snap-align: center;
  }
}



@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-image img {
    width: 100%;
    border-radius: 12px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content h3 {
    font-size: 1.2rem;
  }

  .about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}



@media (max-width: 600px) {
  .program-card {
    padding: 25px 18px;
  }

  .program-card h3 {
    font-size: 1.2rem;
  }

  .program-card h4 {
    font-size: 0.9rem;
  }

  .program-card p {
    font-size: 0.88rem;
  }
}









/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%; /* 🔥 reduced height */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px); /* premium glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.navbar nav {
  display: flex;
  gap: 28px;
}

.navbar nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ddd;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #f5a623;
}

.navbar nav a.active {
  color: #fff;
}

.navbar nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #f5a623;
  border-radius: 2px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 42px; /* reduced */
  width: auto;
}

.gym-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}


.phone a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.phone a:hover {
  text-shadow: 0 0 8px rgba(245, 166, 35, 0.4);
}


/* Hero */
.hero {
  position: relative;
  text-align: center;
}

.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 500px; /* Adjust as needed */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
    border: 8px solid #000000;      /* White border, adjust thickness/color as needed */
  border-radius: 29px;         /* Rounded corners, adjust as needed */
  box-sizing: border-box;
  filter: brightness(0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  top: 30%;
  width: 100%;
}

.hero-text button {
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.about-section {
  background-color: #111;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #f39c12;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-content, .about-image {
    max-width: 100%;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .about-content h3 {
    font-size: 20px;
  }
}


/* About */


/* ===== ABOUT HEADING STRIP (unchanged, just kept clean) ===== */

.about-heading-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #a32e2e 70%);
  border-radius: 40px;
  margin: 0 auto 40px auto;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 0 20px;
}

.about-heading {
  color: #fff;
  font-size: 2rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 30px 0;
  margin: 0;
  text-transform: uppercase;
}


/* ===== ABOUT SECTION LAYOUT ===== */

.about-section {
  padding: 70px 8%;
  background: #0d0d0d;
}

.about-container {
  display: flex;
  align-items: stretch; /* 🔥 makes image tall */
  gap: 50px;
}


/* ===== LEFT IMAGE (TALLER & STRONGER) ===== */

.about-image {
  flex: 1;
  min-height: 520px; /* controls height */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}


/* ===== RIGHT CONTENT (TIGHTER TEXT SPACING) ===== */

.about-content {
  flex: 1;
  color: #fff;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 14px; /* reduced */
}

.about-content h3 {
  font-size: 1.4rem;
  color: #f5a623;
  margin-top: 24px;  /* reduced vertical gap */
  margin-bottom: 6px;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 12px; /* tighter spacing */
  margin-top: 0;
}


/* ===== MOBILE OPTIMIZATION ===== */

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-image {
    min-height: 360px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}


/* ===============================
   HORIZONTAL GALLERY – FINAL
================================ */

/* Prevent page horizontal scroll */
body {
  overflow-x: hidden;
}

/* Section wrapper */
.h-gallery {
  padding: 60px 0;
  background: transparent;
  position: relative;
}

/* Inner container */
.h-gallery-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* ===============================
   SCROLL TRACK
================================ */
.hg-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px;

  /* Kill scrollbar (premium) */
  scrollbar-width: none;
}
.hg-track::-webkit-scrollbar {
  display: none;
}

/* ===============================
   SLIDES
================================ */
.hg-item {
  flex: 0 0 70%;
  max-width: 70%;
  scroll-snap-align: center;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

/* ===============================
   IMAGE
================================ */
.hg-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Hover zoom */
.hg-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1.1);
}

/* ===============================
   GRADIENT OVERLAY
================================ */
.hg-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hg-item:hover::after {
  opacity: 1;
}

/* ===============================
   CAPTION / TITLE
================================ */
.hg-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.45s ease;
}

.hg-item:hover .hg-caption {
  opacity: 1;
  transform: translateY(0);
}

.hg-caption h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.hg-caption p {
  font-size: 0.9rem;
  color: #ddd;
  margin: 0;
}

/* ===============================
   ARROWS
================================ */
.hg-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: all 0.25s ease;
}

.hg-btn:hover {
  background: #f5a623;
  color: #000;
  transform: translateY(-3px);
}

/* ===============================
   DOTS
================================ */
.hg-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
}

.hg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hg-dot.active {
  background: #f5a623;
  transform: scale(1.4);
}

/* ===============================
   LIGHTBOX (FULLSCREEN)
================================ */
.hg-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hg-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.hg-lightbox.active {
  display: flex;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 980px) {
  .hg-item {
    flex: 0 0 82%;
    max-width: 82%;
  }

  .hg-item img {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .hg-item {
    flex: 0 0 92%;
    max-width: 92%;
  }

  .hg-item img {
    height: 220px;
  }

  .hg-btn {
    display: none;
  }
}



.programs-section {
  background: #0d0d0d;
  padding: 60px 8%; /* reduced vertical padding */
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.4rem; /* slightly smaller, more balanced */
  margin-bottom: 40px; /* reduced gap */
  font-weight: 700;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; /* tighter grid spacing */
}

.program-card {
  background: #141414;
  padding: 28px 22px; /* reduced internal padding */
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.program-card i {
  font-size: 38px; /* slightly smaller */
  color: #f5a623;
  margin-bottom: 14px; /* tighter spacing */
}

.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px; /* tighter */
}

.program-card:nth-child(2) i {
  transform: rotate(-90deg);
}


.program-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 10px; /* reduced gap */
}

.program-card p {
  font-size: 0.88rem;
  line-height: 1.5; /* tighter text block */
  color: #ccc;
  margin: 0;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.18);
  border-color: rgba(245, 166, 35, 0.4);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-title {
    font-size: 2rem;
  }
}


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

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


/* Contact */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 50px;
}

.contact-left {
  width: 45%;
}

.contact-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-left h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-left p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin: 30px 0;
  transition: 0.3s;
}

.whatsapp-btn img {
  width: 30px;
  margin-right: 10px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.contact-details {
  margin-top: 20px;
}

.contact-details a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
}

.contact-map {
  width: 50%;
  height: 550px; 
  margin-left: 40px;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-map {
    width: 100%;
  }

  .contact-map {
    margin-left: 0;
    margin-top: 30px;
    height: 400px;
  }
}
/* ===============================
   SOCIAL CONNECT SECTION
================================ */

.social-connect {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 40px ;
}

/* Center icons properly */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

/* Base icon style */
.social-icons a {
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Lift effect */
.social-icons a:hover {
  transform: translateY(-4px);
}

/* ===============================
   PLATFORM-SPECIFIC HOVERS
================================ */

/* Instagram – gradient flex */
.social-icons a:hover .fa-instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );

  -webkit-text-fill-color: transparent;
}

/* Pinterest */
.social-icons a:hover .fa-pinterest-p {
  color: #e60023;
}

/* Facebook */
.social-icons a:hover .fa-facebook-f {
  color: #1877f2;
}

/* X (Twitter) */
.social-icons a:hover .fa-x-twitter {
  color: #ffffff;
}

/* ===============================
   RESPONSIVE FIXES
================================ */

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map {
    height: 300px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  footer nav {
    flex-direction: column;
    gap: 10px;
  }

  footer p {
    font-size: 0.85rem;
  }
}



/* Footer */
footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  margin: 0 10px;
  text-decoration: none;
}

.footer-nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

footer p {
  font-size: 12px;
  margin: 10px 0;
}
footer h2 {
  margin-bottom: 20px;
}

/* Add more space below the footer nav */
.footer-nav {
  margin-bottom: 24px; /* Increase this value for more space */
}

footer nav a,
.footer-nav a {
  color: inherit;           /* Use the footer text color */
  text-decoration: none;    /* Remove underline */
  cursor: default;          /* Arrow cursor, not pointer */
  font-weight: normal;      /* Optional: normal weight */
  transition: color 0.3s ease; /* Smooth color transition */
  font-size: 20px;          /* Adjust font size as needed */
  margin: 0 10px;          /* Add some horizontal spacing */
  padding: 5px 0;          /* Add some vertical padding */
  display: inline-block;    /* Make it inline-block for better spacing */
  text-transform: uppercase; /* Optional: uppercase for a more modern look */
}

footer nav a,
.footer-nav a {
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s;
}

footer nav a:hover,
.footer-nav a:hover {
  transform: scale(1.2); /* Grows 20% bigger on hover */
  color: #f39c12; /* Change to your preferred highlight color */
}



/* Gallery Page Styles */
.gallery {
  padding: 50px 20px;
  text-align: center;
}

.gallery-heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #222;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Instagram Feed Section */
.instagram-feed {
  padding: 50px 20px;
  text-align: center;
  background: #f7f7f7;
}

.instagram-feed h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}


