.services-section {
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-box img {
    width: 60px;
    margin-bottom: 15px;
}

.service-box h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.service-box p {
    font-size: 14px;
    color: #555;
}

/* Center Box Styling */
.center-box {
    background: #1177C9;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center-box .read-more {
    color: #fff;
    margin-top: 15px;
    font-weight: bold;
    text-decoration: none;
}

/* Hover Effects */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .services-wrapper {
        flex-direction: column;
    }
}



/* abs section */

/* Wrapper */
.about-wrapper {
    width: 100%;
    padding: 60px 0;
    background: url('img/slider.webp') center/cover no-repeat;
    text-align: center;
    font-family: Arial, sans-serif;
    color: white;
    position: relative;
	background-color: #000
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* MAIN CONTAINER */
.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

/* LEFT IMAGE */
.about-left img {
    width:500px;
    height:452px!important;
    border-radius: 6px;
    object-fit: cover;
}

/* RIGHT SIDE BOXES */
.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* WHITE BOXES */
.about-box {
    background: white;
    color: black;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

/* BOX CONTENT */
.box-content {
    padding: 25px;
    flex: 1;
}

.box-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.box-content p {
    font-size: 14px;
    color: #555;
}

/* YELLOW RIGHT STRIP */
.box-arrow {
    width: 80px;
    background: #ff741f;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-arrow span {
    font-size: 24px;
    font-weight: 700;
}

/* RESPONSIVE */
@media(max-width: 950px) {
    .about-container {
        flex-direction: column;
    }
}


body {
    font-family: Arial, sans-serif;
}

.blog-section {
    padding: 40px 0;
}

.blog-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 25px;
}


@media screen and (max-width: 600px) {
.blog-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display:block;
    gap: 25px;
}
	
}
/* BLOG CARD */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    flex: 1;
}

/* IMAGE */
.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DATE BADGE */
.date-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #0e3fae;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    font-weight: bold;
}

.date-badge span {
    display: block;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0e3fae;
    margin-bottom: 10px;
}

.meta {
    font-size: 14px;
    color: #666;
    display: flex;
    gap: 15px;
}


.testimonials-section {
    background: #0c2a78;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.testimonial-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.swiper {
    width: 90%;
    max-width: 1200px;
}

.testimonial-flex {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* QUOTE ICON */
.quote-icon {
    width: 45px;
    height: 45px;
    background: #0c2a78;
    color: #ffd000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-card h4 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #0c2a78;
}

.stars {
    color: #ff9800;
    font-size: 18px;
    margin-top: 5px;
}

/* ARROWS */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .testimonial-flex {
        flex-direction: column;
    }
}


@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

body {
  background: #F2F2F2;
  padding: 0;
  maring: 0;
}

#price {
  text-align: center;
}

.plan {
  display: inline-block;
  margin: 10px 1%;
  font-family: 'Lato', Arial, sans-serif;
}

.plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position:relative;
}

.entry-title {
  background: #53CFE9;
  height: 140px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.entry-title>h3 {
  background: #20BADA;
  font-size: 20px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #20BADA;
  height: 95px;
  width: 95px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 5px solid #fff;
  line-height: 80px;
  font-size: 28px;
  font-weight: 700;
}

.price span {
  position: absolute;
  font-size: 9px;
  bottom: -10px;
  left: 30px;
  font-weight: 400;
}

.entry-content {
  color: #323232;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;
}

.entry-content li:last-child {
  border: none;
}

.btn {
  padding: 3em 0;
  text-align: center;
}

.btn a {
  background: #323232;
  padding: 10px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none
}
.hot {
    position: absolute;
    top: -7px;
    background: #F80;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 2px 5px;
    font-size: 9px;
    border-radius: 2px;
    right: 10px;
    font-weight: 700;
}
.basic .entry-title {
  background: #75DDD9;
}

.basic .entry-title > h3 {
  background: #44CBC6;
}

.basic .price {
  background: #44CBC6;
}

.standard .entry-title {
  background: #4484c1;
}

.standard .entry-title > h3 {
  background: #3772aa;
}

.standard .price {
  background: #3772aa;
}

.ultimite .entry-title > h3 {
  background: #DD4B5E;
}

.ultimite .entry-title {
  background: #F75C70;
}

.ultimite .price {
  background: #DD4B5E;
}




.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-borders span {
    height: 5px;
    background: #6aaf08;
    width: 40px;
    display: inline-block;
    border-radius: 2px;
}

.section-borders span.black-border {
    background: #333;
    width: 30px;
    margin: 0 6px;

}

.client-testimonial-carousel .owl-dots button {
    height: 5px;
    background: #6aaf08 !important;
    width: 20px;
    display: inline-block;
    margin: 5px;
    transition: .2s;
    border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
    background: #000 !important;
    width: 30px;
}

.client-testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 25px
}

.single-testimonial-item {
    position: relative;
    box-shadow: 0 0 2px #dadfd3;
    margin: 2px;
    padding: 20px;
    font-style: italic;
    padding-left: 85px;
}

.single-testimonial-item:before {
    font-family: "Font Awesome 5 Free";
    content: "\f10e";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    font-size: 20px;
    color: #6aaf08;
    line-height: 30px;
    margin-top: -15px;
}

.single-testimonial-item:after {
    background: #ddd;
    content: "";
    height: 70%;
    left: 60px;
    position: absolute;
    top: 10%;
    width: 1px;
}

.single-testimonial-item h3 {
    font-size: 20px;
    font-style: normal;
    margin-bottom: 0;
}

.single-testimonial-item h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 5px;
}


.full-banner {
  width: 100%;
  padding: 0;
  margin: 0;
}

.full-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-section {
  width: 100%;
  padding: 50px 0;
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.mission-content {
  flex: 1;
}

.mission-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4500;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.mission-btn:hover {
  background: #e03d00;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-image img {
    max-width: 100%;
  }
}


.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 0;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #000;
margin-top: 5rem;
}

.counter-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.counter-box p {
  margin-top: 5px;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 768px) {
  .counter-section {
    flex-direction: column;
    gap: 30px;
  }
}

.service-progress-cards {
  max-width: 900px;
  margin: 20px auto;
  padding: 10px;
}

.service-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.progress-wrapper {
  margin-right: 20px;
}

.progress-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(#cbaa00 0deg, #cbaa00 0deg, #fff 0deg);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-circle span {
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.service-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.service-text p {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .progress-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}


.reason-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.reason-card {
  width: 300px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #d7f3ff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.reason-icon img {
  width: 55px;
  height: auto;
  margin-bottom: 15px;
}

.reason-number {
  color: #00b4d8;
  font-size: 18px;
  font-weight: 600;
}

.reason-card h3 {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.reason-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 15px 0;
}

.reason-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #00b4d8;
  border-radius: 30px;
  color: #00b4d8;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.reason-btn:hover {
  background: #00b4d8;
  color: #fff;
}

/* Responsive */
@media(max-width: 900px) {
  .reason-section {
    flex-direction: column;
    align-items: center;
  }
}


/* header here */

/* Header Base */
.header {
  width: 100%;
  padding: 12px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Header Layout */
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width:130px;
}

/* CENTER MENU — Desktop Only */
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

.main-menu ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  font-size: 30px;
  cursor: pointer;
  display: none;
}

/* MOBILE MENU SLIDE */
.mobile-menu {
  width: 260px;
  height: 100%;
  background: #fff;
  position: fixed;
  left: -260px;
  top: 0;
  z-index: 9999;
  padding: 30px;
  transition: 0.4s;
  box-shadow: 4px 0px 15px rgba(0,0,0,0.15);
}

.mobile-menu ul {
  margin-top: 50px;
  padding: 0;
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

/* Close Button */
.close-menu {
  font-size: 35px;
  cursor: pointer;
  float: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  /* Hide center menu in mobile */
  .main-menu {
    display: none;
  }

  /* Show toggle */
  .mobile-toggle {
    display: block;
  }
}


.questions-section {
  width: 100%;
  background: #ff741e;
  padding: 50px 20px;
}

.questions-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.questions-text h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: left;
}

.questions-text p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.questions-btn {
  display: inline-block;
  background: #ffffff;
  padding: 12px 25px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.questions-btn:hover {
  background: #d5d5d5;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .questions-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .questions-text h2 {
    text-align: center;
  }
}


.footer {
  background: #000; /* Blue background */
  padding: 50px 20px;
  color: #ffffff;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 240px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-about {
  color: #e5e5e5;
  line-height: 1.6;
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #f1f1f1;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #ffffff;
  font-weight: 600;
}

.social-icons a {
  font-size: 22px;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Responsive */
@media(max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
  }
}


.cleaning-services-section {
  position: relative;
  padding: 80px 20px;
}

.services-bg {
  background: url('/mnt/data/d211a7a1-134f-444e-9ab2-1252c4b0608b.png') no-repeat center/cover;
  position: absolute;
  inset: 0;
  opacity: 0.3;
  z-index: -1;
}

.services-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.service-card {
    background: #fff;
    padding: 45px 25px 30px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    flex: 1;
    min-height: 220px;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    background-color: #000;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.service-card p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
  }
}


/* HEADER */
.header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  height: 145px;
}


@media screen and (max-width: 600px) {
.logo img {
  height: 96px;
}    
    
}

.main-menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.main-menu a {
  text-decoration: none;
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* SUBMENU FIX */
.submenu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  width: 200px;
  list-style: none;
  display: none;            /* hide by default */
  flex-direction: column;   /* vertical layout */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 100;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #222;
  white-space: nowrap;
}

/* SHOW SUBMENU */
.dropdown:hover .submenu {
  display: flex;
}

/* MOBILE */
.mobile-toggle {
  position: absolute;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #222;
  padding: 20px;
  transition: .3s;
}

.mobile-menu ul {
  list-style: none;
  padding-top: 50px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  font-size: 18px;
}

.close-menu {
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media(max-width:900px){
  .main-menu { display:none; }
  .mobile-toggle { display:block; }
}


/* Parent li */
.dropdown {
  position: relative;
}

/* HIDDEN by default */
.submenu {
  position: absolute;
  top: 35px;
  left: 0;
  width: 220px;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  list-style: none;

  display: none !important;      /* MOST IMPORTANT LINE */
  flex-direction: column;
  z-index: 999;
}

/* Submenu items */
.submenu li a {
  padding: 12px 18px;
  display: block;
  white-space: nowrap;
  color: #000;
}

/* SHOW only when parent hovered */
.dropdown:hover > .submenu {
  display: block !important;     /* SHOW ONLY ON HOVER */
}



/* For services page .... */

.container {
  max-width: 1320px;
}
section {
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-header h3 {
  font-size: 36px;
  color: #413e66;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

#services {
  padding: 60px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#services .box:hover {
  transform: scale(1.1);
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#services .icon .service-icon {
  font-size: 36px;
  line-height: 1;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #c59c35;
}
#services .box:hover .title a:hover {
  text-decoration: none;
}
#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}


.faq-container {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  font-family: sans-serif;
}

.faq-item {
  border-bottom: 1px solid #c9b59a;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  color: #694c31;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #826644;
  font-size: 14px;
  padding-right: 30px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 8px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


.slider-container {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  opacity: 0.7;
  z-index: 99;
  user-select: none;
}

.arrow:hover {
  opacity: 1;
}

.left { left: 20px; }
.right { right: 20px; }


.why-choose {
  width: 100%;
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.wc-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.wc-left img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 5px;
}

.wc-right {
  flex: 1;
}

.wc-right h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.wc-right p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 450px;
}

.wc-right ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.wc-right ul li {
  margin-bottom: 10px;
  color: #555;
  font-size: 16px;
}

.wc-right ul li::before {
  content: "✔";
  color: #ff4d2d;
  font-weight: bold;
  margin-right: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4d2d;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  background: #e33b1e;
}

/* Responsive */
@media (max-width: 768px) {
  .wc-container {
    flex-direction: column;
    text-align: center;
  }

  .wc-left img {
    height: 300px;
  }

  .wc-right ul {
    text-align: left;
    margin: auto;
    max-width: 300px;
  }
}


/* ---------- TOP BAR STYLING ---------- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff741e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 8px 40px;
  height: 55px;
  z-index: 100;
  position: relative;
}

/* ---------- OFFER SLIDER (LEFT SIDE) ---------- */
.offer-slider {
  position: relative;
  width: 40%;
  height: 20px;
  overflow: hidden;
}

.offer-text {
  display: flex;
  flex-direction: column;
  position: absolute;
  animation: slideOffers 6s linear infinite;
}

.offer-text div {
  height: 20px;
}

@keyframes slideOffers {
  0% { transform: translateY(0); }
  16.666% { transform: translateY(-20px); }
  33.333% { transform: translateY(-40px); }
  50% { transform: translateY(-60px); }
  66.666% { transform: translateY(-80px); }
  83.333% { transform: translateY(-100px); }
  100% { transform: translateY(0); }
}

/* ---------- CONTACT INFO (RIGHT SIDE) ---------- */
.contact-info {
  display: flex;
  align-items: center;
  gap:33px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: all;
}

.contact-item i {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 6px;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; /* Yellow icon color */
  pointer-events: none;
}

/* ---------- DIVIDER BETWEEN EMAIL & PHONE ---------- */
.contact-item:first-child::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.5);
}

/* ---------- HOVER EFFECT ---------- */
.contact-item:hover {
  color: #000;
  text-decoration: underline;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    height: auto;
    text-align: center;
  }

  .offer-slider {
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .contact-item:first-child::after {
    display: none;
  }
}

.text {
 position: relative;
 top: 38px;
 border: 1px solid #000;
 padding: 10px;
 color: #1238aa;
}

.services-wrapper {
    display: flex;
    gap: 30px;
}

/* MAIN BOX */
.service-box {
    position: relative;
    width: 100%;
    padding: 40px 30px;
    background: #fff;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    z-index: 0;
}

/* BLUE OVERLAY */
.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
}

/* ICON (ALWAYS VISIBLE IN NORMAL STATE) */
.service-box img {
    max-width: 70px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;  /* 👈 this is IMPORTANT */
    transition: 0.4s ease;
}

/* PARAGRAPH */
.service-box p {
    position: relative;
    z-index: 3;
    transition: 0.4s ease;
}

/* HIDE icon + paragraph on hover */
.service-box:hover img,
.service-box:hover p {
    color:#fff;
}

/* TITLE + READ MORE default hidden */
.service-box h3,
.service-box .read-more {
    opacity: 1; /* 👈 NORMAL ME VISIBLE RAKHNA HO TO 1 */
    position: relative;
    z-index: 4;  /* highest layer to stay above blue */
    transition: 0.4s ease;
    color: #000;
}

/* Only title + read more visible on hover */
.service-box:hover h3,
.service-box:hover .read-more {
    color: #fff;
}

/* SHOW BLUE OVERLAY IN HOVER */
.service-box:hover::before {
    opacity: 1;
}

/* READ MORE STYLE */
.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}


.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* button right, logo left */
  padding: 15px 40px;
}

/* Center Menu */
.main-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-menu ul li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

/* Right side button */
.header-call-btn {
  border: 2px solid #000;
  padding: 8px 20px;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.header-call-btn:hover {
  background: #000;
  color: #fff;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  font-size: 30px;
  margin-left: 15px;
  cursor: pointer;
  display: none;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #1d1d1d;
  color: white;
  padding: 20px;
  transform: translateX(-100%);
  transition: 0.3s ease;
  z-index: 9999;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 18px;
  display: block;
  padding: 12px 0;
}

.mobile-submenu {
  display: none;
  padding-left: 15px;
}

/* Mobile call button */
.mobile-call-btn {
  background: #0043cc;
  padding: 12px;
  border-radius: 5px;
  display: block;
  margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .main-menu {
    display: none;
  }

  .header-call-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}


.service-form {
  max-width: 800px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group, .form-full {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  font-size: 15px;
  background: #fff;          /* BG fixed */
  color: #333;               /* Text color */
}

input:focus, select:focus, textarea:focus {
  border-color: #007bff;
  outline: none;
}

textarea {
  resize: none;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 22px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.submit-btn:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

h2.about-titlee {
    text-align: center;
    padding-top: 30px;
}


.cleaning-section {
  padding: 50px 0;
  font-family: Arial, sans-serif;
}

.cleaning-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT CONTENT */
.cleaning-content {
  flex: 1;
}

.cleaning-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.cleaning-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

/* BUTTON */
.quote-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #0056c7;
}

/* RIGHT IMAGE */
.cleaning-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cleaning-container {
    flex-direction: column;
    text-align: center;
  }

  .cleaning-image img {
    height: 260px;
  }

  .cleaning-content p {
    text-align: left;
  }
}


.cleaning-form-section {
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.cleaning-form-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT FORM BOX */
.left-form {
  width: 280px;
  background: #f4f7ef;
  padding: 20px;
  border-radius: 8px;
}

.left-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.left-form form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
  background: #fff;
}

/* RIGHT INFO BOX */
.right-box {
  flex: 1;
  padding: 40px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, #1fa2ff, #a6ffcb);
}

.right-box h2 {
  font-size: 28px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 30px;
  font-weight: 600;
}

/* PHONE BUTTON */
.call-btn {
  background: #fff;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #0044cc;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.call-icon {
  background: #0184ff;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cleaning-form-container {
    flex-direction: column;
  }

  .left-form {
    width: 100%;
  }

  .right-box {
    text-align: center;
  }

  .call-btn {
    justify-content: center;
  }
}


.task-list-section {
  background: #16a3f5;
  padding: 60px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.task-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.task-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.task-container p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
}

/* BOXES WRAPPER */
.task-box-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SINGLE BOX */
.task-box {
  background: #ffffff;
  border-radius: 25px;
  padding: 25px 30px;
  width: 450px;
  color: #333;
}

.task-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.task-box ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
}

/* ✔ ICON */
.task-box ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #1ea7ff;
}

@media (max-width: 768px) {
  .task-box {
    width: 100%;
  }
}


/* HERO SECTION */
.hero-banner {
  background: url('/mnt/data/ec90c4eb-3c08-4b5d-82d2-1b7b1c2040ac.png') center/cover no-repeat;
  position: relative;
  padding: 50px 20px;
  text-align: center;
}

/* BLUE OVERLAY */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 200, 0.75);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

/* HEADING */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* WORD CIRCLE EFFECT */
.circle-word {
  position: relative;
  padding: 3px 8px;
}

.circle-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 25px;
  border: 3px solid #52c0ff;
  border-radius: 50%;
}

/* BUTTON ROW */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* YELLOW BUTTON */
.btn-yellow {
  background: #ffb800;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-yellow .arrow {
  font-size: 20px;
}

/* WHITE BUTTON */
.btn-white {
  background: #fff;
  color: #062984;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-white .arrow-blue {
  font-size: 20px;
  color: #062984;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}


.mission-image img {
    height: 400px;
    width: 500px;
}

.full-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.full-banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.1);
}

/* Blue overlay */
.banner-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 45, 115, 0.55);
}

/* Text content */
.banner-content {
  position: absolute;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* Breadcrumb style */
.breadcrumb {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.9;
}


/* Main menu basic */
.main-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  text-decoration: none;
  padding: 10px 5px;
  display: block;
}

/* ===========================
   DESKTOP DROPDOWN FIX
   =========================== */
.dropdown .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 10px 0;
  border-radius: 4px;
  display: none;
  z-index: 999;
}

.dropdown .submenu li a {
  padding: 10px 15px;
  white-space: nowrap;
  color: #000;
}

.dropdown .submenu li a:hover {
  background: #f5f5f5;
}

/* ⭐ PERFECT HOVER FIX */
.dropdown:hover .submenu,
.dropdown .submenu:hover {
  display: block;
}


a {
    text-decoration: auto;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
    text-decoration: none!important;
}

.footer-col ul a {
    list-style: none;
    padding: 0;
    text-decoration: auto!important;
    list-style: none;
}


/*phone call css here */


.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	left: 2rem;
    bottom: 3rem;
	background: #ec8b00;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.num{
		position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
	}
	
	
	
	/*services code ....here*/
	
	
	