html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
}

/* Testimonials Carousel */
#testimonials .owl-carousel {
  margin: 0;
}

#testimonials .owl-carousel .item {
  padding: 1rem;
}
.center{
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}
#testimonials .owl-carousel .item h4 {
  color: #FFF;
  font-weight: 400;
  margin-top: 0rem;
}

#testimonials .owl-carousel .item-video {
  height: 300px;
}

#testimonials #setup {
  margin-top: 4rem;
}

#testimonials .demo-list h5 {
  margin: 0;
}

#testimonials .item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

#testimonials p {
  font-style: italic;
}

/* Footer */
.footer-text {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
}

.footer-nav a {
  color: #FFF;
  text-decoration: none;
  display: block;
}

.footer-nav {
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.footer-link:hover {
  opacity: 0.9;
}

.footer-icon {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.service-icon {
  font-size: 1.4rem;
  margin-bottom: 0px !important;
}
.footer-action {
  transition: background 0.3s ease;
}

/* Utilities */
.hide,
.antispam {
  display: none;
}

.gray {
  color: rgb(92, 92, 92);
}

label.error {
  display: contents;
}

/* Icons & Logos */
.whyus-icon {
  height: 70px;
  width: 70px;
  border: 1px solid #00897B;
  padding-top: 8px;
  padding-left: 5px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
}

.whyus-icon i {
  color: #000;
  font-size: 2rem;
}

.logo {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  border: 2px solid #00897B;
}

/* Lists */
ul.list-style {
  display: block;
  margin: 0;
  padding: 0;
}

ul.list-style li {
  list-style: none;
  text-indent: -15px;
  margin-left: 25px;
  margin-bottom: 15px;
}

ul.list-style li i {
  color: #00897B;
  margin-right: 5px;
}

/* Navs */
.nav-fill .nav-item, 
.nav-fill > .nav-link {
  flex: none !important;
  text-align: center;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-fill .nav-item,
.nav-fill > .nav-link:hover {
  background-color: #00897B;
  color: #fff;
  border: 1px solid #00897B;
}

.nav-fill .nav-item,
.nav-fill > .nav-link {
  border: 1px solid #000;
  margin: 5px;
  border-radius: 20px;
}

.nav-link {
  color: #00897B;
}

/* Color Utilities */
.green, .green-s {
  color: #00897B !important;
  font-weight: 800;
}

.green-s {
  font-weight: 600;
}

.bg-green {
  background-color: #00897B !important;
}

.bg-l-green {
  background-color: #e0f2f1;
}

.bg-success {
  background-color: #00897B !important;
}

.bg-dark {
  background-color: #1b1b1b !important;
}

.white {
  color: white !important;
}

/* Forms */
.form-control,
.form-select {
  font-size: 1.2rem;
}

/* Accordions */
h2.accordion-header button {
  font-weight: 500;
}

/* FAQ */
.faq-img {
  width: 100% !important;
  height: 100% !important;
  margin-top: -64px;
}

/* Cards */
.card h2, 
.card h4 {
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-success {
  background-color: #009688 !important;
  border-color: #00897B !important;
}

.btn-success:hover {
  background-color: #26a69a !important;
  border-color: #00897B !important;
}

/* Book Now */
#book-now {
  background: linear-gradient(to right, #e0f2f1, #b2dfdb);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #00897B;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.call-now-btn-float {
  background-color: #00897B;
  color: white;
  text-align: center;
  font-size: 22px;
  z-index: 999;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  color: white;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 137, 123, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 137, 123, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 137, 123, 0);
  }
}

/* Other Utilities */
.img-fluid-man {
  height: 355px !important;
}

.call-buy-now {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

/* Offcanvas */
.offcanvas {
  width: 250px;
}

.offcanvas .nav-link {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.offcanvas .dropdown-menu {
  background-color: #f8f9fa;
  padding-left: 20px;
  border: none;
}

.offcanvas .dropdown-menu .dropdown-item {
  padding: 8px 15px;
}
.navbar{
  padding-left: 100px;
}
/* Responsive */
@media (max-width: 768px) {
  .navbar-nav {
    background: #efefef;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .logo {
    max-width: 120px;
  }
  .man {
    height: 200px;
  }
}

@media (max-width: 445px) {
  .faq-img {
    width: 100% !important;
    height: 100% !important;
    margin-top: -21px;
  }
  .logo {
    max-width: 120px;
  }
  .whatsapp-float {
    bottom: 77px !important;
  }
  .navbar{
  display: flex;
  align-items: center !important;
  justify-content: center;
  padding-top: 20px;
  padding-left: 0px !important;

}
}

@media (max-width: 320px) {
  .faq-img {
    width: 100% !important;
    height: 100% !important;
    margin-top: -21px;
  }
  .logo {
    max-width: 120px;
  }
  .whatsapp-float {
    bottom: 77px !important;
  }
}
