@media (max-width: 576px) {
  .navbar-brand {
    text-align: center;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-item {
    text-align: center;
  }
}

.shadow-bottom {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.hero-section {
  background-color: #f5fff5;
  padding: 40px 20px;
}

.hero-section h1 {
  font-size: 2.5rem;
  
}

.hero-section p {
  font-size: 1rem;
  
}

.hero-img {
  position: relative;
}

.floating-badge {
  position: absolute;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-top {
  top: 10px;
  right: 10px;
}

.badge-bottom {
  bottom: 10px;
  right: 10px;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
    /* Adjust for smaller screens */
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}



.dropdown-menu {
  display: none;
  position: absolute;
}

/* Logo section */
.brand-section {
  background-color: #0b1122;
  padding: 10px 0;
  overflow: hidden;
}

.scrolling-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scroll 10s linear infinite;
}

.scrolling-wrapper img {
  max-width: 150px;
  height: auto;
}

/* Animation to scroll the logos */
@keyframes scroll {
  from {
    transform: translateX(0);
    
  }

  to {
    transform: translateX(-30%);
    
  }
}


/* ------------------------------------------------------------------ */

.nav-link.active {
  position: relative;
  padding-bottom: 10px;
  background-color: #94eb3d;
  color: #0b1122;
 
}


.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0b1122;
  /* Dark color for the border */
}


.nav-link.hover-bg-primary:hover {
  background-color: #0b1122;
  /* Dark background color on hover */
  color: #fff;
  /* White text color on hover */
}


.nav-link.hover-bg-primary:hover span {
  color: white;
  /* Change icon color to white */
}


.nav-link {
  color: black;
  
}


.material-border {
  border-bottom: 2px solid #ddd;
  margin-top: -2px;
}


/* .nav-item {
  margin-right: 15px; 
  
} */

.hoverLead:hover {
  color: #B3FC6A;
}


#scroll-container {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

#scroll-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}

/* add card */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-body {
  padding: 1.5rem;
}

.card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  color: #555;
}

/* -----------------  Card ------------------------- */
#scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 300px;
}

img {
  height: auto;
}

@media (max-width: 768px) {

  /* For smaller screens, the gap between cards can be reduced */
  #scroll-container {
    gap: 10px;
  }
}

/* -------------------------------------------------------------------------------------------------------- */


/* image  section */

.image-container {
  position: relative;
  width: 100%;
}

.blurred-image {
  width: 100%;
  filter: blur(0px);
}

.custom-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(24, 13, 13, 0.2);
}

.custom-button:hover {
  background-color: #0056b3;
}

/* Counter card */

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card i {
  color: #007bff;
}

.stats-item span {
  font-size: 1.5rem;
  color: #333;
}

/* rotate image */

.rotate {
  width: 80%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  animation: spin 30s linear infinite;
 
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}