/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

/* Navbar */
header {
  background-color: #08062f;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position:sticky;
}

header nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 16px;
}

header nav a.active {
  color: #F80EA2;
}

header nav a:hover:not(.active) {
  color: #ff2b75;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Search Box */
.search-box {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  border: none;
}

.search-input {
  padding: 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-icon {
  background-color: #1a112f;
  padding: 10px 12px;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Booking Section */
.booking-section {
  text-align: center;
  padding: 80px 20px;
  background: white;
}

.booking-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.booking-section p {
  font-size: 18px;
  font-weight: 500;
}

.date-picker {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.date-picker input[type="date"] {
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 16px;
}

.calendar-icon {
  background: #000;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
}

/* Footer */
footer {
  background-color: #0d0a43;
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin: 5px 0;
  font-size: 14px;
}

footer .social-icons i {
  margin-right: 10px;
  font-size: 18px;
}

/* General styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #000;
}

/* Navbar (both .navbar and header for reuse) */


.navbar nav, header nav {
  display: flex;
  gap: 5px;
}

.navbar nav a, header nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.navbar nav a:hover, header nav a:hover {
  color: #ff2b75;
}

.navbar nav a.active, header nav a.active {
  color: #F80EA2;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 5px;
  overflow: hidden;
}

.search-input {
  padding: 6px 12px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-icon {
  background-color: #1a112f;
  color: white;
  padding: 6px 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  padding: 40px;
  text-align: center;
  background: white;
}

.contact-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.contact-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.info-card {
  text-align: center;
  max-width: 250px;
}

.info-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 16px;
  margin: 5px 0;
}

/* Enlarged fitness image card */
.fitness-card {
  max-width: 500px;
}

.fitness-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}

.fitness-card p {
  font-size: 24px;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  flex-wrap: wrap;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    align-items: center;
  }

  .navbar, header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .fitness-card p {
    font-size: 20px;
  }
}
/* Reset + general styles */
* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

/* ---------- Navbar shared styles ---------- */
.navbar, header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: px 30px;
  background-color: #0d0a43;
  color: white;
  flex-wrap: wrap;
}

.navbar nav, header nav {
  display: flex;
  gap: 15px;
}

.navbar nav a, header nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar nav a.active, header nav a.active {
  color: #F80EA2;
}

.navbar nav a:hover:not(.active), header nav a:hover:not(.active) {
  color: #ff2b75;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo img {
  width: 25px;
  height: auto;
  margin-right: 10px;
}

/* ---------- Home Hero Section ---------- */




.hero-content {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  text-align: right;
  max-width: 500px;
  z-index: 5;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 1px 1px 3px #000;
}

.download-btn, .location-btn, .login-btn {
  margin-top: 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.download-btn {
  background-color: #ff2b75;
  color: white;
  padding: 10px 20px;
}

.location-btn {
  background-color: white;
  color: black;
  padding: 10px 18px;
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.login-btn {
  background-color: white;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
}


/* ---------- Booking Page ---------- */
.booking-section {
  text-align: center;
  padding: 80px 20px;
  background: white;
}

.booking-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.booking-section p {
  font-size: 18px;
  font-weight: 500;
}

.date-picker {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.date-picker input[type="date"] {
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 16px;
}

.calendar-icon {
  background: #000;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
}

/* ---------- Contact Page ---------- */
.contact-section {
  padding: 40px;
  text-align: center;
  background: white;
}

.contact-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.contact-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.info-card {
  text-align: center;
  max-width: 250px;
}

.info-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 30px;
  margin: 5px 0;
}

.fitness-card {
  max-width: 500px;
}

.fitness-card img {
  width: 160%;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

.fitness-card p {
  font-size: 24px;
  font-weight: bold;
}
/* Only style buttons inside schedule cards */
.schedule .button-group .book-btn,
.schedule .button-group .pay-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

/* Book Now specific style */
.schedule .button-group .book-btn {
  background: #1d043b;
  color: white;
}
.schedule .button-group .book-btn:hover {
  background: #3b0b75;
}

/* Pay Now specific style */
.schedule .button-group .pay-btn {
  background: #e91e63;
  color: white;
}
.schedule .button-group .pay-btn:hover {
  background: #e91e63;
}

/* ---------- Footer ---------- */
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  flex-wrap: wrap;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 768px) {
  .navbar, header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-content {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .contact-box {
    flex-direction: column;
    align-items: center;
  }

  .fitness-card p {
    font-size: 20px;
  }
}


/* ------------------ */
/* HERO section style */
/* ------------------ */


.hero1{
  text-align:center;
  margin-top: 0px;
  padding: 4px 10px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
 

 
}




/* ------------------ */
/* Navbar styles */
/* ------------------ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a112f;
  color: white;
  padding: 10px 40px;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.navbar nav a.active {
  color: #ff2b75;
}

.search-box {
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
  margin-right: 5px;
}

/* ------------------ */
/* Search container */
/* ------------------ */
.search-container {
  background: white;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: 90%;
  max-width: 500px;
  margin: 20px auto 0;
}

.search-container input {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  border: none;
  outline: none;
  color: #000;
}

.search-container button {
  background-color: #1a112f;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* ------------------ */
/* View buttons */
/* ------------------ */
.view-buttons {
  display: flex;
  justify-content: center;
  margin: 30px 0 10px;
  gap: 10px;
}

.view-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.map-view {
  background-color: black;
  color: white;
}

.list-view {
  background-color: #ff2b75;
  color: white;
}

/* ------------------ */
/* Gym listings */
/* ------------------ */
.gym-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 40px;
}

.gym-card {
  background-color: pink;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  overflow: hidden;
}

.gym-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gym-info {
  padding: 15px;
  text-align: center;
}

.gym-info h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
  font-weight: bold;
}

.gym-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}



/* ------------------ */
/* Get Direction + Schedule button */
/* ------------------ */
.get-direction,
.get-direction:link,
.get-direction:visited {
  background-color: #1a112f;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.get-direction:hover {
  background-color: #3e2c70;
}
.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* semi-dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container .overlay .more-btn {
  background: #ff2b75;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.image-container:hover img {
  opacity: 0.3;
}

.image-container:hover .overlay {
  opacity: 1;
}


/* ------------------ */
/* Footer styles */
/* ------------------ */
footer {
  background: #1a112f;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 40px;
  flex-wrap: wrap;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 5px;
}

footer .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
}




/* --------------------
   Responsive
--------------------- */
@media (max-width: 768px) {
  .gym-hero {
    height: 70vh;
    padding: 0 10px;
  }
  .gym-hero h1 {
    font-size: 28px;
  }
  .gym-hero p {
    font-size: 16px;
  }
  .gym-section {
    flex-direction: column;
    align-items: center;
  }
}

/* ------------ Login Page Specific ------------ */

/* --------------------
   Global styles
--------------------- */
body.login-page {
  background: url("img/man.jpeg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.login-page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* --------------------
   Navbar (optional global)
--------------------- */
 /* Navbar Styling */
 
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
     font-size: 22px;
      
      position: relative;
      z-index: 10;
    }

    .navbar .logo {
      font-size: 22px;
      font-weight: bold;
      color: #fff;
      display: flex;
      align-items: center;
    }

    .navbar .logo img {
      width: 25px;
      height: auto;
      margin-right: 10px;
    }

    .navbar nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }

    .navbar nav a.active {
      color: #F80EA2; /* Only Home link will have this color */
    }

    .navbar nav a:hover:not(.active) {
      color: #ff2b75;
    }

    .login-btn {
      padding: 6px 4px;
      margin-top: 1%;
      margin-bottom: 1%;
      margin-right: 1%;
      background-color: white;
      color: black;
      border-radius: 300px;
      font-size:medium;
      font-weight:bold;
      border: none;
      cursor: pointer;
    }



/* --------------------
   Login section
--------------------- */
.login-section {
  display: flex;
  align-items: center;
  height: calc(100vh - 60px);
  padding-left: 30px;
  position: relative;
  z-index: 2;
}

.form-box {
  width: 100%;
  max-width: 360px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.form-box h2 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 25px;
  color: #111;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 30px;
  background: #ff2b75;
  color: white;
  font-size: 15px;
}

.form-box input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.form-box button[type="submit"] {
  width: 100%;
  padding: 12px;
  border: none;
  background: black;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-box button[type="submit"]:hover {
  background: #333;
}

/* --------------------
   Sign up section inside form-box
--------------------- */
.form-box .signup {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.form-box .signup button,
.form-box .signup a button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.form-box .signup button:hover,
.form-box .signup a button:hover {
  background: #0056b3;
}

/* --------------------
   Responsive adjustments
--------------------- */
@media (max-width: 768px) {
  .login-section {
    flex-direction: column;
    padding-left: 0;
    padding-top: 30px;
  }

  .form-box {
    margin: auto;
  }
}

/* ------------ Session Page Specific ------------ */

.weekdays {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: #fff;
  font-weight: bold;
}

.weekdays div {
  margin: 0 15px;
  cursor: pointer;
}

.schedule {
  padding: 20px 40px;
}

.card {
  display: flex;
  align-items: center;
  background: #ffd5ec;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 20px;
}

.card-content {
  flex: 1;
}

.class-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.class-time {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
}

.duration {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.class-hour {
  font-size: 16px;
  font-weight: 600;
  color: #a3004f;
  margin-right: 20px;
}

.book-btn {
  background: #1a112f;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.book-btn:hover {
  background: #3e2c70;
}

@media (max-width: 600px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
  }
  .class-hour {
    margin: 10px 0 0 0;
  }
}
/* BUTTON LINKS */
.join-btn, .book-btn {
  display: inline-block;
  background-color: #1a112f;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.join-btn:hover, .book-btn:hover {
  background-color: #3e2c70;
}

/* SCHEDULE CARDS */
.schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-content {
  padding: 10px;
  text-align: center;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #000;
}

/* Navbar */
.navbar {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.navbar .logo {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.navbar nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 16px;
}

.navbar nav a.active {
  color: #ff2b75;
}

.navbar nav a:hover:not(.active) {
  color: #ff2b75;
}

.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 5px;
  overflow: hidden;
}

.search-input {
  padding: 6px 12px;
  border: none;
  font-size: 14px;
  outline: none;
  color: black;
}

.search-icon {
  background-color: #1a112f;
  color: white;
  padding: 6px 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content */
.container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 300px;
}

.left h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.left img {
  width: 100%;
  border-radius: 8px;
}

.right {
  flex: 1;
  min-width: 300px;
}

.right img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.right h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.right ul {
  list-style-type: decimal;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  flex-wrap: wrap;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
/* Navbar same as your existing style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #090944;
  padding: 15px 40px;
  color: white;
}

.navbar .logo {
  font-size: 22px;
  font-weight: bold;
}

.navbar nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 16px;
}

.navbar nav a.active,
.navbar nav a:hover {
  color: #F80EA2; /* Pink highlight */
}

.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.search-input {
  padding: 6px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  color: black;
}

.search-icon {
  background-color: #1a112f;
  color: white;
  padding: 6px 10px;
  font-size: 16px;
}

/* Services container */
.services-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.services-container h2 {
  font-size: 32px;
  color: #0d0a43;
  margin-bottom: 30px;
}

/* Inner search on services page */
.inner-search-container {
  margin-bottom: 30px;
}

.inner-search-input {
  padding: 10px 15px;
  width: 250px;
  border: 2px solid #0d0a43;
  border-radius: 20px 0 0 20px;
  outline: none;
}

.inner-search-btn {
  padding: 10px 15px;
  background: #0d0a43;
  color: white;
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
}

/* Service cards grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-card {
  position: relative;
  width: 280px;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 18px;
  padding: 8px;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Footer same as your existing style */
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  flex-wrap: wrap;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card {
    width: 90%;
  }
}



/* Footer */
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 30px 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-search {
    flex-direction: column;
  }

  .services-search input,
  .services-search button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }
}
/* Membership Section */
.membership-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.membership-container h2 {
  font-size: 32px;
  color: #0d0a43;
  margin-bottom: 40px;
}

/* Membership Cards */
.membership-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.membership-card {
  background: #0d0a43;
  color: white;
  padding: 25px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.membership-card h3 {
  color: #ff2b75;
  margin-bottom: 15px;
}

.membership-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.membership-card ul li {
  margin: 8px 0;
  font-size: 14px;
}

.membership-card .price {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.membership-card .join-btn {
  background: #ff2b75;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}

.membership-card .join-btn:hover {
  background: #e02465;
}

.membership-card:hover {
  transform: translateY(-5px);
}
.join-btn {
  background-color: #1a112f;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none; /* removes underline */
  display: inline-block;
  transition: background-color 0.3s ease;
}

.join-btn:hover {
  background-color: #3e2c70;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .membership-card {
    width: 100%;
    max-width: 300px;
  }
}
/* Gallery section in single row */
.gallery-section {
  max-width: 1100px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.gallery-section .gallery-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-section .gallery-image img:hover {
  transform: scale(1.05);
}

/* Responsive stacking on small screens */
@media (max-width: 768px) {
  .gallery-section {
    flex-direction: column;
    align-items: center;
  }

  .gallery-section .gallery-image img {
    max-width: 90%;
  }
}
/* Reset & global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position:sticky;
  top: 0%;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  background: #090944;
  color: white;
}

.navbar .logo {
  font-size: 20px;
  font-weight: 500;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #ff2b75;
}

/*dropdown*/
.login-section select {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: none;
  border-radius: 25px;
  background-color: #e91e63; /* same as your pink inputs */
  color: white;
  font-size: 16px;
  outline: none;
  appearance: none; /* removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Optional: add a custom dropdown arrow */
.login-section select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

/* About section (gym detail) */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 4000px;
  margin: 80px auto;
  padding: 0 20px;
  gap: 40px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.text-section, .video-section {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-section {
  flex: 1 1 55%;
}

.text-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.video-section {
  flex: 1 1 40%;
}

video {
  width: 100%;
  height: 360;
  border-radius: 20px;
}

/* Responsive for phones and small screens */
@media (max-width: 768px) {
  .container {
    flex-direction:calc();
  }

  .text-section, .video-section {
    flex: 1 1 100%;
  }
}


.about-image img {
  position: relative;
  right: 70px;
  width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.about-content h1 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.star-rating {
  font-size: 28px;
  color: #f39c12; /* rich gold */
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 18px;
  margin: 8px 0;
}

.about-content h3 {
  margin-top: 20px;
  font-size: 19px;
}

.about-content ul {
  list-style: disc inside;
  margin-top: 10px;
}

.button-group {
  margin-top: 25px;
}

.get-direction {
  background: #ff2b75;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 15px;
  display: inline-block;
  transition: background 0.3s;
}

.navbar1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
  background: #1a112f;
  color: white;
}
.get-direction:hover {
  background: #e91e63;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content ul {
    text-align: left;
  }
}

/*terms*/
.terms-container {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.terms-container h2, 
.terms-container h3 {
  color: #1d043b;
}

.terms-container p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.home-page .image-fader {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.home-page .image-fader img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeAnimation 9s infinite;
}
.home-page .image-fader img:nth-child(1) { animation-delay: 0s; }
.home-page .image-fader img:nth-child(2) { animation-delay: 3s; }
.home-page .image-fader img:nth-child(3) { animation-delay: 6s; }
.home-page .image-fader img:nth-child(4) { animation-delay: 8s; }

@keyframes fadeAnimation {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

.home-page .navbar {
  padding: 20px;
  background: #090944;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-page .navbar nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}
.home-page .navbar .login-btn {
  color: #0b0b0b;
  text-decoration: none;
}


.home-page .hero h1 {
  color: #efefef;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.home-page .hero button, .home-page .hero a {
  margin: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}
.home-page .download-btn {
  background: #e91e63;
  color: white;
}
.home-page .location-btn {
  background: #e0e0e0;
  color: #333;
}
/* Booking section */
.booking-section {
  max-width: 600px;
  margin: 30px auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.booking-section h2 {
  margin-bottom: 10px;
  color: #0d0a43;
}

.booking-section p {
  margin-bottom: 20px;
}

.booking-section label {
  display: block;
  margin-bottom: 5px;
}

.booking-section select,
.booking-section input[type="time"],
.booking-section input[type="date"] {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.booking-section button {
  background-color: #0d0a43;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-section button:hover {
  background-color: #e91e63;
  color: #0d0a43;
}

/* Footer styles */
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 15px;
  margin-top: 40px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
}

footer ul li,
footer nav li {
  margin-bottom: 8px;
}

footer nav a {
  color: white;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

footer .social-icons i {
  font-size: 24px;
  margin-right: 10px;
  cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    margin-top: 10px;
  }

  .booking-section {
    margin: 15px;
    padding: 20px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer div {
    margin-bottom: 20px;
  }
}
/* Discount section */
.discount-section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
}

.discount-section h2 {
  color: #0d0a43;
  margin-bottom: 10px;
}

.discount-section p {
  margin-bottom: 30px;
  font-size: 18px;
}

.discount-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.discount-card {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.discount-card:hover {
  transform: scale(1.05);
}

.discount-card h3 {
  color: #0d0a43;
  margin-bottom: 10px;
}

.discount-card p {
  margin-bottom: 15px;
}

.discount-card button {
  background-color: #0d0a43;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.discount-card button:hover {
  background-color: #e91e63;
  color: #0d0a43;
}
.btn, .discount-card a {
  display: inline-block;
  background-color: #0d0a43;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover, .discount-card a:hover {
  background-color: #e91e63;
  color: #0d0a43;
}
footer {
  background-color: #0d0a43;
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 15px;
  margin-top: 40px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li,
footer nav li {
  margin-bottom: 8px;
}

footer nav a {
  color: white;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

footer .social-icons i {
  font-size: 24px;
  margin-right: 10px;
  cursor: pointer;
}

/* Footer responsive tweaks */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer div {
    margin-bottom: 20px;
  }
}

/* Make discount cards responsive */
@media (max-width: 768px) {
  .discount-cards {
    flex-direction: column;
    align-items: center;
  }

  .discount-card {
    width: 90%;
  }
}

.hero-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, #5230a1, #630843);
}

.hero-left {
  max-width: 55%;
}

.hero-left h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 0px;
}

.hero-left span {
  color: #39c6b1;
}

.hero-left p {
  margin-bottom: 25px;
  font-size: 16px;
  color: #ccc;
}

.hero-buttons button {
  padding: 12px 25px;
  font-size: 16px;
  margin-right: 10px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.get-started {
  background-color: #159e87;
  color: white;
}

.watch-tutorial {
  background-color: transparent;
  color: white;
  border: 2px solid #00c9a7;
}

.hero-right video {
  width: 700px;
  animation: float 3s ease-in-out infinite;
}




/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .hero-left, .hero-right,
  .about-left, .about-right,.hero-right video{
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }
}

/* Footer */
footer {
  background-color: #0d0a43;
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin: 5px 0;
  font-size: 14px;
}

footer .social-icons i {
  margin-right: 10px;
  font-size: 18px;
}
/* Footer */
footer {
  background-color: #0d0a43;
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer div {
  margin: 10px 20px;
}

footer h4 {
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin: 5px 0;
  font-size: 14px;
}

footer .social-icons i {
  margin-right: 10px;
  font-size: 18px;
}