
  html, body {
    margin: 0;
    padding: 0;
    background-color: #FBFCFC;
  }
  .oswald-custom {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: #7D7D7D;
    font-size: 20px;
  }
  .lobster-regular {
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #7D7D7D;
  }

  /* Apply Lobster font to navbar links */
  .navbar-nav .nav-link {
    font-family: 'Lobster', cursive;
    transition: color 0.3s ease;
    color: #7D7D7D;
  }

  /* Highlight effect on mouse over */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #BADA55 !important;
}

/* Ensure active link color */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"] {
    color: #BADA55 !important;
}

  .navbar-nav .nav-link {
    font-size: 24px;
  }

  .navbar.bg-light {
    background-color: transparent !important;
  }

/* Center the carousel container */
#imageSlider {
  max-width: 750px; /* Adjust width */
  margin: 0 auto; /* Centers horizontally */
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
  #imageSlider {
    max-width: 500px; /* Adjust for tablets */
  }
}

/* Small screens (mobile) */
@media (max-width: 576px) {
  #imageSlider {
    max-width: 350px; /* Adjust for mobile */
  }
}
.text-shadow {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.circle-img {
  width: 234px;
  height: 234px;
  object-fit: cover; /* Prevents distortion */
  border-radius: 50%;
  border: 2px solid lightgray /* Blue border */
}
.thumbnail {
  cursor: pointer;
}
.thumbnail {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.small-container {
  max-width: 900px; /* Adjust this value as needed */
  margin: 0 auto;   /* Centers the container */
}

.form-label {
  font-size:smaller;
  font-weight: 500;
  color: #7D7D7D;
}

