@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@media screen and (min-width: 992px) {
  .header-style-1 #navbar {
    margin-right: 10px;
  }
}
#header .navbar-nav a {
  color: black !important;
}

.site-header .sticky-header {
  background-color: #FBDC07 !important;
  color: black, !important;
}

@media (max-width: 991px) {
  .site-header .navbar-header button {
    background-color: white !important;
    height: 40px;
    border: 1.5px solid black;
    border-radius: 20px;
  }
  .site-header .navbar-header button span {
    background-color: black !important;
  }
  .header-style-1 .navigation {
    padding: 10px 0 !important;
  }
}
.site-header #navbar > ul li a:hover {
  color: rgb(28, 27, 27) !important;
}

@media screen and (min-width: 1200px) {
  .header-style-1 #navbar > ul > li > a,
  .header-style-2 #navbar > ul > li > a {
    padding: 30px 20px;
    font-weight: 500;
  }
}
.header-style-1 .navbar-brand {
  margin-top: 0px !important;
  padding: 0 !important;
}

@media screen and (min-width: 992px) {
  .header-style-1 {
    background-color: #fff;
  }
}
.nav a.active {
  color: #ffdc02;
  /* Example: Highlight active link with a different color */
  font-weight: bold;
  border-bottom: 4px solid #000;
  /* Optional underline for active link */
}

.site-footer:before {
  background-color: #FBDC07 !important;
}

.site-footer .widget-title h3 {
  color: black;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: black !important;
}
.site-footer .extra-link a {
  font-weight: 800;
}
.site-footer .newsletter-widget form .submit button {
  color: black !important;
}

.services-section .section-title span {
  color: black !important;
}
.services-section .section-title h2 {
  color: #58595b !important;
}
.services-section .row2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.services-section .row2 .col {
  width: 100%;
}
.services-section .row2 .service-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.services-section .row2 .service-grids .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-section .row2 .service-grids .grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.services-section .row2 .service-grids .grid .icon img {
  cursor: pointer;
  width: 100px;
  height: 100px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.services-section .row2 .service-grids .grid .icon img:hover {
  transform: rotateY(360deg);
}
.services-section .row2 .service-grids .grid h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.services-section .row2 .service-grids .grid h3 a {
  color: #333;
  text-decoration: none;
}
.services-section .row2 .service-grids .grid h3 a:hover {
  color: #FBDC07;
}
.services-section .row2 .service-grids .grid p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}
.services-section .row2 .service-grids .grid .more {
  font-size: 14px;
  color: #FBDC07;
  text-decoration: none;
  font-weight: 700;
}
.services-section .row2 .service-grids .grid .more:hover {
  text-decoration: underline;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.services-one__single {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-one__single {
  transition: 0.3s;
}
.services-one__single:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.services-one__single:hover .services-one__img {
  transition: 0.3s;
}
.services-one__single:hover .services-one__img .thumbnail-img {
  transition: 0.3s;
  transform: scale(1.1);
}

.thumbnail-img {
  transition: 0.3s;
}

.services-one__img {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-one__img img {
  width: 100%;
  height: 260px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-one__img .services-one__icon {
  cursor: pointer;
  width: 100px;
  height: 100px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  position: absolute;
  bottom: -2px;
  right: -1px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.services-one__img .services-one__icon:hover {
  transform: rotateY(360deg);
}

.services-one__content {
  padding: 20px;
}

.services-one__title a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.services-one__title a:hover {
  color: #3e3939;
}

.services-one__text {
  color: #666;
  font-size: 14px;
  margin: 10px 0;
}

.services-one__btn-box .thm-btn {
  display: inline-block;
  padding: 9px 18px;
  font-size: 14px;
  border: 1px solid #e7d2d2;
  color: #7d7272;
  text-decoration: none;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, transparent);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: 0.3s ease;
}

.services-one__btn-box .thm-btn:hover {
  background: #1c1a1a;
  background-position: 0 0;
  color: #fff;
  transition: 0.3s ease;
}

@media (max-width: 992px) {
  .service-row {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row */
  }
}
@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    /* 1 item per row */
  }
}
.franchise {
  padding-top: 90px;
  background-color: #F9FAFA;
}
@media (max-width: 992px) {
  .franchise {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.franchise .section-title-s2 {
  margin-bottom: 20px;
}
.franchise .section-title-s2 h2 {
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 44px;
  color: #58595b !important;
}
@media (max-width: 575px) {
  .franchise .section-title-s2 h2 {
    line-height: 40px;
    font-size: 30px;
  }
}
.franchise .details .text1 {
  color: #040404 !important;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.franchise .details p {
  color: #151414;
  font-weight: 600;
  font-size: 17px;
}
.franchise .details .btn-wrapper {
  text-align: left;
  margin-top: 20px;
}
.franchise .details .btn-wrapper a {
  background-color: #ffe177;
  border: none;
  color: black;
  border-radius: 5px;
  padding: 12px 20px;
  letter-spacing: 0;
}
.franchise .details .btn-wrapper a:hover {
  background-color: black;
  color: #fff;
}
@media (max-width: 992px) {
  .franchise .col-md-6 .franchise-img {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .franchise .col-md-6 .franchise-img {
    margin-top: 70px;
  }
}
.franchise .col-md-6 .franchise-img img {
  height: 450px !important;
  -o-object-fit: cover;
     object-fit: cover;
      width: 100%;
}
@media (max-width: 575px) {
  .franchise .col-md-6 .franchise-img img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100% !important;
  }
}

.partner-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eceff1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .partner-section {
    padding: 60px 0;
  }
}
.partner-section .partner-box {
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .partner-section .partner-box {
    padding: 30px;
  }
}
.partner-section .partner-box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: #ffe177;
  border-radius: 50%;
  opacity: 0.5;
}
.partner-section .partner-box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: #ffe177;
  border-radius: 50%;
  opacity: 0.5;
}
.partner-section .partner-box h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 44px;
  color: #58595b !important;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .partner-section .partner-box h2 {
    font-size: 28px;
  }
}
.partner-section .partner-box .partner-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.partner-section .partner-box .partner-content ul li {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
}
.partner-section .partner-box .partner-content ul li:hover {
  background: #FBDC07;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
}
.partner-section .partner-box .partner-content ul li:hover span {
  color: #fff;
}
.partner-section .partner-box .partner-content ul li:hover .icon {
  transform: rotateY(360deg);
}
.partner-section .partner-box .partner-content ul li .icon {
  width: 50px;
  height: 50px;
  background: #FBDC07;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .partner-section .partner-box .partner-content ul li .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.partner-section .partner-box .partner-content ul li .text {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}
.partner-section .partner-box .partner-content ul li .text span {
  font-weight: 600;
  color: #d88a00;
}
@media (max-width: 575px) {
  .partner-section .partner-box .partner-content ul li .text {
    font-size: 16px;
  }
}

.testimonials-section {
  background-image: url(../images/testimonialBg.png);
  background-repeat: repeat;
  padding-top: 80px;
}
@media (max-width: 992px) {
  .testimonials-section {
    padding-top: 40px;
  }
}
.testimonials-section .col-md-8 {
  padding-top: 110px;
}
@media (max-width: 992px) {
  .testimonials-section .col-md-8 {
    padding-top: 0px;
  }
}
.testimonials-section .col-md-8 p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.testimonials-section .section-title-s2 h2 {
  font-weight: 500;
  font-size: 48px;
}
@media (max-width: 767px) {
  .testimonials-section .section-title-s2 h2 {
    font-size: 40px;
  }
}
.testimonials-section .quote {
  border: 1px solid rgba(156, 158, 160, 0.3215686275);
}
.testimonials-section .details h5 {
  color: #0f0e0e;
}
.testimonials-section .details span {
  color: #0f0e0e;
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span, .testimonials-section-s2 .owl-theme .owl-dots .owl-dot.active span {
  background: #0d0d0e;
}

.faq-two {
  position: relative;
  display: block;
  background-color: white;
  padding-top: 30px !important;
  padding-bottom: 50px !important;
}
.faq-two .section-title__title {
  text-align: center;
}
.faq-two .section-title__title h2 {
  color: #58595b !important;
  font-size: 2.8125rem;
  line-height: 0.8;
  font-weight: 500;
}
@media (max-width: 991px) {
  .faq-two .section-title__title h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991px) {
  .faq-two .section-title__title h2 {
    font-size: 2.1875rem;
  }
}
@media (max-width: 518px) {
  .faq-two .section-title__title h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 518px) {
  .faq-two .section-title__title .faq-title {
    line-height: 1.1;
  }
}
.faq-two .col-lg-6 {
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .faq-two .col-lg-6 {
    margin-top: 40px;
  }
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-heading {
  border: none;
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-heading a {
  background-color: transparent;
  border: none;
  color: black;
  padding: 10px 25px;
  font-weight: 600;
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-heading a:before {
  color: #FBDC07;
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-heading .collapsed:before {
  color: black;
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-heading .collapsed {
  box-shadow: none;
  font-size: 16px;
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-body {
  padding: 1px 25px 1px;
  box-shadow: none;
}
.faq-two .col-lg-6 .theme-accordion-s1 .panel-body p {
  color: #2d2e2f;
}
.faq-two .btn-wrapper {
  text-align: right;
  padding-top: 80px;
}
@media (max-width: 991px) {
  .faq-two .btn-wrapper {
    text-align: center;
    padding-top: 40px;
  }
}
.faq-two .btn-wrapper a {
  background-color: #ffe177;
  border: none;
  color: black;
  border-radius: 5px;
}
.faq-two .btn-wrapper a:hover {
  background-color: black;
  color: #fff;
}

.service-inner-banner {
  background: url(../images/services/steam-iron1.jpg) center center/cover no-repeat local !important;
  width: 100%;
  height: 430px;
  position: relative;
  text-align: center;
}
.service-inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.service-inner-banner h2 {
  color: #FBDC07;
}

.service-banner {
  background: url(../images/services/service-banner.jpg) center center/cover no-repeat local !important;
}

.s2 {
  background: url(../images/services/premium-iron2.jpg) center center/cover no-repeat local !important;
}

.s3 {
  background: url(../images/services/washandfold1.png) center center/cover no-repeat local !important;
}

.ss4 {
  background: url(../images/services/washand\ iron.png) center center/cover no-repeat local !important;
}

.s5 {
  background: url(../images/services/dry-clean1.jpg) center center/cover no-repeat local !important;
}

.s6 {
  background: url(../images/services/starching2.jpg) center center/cover no-repeat local !important;
}

.cta-section h2 {
  max-width: 850px !important;
}
.cta-section p {
  max-width: 600px;
}

.contact-info > div {
  height: 40vh;
}

@media (max-width: 1496px) {
  .contact-info > div {
    height: 50vh;
  }
}
.service_text {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.services-one__content h5 {
  color: #363434;
  font-size: 14px;
  line-height: 22px;
}

.footer-contact {
  color: #58595b;
}

.price-page .Franchise-Business-Model-section {
  padding-bottom: 50px !important;
}

.header-sec .call-sec a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
@media (max-width: 991px) {
  .header-sec .call-sec {
    display: none;
  }
}

.price-sec .contact-form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.price-sec .contact-form form {
  width: 100%;
}
.price-sec .contact-form form div {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}
.price-sec .contact-form form .form-control {
  width: calc(100% - 15px) !important;
  max-width: 100% !important;
  display: block;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background-clip: padding-box;
}
.price-sec .contact-form form .form-control:focus {
  border-color: #000;
  outline: none;
}

.price-page .franchise-page-banner .banner-content h4 {
  width: 420px;
}
.price-page .franchise-page-banner .banner-content h3 {
  max-width: 580px;
}/*# sourceMappingURL=header-custom.css.map */