.colourA{
  color: #048E98;
}

.bgcolourA{
  background-color: #048E98;
}

.colourB{
  color: #ff4d4d;
}

.bgcolourB{
  background-color: #ff4d4d;
}

.colourC{
  color: #7e7e7e;
}

.bgcolourC{
  background-color: #7e7e7e;
}

.colourD{
  color: #fff;
}

.bgcolourD{
  background-color: #fff;
}

.colourE{
  color: #272727;
}

.bgcolourE{
  background-color: #272727;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #272727;
}
p {
  font-family: "Merriweather";
}

.text-center {
  font-family: "Merriweather";
}

/* Navbar */
.navbar {
  background-color: #272727;
}
.dropdown-item {
  font-size: 16px;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-toggler {
  border: 1px solid #fff;
}

.navbar-nav {
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: #fff !important;
}

/* Carousel */

.carousel {
  width: 100%;
  height: auto;
  overflow: hidden; /* Ensures no part of the image goes outside the container */
  position: relative;
}


.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Emblem Image Styling */
.carousel-emblem {
  position: absolute;
  top: 10px; /* Adjust this value to control the vertical position */
  right: 10px; /* Adjust this value to control the horizontal position */
  width: auto; /* Adjust the size of the emblem */
  height: 50%;
  z-index: 10; /* Ensures the emblem is above other carousel elements */
  pointer-events: none; /* Ensures the emblem doesn't interfere with carousel controls */
  filter: drop-shadow(0px 0px 20px #000000);
}

/* Welcome Section */
#welcome {
  padding: 50px 50px 0px 50px;
  background-color: #fff;
  color: #000000;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0 0px 0;
}

#welcome2 {
  padding: 50px;
  background-color: #048e98;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0 20px 0;
}

.mobile-emblem {
  width: 350px;
  text-align: center;
}

.emblem-mobile {
  display: none;
  text-align: center;
  margin: 20px 0 0px 0;
}

/* About Us Section */
#aboutUs {
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 20px 0;
}

/* Trainings Section */

.drop {
  margin-bottom: 20px;
}

.accordion-button {
  font-size: 20px;
  font-weight: 400;
  background-color: #048e98;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Adjust padding for better spacing */
.accordion-body h3 {
  padding: 10px 0;
}

/* Alert Section */
.alert {
  margin: 20px 0;
  background-color: #ff4d4d;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
}

/* Contact Us Section */
#contactUs {
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
footer {
  padding: 20px 0;
  background-color: #272727;
  color: #fff;
  text-align: center;
}

/* Media Query for Carousel Height on Mobile Devices */
@media (max-width: 767px) {
  .emblem-mobile {
    display: block;
  }

  .mobile-emblem {
    width: 200px;
  }

  .carousel-emblem {
    display: none;
  }
  .welcome {
    margin: 0px;
  }
}



@media (min-width: 767px) and (max-width: 900px) {
  .carousel {
      height: 90vh; /* Slightly reduced height */
  }
  .carousel img {
      object-fit: cover; /* Image covers container */
  }
}


@media (max-width: 767px) {
  .map-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
    height: 0;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .carousel-emblem {
    display: none;
  }
}
