* {
  font-family: "Montserrat", sans-serif;
}

.top-bar {
  background: #f8f9fa;
  font-size: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
}

.top-items {
  font-weight: 500;
}

.main-navbar {
  background: #0b8bcb;
  padding: 5px 0;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  padding: 10px 5px !important;
  margin-top: 10px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1400px !important;
}

.cart-btn {
  color: white;
  font-size: 20px;
  padding: 10px;
}

.schedule-btn {
  background: white;
  color: #0b8bcb;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
}

.schedule-btn:hover {
  background: #f8f9fa;
}

.hero-slide {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 20px;
  font-weight: 300;
}

.order-btn {
  background: #0b8bcb;
  color: white;
  padding: 12px 40px;
  font-weight: 600;
  border-radius: 4px;
}

.order-btn:hover {
  background: #fff;
  color: #0b8bcb;
  padding: 12px 40px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #0b8bcb;
}

.logo-img {
  height: 70px;
  width: auto;
}

/* FOOTER STYLES */
.footer {
  background: #0b8bcb;
  color: white;
  padding: 60px 0 30px;
}

.footer h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-contact li {
  margin-bottom: 15px;
}

.footer-contact i {
  color: #fff;
  margin-right: 10px;
  width: 20px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button:hover {
  background: #0a6fa8;
}

.footer-about p {
  color: #fff;
  line-height: 1.6;
  margin-top: 20px;
}

/* Footer Bottom Styles */
.footer-bottom-wrapper {
  background-color: #fff;
  color: #000;
}

.footer-bottom {
  min-height: 60px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #0b8bcb;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slide {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .logo-img {
    height: 50px;
    width: auto;
  }

  /* Footer Responsive */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  /* Footer Bottom Responsive */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 0 !important;
  }

  .footer-links a {
    margin: 0 10px !important;
  }
}

@media (max-width: 576px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    margin: 0 !important;
  }
}

/* Quality Service Section */
.quality-service {
  background: #f8f9fa;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 80px 0;
}

.quality-service h2 {
  color: #0b8bcb;
  font-weight: 700;
  margin-bottom: 20px;
}

.quality-service h2 span {
  font-size: 36px;
  display: block;
  margin-top: 10px;
}

.quality-service .lead {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
}

.quality-service img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
  .quality-service {
    padding: 100px 0;
  }

  .quality-service h2 {
    font-size: 40px;
  }

  .quality-service h2 span {
    font-size: 42px;
  }

  .quality-service .lead {
    font-size: 20px;
  }
}

/* Tablets and Small Desktops (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .quality-service {
    padding: 70px 0;
  }

  .quality-service h2 {
    font-size: 34px;
  }

  .quality-service h2 span {
    font-size: 36px;
  }

  .quality-service .lead {
    font-size: 18px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
  .quality-service {
    padding: 60px 0;
    text-align: center;
  }

  .quality-service h2 {
    font-size: 32px;
  }

  .quality-service h2 span {
    font-size: 34px;
  }

  .quality-service .lead {
    font-size: 18px;
    margin: 0 auto;
  }

  .quality-service .mb-4 {
    margin-bottom: 40px !important;
  }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
  .quality-service {
    padding: 50px 0;
  }

  .quality-service h2 {
    font-size: 28px;
  }

  .quality-service h2 span {
    font-size: 30px;
  }

  .quality-service .lead {
    font-size: 16px;
    padding: 0 15px;
  }

  .quality-service img {
    max-width: 80%;
  }
}

/* Small Mobile (Up to 575px) */
@media (max-width: 575px) {
  .quality-service {
    padding: 40px 0;
  }

  .quality-service h2 {
    font-size: 24px;
  }

  .quality-service h2 span {
    font-size: 26px;
  }

  .quality-service .lead {
    font-size: 15px;
    padding: 0 10px;
  }

  .quality-service img {
    max-width: 90%;
    margin-top: 20px;
  }
}

/* Extra small devices (portrait phones, less than 400px) */
@media (max-width: 400px) {
  .quality-service h2 {
    font-size: 22px;
  }

  .quality-service h2 span {
    font-size: 24px;
  }

  .quality-service .lead {
    font-size: 14px;
  }
}

/* Laundry About Section */
.laundry-about span {
  letter-spacing: 0.5px;
  font-size: 32px;
  font-weight: 500;
}

.laundry-about h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}



.laundry-about ul li {
  font-size: 15px;
}

.laundry-about .phone-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.border-end {
  font-size: 2px !important;
  color: #000 !important;
  margin-left: 0px;
}

/* Responsive text sizing */
@media (max-width: 991px) {
  .laundry-about h2 {
    font-size: 30px;
  }

  .laundry-about span {
    text-align: center;
  }

  .laundry-about h2 {
    text-align: center;
  }

  .phone-flex {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .laundry-about h2 {
    font-size: 26px;
  }

  .phone-flex {
    display: block !important;
  }

  .phone-flex ul {
    border: none !important
  }

  .laundry-about span {
    text-align: center;
    font-size: 26px;
  }

  .laundry-about h2 {
    text-align: center;
  }

}

/* FEATURES */
.features-section {
  background: #fff;
}

.feature-box {
 background: linear-gradient(to top, #61bae6 0%, #fff 100%);


  padding: 60px 15px;
  text-align: left;
  height: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
}


.feature-box i {
  font-size: 36px;
  margin-right: 20px;
}

.feature-box h6 {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 20px;
}

.feature-box p {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
  line-height: 100%;
}

.feature-box.active {
  background: #fff;
  border: 2px solid #0d6efd;
}

/* SERVICES */
.services-section {
  background: #fff;
}

.section-tag {
  color: #0B8BCB;
  font-weight: 500;
  font-size: 32px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;

  display: flex;
  align-items: flex-end;
  /* vertical center */
  justify-content: space-between;
  gap: 25px;

  padding: 20px;
}



.service-text h6 {
  margin-bottom: 6px;
  font-weight: 600;
}

.service-text p {
  font-size: 14px;
  margin-bottom: 0;
}


.service-overlay i {
  font-size: 28px;
  background: #0B8BCB;
  width: 100px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-overlay h6 {
  font-size: 18px;
  margin-bottom: 5px;
}

.service-overlay p {
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .feature-box {
    text-align: center;
  }
}

/* Common */
.small-title {
  color: #0B8BCB;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 100%;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 26px;
  line-height: 100%;
  color: #000;
}

/* HOW WE WORK */
.step-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px 25px;

}

.step-circle h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-btn {
  background-color: #0B8BCB;
  padding: 15px 25px;
  color: #fff;
}

.service-btn:hover {
  border: 1px solid #0B8BCB !important;
  color: #000;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.text-muted {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #777;
}

.step.active {
  border-color: #0d87c9;
  color: #0d87c9;
}

.dot {
  width: 20px;
  height: 2px;
  background: #ccc;
}

/* COMMERCIAL LAUNDRY */
.commercial-laundry img {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }

  .step-circle {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 576px) {
  .step-circle {
    width: 220px;
    height: 220px;
    padding: 25px;
  }

  .service-button {
    display: flex;
    justify-content: center;
  }

  .steps {
    flex-wrap: wrap;
  }

  .small-title {
    color: #0B8BCB;
    text-align: center;
    font-size: 26px;
  }

  .section-title {
    text-align: center;
  }

  .text-muted {
    text-align: center;
  }

  .approach {
    text-align: center;
  }

  .pricing-carddd {
    margin-bottom: 50px !important;
  }

  .Laundary-service {
    font-size: 28px !important;
    line-height: 100%;
    color: #000;
    margin-top: 20px !important;
    font-weight: 700;
  }
  
}

.custom-tabs .nav-link {
  border: none;
  background: #f2f2f2;
  color: #000 !important;
  padding: 20px 30px;
  font-weight: 500;
  margin: 0px 20px;
  font-size: 18px;
  margin-top: 15px;
  border: none !important;
}

.custom-tabs .nav-link.active {
  background: #0B8BCB;
  color: #fff !important;
}

.video-box img {
  width: 100%;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #0d87c9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.imp-in {
  font-size: 32px;
  line-height: 100%;
  color: #0B8BCB;
  margin-bottom: 30px !important;
  font-weight: 500;
}

.Laundary-service {
  font-size: 40px;
  line-height: 100%;
  color: #000;
  margin-top: 20px !important;
  font-weight: 700;
}

/* Remove nav-tabs border */
.nav-tabs {
  border-bottom: none;
}

/* Remove individual tab border */
.nav-tabs .nav-link {
  border: none !important;
}

/* Active tab border bhi remove */
.nav-tabs .nav-link.active {
  border: none !important;
  box-shadow: none;
}

.approach {
  font-size: 40px;
  line-height: 100%;
  color: #000;
  margin-top: 20px !important;
  font-weight: 700;
}

.price-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  min-height: 320px !important;
}

.price-card i {
  font-size: 50px;
  /* bigger icon */
  margin-bottom: 40px;
  color: #000;
}

.price-card h6 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;

}

.price-card .price {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.price span {
  color: #0B8BCB;
  font-size: 20px;
}

.price-card .btn {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #0B8BCB;
}


.price-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-section img {
  height: 100%;
  object-fit: cover;
}

.testimonial-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin-right: 6px;
}

.testimonial-dots span.active {
  background: #0d6efd;
}

.img-up {
  margin-top: -30px;
}

.img-down {
  margin-top: 30px;
}

/* Responsive fix */
@media (max-width: 768px) {

  .img-up,
  .img-down {
    margin-top: 0;
  }

  .pricing-carddd {
    margin-bottom: 50px !important;
  }
  .testimonial-dots{
  text-align: center;
}
.testimonial-name{
  text-align: center;
}

}

.pricing-card {
  background: #F0F0F0;
  padding: 40px 20px 60px;
  border-radius: 6px;
  position: relative;
  height: 100%;
}

.pricing-card h5 {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 15px;
}


.icon-circle {
  width: 70px;
  height: 70px;
  background: #0B8BCB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -70px auto 0;
  color: #fff;
  font-size: 28px;
}

.pricing-list li {
  font-size: 16px;
  color: #777;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  margin-top: 15px;
}

.add-btn {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.add-btn span {
  font-size: 22px;
  font-weight: 600;
}


/* contact page  */

.inner-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  margin-top: 10px;
}

.breadcrumb-custom {
  font-size: 16px;
}

.breadcrumb-custom a {
  color: #0B8BCB;
  text-decoration: none;
}

.breadcrumb-custom span,
.breadcrumb-custom strong {
  color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .banner-title {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .inner-banner {
    padding: 80px 0;
  }

  .banner-title {
    font-size: 32px;
  }

  .breadcrumb-custom {
    font-size: 14px;
  }

}

.contact-info-section {
  background: #fff;
}

.section-tag {
  color: #3bbf6a;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
}

.info-box {
  padding: 20px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #0B8BCB;
  font-size: 30px;
}

.info-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box p {
  color: #777;
  font-size: 15px;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}

.contact-section {
  padding: 60px 0;
}

.contact-heading {
  font-size: 40px;
  font-weight: 700;
  color: #0B8BCB;
}

.contact-para {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

.contact-form-box {
  background: #f5f5f5;
  padding: 30px;
  height: 100%;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .map-wrapper {
    min-height: 400px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .map-wrapper {
    min-height: 300px;
  }

  .contact-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0B8BCB;
  }

  .contact-para {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
  }

  .faq-title {
    font-weight: 700;
    color: #2c2c2c;
    font-size: 18px;
  }
  .contact-section {
    padding: 0px;
  }
}

/* faq page css */
.faq-section {
  background: #fff;
}

.accordion-item {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  border-radius: 10px;
  font-size: 20px;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
  box-shadow: none;
}


.accordion-body {
  color: #6c757d;
  padding: 0 20px 20px;
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-title {
  font-weight: 700;
  color: #2c2c2c;
  font-size: 20px;
}

.ask-question-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft background shape (left side) */
.ask-question-section::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 50%;
  width: 500px;
  height: 500px;
  background: #f2f6f2;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.ask-question-section .container {
  position: relative;
  z-index: 1;
}

.ask-title {
  font-weight: 700;
  color: #2c2c2c;
}

.ask-subtitle {
  color: #7a7a7a;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Inputs */
.form-control {
  border-radius: 6px;
  border: 1px solid #e1e5ee;
  font-size: 16px;
  padding: 14px 16px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #0B8BCB;
}

/* Button */
.btn-success {
  background: #0B8BCB;
  border: none;
  border-radius: 4px;
}

.btn-success:hover {
  background: #fff;
  color: #0B8BCB;
  border: 1px solid #0B8BCB;
}

/* service */

.service-sidebar {
  background: #f3f7f5;
  padding: 0px;
}

.service-item {
  padding: 18px 22px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}

.service-item:not(:last-child) {
  margin-bottom: 8px;
}

.service-item.active {
  background-color: #0B8BCB;
  color: #fff;
  border-radius: 2px;
}

/* Image fit */
.service-image img {
  object-fit: cover;
}

.service-details {
  background: #f7f9f8;
}

/* LEFT BOX */
.contact-box {
  background: #f3f7f5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.contact-box h4 {
  font-weight: 700;
}

.contact-list li {
  margin-bottom: 15px;
  color: #555;
  font-size: 15px;
}

.contact-list .icon {
  color: #4caf50;
  margin-right: 8px;
}

/* BUTTON */
.schedule-btn {
  background: #0B8BCB;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0;
}

.schedule-btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #0B8BCB;
}

/* RIGHT CONTENT */
.section-tag {
  color: #0B8BCB;
  font-weight: 600;
  letter-spacing: 1px;
}

.service-content h2 {
  font-size: 40px;
  font-weight: 700;
}

.highlight-text {
  border-left: 4px solid #0B8BCB;
  padding-left: 15px;
  color: #777;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-content h2 {
    font-size: 30px;
  }
  .highlight-text {
  text-align: center;
}
.text-centerr{
  text-align: center;
}
.ask-btn {
  display: block;
  margin: 0 auto;
}
}

.service-extra {
  background: #f7f9f8;
}

.question-form{
  background-color:#f3f7f5;
  padding: 20px 20px;
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FORM */
.question-form .form-control {
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
}

.ask-btn {
  background: #0B8BCB;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border-radius: 0;
}

.ask-btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #0B8BCB;
}

/* CONTENT */
.content-box h2 {
  font-weight: 700;
  font-size: 34px;
}

.content-box p {
  color: #777;
  line-height: 1.8;
}

/* CHECKLIST */
.checklist ul {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #666;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0B8BCB;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .content-box h2 {
    font-size: 26px;
  }
}


/* pricing */

.price-section {
  padding: 40px 0;
  background: #f7faf7;
}

/* Titles */


.main-title {
  font-size: 38px;
  font-weight: 700;
}

.sub-text {
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* Tab Wrapper */
.price-tab-wrapper {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

/* Tabs */
.price-tabs {
  display: flex;
  width: 100%;
}

.price-tabs .nav-item {
  flex: 1;
}

.price-tabs .nav-link {
  width: 100%;
  padding: 20px 40px !important;
  border: none;
  background: #ffffff;
  color: #333 !important;
  font-weight: 600;
  border-right: 1px solid #eee;
}

.nav-item a{
  padding: 10px 20px !important;
}

.price-tabs .nav-item:last-child .nav-link {
  border-right: none;
}

.price-tabs .nav-link.active {
  background: #0B8BCB;
  color: #fff !important;
}

/* Price rows */
.price-row {
  background: #f5f7f5;
  border-radius: 30px;
  padding: 14px 28px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row strong {
  color: #666;
}

/* Responsive */
@media (max-width: 991px) {
  .price-tabs {
    flex-direction: column;
  }

  .price-tabs .nav-link {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 575px) {
  .main-title {
    font-size: 28px;
  }

  .price-row {
    padding: 12px 20px;
  }
  .nav-item a{
  padding: 10px 0px !important;
}
}

/* abou us  */
.stats-section {
  padding: 80px 0;
  background: #0B8BCB;
  position: relative;
  overflow: hidden;
}



/* flex layout */
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

/* icon circle */
.stat-icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon img {
  width: 50px;
  color: #3bbf6a;
}

/* text */
.stat-text h3 {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.stat-text p {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

/* responsive */
@media (max-width: 767px) {
  .stat-item {
    justify-content: center;
  }

  .stat-text h3 {
    font-size: 26px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stats-section {
    padding: 80px 10px;

  }


  .stat-icon img {
    width: 30px;
    color: #3bbf6a;
  }

  .why-choose-section::after {
    display: none;
  }

  /* text */

}


.why-choose-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle background curve */
.why-choose-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f3f7f3;
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

/* headings */
.section-subtitle {
  color: #46b164;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}



/* item layout */
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* icon */
.why-icon {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-icon img {
  width: 50px;
}

/* text */
.why-text h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.why-text p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .why-item {
    gap: 14px;
  }

  .why-icon {
    width: 56px;
    height: 56px;
  }

  .why-icon img {
    width: 26px;
  }

  .team-section {
    padding: 0px 0;

  }
  .testimonial-section{
    padding: 0px !important;
  }
  .commercial-laundry{
    padding: 0px !important;
  }
  .services-section{
     padding: 0px !important;
  }
}

.team-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* background curves */
.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f3f7f3;
  border-radius: 50%;
  z-index: 0;
}

.team-section::before {
  top: -200px;
  left: -200px;
}

.team-section::after {
  bottom: -200px;
  right: -200px;
}

/* heading */
.section-subtitle {
  color: #46b164;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin: 8px 0;
}

.section-desc {
  max-width: 700px;
  margin: auto;
  color: #666;
}

/* team card */
.team-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-img {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

/* name */
.team-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #222;
}

.team-card span {
  color: #777;
  font-size: 15px;
}

/* carousel dots */
.carousel-indicators {
  position: relative;
  margin-top: 40px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcdcdc;
  opacity: 1;
}

.carousel-indicators .active {
  background-color: #46b164;
}

/* responsive */
@media (max-width: 991px) {
  .team-img {
    width: 180px;
    height: 180px;
  }

  .team-img img {
    width: 160px;
    height: 160px;
  }

  .team-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #f3f7f3;
    border-radius: 50%;
    z-index: 0;
    display: none;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }

  .team-img {
    width: 150px;
    height: 150px;
  }

  .team-img img {
    width: 130px;
    height: 130px;
  }

  .team-section::before,
  .team-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #f3f7f3;
    border-radius: 50%;
    z-index: 0;
    display: none;
  }


}

.how-step {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Circle */
.step-circle {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background-color: #f4f4f4;
  background-repeat: no-repeat;
  background-position: 70px center;
  /* image stays LEFT */
  background-size: 160px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Text block — pushed RIGHT */
.step-text {
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
}

.step-img {
  position: absolute;
  left: -8%;
  top: 20%;
}

/* Heading */
.step-text h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #000;
}

.step-text h5 span {
  color: #0b8bcb;
}

/* Paragraph */
.step-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-circle {
    width: 300px;
    height: 300px;
    background-position: center 60px;
    background-size: 120px;
  }

  .step-text {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 240px;
  }

  .step-img {
    position: absolute;
    left: 25%;
    top: -8%;

  }

  .step-img img {
    width: 140px !important;
    height: 140px !important;
  }
}



@media (max-width: 576px) {
  .step-circle {
    width: 300px;
    height: 300px;
    background-position: center 60px;
    background-size: 120px;
  }

  .step-text {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 240px;
  }

  .step-img {
    position: absolute;
    left: 30%;
    top: -5%;

  }

  .step-img img {
    width: 120px !important;
    height: 120px !important;
  }
}

.map-wrapper iframe {
  display: block;
  height: 500px;
}

.map-wrapperr iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

/* contat us page  */

.blog-details-section {
  background: #fff;
}

/* DATE */
.blog-date {
  width: 60px;
  height: 60px;
  background: #0B8BCB;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

.blog-date .day {
  display: block;
  font-size: 20px;
}

.blog-date .month {
  font-size: 12px;
}

/* META */
.blog-meta {
  font-size: 14px;
  color: #777;
}

.blog-meta a {
  color: #0B8BCB;
  text-decoration: none;
}

.social-icons a {
  color: #000;
  margin-left: 10px;
}

/* TITLE */
.blog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* INTRO */
.blog-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* QUOTE */
.blog-quote {
  background: #f7f7f7;
  padding: 30px;
  margin-top: 40px;
  border-left: 5px solid #0B8BCB;
}

.blog-quote p {
  margin-bottom: 10px;
  color: #555;
}

.blog-quote span {
  font-weight: 600;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  color: #555;
  text-decoration: none;
}

.category-list a::before {
  content: "→ ";
  color: #0B8BCB;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .blog-title {
    font-size: 26px;
  }

  .blog-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.blog-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.blog-subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-image {
  border-radius: 4px;
  width: 100%;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* CALENDAR */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}

.calendar-table th {
  font-weight: 600;
  padding: 8px;
  background: #f5f5f5;
}

.calendar-table td {
  padding: 8px;
  border: 1px solid #eee;
}

.calendar-prev {
  display: inline-block;
  margin-top: 10px;
  color: #0b8bcb;
  text-decoration: none;
}

/* TAGS */
.tag-list a {
  display: inline-block;
  background: #f2f2f2;
  padding: 8px 14px;
  margin: 5px 5px 0 0;
  font-size: 14px;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
}

.tag-list a:hover {
  background: #0b8bcb;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .blog-subtitle {
    font-size: 20px;
  }
}
.author-box {
  background: #f3f3f3;
  padding: 25px;
  border: 1px solid #e6e6e6;
  margin: 50px 0;
}

.author-inner {
  gap: 25px;
}

.author-avatar {
  width: 130px;
  height: 130px;
  background: #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 60px;
  color: #ffffff;
}

.author-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.author-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 12px;
}

.author-social a {
  color: #111;
  margin-right: 12px;
  font-size: 14px;
  transition: 0.3s;
}

.author-social a:hover {
  color: #0b8bcb;
}
.service-sidebar {
  background: #f3f7f5;
  border-radius: 8px;
}

.service-item {
  padding: 16px 20px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: 0.3s;
}

.service-item:hover {
  background: #f5f9fc;
}

.service-item.active {
  background: #0B8BCB;
  border-left-color: #0B8BCB;
  font-weight: 600;
}

.service-tab {
  display: none;
  animation: fade 0.4s ease;
}

.service-tab.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .service-item {
    text-align: center;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .service-item.active {
    border-bottom-color: #0b8bcb;
  }
}


