
body{
    margin:0;
    padding:0;
    background-image:url(ishigym.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height:559px;
    width:1000px;
}.heading{
    padding-left:410px;
    margin-top: 290px;
    color:#f7faf8;
    font-size: xx-large;
    font-family:'Bebas Neue', sans-serif ;
    padding-top:20px;
    text-align:center;
  
}
.heading h1{
    background: rgba(0, 0, 0, 0.5); /* soft dark overlay */;

}

.gym{
    font-family:'Times New Roman', Times, serif;
    color:#fcff3c;
    line-height: 100px;
    padding-top:10px;
    background: rgba(0, 0, 0, 0.5); /* soft dark overlay */;
}
.middle-linee{
   padding-bottom:70px;
   color:#fefff4;
   font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   line-height: 100px;
   background: rgba(0, 0, 0, 0.5); /* soft dark overlay */;
    
}

.gym h2{
    line-height: 2px;
    background: rgba(0, 0, 0, 0.5); /* soft dark overlay */;
}


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background-color: #111;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #111;
      color: white;
    }

    /* Sidebar navbar */
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 220px;
      background-color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 40px;
      animation: slideInLeft 1s ease forwards;
      box-shadow: 2px 0 10px rgba(255, 94, 0, 0.3);
    }

    .logo {
      font-size:45px;
      font-weight: bold;
      margin-bottom: 40px;
      letter-spacing: 2px;
      color: #ff5e00;
      animation: fadeIn 1s ease;
    }

    .nav-links {
      display: flex;
      flex-direction: column;
      gap: 25px;
      width: 100%;
      padding-left: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      padding: 10px;
      transition: all 0.3s ease;
      border-left: 4px solid transparent;
    }

    .nav-links a:hover {
      color: #ff5e00;
      background-color: #1a1a1a;
      border-left: 4px solid #ff5e00;
      transform: translateX(5px);
    }

    /* Animation */
    @keyframes slideInLeft {
      0% {
        transform: translateX(-100%);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* For rest of the content */
    .content {
      margin-left: 240px;
      padding: 40px;
    }
