body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: left;
}

.navbar {
  padding: 0.1rem 1rem
}

h2 {
  text-align: left;

}

.dropdown:hover .dropdown-menu {
  display: block;
}


.navbar-light .navbar-nav .nav-link {
  color: black;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0059ce;
}

/* .navbar-light .navbar-nav .nav-link:hover {
  color: #4caf50;
} */



.homepage-logo {
  margin-top: 30px;
}

.logo {
  vertical-align: middle;
}

#home h1 {
  font-size: 2.5rem;
  color: #4caf50;
}

/* #about p { */
/* font-size: 1.1rem; */
/* color: #333; */
/* line-height: 1.6; */
/* margin-bottom: 15px; */
/* } */

footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
}
/* Content section styling */
/* .content-section {
  padding: 20px;
  font-size: 1.2rem;
} */

/* Video section styling */
.video-section {
  position: relative;
}

.mediators-section {
  background-color: #d3e3f3; 
  padding: 50px 0px;
}

@media (min-width: 768px) {
  .mediators-section {
    padding-right: 10%;
    padding-left: 10%;
  }
  .text-right-section {
    padding-right: 10%;
    padding-left: 10%;
  }
  .cards-section {
    padding-right: 5%;
    padding-left: 5%;
  }
}

.text-right-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: rgb(98 98 211);
  font-weight: bold;
}

.mediators-section h2 {
  color: rgb(98 98 211);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.mediators-section p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mediators-icon {
  max-width: 200px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.content-video-section {
  background-color: #eaf7e6;
  padding: 50px 0;
}
.footer {
  background-color: #2c3e50;
  padding: 60px 0;
  min-height: 250px;
}

.footer h5 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer a {
  color: #bbb;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer img {
  margin-top: 20px;
}

.footer p {
  color: #bbb;
  margin-bottom: 0;
}

.img-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.1s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow around card */
  border: none; /* Remove border */
  /* background-color: #007bff; */
}

.card:hover {
  transform: scale(1.02); /* Slightly enlarge card */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Darker, larger shadow */
}

.card-title {
  color: #007bff; /* Custom color for title */
  font-weight: bold;
}

.card-text {
  color: #333;
  margin-bottom: 1rem;
}

.list-unstyled li {
  padding-left: 1rem;
  position: relative;
  color: #333;
  margin-bottom: 0.5rem;
}

.list-unstyled li::before {
  content: "•"; /* Bullet point symbol */
  color: #007bff;
  position: absolute;
  left: 0;
}

.nested-list-unstyled li {
  padding-left: 0px;
  position: relative;
  color: #333;
  margin-bottom: 0.5rem;
}

.nested-list-unstyled li::before {
  content: ""; /* Bullet point symbol */
  color: #007bff;
  position: absolute;
  left: 0;
}




.card-body {
  background-color: #c6d9f0; /* Light background for card content */
  padding: 1.5rem;
  border-radius: 8px; /* Slightly rounded corners */
}

/* .group/headerlogo {
  display: none;
} */

/* .overlaidHeading {
  background: transparent;
  padding: 5px 10px;
  font-size: xx-large;
  pointer-events: none;
} */

/* .overlaidHeadingWrapper {
  position: absolute;
  z-index: 99;
  background: white;
  width: 60%;
  height: 64px;
} */

/* @media (max-width: 797px) {
  .overlaidHeadingWrapper {
    position: absolute;
    z-index: 99;
    background: white;
    width: 80%;
    height: 64px;
  }

  .overlaidHeading {
    font-size: smaller;
  }
} */

.navbar-brand img {
  display: block;
}

img {
  max-height: 300px;
  /* width: auto; */
}

.card-text {
  text-align: left;
}

.card-body .list-unstyled {
  text-align: left;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: rgb(0, 0, 0); /* Adds a background color for visibility */
  border-radius: 50%; /* Makes the buttons circular */
}

.carousel-control-prev, .carousel-control-next {
  width: 10%; 
}
.carousel-control-prev {
  left: 0; /* Align the left button to the very edge */
}
.carousel-control-next {
  right: 0; /* Align the right button to the very edge */
}

.carousel-inner {
  height: 300px; 
  position: relative;
}
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}