body {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    background-color: rgb(202, 194, 194);
  }
  html {
    scroll-behavior: smooth;
  }
  



/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  color: #fff;
  height: 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.navbar .logo {
  font-weight: 500;
  font-size: 38px;
  color: red;
  font-family: "Bokor", system-ui;
}

.navbar .menu-toggle {
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Sidebar Styling */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #444;
  color: #fff;
  transition: right 0.3s ease;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  /* padding-top: 60px; */
  z-index: 20;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 20px;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.sidebar ul li a:hover {
  text-decoration: 2px underline;
  text-underline-offset: 5px;
}

/* Close Button */
.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 15;
}

.tag {
  position: absolute;
  display: flex;
  bottom: 1rem;
  font-family: "Waiting for the Sunrise", cursive;
  font-size: 2vw;
  font-weight: 200;
  font-style: normal;
  transform: translate(50%, 50%);
}
.sidebar ul li i {
  height: 0.2rem;
  margin-right: 10px;
}
@media (max-width: 1024px) {
  .tag {
    bottom: 1.2rem;
    font-size: 3.5vw;
  }
}

@media (max-width: 768px) {
  .tag {
    bottom: 0.5;

    font-size: 3.5vw;
  }
}

@media (max-width: 480px) {
  .tag {
    bottom: 1rem;
    right: 11rem;
    font-size: 4vw;
  }
}













  .branches-section {
    padding: 50px 20px;
    text-align: center;
}

.branches-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.branches-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.branches-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.branch-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card h3 {
    font-size: 1.5rem;
    color: #f77f00;
    margin-bottom: 10px;
}

.branch-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.branch-card .branch-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: gray;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.branch-card .branch-link:hover {
    background-color: rgb(90, 89, 89);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .branches-section h2 {
        font-size: 2rem;
    }

    .branches-section p {
        font-size: 1rem;
    }
}

  




  
/* Footer Styling */
.gym-footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gym-footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.gym-footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f39c12;
}

.footer-social .social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
