body {
    background-color: white;
  }
  
.navbar-start { 
padding: 0;
}
  

  /* Your custom styles here */

/* Example: Styling for the hero */
.hero-body {
  position: relative;
  overflow: hidden;
  text-align: center; /* Center the image horizontally */
  width: 100%;
  height: auto; /* Adjust height as needed */
  background-image: url('image/shutterstock_154634993.jpg');
  background-size: cover;
  background-repeat: no-repeat; /* Prevent the background image from repeating */
  background-position: center; /* Center the image horizontally and vertically */
}

@media (max-width: 768px) {
  .hero-body {
    height: auto; /* Set height to auto to make it fit content */
    padding-top: 100px; /* Add padding or adjust as needed for spacing */
    padding-bottom: 100px; /* Add padding or adjust as needed for spacing */
  }
}

  @keyframes fadeInBackground {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 0.7;
    }
  }
  
  /* Other styles */
  .title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .wide-image {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
  }
  
  .small-image {
    max-width: 100px; /* Adjust as needed */
  }

  .title {
    color: black ;
    background-color: transparent;
  }

  .is-white.navbar {
    margin: 0;
    margin-top: 30px 0;
    padding-bottom: 0;
  }
.container {
    margin: 20px;
}
.styled-image {
    border-radius: 100px;
}
/* Custom styles */

.footer {
    padding: 2rem 0;
  }


  .dropdown {
    display: inline-block;
    margin-right: 1rem;
  }
  
  .social-media {
    margin-top: 1rem;
  }
  
  .icon-link {
    margin-right: 0.5rem;
  }
  
  /* Adjust icon color */
  .icon-link i {
    color: #333;
  }
  