@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(10,10,10,0.7), rgba(10,10,10,0.7)), url('assets/img/clean toilet.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 1rem 50px 1rem;
  overflow: hidden;
}
.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
}

.hero-section h1,
.hero-subtitle,
.hero-section .cta-reveal-wrapper {
  position: relative;
  top: -40px;
}

.hero-section p {
  font-size: 1.25rem;
}

.cta-reveal-wrapper {
  position: relative;
  width: 300px;
  height: 50px;
  padding: 9px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
}

.cta-button {
  background: #F4B400;
  color: #000;
  width: 100%;
  position: absolute;
  left: 0;
  text-decoration: none;
}

.cta-message {
  width: 100%;
  position: absolute;
  left: 0;
  text-decoration: none;
}

.cta-button,
.cta-message {
  transition: all 0.4s ease;
}

.cta-message {
  opacity: 0;
  transform: translateX(-20px);
}

.cta-reveal-wrapper:hover .cta-button {
  transform: translateX(110%);
}

.cta-reveal-wrapper:hover .cta-message {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-fan-card {
  width: 200px;
  transition: transform 0.3s ease;
}
.testimonial-fan-card:hover {
  transform: scale(1.05);
}

.translate-up {
  transform: translateY(-12px);
}

.hero-section .card,
.hero-section #mobile-carousel {
  background: rgba(255, 255, 255, .3);
}

.translate-up {
  transform: translateY(-15px);
}

.btn {
  border-radius: 30px;
}
.btn-warning {
  background-color: #F4B400;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: color 0.3s ease-in-out;
}
.btn-warning:hover {
  background-color: #F4B400;
  color: #fff;
}

.bg-warning {
  background: #F4B400;
}

section, footer {
  padding: 120px 0;
}
.bg-light-blue {
  background-color: #f0f8ff;
}
h2 {
  font-weight: 700;
  margin-bottom: 2rem;
}
.services .card,
.features .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.services .card:hover,
.features .card:hover {
  transform: translateY(-5px);
}

.rotate-left {
  transform: rotate(-1deg);
}
.rotate-right {
  transform: rotate(1.5deg);
}

/*.slide-cta {
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.slide-msg {
  top: 100%;
  opacity: 0;
  transition: all 0.4s ease;
}
.slide-cta:hover + .slide-msg {
  top: 110%;
  opacity: 1;
}*/

.testimonial {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 1.5rem;
}

.dot {
  width: 24px;
  height: 24px;
  background: #ccc;
  border-radius: 50%;
  border: none;
  transition: background 0.3s;
}
.dot:hover {
  background: #F4B40050;
}
.dot.active-dot {
  background: #F4B400; /* Match accent */
}


#pricing .card {
  padding: 30px 0;
}

#recommend-text {
  font-size: 12px;
  font-weight: 600;
}

.contact a {
  color: #007bff;
}

#newsletterForm input {
  background: transparent;
  border: 1px solid black;
}

/* Back to the top button */
/*#backToTopBtn {
  width: 50px;
  height: 50px;
}*/



/* Mobile responsive queries */


/* Responsive Services/Features Layout */
@media (max-width: 768px) {
  .navbar.sticky .collapse {
    color: #333 !important;
    transition: color 0.3s ease;
  }

  .hero-section {
    height: 100vh;
    padding: 50px 20px 50px;
    text-align: center;
  }

  .cta-reveal-wrapper {
    width: 250px;
    margin-top: -10px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  #mobile-carousel {
    width: 80%;
    left: 0;
    right: 0;
    margin-bottom: -40px;
    border-radius: 10px;
  }

  .dot {
    width: 18px;
    height: 18px;
  }

  .carousel-item p {
    font-size: 1.1rem;
  }

  section,
  footer {
    padding: 100px 0;
  }

  .services .card,
  .features .card {
    flex-direction: column;
    text-align: center;
  }

  .services .card .w-30 {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .services .card-body {
    padding: 1rem;
  }

  .rotate-left, .rotate-right {
    transform: none !important;
  }

  #join-us .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  #join-us img {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  #backToTopBtn i {
    font-size: 35px !important;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}
