
    body {
      background-color: #fafafa;
      font-family: "Poppins", Arial, sans-serif;
      overflow-x: hidden;
    }

    /* Header */
    .header {
      background: linear-gradient(90deg, #e1306c, #f77737);
      color: white;
      padding: 0;
    }
    .navbar {
      padding-left: 0;
      padding-right: 0;
       max-width: 100%; /* Ensure navbar does not exceed viewport width */
       overflow: hidden; /* Prevent overflow */
    }
    .navbar-brand {
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 1.5rem;
      user-select: none;
      color: white;
      padding-left: 0; /* Remove left padding */
      margin-left: 0; /* Remove left margin */
    }
    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.5);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    .navbar-nav .nav-link:hover {
      color: #ffde59 !important;
    }
    .academy-name {
    white-space: normal; /* Allows the text to wrap */
    font-size: 1.5rem; /* Adjust font size as needed */
    line-height: 1.2; /* Adjust line height for better spacing */
}


    /* Intro Sections */
   .intro-section {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 1rem;
  animation: fadeInUp 1s ease forwards;
  flex-wrap: wrap;
  text-align: center;
}
    .intro-section:nth-child(1) {
      background: #f0f0f0;
      animation-delay: 0.3s;
    }
    .intro-section:nth-child(2) {
      background: #ffeaea;
      animation-delay: 0.6s;
    }
    .intro-text {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0 1rem;
  user-select: none;
}
    .intro-img {
      flex: 1;
      max-height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .intro-img img {
      max-height: 60vh;
      border-radius: 15px;

      object-fit: contain;
      max-width: 100%;
    }
    @media (max-width: 768px) {
      .intro-section {
        flex-wrap: wrap;
        height: auto;
        text-align: center;
      }
      .intro-text, .intro-img {
        flex: 100%;
        max-width: 100%;
        padding: 0.5rem 0;
      }
      .intro-img img {
        max-height: 200px;
      }
    }

    /* Courses Section */
    #courses {
      padding: 3rem 2rem;
      text-align: center;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.9s;
      opacity: 0;
    }
    #courses h2 {
      margin-bottom: 2rem;
      font-weight: 700;
      color: #222;
    }
    #courses > div {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .course-box {
      background: white;
      border-radius: 18px;
      box-shadow: 0 5px 15px rgba(255, 66, 129, 0.25);
      padding: 1rem 0;
      cursor: pointer;
      width: 280px;
      height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      flex-shrink: 0;
      transition: transform 0.3s ease;
      margin-bottom: 1.5rem;
    }
    .course-box:hover {
      animation: pulsate 1.5s ease infinite;
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(255, 66, 129, 0.7);
    }
    .course-box h3 {
      margin: 0.5rem 0;
      font-weight: 700;
      color: #e1306c;
      user-select: none;
    }
    .course-box img {
      width: 260px;
      height: 220px;
      border-radius: 15px;
      object-fit: contain;
      margin-bottom: 0.8rem;
      user-select: none;
      flex-shrink: 0;
    }
    @keyframes pulsate {
      0% {
        box-shadow: 0 0 10px 2px rgba(255, 66, 129, 0.6);
      }
      50% {
        box-shadow: 0 0 20px 6px rgba(255, 66, 129, 0.9);
      }
      100% {
        box-shadow: 0 0 10px 2px rgba(255, 66, 129, 0.6);
      }
    }

    /* Gallery Carousel */
    #gallery {
      padding: 3rem 2rem;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1.2s;
      opacity: 0;
      max-width: 900px; /* limit the gallery width */
      margin-left: auto;
      margin-right: auto;
    }
    #gallery h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: #222;
    }
    .carousel-item img {
      border-radius: 15px;
      max-height: 400px;
      object-fit: cover;
      width: 100%;
      user-select: none;
    }


    /* Reviews Section */
    #reviews {
      padding: 3rem 1rem 6rem 1rem;
      background: linear-gradient(90deg, #f85032, #e73827);
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1.8s;
      opacity: 0;
      position: relative;
    }
    #reviews h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 2rem;
      color: #fff;
      user-select: none;
    }
    .reviews-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0;
    }
    .review-box {
      background: rgba(255,255,255,0.8);
      border-radius: 20px;
      flex: 0 0 200px;
      padding: 1rem;
      text-align: center;
      position: relative;
      box-shadow: 0 4px 12px rgba(255, 66, 129, 0.3);
      cursor: pointer;
      transition: transform 0.3s ease;
      user-select: none;
    }
    .review-box:hover {
      transform: scale(1.08);
      z-index: 20;
      box-shadow: 0 8px 20px rgba(255, 66, 129, 0.6);
      background: white;
    }
    .review-box img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 0.7rem;
      user-select: none;
    }
    .review-box h5 {
      margin: 0.5rem 0 0.3rem;
      font-weight: 700;
      color: #e1306c;
      user-select: none;
    }
    /* Monster can stars replacement */
    .review-box p.stars {
      margin-bottom: 0.8rem;
      display: flex;
      justify-content: center;
      gap: 4px;
      user-select: none;
      padding: 0;
      list-style: none;
    }
    .review-box p.stars span {
      width: 24px;
      height: 40px;
      background-image: url('images/white\ monstr\ main\ star.png'); /* Replace with your monster can icon path */
      background-size: contain;
      background-repeat: no-repeat;
      display: inline-block;
    }
    .review-box p.stars span.empty {
      filter: grayscale(80%) opacity(0.4);
    }
    .comment {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, 0.8rem);
      background-color: white;
      border: 1px solid #e1306c;
      padding: 0.8rem 1rem;
      border-radius: 15px;
      width: 180px;
      font-style: italic;
      font-size: 0.9rem;
      box-shadow: 0 3px 15px rgba(225, 48, 108, 0.3);
      user-select: text;
      z-index: 100;
      pointer-events: none;
    }
    .review-box:hover .comment,
    .review-box:focus .comment {
      display: block;
      pointer-events: auto;
    }

    /* Footer */
    .footer {
      background-color: #222;
      color: white;
      padding: 2rem 0;
      user-select: none;
    }
    .footer .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer h5 {
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .footer p {
      margin: 0.3rem 0;
    }
    #map {
      width: 100%;
      max-width: 320px;
      height: 200px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 12px rgba(0,0,0,0.3);
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Guessing Game Styles */
/* Guessing Game Styles */
.game-container {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
}

.picture-box {
  margin-bottom: 1rem;
}

.picture-box img {
  width: 100%; /* Make it responsive */
  max-width: 300px; /* Adjust size as needed */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.controls {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center;
  gap: 1rem;
}

#feedback {
  font-weight: bold;
  color: #e1306c; /* Feedback color */
}


/* Add this CSS to your existing styles */
.btn-game {
  width: 150px; /* Set a fixed width for all buttons */
}

.social-media-icons {
    display: flex; /* Align icons in a row */
    gap: 15px; /* Space between icons */
}

.social-icon {
    color: whitesmoke; /* Set icon color to black */
    font-size: 24px; /* Set the size of the icons */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

.social-icon:hover {
    color: #e1306c; /* Change color on hover (optional) */
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulsate {
    animation: pulsate 1.5s infinite;
}


