.jai-shree-ram {
  font-size: 50px;
  color: orange;
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 35px;
  padding-top: 50px;
  padding-bottom: 30px;
  text-decoration-line: underline; /* Add underline */
  /* text-decoration-style: dotted; Set the underline style to dotted */
  text-decoration-color: #26d34f; /* Set the underline color */
  text-decoration-thickness: 10px; /* Set the underline thickness */
  text-underline-offset: 0.3em; /* Optional: Adjust the underline offset */
}

.section-title-image
{
    padding: 30px;
}
    /* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

p {
  font-family: "Times New Roman", Times, serif;
  color: #ccc;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background-color: #181617; /* Dark background */
  color: #fff;
  padding: 20px 0;
}

/* General Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #181617; /* Dark background */
  color: #fff;
  transition: background-color 0.3s ease;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo img {
  height: 100px;
  margin-right: 10px; /* Add some space between the logo and the gym name */
}

/* Navbar Links Styles */
.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar li {
  margin-right: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 1.2em;
}

.navbar a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff4500;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar a:hover::before {
  transform: scaleX(1);
}

.navbar a:hover {
  color: #ff4500;
  transform: scale(1.1);
}

/* No Margin for Last Item */
.navbar li:last-child {
  margin-right: 0;
}

/* Hover Effect for Logo */
.logo:hover {
  color: #ff4500;
  transform: scale(1.1);
}

/* Navbar Background Change on Hover */
.navbar:hover {
  background-color: #1f1f1f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .navbar li:last-child {
    margin-bottom: 0;
  }
}

/* ***************************************************************** */

/* ***************************************************************** */
/*                            HERO SECTION                           */
/* ***************************************************************** */

/* General styles */
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
  height: 100%;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("../static/SIR1.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

.hero-title {
  font-family: "Poppins", sans-serif; /* Change the font to Poppins */
  font-size: 4em;
  margin: 0;
  animation: slideInFromLeft 1.5s ease-out;
  color: #9dff00;
  text-align: center;
  margin-bottom: 1cm;
  padding-top: 100px;
}

.highlight {
  color: #ffffff;
  font-style: italic;
  font-size: 0.8em;
  text-decoration: overline;
}

/* GYM NAME SPAN TAG UNDER THE HERO SECTION */
.gym-name {
  font-family: "Poppins", sans-serif; /* Change the font to Poppins */
  font-size: 2rem;
  font-weight: bold;
  color: rgb(255, 145, 0);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
}

.gym-name:hover {
  color: #ff2f00;
  transform: scale(1.1);
}
/* *********************************** */

.hero-subtitle {
  font-size: 25px;
  margin: 1rem 0;
  animation: slideInFromRight 1.5s ease-out;
  text-align: center;
  font-family: "Poppins", sans-serif; /* Change the font to Poppins */
}

.hero-button {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #f2994a, #f2c94c);
  color: #0f0d0d;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
  background: linear-gradient(135deg, #f12711, #f5af19);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #ccc;
}

/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.5em;
    padding-top: 150px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 4em;
    padding-top: 130px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3em;
    padding-top: 100px;
  }
  .highlight {
    font-size: 0.7em;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5em;
    padding-top: 70px;
  }
  .highlight {
    font-size: 0.6em;
  }
  .hero-button {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ****************************************************** */
/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
}

/* About Section Styles */
.about {
  padding: 50px 0;
  background-color: #141414;
}

.about .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.text {
  flex: 1;
  padding: 20px;
}

.text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #efaa3a;
  letter-spacing: 1px;
}

.text p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

.image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .text,
  .image {
    flex: 100%;
    max-width: 100%;
    text-align: center;
  }

  .text h2 {
    font-size: 2rem;
  }

  .text p {
    font-size: 1rem;
  }
}

/* ****************************************************** */

/* ******************************************************* */
/*                      GYM OFFERS                         */
/* ****************************************************** */

/* Container for the offer cards */
.offer-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px;
}
/* General Card Styles */
.offer-card {
  width: 30%;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px 0;
  background-color: #fff;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image Container Styles */
.offer-image-container {
  position: relative;
}

.offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Labels Styles */
.offer-labels {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
}

.new-offer,
.offer-type {
  background-color: #28a745;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 0.8rem;
}

.offer-type {
  background-color: #ff4500;
}

/* Price Styles */
.offer-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.offer-price p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.offer-price small {
  font-size: 0.8rem;
}

/* Offer Details Styles */
.offer-details {
  padding: 20px;
  text-align: left;
}

.offer-heading {
  font-family: "Poppins", sans-serif; /* Change the font to Poppins */
  font-size: 1.2rem;
  color: #3f3f3f;
  text-decoration-line: underline; /* Add underline */
  text-decoration-color: #26d34f; /* Set the underline color */
  text-decoration-thickness: 0.2em; /* Set the underline thickness */
  text-underline-offset: 0.5em; /* Optional: Adjust the underline offset */
  margin-bottom: 10px;
  text-align: center;
}

.offer-location {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.offer-description {
  font-size: 0.9rem;
  color: #1f1d1d;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif; /* Change the font to Poppins */
}

/* Offer Meta Styles */
.offer-meta {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #777;
}

.meta-title {
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .offer-card {
    width: 45%; /* Adjust the width for medium screens */
    margin: 20px;
  }
}

@media (max-width: 992px) {
  .offer-card {
    width: 60%; /* Adjust the width for smaller screens */
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .offer-card {
    width: 80%; /* Adjust the width for tablets */
    margin: 20px;
  }
}

@media (max-width: 576px) {
  .offer-card {
    width: 100%; /* Full width for mobile devices */
    margin: 10px 0;
  }
}

/**************************************************/


/**************************************************/
/*              TRAINERS DETAILS                  */
/**************************************************/

/* Style the trainers section */
.trainers {
  background-size: cover; /* Cover the entire section */
  background-position: center; /* Center the background image */
  background-color: #181617; /* Dark background */
  padding: 40px 20px; /* Padding for top and bottom */
}

/* Style the container for trainer cards */
.trainers-cards {
  display: flex; /* Use flexbox for layout */
  justify-content: center; /* Center the items horizontally */
  align-items: center; /* Center the items vertically */
  flex-wrap: wrap; /* Allow wrapping of items if necessary */
  gap: 20px; /* Add gap between the items */
}

/* Style the individual trainer cards */
.trainer {
  flex: 1 1 calc(25% - 40px); /* Allow 4 cards per row with space in-between */
  max-width: 250px; /* Set a maximum width for the cards */
  margin: 10px; /* Add some margin between cards */
  text-align: center; /* Align text within the cards to the center */
  background-color: #161a1d; /* Background color for the cards */
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.452); /* Add a subtle shadow */
  border-radius: 20px; /* Add rounded corners */
  transition: all 0.3s ease-in-out; /* Smooth transition on hover */
  width: 100%; /* Set width to 100% of its container */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Style the trainer image */
.trainer img {
  width: 160px; /* Increase image size */
  height: 160px; /* Increase image size */
  object-fit: cover; /* Crop the image to fit within the dimensions */
  border-radius: 50%; /* Make the image circular */
  margin: 15px auto 0; /* Center the image and add some margin at the top */
  display: block; /* Make the image a block element */
}

/* Style the trainer info section */
.trainer .info {
  padding: 15px; /* Add some padding within the info section */
}

/* Style the trainer name */
.trainer .info h3 {
  font-size: 1.5em; /* Set a decent size for the trainer name */
  margin-bottom: 5px; /* Add some space below the name */
  color: #e6b800;
}

/* Style the trainer description */
.trainer .info p {
  line-height: 1.5; /* Increase line-height for better readability */
  margin-bottom: 10px; /* Add some space between paragraphs */
  color: #fff; /* Set text color for readability */
}

/* Add hover effect to trainer cards */
.trainer:hover {
  transform: scale(1.05); /* Slightly enlarge the card on hover */
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.804); /* Increase shadow on hover */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .trainer {
    flex: 1 1 calc(33.33% - 40px); /* Allow 3 cards per row on medium devices */
  }
}

@media (max-width: 768px) {
  .trainer {
    flex: 1 1 calc(50% - 40px); /* Allow 2 cards per row on tablets */
    max-width: 300px; /* Set a maximum width */
  }
}

/* Adjustments for mobile phones */
@media (max-width: 480px) {
  .trainer {
    flex: 1 1 90%; /* Increase the width of the card to take 90% of the screen */
    max-width: 100%; /* Set max width to 100% on small screens */
    margin: 15px 0; /* Remove horizontal margins */
  }

  .trainer img {
    width: 180px; /* Increase image size on smaller screens */
    height: 180px; /* Increase image size on smaller screens */
  }

  .trainer .info h3 {
    font-size: 1.5em; /* Adjust the font size for the name */
  }
}
/*************************************************************/


/* ******************************************************** */
/*                          GYM SERVICES                    */
/* ******************************************************** */
.services {
  padding: 50px 0;
  background-color: #f9f9f9;
  width: 100%;
}

.section-title {
  font-size: 2em;
  margin-bottom: 40px;
  color: rgb(0, 0, 0);
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* Increased gap for better spacing */
  margin-top: 50px;
}

.service-card {
  width: 230px;
  height: 300px;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  margin: 10px; /* Added margin for extra spacing */
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card:hover:before {
  opacity: 1;
}

.service-card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}

.service-card .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}

.service-card .info h3 {
  margin: 0;
  font-size: 1.5em;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
}

.service-card .info p {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 8px;
  text-align: justify;
  font-family: "Times New Roman", Times, serif;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .service-card {
    width: 200px;
    height: 280px;
  }
}

@media (max-width: 992px) {
  .service-card {
    width: 180px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .service-cards {
    justify-content: center;
  }
  .service-card {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .service-card {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .service-card .info h3 {
    font-size: 1.2em;
  }
  .service-card .info p {
    font-size: 14px;
  }
}
/* ****************************************************** */


/* ******************************************************** */
/*                          WHAT WE OFFERS                  */
/* ******************************************************** */

.what-we-offers {
  padding: 20px 0;
  background-color: #f4f4f4;
}

.what-we-offers .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.what-we-offers .section-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
}

.what-we-offers .offerings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.what-we-offers .offering {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 20px;
  transition: transform 0.3s ease;
}

.what-we-offers .offering:hover {
  transform: scale(1.05);
}

.what-we-offers .offering-icon {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 10px;
}

.what-we-offers .offering-title {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333;
}

.what-we-offers .offering-description {
  color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .what-we-offers .offering {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .what-we-offers .offering {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* TESTIMONIAL */
/* ************************************************* */


/* CONTACT US */
/* .contact {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-details {
  width: 45%;
}

.contact-details h2 {
  margin-bottom: 20px;
}

.contact-form {
  width: 45%;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #ff4500;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-details p {
  margin-bottom: 10px;
} */

.contact {
  position: relative;
  color: #fff;
  padding: 80px 20px;
}

.contact::before {
  content: "";
  background: url("../static/gym2.avif") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(7px);
  z-index: -1;
}

.contact .container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.contact-details,
.contact-form {
  flex: 1 1 45%;
  min-width: 280px; /* Ensures a minimum width for smaller screens */
  height: 100%;
}

.contact-details,
.contact-form,
.contact-map {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-details p {
  color: #0f0d0d;
}

.contact-map {
  flex: 1 1 100%;
  margin-top: 20px;
  height: 350px;
}

.contact-details h2,
.contact-form h2,
.contact-map h2 {
  margin-bottom: 20px;
  color: #e74c3c;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form button {
  background-color: #e74c3c;
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 10px;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #c0392b;
}

.contact-details,
.contact-form,
.contact-map {
  transition: transform 0.3s ease-in-out;
}

.contact-details:hover,
.contact-form:hover,
.contact-map:hover {
  transform: translateY(-10px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-details,
  .contact-form {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9em;
  }

  .contact h2.section-title {
    font-size: 1.8em;
  }

  .contact {
    padding: 50px 10px;
  }
}

@media (max-width: 480px) {
  .contact .container {
    padding: 20px 10px;
  }

  .contact-details,
  .contact-form {
    padding: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.8em;
  }

  .contact h2.section-title {
    font-size: 1.5em;
  }

  .contact-map {
    height: 360px;
  }
}


/* ************************************************ */

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

