html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
}

/* Testimonials */
#testimonials .owl-carousel { margin: 0; }
#testimonials .owl-carousel .item { padding: 1rem; }
#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;
}
.gray { color: rgb(92, 92, 92); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { font-size: 14px; }
.hide, .antispam { display: none; }

/* Why us icon */
.whyus-icon {
  height: 70px;
  width: 70px;
  border: 1px solid #2c3e50;
  padding-top: 8px;
  padding-left: 5px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
}
.whyus-icon i {
  color: #2c3e50;
  font-size: 2rem;
}

/* Logo border */
.logo {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  border: 2px solid #2c3e50;
}

/* 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: #f1c40f;
  margin-right: 5px;
}

/* Nav pills */
.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: #2c3e50;
  color: #fff;
  border: 1px solid #2c3e50;
}
.nav-fill .nav-item,
.nav-fill>.nav-link {
  border: 1px solid #2c3e50;
  margin: 5px;
  border-radius: 20px;
}
.nav-link {
  color: #2c3e50;
}

/* Color utilities */
.green, .green-s {
  color: #2c3e50 !important;
  font-weight: 800;
}
.bg-green {
  background-color: #2c3e50 !important;
}
.text-success{
  color: #2c3e50 !important ;
}
.bg-l-green {
  background-color: #ecf0f1;
}
.white { color: white !important; }

/* FAQ */
.faq-img {
  width: 79% !important;
  height: 88% !important;
  margin-top: 24px;
}

label.error { display: contents; }
.form-control, .form-select { font-size: 1.2rem; }
h2.accordion-header button { font-weight: 500; }

/* Footer nav */
.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-action { transition: background 0.3s ease; }
.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; }

/* BG overrides */
.bg-success { background-color: #2c3e50 !important; }
.bg-dark { background-color: #1b1b1b !important; }

/* 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;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #2c3e50;
  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;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-icon { color: white; }

/* Extra Section */
#book-now {
  background: linear-gradient(to right, #f8f9fa, #ecf0f1);
}
.card h2, .card h4 { margin-bottom: 0.5rem; }
.card p { margin-bottom: 1.5rem; }

.btn-success-btn {
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: white;
}
.btn-success-btn:hover {
  background-color: #405971;
  border-color: #2c3e50;
  color: white;
}
.img-fluid-man { height: 355px !important; }
.modal-center{
  align-items: center;
}
.modal-center img{
      max-width: 240px;
}
/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(44, 62, 80, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(44, 62, 80, 0); }
}

/* Other fixed */
.call-buy-now { position: fixed; bottom: 0px; width: 100%; }

#scrollToTopBtn {
  position: fixed;
  bottom: 100px;
  right: 35px;
  z-index: 999;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, visibility 0.3s;
}
#scrollToTopBtn:hover {
  background-color: #1a252f;
}

/* Media queries */
@media (max-width: 768px) {
  .navbar-nav {
    background: #efefef;
    padding: 15px;
  }
}
@media (max-width: 576px) {
  #scrollToTopBtn { bottom: 157px; right: 35px; }
  .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; }
}
@media (max-width: 320px) {
  .faq-img { width: 100% !important; height: 100% !important; margin-top: -21px; }
  .logo { max-width: 120px; }
  .whatsapp-float { bottom: 77px !important; }
}
