@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: #3e425a;
}

h1 {
  font-weight: 700;
}
h5 {
  font-weight: 600;
}
.navbar-toggler {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section h1 {
  margin-bottom: 20px;
}

p {
 opacity: 0.9;
  margin-bottom: 0;
}
.form-label {
  margin-bottom: 0rem;
}

.padding-t {
  padding-top: 90px;
}

.padding-b {
  padding-bottom: 90px;
}

.padding-y {
  padding: 90px 0;
}

.btn-violet{
  background-color: #0db0cd !important;
  color: white !important;
  transition: all 0.3s ease-in-out;
}
.btn-violet:hover{
  opacity: 0.9 !important;
}

/* navbar  */

.navbar .nav-link {
  padding: 0.5rem 1.25rem !important;
}

.navbar-brand img {
  height: 30px;
}

/* hero section  */
.hero-section {
  padding-top: 66px;
}
.hero-section .carousel img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* about section  */

.about-section img {
  height: 400px;
  width: 500px;
  object-fit: cover;
  border-radius: 0.375rem;
}

/* service section  */

.service-section {
  background-color: #f3f4f6;
}

.service-section .card {
  border: 0;
  padding: 0.5rem;
  height: 100%;
}

/* CTA section  */

.cta-section img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

/* Contact Us  */

.contact-details {
  background-color: #f3f4f6;
  margin-left: 30px;
  margin-top: 30px;
  padding: 40px;
  border-radius: 0.375rem;
}

/* footer  */

.footer {
  background-color:#1a191d;
  padding: 50px 0;
  color: #ffffff;
}
.footer .navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}
.footer img {
 
  height: 30px;
}
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  background-color:#1a191d;
  border-top: 1px solid #29272d;
}
.footer-bottom p,
.footer-bottom a {
  color: #f3f4f6;
}

.whatsapp-icon {
  position: fixed;
  right: 40px;
  bottom: 35px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  z-index: 9;
  color: #ffffff;
}

.whatsapp-icon i {
  font-size: 38px;
}

.btn-whatsapp-pulse {
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(91, 139, 110, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(58, 189, 106, 0);
  }
}

@media (max-width: 991px) {
  .hero-section .carousel img {
    height: 50vh;
  }
  .cta-section img {
    height: 400px;
  }
  .navbar-collapse {
    padding: 20px 0;
  }
  .navbar .nav-link {
    padding: 0.75rem 0rem !important;
  }
  .contact-details {
    margin-left: 10px;
    margin-top: 30px;
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .padding-y {
    padding: 60px 0;
  }
  .about-section img {
    height: 300px;
  }
  .cta-section img {
    height: 300px;
  }
  .hero-section .carousel img {
    height: 40vh;
  }
  .service-section .card {
    padding: 0.5rem;
  }
  .whatsapp-icon {
    right: 25px;
    bottom: 25px;
  }

  .contact-details {
    margin-left: 0px;
    margin-top: 30px;
    padding: 30px;
  }
  .offcanvas {
    max-width: 300px;
  }
  html {
    scroll-padding-top: 20px;
  }
}
