:root {
  --maidvy-primary: #f6cf02;
  --maidvy-dark: #2a2a2a;
  --maidvy-white: #ffffff;
  --maidvy-light: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
}

.btn-maidvy {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lead {
  font-size: 1rem;
  font-weight: 500;
}

.btn-maidvy:hover {
  background-color: #e5c000;
  color: var(--maidvy-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(246, 207, 2, 0.3);
}

.text-maidvy-primary {
  color: var(--maidvy-primary);
}

.text-maidvy-dark {
  color: var(--maidvy-dark);
}

.text-maidvy-white {
  color: var(--maidvy-white);
}

/* Navbar */
.navbar-maidvy {
  background-color: #ffffff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-maidvy.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 8px 15px !important;
  color: var(--maidvy-dark) !important;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 15px;
  background-color: var(--maidvy-primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #f6cf02 100%);
  position: relative;
  overflow: hidden;
}



/* Contact Form */
.contact-form-container {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  color: var(--maidvy-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: var(--maidvy-primary);
  box-shadow: 0 0 0 0.25rem rgba(246, 207, 2, 0.25);
}

.submit-btn {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #e5c000;
  transform: translateY(-2px);
}

/* Service Cards */
.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

/* Team Cards */
.team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  background-color: white;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-card img {
  border-radius: 50%;
  object-fit: cover;
  height: 80px;
  width: 80px;
  border: 3px solid var(--maidvy-primary);
  transition: all 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-pink {
  border-top: 4px solid #ff6b6b;
}

.team-yellow {
  border-top: 4px solid #feca57;
}

.team-purple {
  border-top: 4px solid #5f27cd;
}

.team-teal {
  border-top: 4px solid #1dd1a1;
}

/* Why Choose Us */
.why-choose-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* How It Works */
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto;
}


 /* Testimonial Slider Styling */
  .testimonial-slider {
    padding: 0 4rem;
  }
  
  .testimonial-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.05);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  }
  
  /* Custom Black Navigation Arrows */
  .custom-carousel-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    opacity: 0.9;
    transition: all 0.3s ease;
  }
  
  .custom-carousel-control:hover {
    opacity: 1;
    transform: scale(1.1);
    background: #333;
  }
  
  .carousel-control-prev {
    left: -25px;
  }
  
  .carousel-control-next {
    right: -25px;
  }
  
  /* Carousel Indicators */
  .carousel-indicators-container {
    display: flex;
    justify-content: center;
  }
  
  .carousel-indicators {
    position: static;
    margin: 0;
  }
  
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(0,0,0,0.3);
    border: none;
    transition: all 0.3s ease;
  }
  
  .carousel-indicators button.active {
    background-color: #000;
    transform: scale(1.2);
  }
  
  /* Button Styling */
  .btn-maidvy {
    background-color: #2a7f62;
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .btn-maidvy:hover {
    background-color: #1e6b50;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .testimonial-slider {
      padding: 0 2rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .testimonial-slider {
      padding: 0;
    }
    
    .carousel-control-prev {
      left: -15px;
    }
    
    .carousel-control-next {
      right: -15px;
    }
    
    .custom-carousel-control {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .testimonial-card {
      margin: 0 1rem;
    }
    
    .card-body p {
      font-size: 1rem !important;
    }
  }

  
/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--maidvy-primary) 0%, #f1c40f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.cta-section:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* Footer */
.footer-section {
  padding: 80px 0 30px;
  background-color: var(--maidvy-dark);
  color: var(--maidvy-white);
  position: relative;
}

.footer-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--maidvy-primary);
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--maidvy-primary);
}

.footer-link {
  color: var(--maidvy-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--maidvy-primary);
  opacity: 1;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--maidvy-white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--maidvy-primary);
  color: var(--maidvy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--maidvy-dark);
  color: var(--maidvy-white);
  transform: translateY(-5px);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  .service-card .row {
    flex-direction: column !important;
  }

  .service-card .col-md-4,
  .service-card .col-md-8 {
    width: 100%;
    max-width: 100%;
  }

  .service-image {
    height: 200px;
    width: 100%;
  }

  .card-body {
    padding: 1.25rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  h1.display-4 {
    font-size: 2.5rem !important;
  }

  .contact-form-container {
    margin-top: 30px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-image {
    height: 180px;
  }
}
