body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff9fa;
    color: #4d3b3b;
  }
  
  .navbar-brand {
    color: #e97ca7 !important;
  }
  
  .hero {
    background: linear-gradient(to bottom right, #fde6e9, #fff7f0);
    min-height: 90vh;
    text-align: left;
  }
  
  .text-highlight {
    color: #e97ca7;
  }
  
  .btn-primary {
    background: linear-gradient(90deg, #e97ca7, #f7b977);
    border: none;
  }
  
  .btn-primary:hover {
    background: linear-gradient(90deg, #f7b977, #e97ca7);
  }
  
  .about, .services {
    background-color: #fff5f7;
  }
  
  .services {
    background-color: #fff5f7;
  }
  
  .service-box {
    background: #fff;
    border: 1px solid #f5e4e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-box h5 {
    color: #c04d7f;
  }
  
  .service-box ul {
    padding-left: 20px;
    margin-bottom: 0;
  }
  
  .service-box ul li {
    list-style: none;
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    color: #5a4a4a;
  }
  
  .service-box ul li::before {
    content: "•";
    color: #e97ca7;
    position: absolute;
    left: 0;
  }
  /* Important Information Section */
.important-info {
    background-color: #fff5f7;
  }
  
  .important-info h2 {
    color: #4d3b3b;
  }
  
  .disclaimer-box {
    max-width: 800px;
    background-color: #dff3fa;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    color: #4d3b3b;
    text-align: left;
  }
  
  .faq-section {
    margin-top: 60px;
  }
  
  .faq-section .emoji {
    font-size: 1.3rem;
    margin-right: 5px;
  }
  
  .faq-section h3 {
    color: #4d3b3b;
  }
  
  .faq-section p {
    color: #6b5a5a;
  }
  
  /* Call to Action Button */
  .important-info .btn-primary {
    background: linear-gradient(90deg, #e97ca7, #f7b977);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
/* ===== FAQ Section Styles ===== */
.faq-section {
    background-color: #fdf3f5;
    padding: 80px 0;
  }
  
  .faq-section h2 {
    color: #4a1c2c;
    font-weight: 700;
  }
  
  .faq-section p {
    color: #855d69;
  }
  
  .accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
  
  .accordion-button {
    background-color: #fff;
    color: #4a1c2c;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
  }
  
  .accordion-button:hover {
    background-color: #fbe3e8;
    color: #6a2d3b;
  }
  
  .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #e48da1;
    box-shadow: none;
  }
  
  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234a1c2c' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
  }
  
  .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  }
  
  .accordion-body {
    background-color: #fff;
    color: #5c3b45;
    font-size: 15px;
    line-height: 1.7;
    padding: 20px;
    border-top: 1px solid #f1d7dc;
  }
  
  /* Small Screen Responsive */
  @media (max-width: 768px) {
    .faq-section {
      padding: 60px 20px;
    }
  
    .accordion-button {
      font-size: 15px;
    }
  }
    .important-info .btn-primary:hover {
    background: linear-gradient(90deg, #f7b977, #e97ca7);
    transform: translateY(-2px);
  }
  
/* ===== Footer Section Styles ===== */
.footer-section {
    background-color: #5b3642;
    color: #fff;
  }
  
  .footer-section h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-section a {
    color: #e6cdd7;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #e6cdd7;
  }
  
  .footer-section .footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
  }
  
  .footer-section .bi {
    color: #e6cdd7;
    font-size: 1.1rem;
  }
  
  @media (max-width: 768px) {
    .footer-section {
      text-align: center;
    }
    .footer-section .bi {
      display: none;
    }
  }
  .about-banner {
    background: linear-gradient(to bottom right, #fde6e9, #fff7f0);
    height: 45vh;
    color: #333;
    position: relative;
  }
  .about-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
  }
  .about-banner p {
    font-size: 1.2rem;
    color: #444;
    margin-top: 10px;
  }
  .filter-btn{margin:10px 0 !Important;
  color: #333;}
  .active {
    color: #e97ca7 !important;
    background-color: aliceblue !important;
}

  /* About Section */
  .about-section h2 {
    font-weight: 700;
    color: darkred !important;
    margin-top: 22px;
  }
  .about-section p {
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  /* Values Section */
  .values-section {
    background-color: #ffffff;
  }
  .values-section h2 {
    color:#4d3b3b;
  }
  .info-card {
    background-color: #f4f6ff;
    transition: all 0.3s ease;
  }
  .info-card:hover {
    transform: translateY(-5px);
    background-color: #e9edff;
  }
  .info-card img {
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
    height: 100px;
    width: 150px;
  }
  .info-card h5 {
    color: #4d3b3b;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .info-card p {
    font-size: 0.95rem;
    color: #555;
  }
  /* Banner */
.service-banner {
  background: linear-gradient(to bottom right, #fde6e9, #fff7f0);
  height: 45vh;
  color: #333;
  position: relative;
  text-align: center;
}
.service-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.service-banner p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* Intro */
.service-intro p {
  color: #555;
}

/* Services */
.service-card {
  background-color: #fff;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.service-card h5 {
  color: #4d3b3b;
  font-weight: 600;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}
.service-card img {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

/* Highlight Section */
.service-highlight {
  background-color: #f4f6ff;
}
.service-highlight h2 {
  color: #4d3b3b;
}

/* Responsive */
@media (max-width: 768px) {
  .service-banner {
    height: 40vh;
  }
  .service-banner h1 {
    font-size: 2.2rem;
  }
}




/* Banner */
.contact-banner {
  background: linear-gradient(to bottom right, #fde6e9, #fff7f0);
  height: 45vh;
  color: #333;
  text-align: center;
}
.contact-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.contact-banner p {
  font-size: 1.2rem;
  color: #444;
  margin-top: 10px;
}

/* Contact Section */
.contact-section h2 {
  color: #4d3b3b;
}
.info-box {
  background-color: #fff;
  transition: all 0.3s ease;
}
.info-box:hover {
  background-color: #f4f6ff;
  transform: translateY(-4px);
}
.icon i {
  background: #f1f3ff;
  padding: 10px;
  border-radius: 10px;
}

/* Contact Form */
.contact-form {
  border-left: 5px solid #503CEB;
}
.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  transition: 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #503CEB;
  box-shadow: 0 0 5px rgba(80,60,235,0.2);
}
.contact-form button {
  background-color: #503CEB;
  border: none;
}
.contact-form button:hover {
  background-color: #3e2cc0;
}

/* Map */
.map-section iframe {
  filter: grayscale(10%) brightness(98%);
  border-top: 2px solid #503CEB;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-banner {
    height: 40vh;
  }
  .contact-banner h1 {
    font-size: 2.2rem;
  }
}

.navbar{padding: 5px;}

.active {
    color: #e97ca7 !important;
    background-color: aliceblue !important;
}

.nav-link:hover{color: #e97ca7 !important;}
.nav-link{font-size: 17px !important;}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float i {
  line-height: 55px;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}