<style>










#about {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: white;
  max-width: 800px;
  margin: auto;
}




.mm {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;
  background-color: #000;
}


#para {
  text-align: justify;    /* optional: clean alignment */
}
#jj {
    height:auto;
   
    
    object-fit: contain;
    width:120px;
   
}


@media (max-width: 768px) {
  #jj {
    width: 90px;
    
  }
}


.mm{
    background-color: #000000;
    
}


#jj{
     background-color: #111;
     
}






.navbar {
  position: relative;
}


.menu-toggle {
  position: absolute;   /* stick to screen */
  top: 15px;         /* distance from top */
  left:10px;       /* move to right side */

  font-size: 28px;
  cursor: pointer;

  background: black;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;

  z-index: 2000;     /* stay above everything */
}


















#about h1 {
  margin-bottom: 20px;
}

#about p {
  margin-bottom: 15px;
  line-height: 1.6;
}




.join-btn {
  background:#35893d;
  color: #000;
  left:5%;
  position: fixed;
  bottom:50%;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(59, 96, 79, 0.5);
}

/* Hover effect */
.join-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(23, 72, 49, 0.9);
}

/* Click effect */
.join-btn:active {
  transform: scale(0.95);
}


social-box h3{
  text-decoration: none;
  color: white ;
}


body{
  background-color: #000000;
}









#contact{
  [position: relative;]
}

.kk{
  position: absolute;
  right:60%;
}



#phn{
  
  height:30px;
  position: absolute;
  left:83%;
  top:30px;
  bottom: 30px;
  border-radius: 100%;
   z-index: 1000;
  animation: pulse 1.5s infinite;
}





#whats{
  position: absolute;
   height:35px;
   top:30px;
   left:70%;
   cursor: pointer;
  z-index: 1000;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1.2); }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}








#hz {
  position: relative;
  animation: slideLeft 2s ease-out forwards;
  font-family: "Roboto Condensed", sans-serif;
}



@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



#hz {
   color: #000000;
  background-color: #000000;
  display: flex;
  justify-content: center;
  
font-family: "Saira Stencil", sans-serif;
 margin-right: 6px;
}



#hx {
  color: #3bad37;
font-family: "Saira Stencil", sans-serif;
  
}



/* NAVBAR */
nav {
  position: sticky;
  width: 100%;
  background: rgb(7, 1, 5);
  padding: 15px;
  z-index: 1000;
}

nav ul {
  
  color: #1ebe5d;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* VIDEO HERO */
.hero {
 
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

/* ABOUT */
#about {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: white;
}

/* SLIDER */
.slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  color: white;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.slide h1 {
  position: absolute;
  top: 40%;
  width: 100%;
  font-size: 40px;
  
}

/* ACTIVE SLIDE */
.active {
  display: block;
}



/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }
/*service*/
#services {
  padding: 80px 20px;
  text-align: center;
  background-color: black;
  position: relative;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.service-box {
  background: #3c8437dc;
  padding: 25px;
  width: 300px;
  border-radius: 12px;
  transition: 0.3s;

  /* subtle glow */
  box-shadow: 
   
}



.service-box p{
  color: #000000;
}





.service-box:hover {
  transform: translateY(-10px);

  /* stronger glow on hover */
  box-shadow: 
    0 0 15px rgba(70, 214, 70, 0.6),
    0 0 40px rgba(52, 212, 103, 0.4),
    0 0 60px rgba(70, 187, 57, 0.2);
}

.service-box h2 {
  margin-bottom: 10px;
  color: #000000cd; /* cleaner yellow */
}


#services h1 {
  margin-bottom: 10px;
  color: #d9b216cd; /* cleaner yellow */
}







/* CONTACT */
#contact {
  padding: 60px;
  text-align: center;
  background: #eee;
}

button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}


#contact {
  padding: 80px 20px;
  text-align: center;
  background: #f5f5f5;
}

#contact h1{
  color: #35893d;
  font-family: "Saira Stencil", sans-serif;
  
  

}

.whatsapp-box {
  margin-top: 30px;
}

.whatsapp-box img {
  width: 80px;
  margin-bottom: 10px;
}

.whatsapp-box h2 {
  margin: 10px 0;
}

.whatsapp-box button {
  padding: 12px 25px;
  background: #1ebe5d;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.whatsapp-box button:hover {
  background: #1ebe5d;
}


#contact {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: white;
}

.social-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-box {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  width: 200px;
  transition: 0.3s;
}

.social-box:hover {
  transform: translateY(-10px);
  background: #333;
}

.social-box img {
  width: 60px;
  margin-bottom: 10px;
}

.social-box button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background: #25D366;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* Different button colors */
.social-box:nth-child(2) button {
  background: #E1306C;
}

.social-box:nth-child(3) button {
  background: #1877F2;
}

#location {
  padding: 60px 20px;
  text-align: center;
  background: #000000;
}

#location h1{
  font-family: "Saira Stencil", sans-serif;
  color: #3d963a;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

#h{
  background-color: #222;
  color: #1ebe5d;
  display: flex;
  justify-content: center;
}



#navbar {
  display: none;
  background: black;
  padding: 10px;
}

#navbar ul {
  list-style: none;
  padding: 0;
}

#navbar ul li {
  margin: 10px 0;
}

#navbar ul li a {
  color: white;
  text-decoration: none;
}

/* Menu button */
.menu-toggle {
  font-size: 25px;
  cursor: pointer;
  padding: 10px;
  background: black;
  color: white;
}











#butt{
  border-radius: 100%;
  width:2%;
  object-fit: cover;
  background-color: #823030;
  position: sticky;
}



/* Smooth fade-in for sections */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar hover effect */
#navbar ul li a {
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

#navbar ul li a:hover {
  color: #ff4c4c;
  border-bottom: 2px solid #ff4c4c;
}

/* Image slider transition */
.slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
}

.slide.active {
  opacity: 1;
  position: relative;
}

/* Button hover effect */
button, #joinBtn {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover, #joinBtn:hover {
  transform: scale(1.1);
  background-color: #ff4c4c;
  color: #fff;
}

/* Service box hover effect */
.service-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


#reviews {
  padding: 60px 20px;
  text-align: center;
  background: #111;
  color: white;
}

#reviews h1{
  color: #35893d;
  font-family: "Saira Stencil", sans-serif;
}

.review-box {
  background: #222;
  margin: 15px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
}



.review-box h4{
 
  color: #35893d;
}


.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 2px 10px;
  font-size: 14px;
  border-top: 1px solid #222;
}

.footer p {
  margin: 5px 0;
}


#srii{
  color: #3a9d5f;
}

.join-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width:25%;

  background: #46ab4b;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;

  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;

  z-index: 1000;

  box-shadow: 0 0 15px rgba(59,130,246,0.5);
  transition: 0.3s ease;
}

.join-btn:hover {
  background: #1e3a8a;
  box-shadow: 0 0 25px #60a5fa;
  transform: scale(1.08);
}


.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.offer-box {
  position: relative;
  background: #111;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  width: 280px;

  box-shadow: 0 0 20px rgb(71, 169, 51);
}

/* ❌ CLOSE BUTTON */
#closeBtn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

#closeBtn:hover {
  color: #3fc961;
}

/* BUTTON */
.offer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #449f3b;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
}

.offer-box h2{
  color: #ffffff;
}



.offer-box p{
  color: #ffffff;
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.slide h1 {
  position: absolute;
  bottom: 20%;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 32px;
  padding: 0 20px;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}







/* 🔥 MOBILE (THIS IS WHAT YOU ASKED) */
@media screen and (max-width: 480px) {

  .slider {
    height: 50vh;
  }

  .slide h1 {
    font-size: 18px;
    bottom: 15%;
    padding: 0 10px;
  }

  .prev, .next {
    font-size: 18px;
    padding: 8px;
  }

  .prev { left: 8px; }
  .next { right: 8px; }

}




/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* WRAPPER */
.info {
  width: 100%;
}

/* SECTION (slightly left with clean gap) */
.info-section {
  max-width: 600px;
  margin-left: 15px;   /* 👈 slight left gap */
  margin-right: auto;
  padding: 20px 10px;
}

/* HEADINGS */
#trainer, #info, #time {
  color: #39a944;
  margin: 20px 0 10px;
  font-size: 18px;
}

/* BOXES */
.timing-box,
.info-box {
  width: 100%;
  background: #111;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;

  box-shadow: 0 0 10px rgba(57, 169, 68, 0.3);
}

/* TRAINER LINKS */
.timing-box a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
}

/* REMOVE P GAP */
.timing-box a p {
  margin: 0;
}

/* HOVER EFFECT */
.timing-box a:hover {
  color: #39a944;
  transform: translateX(5px);
}

/* TEXT */
.info-box p,
.timing-box p {
  margin: 6px 0;
  font-size: 15px;
}

/* GREEN TIME TEXT */
#srii {
  color: #39a944;
}

/* 📱 MOBILE */
@media screen and (max-width: 480px) {

  .info-section {
    margin-left: 10px;   /* smaller left gap for phone */
    padding: 15px 8px;
  }

  #trainer, #info, #time {
    font-size: 16px;
  }

  .timing-box,
  .info-box {
    padding: 12px;
  }

  .timing-box a,
  .timing-box p,
  .info-box p {
    font-size: 14px;
  }
}



a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* removes blue color */
}



.timing-box a {
  text-decoration: none;
  color: white; /* or whatever color you want */
}


.timing-box a:hover {
  color: #349166; /* your theme color */
}





</style>
