*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar-logo img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 10px;
    }
    .navbar-custom {
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      position: relative;
    }
    .navbar-links {
      justify-content: center;
    }
    .navbar-links .nav-link {
      color: #fff !important;
      margin-left: 1rem;
      font-weight: 500;
    }
    .navbar-links .nav-link:hover {
      color: #ffc107 !important;
    }
    .navbar-call-btn {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
    }
    .navbar-call-btn a {
      background-color: #ffc107;
      padding: 6px 14px;
      border-radius: 5px;
      color: #000;
      font-weight: 600;
      text-decoration: none;
    }
    .navbar-call-btn a:hover {
      background-color: #e0a800;
      color: #fff;
    }
    @media (max-width: 991px) {
      .navbar-call-btn {
        position: static;
        text-align: center;
        margin-top: 15px;
      }
    }
    /* home-hero-section-wrapper */
    .home-hero-section-wrapper {
      background: url('https://black-and-white.co.in/wp-content/uploads/2024/04/what-is-dry-cleaning.jpg') center/cover no-repeat;
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }

    .home-hero-section-heading {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      animation: home-hero-section-fadeInDown 1s ease-in-out;
    }

    .home-hero-section-subtext {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      min-height: 30px;
    }

    .home-hero-section-buttons a {
      margin: 0 10px;
      padding: 10px 20px;
      border-radius: 30px;
      background-color: #ffc107;
      color: #000;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s ease;
      display: inline-block;
    }

    .home-hero-section-buttons a:hover {
      background-color: #e0a800;
      color: white;
      transform: scale(1.05);
    }

    @keyframes home-hero-section-fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .home-hero-section-heading {
        font-size: 1.8rem;
      }
      .home-hero-section-subtext {
        font-size: 1rem;
      }
      .home-hero-section-buttons a {
        margin: 8px 5px;
       
      }
    }

    /* Modal Styling */
    .home-hero-section-modal .form-label {
      font-weight: 600;
    }

    .home-hero-section-modal .form-control,
    .home-hero-section-modal .form-select {
      border-radius: 8px;
      box-shadow: none;
    }

    .home-hero-section-modal .btn-warning {
      background-color: #ffc107;
      color: black;
      border: none;
    }

    .home-hero-section-modal .btn-warning:hover {
      background-color: #e0a800;
      color: white;
    }
    /* home-about-section-wrapper */
    .home-about-section-wrapper {
  background-color: #f9f9f9;
}

.home-about-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.home-about-section-text {
  max-width: 700px;
  font-size: 1.1rem;
  color: #555;
}

.home-about-section-btn {
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.home-about-section-btn:hover {
  background-color: #e0a800;
  color: white;
  transform: scale(1.05);
}
/* home-service-section */
  .home-service-section-card:hover {
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      transform: translateY(-5px);
      transition: 0.3s;
    }

    .home-service-section-btn-category {
      margin: 5px;
      border-radius: 25px;
      font-weight: 600;
    }

    .home-service-section-btn-category.active {
      background-color: #ffc107;
      color: #000;
    }

    .home-service-section-img {
      height: 260px;
      object-fit: cover;
    }

    .home-service-section-description {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1rem;
      color: #555;
    }
/* home-whychoose-section-wrapper */
.home-whychoose-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}

.home-whychoose-section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.home-whychoose-section-card {
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.home-whychoose-section-card:hover {
  transform: translateY(-6px);
  border-bottom: 3px solid #ffc107;
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
/* home-footer-section-wrapper */
.home-footer-section-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffc107;
}

.home-footer-section-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.home-footer-section-links a:hover {
  color: #ffc107;
  transform: translateX(5px);
}

.home-footer-section-social a {
  color: #fff;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: 0.3s;
}

.home-footer-section-social a:hover {
  color: #ffc107;
}

.home-footer-section-dev {
  margin-top: 5px;
  font-weight: 500;
}

.home-footer-section-dev span {
  color: #ffc107;
  font-weight: bold;
}
/* about page  */
/* about-hero-section-wrapper */
.about-hero-section-wrapper {
  background: url('https://res.cloudinary.com/jerrick/image/upload/c_scale,f_jpg,q_auto/631b4f62c33a23001e3a1df6.jpg') center/cover no-repeat;
  height: 100vh;
  padding: 3rem 1rem;
  position: relative;
}

.about-hero-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero-section-wrapper .container {
  position: relative;
  z-index: 2;
}

.about-hero-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffc107;
}

.about-hero-section-subtext {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .about-hero-section-title {
    font-size: 2rem;
  }

  .about-hero-section-subtext {
    font-size: 1rem;
  }
}
/* about-story-section-wrapper */
.about-story-section-wrapper {
  background-color: #fff;
}

.about-story-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}

.about-story-section-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.about-story-section-quote {
  font-size: 1rem;
}

.about-story-section-img-box img {
  border-radius: 12px;
  object-fit: cover;
}
/* about-mission-section-wrapper */
.about-mission-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}

.about-mission-section-subtext {
  max-width: 700px;
  font-size: 1.05rem;
  color: #555;
}

.about-mission-section-card {
  transition: all 0.3s ease;
}

.about-mission-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/* about-team-photo-section-wrapper */
.about-team-photo-section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
}

.about-team-photo-section-subtext {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
}

.about-team-photo-section-image-box img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
}

.about-team-photo-section-caption {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.75);
}
/* service page */
/* service-hero-section-wrapper */
.service-hero-section-wrapper {
  background: url('https://www.dhobilite.com/images-v2/blog/process-folowed-in-laundry.webp') center/cover no-repeat;
  height: 100vh;
  padding: 3rem 1rem;
  position: relative;
}

.service-hero-section-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.service-hero-section-wrapper .container {
  position: relative;
  z-index: 2;
}

.service-hero-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffc107;
}

.service-hero-section-description {
  font-size: 1.2rem;
  color: #eee;
  max-width: 700px;
}

@media (max-width: 768px) {
  .service-hero-section-title {
    font-size: 2rem;
  }

  .service-hero-section-description {
    font-size: 1rem;
  }
}
/* service-common-section-wrapper */
.service-common-section-wrapper {
  background-color: #f8f9fa;
}

.service-common-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.service-common-section-subtext {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.service-common-section-card {
  transition: all 0.3s ease;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-common-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-common-section-image {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.service-common-section-card .p-3 {
  padding: 1.25rem !important;
}

.service-common-section-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.service-common-section-card p {
  font-size: 0.9rem;
  color: #666;
}

.service-common-section-card .badge {
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
}
/* service-ladies-section-wrapper */
.service-ladies-section-wrapper {
  background-color: #ffffff;
}

.service-ladies-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.service-ladies-section-subtext {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.service-ladies-section-card {
  transition: all 0.3s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-ladies-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-ladies-section-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.service-ladies-section-card .p-3 {
  padding: 1.25rem !important;
}

.service-ladies-section-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.service-ladies-section-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.service-household-section-wrapper {
  background-color: #ffffff;
}

.service-household-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.service-household-section-subtext {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.service-household-section-card {
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-household-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.service-household-section-card i {
  font-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-household-section-card:hover i {
  transform: scale(1.1);
}

.service-household-section-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.25rem;
}

.service-household-section-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.service-household-section-card .badge {
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
}

#householdAccordion .accordion-button:not(.collapsed) {
  background-color: #ffc107;
  color: #000;
}

#householdAccordion .accordion-button:hover {
  background-color: #ffe082;
}

#householdAccordion .accordion-item {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

#householdAccordion .accordion-body {
  background-color: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #555;
}
/* contact page */
/* contact-hero-section-wrapper */
.contact-hero-section-wrapper {
  position: relative;
  height: 100vh;
  background: url('https://images.ctfassets.net/exql6ar8lq2x/NfwPpi4kVTF6b4CbgbJRc/9e4b2a83ab5b5a093f9f754aa1a84d10/dallas_dry_cleaner_600x.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-section-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-section-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-hero-section-subtext {
  color: #eee;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-hero-section-title {
    font-size: 2rem;
  }
  .contact-hero-section-subtext {
    font-size: 1rem;
  }
}
/* contact-information-section */
/* General Section Styling */
.contact-information-section {
    background-color: #f0f4f8;
    padding: 50px 20px;
}

.contact-information-section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-information-section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Button Styling */
.contact-information-section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 40px;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    text-align: center;
    margin: 10px 0;
}

.contact-information-section-btn i {
    margin-right: 10px;
}

/* Call Button */
.contact-information-section-call {
    background-color: #0d6efd;
}

.contact-information-section-call:hover {
    background-color: #004085;
    transform: translateY(-5px);
}

/* Email Button */
.contact-information-section-email {
    background-color: #198754;
}

.contact-information-section-email:hover {
    background-color: #0c4b39;
    transform: translateY(-5px);
}

/* WhatsApp Button */
.contact-information-section-whatsapp {
    background-color: #25d366;
}

.contact-information-section-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .contact-information-section-heading {
        font-size: 28px;
    }

    .contact-information-section-btn {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media (min-width: 768px) {
    .contact-information-section-btn {
        font-size: 16px;
        padding: 15px 30px;
    }
}
/* map-section */
.map-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.map-section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.map-section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Map Embed Styling */
.map-section-embed iframe {
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .map-section-heading {
        font-size: 28px;
    }

    .map-section-description {
        font-size: 16px;
    }
}
/* contact-form-section */
/* Section Styling */
.contact-form-section {
    background-color: #f4f7fc;
    padding: 60px 20px;
}

.contact-form-section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form-section-description {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Form Styling */
.contact-form-section-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-form-section-form:hover {
    transform: translateY(-5px);
}

.contact-form-section-label {
    font-size: 16px;
    color: #34495e;
    font-weight: 500;
}

.contact-form-section-input,
.contact-form-section-textarea {
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    width: 100%;
    transition: border-color 0.3s ease-in-out;
}

.contact-form-section-input:focus,
.contact-form-section-textarea:focus {
    border-color: #3498db;
    outline: none;
}

.contact-form-section-textarea {
    resize: none;
}

/* Button Styling */
.contact-form-section-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form-section-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* Font Awesome Icons */
.contact-form-section-label i {
    margin-right: 10px;
    color: #3498db;
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .contact-form-section-heading {
        font-size: 30px;
    }

    .contact-form-section-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}
/* service-boutique-section */
.service-boutique-section {
  background-color: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
}

.service-boutique-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
}

.service-boutique-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-boutique-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.service-boutique-icon {
  font-size: 2.3rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.service-boutique-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.service-boutique-card p {
  font-size: 0.95rem;
  color: #e91e63;
  font-weight: bold;
  margin: 0;
}
/* review-section */


.review-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.review-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.review-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #34495e;
}

.review-text {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.6;
}
/* privacy policy page */
.carousel-item {
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken for text visibility */
}



.carousel-caption h2 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.3;
}

.carousel-caption p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Tablet and Phone Responsive Design */
@media (max-width: 767px) {
  .carousel-caption h2 {
    font-size: 2.2rem; /* Slightly smaller font size */
    line-height: 1.3;
  }
  .carousel-caption p {
    font-size: 1rem; /* Adjust text size for readability */
  }
}

@media (max-width: 480px) {
  .carousel-caption h2 {
    font-size: 1.6rem; /* Reduced font size for mobile */
  }
  .carousel-caption p {
    font-size: 0.9rem; /* Adjusted font size for mobile */
  }
}
