/* Custom Styles */
.navbar-brand {
  /* Remove margin-right */
}

@media (max-width: 576px) {
  /* For small devices (mobile phones, 576px and down) */
  .navbar-brand {
    position: absolute;
    left: 15px;
    top: 15px;
  }
}

.navbar-nav {
  margin-left: auto;
  /* Push the navbar links to the right */
}

.carousel-caption h5 {
  font-size: 6rem;
  /* Increased font size */
  font-weight: bold;
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  text-align: left;
  /* Align text to the left */
  left: 0;
  /* Position text from the left side */
  right: unset;
  /* Remove right positioning */
}
.logo {
  max-width: 100%; /* Ensure the logo scales down on smaller screens */
  height: auto; /* Maintain aspect ratio */
  max-height: 40px; /* Limit the maximum height */
  padding: 5px; /* Add some padding around the logo */
}
.card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card-fan {
  flex: 1 1 200px;
  max-width: 350px;
  height: 250px;
  transition: transform 0.3s ease;
}

.card-fan img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-fan:hover {
  transform: scale(1.05);
}
.notification-container {
  height: 300px; /* Set the height as per your requirement */
  overflow-y: auto; /* Enable vertical scrollbar */
  border: 1px solid #ccc; /* Add a border */
  padding: 10px; /* Add padding */
  border-radius: 5px; /* Add border-radius for rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
}

.fixed-header {
  position: sticky;
  top: 0;
  background-color: #fff; /* Optional: Add a background color */
  z-index: 1; /* Ensure the header stays on top of the table */
}
.course-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-card:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.course-icon {
  font-size: 48px;
  color: #007bff;
}
 /* Custom Styles */
 .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay:hover {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  .navbar-brand {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 8px;
  }
  .navbar-toggler {
      position: absolute;
      right: 15px;
      top: 10px;
  }
  .navbar-nav {
      margin-top: 50px; /* Adjust as needed */
  }
  #carouselExampleIndicators{
    margin-top: 50px;
  }
}