*{
    padding: 0px;
    margin: 0px;
}
body {
  font-family: "Montserrat Alternates", serif;
  font-weight: 900;
  font-style: italic;
}
nav {
  background-color: #03624c;
}
.dropdown-menu {
  position: absolute;
  display: none;
}
.dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu-1 {
  position: absolute;
  left: -113%;
  top: 0;
  display: none;
}
.dropdown-menu-1 li{
  list-style: none;
}
.dropdown-menu li:hover > .dropdown-menu-1 {
  display: block;
}
.dropdown-menu-2 {
  position: absolute;
  left: -113% !important;
  top: 0;
  display: none;
}
.dropdown-menu-2 li{
  list-style: none;
}
.dropdown-menu li:hover > .dropdown-menu-2 {
  display: block;
}
 /* Carousel Image Styling */
 .carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 600px;
}

@media (max-width: 768px) {
  .carousel-item img {
      height: 400px; 
  }

  .carousel-caption h5 {
      font-size: 25px;
  }

  .carousel-caption p {
      font-size: 14px;
  }
}
/* Caption Background for Better Visibility */
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
}
.logo-container {
  background-color: #03624c;
  padding: 20px 0;
}

.logo-container img {
  height: 50px;
  width: auto;
}
.lgo a{
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 700;
  color: white;
}  
.active:hover{
  background: #03624c;
  transition: 0.5s;
  color: black;
}
.nav-item a:hover{
  background: black;
  transition: 0.5s;
  color: white;
}
.active:active {
  background: #ff5733;
}
#about{
  background-color:#EFE9E0 ;
}
.about-title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.about-highlight {
  color: #03624c;
}

.about-img {
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}
.about-text {
  font-size: 18px;
  text-align: justify;
}
#services {
  background-color: #DFE8E6;
}
#reviews {
  background-color: #EFE9E0;
}
#contact {
  background-color: #EFE9E0;
}
#galary{
  background-color:#DFE8E6;
}
.service-card {
  transition: transform 0.3s;
}
.service-card:hover {
  transform: scale(1.05);
}
.reviews-card {
  transition: transform 0.2s;
}
.reviews-card:hover {
  transform: scale(1.05);
}
.reviews-card img {
  height: 250px;
  object-fit: cover;
}
@keyframes slideUp {
  from {
      transform: translateY(30px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}
.slide-up {
  animation: slideUp 1s ease-in-out;
}
.carousel-caption {
  background: none !important; /* Removes any background color */
}
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.contact .form-control{
  height: 2rem;
  font-size: 0.900rem;
  font-weight: 700; 
}
.contact .input-group-text {
  height: 2rem;
}
.contact .form-control:hover,
.contact .form-control:focus {
  outline: none;
  box-shadow: none;
}
.form-control::placeholder {
  color: #03624c !important;
  opacity: 0.5 !important;
}
.footer {
  background: #03624c;
  color: #fff;
  padding: 40px 0;
}
.footer a {
  color: #f8a11c;
  text-decoration: none !important;
}
.footer a:hover {
  text-decoration: underline;
  color: white;
}
.footer .social-icons a {
  margin: 0 10px;
  font-size: 20px;
}
.top {
  margin-top: -50px;
}