

.title {
  
  font-family:cursive;
  font-weight: bolder;
  font-size: larger;
}

.logo {
  font-weight: bolder;
  font-family: cursive;
}
.about-img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.bp {
  font-family: cursive;
}



.hero {
  /*background: url('https://) no-repeat center center;*/
  background-size: cover;
  background-color: #01435d;
  color: #fee08f;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 3rem;
}

.service-icon {
  font-size: 2.5rem;
  color: 
  #176555;
}

.portfolio-img {
  height: 250px; /* or any height you prefer */
  object-fit: cover;

  border-radius: 0.5rem;
}
.testimonial {
  font-style: italic;
}


.contact {
  position: relative;
  background-image: url("/assets/images/contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: white;
  z-index: 0;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 77, 77, 0.26); /* dark overlay */
  z-index: -1;
}
.contact > section {
  position: relative;
  z-index: 2;
}


.footers{
  background-color: rgba(0, 0, 0, 0.87);
}


.credit {
  position: relative;
  z-index: 11; /* Ensure it's above overlays or backgrounds */
  font-size: 11px;
  padding-bottom: 0;
}
.credit a {
  color: inherit;
  text-decoration: none;
}

.contact .snd-btn {
  background-color: #176555;
  border-color: #104d40;
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* slideshow */
#gallery {
  width: 100%;
  padding: 2rem 0;
}

.carousel-wrapper {
  width: 80%;
  margin: 0 auto; /* center horizontally */
}

.carousel-inner img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.carousel-item {
  background-color: #000; /* for clean padding fill */
  text-align: center;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent dark background */
  padding: 1rem;
  border-radius: 0.5rem;
  bottom: 2rem;
}

.carousel-caption h5,
.carousel-caption p {
  color: #fff;
  margin: 0;
}

@media (max-width: 991.98px) {
  
  .carousel-caption p{
    display: none !important;
  }
  .carousel-caption h5 {
    font-size: 0.6rem;
  }
}


.phone{
  width: 300px;
  height: auto;
}
