.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Section 1 CSS - Hero Section
   ======================================== */
.service-page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.service-page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.service-page-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-page-hero p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Section 2 CSS - Why Require Cleaning
   ======================================== */
.service-intro-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.service-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-intro-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.service-intro-section p {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========================================
   Section 3 CSS - Our Method
   ======================================== */
.method-section {
    padding: 40px 0;
    /* background-color: #f8f9fa; */
}

.method-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.method-section h2 {
    font-size: 2.5rem;
    color:#000000;
    margin-bottom: 30px;
    font-weight: 700;
}

.method-section > .container > p {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
}

.method-section h3 {
    font-size: 1.75rem;
    color: #000000;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.method-section p {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========================================
   Section 4 CSS - Process Steps
   ======================================== */
.process-steps-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.process-steps-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-steps-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.process-steps-section ul {
    list-style: none;
    padding: 15px 30px; /* Added padding for the blue pill shape */
    margin: 0 auto;
    background-color: #1D75BC; 
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;flex-wrap: wrap;
    /* max-width: 1000px; */
}

.process-steps-section li {
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding: 20px 30px; */
    flex: 1;
    justify-content: center;
}

.process-steps-section li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #7EBA2F;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-steps-section li h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}

/* ========================================
   Responsive Design for Steps Section
   ======================================== */
@media (max-width: 768px) {
    .process-steps-section ul {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }
    
    .process-steps-section li {
        width: 100%;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .process-steps-section li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .process-steps-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .process-steps-section li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .process-steps-section li span {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .process-steps-section li h3 {
        font-size: 1rem;
    }
}
/* ========================================
   Section  - Recent Projects & Stats
   ======================================== */

.projects-section {
  /* padding: 60px 0; */
  background: #EFFFDB;
}

.projects-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 36px;
  padding-top: 40px ;
}

.projects-highlight {
  color: #000;
}

.projects-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: #EFFFDB;
}

.projects-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 8px;
  padding: 40px 30px;
  align-content: center;
}

/* ---------- Left: Stats ---------- */
/* .projects-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  padding: 40px 30px;
  align-content: center;
} */

.projects-content ul li {
  display: flex;
  flex-direction: column;
}

/* .stat-item {
  display: flex;
  flex-direction: column;
} */

.projects-content ul li h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1D75BC;
  line-height: 1.1;
  margin-bottom: 15px;
}

.projects-content ul li p {
  font-weight: 600;
  color: #000;
  font-size: 17px;
  /* display: block; */
}

/* ---------- Right: Before/After Images ---------- */
.projects-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  /* height: 100%; */
  min-height: 300px;
  max-height: 450px;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.project-badge {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #7EBA2F;
    color: #000000;
    font-size: 16px;
    /* font-weight: 700; */
    color: white;
    padding: 6px 18px;
    border-radius: 0px 20px 20px 0px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .projects-content {
    grid-template-columns: 1fr;
  }
  .projects-images {
    grid-template-columns: 1fr 1fr;
  }
  .project-img-wrap {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .projects-title {
    font-size: 24px;
  }
  .projects-stats {
    grid-template-columns: 1fr 1fr;
    padding: 30px 20px;
    gap: 24px 16px;
  }
  .stat-number {
    font-size: 26px;
  }
  .projects-images {
    grid-template-columns: 1fr;
  }
  .project-img-wrap {
    min-height: 260px;
  }
} 
/* ========================================
   Section 6 CSS - Why Choose Us
   ======================================== */
.why-choose-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color:#000000;
    margin-bottom: 30px;
    font-weight: 700;
}

.why-choose-section p {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
}
.why-choose-section p a {
    color: #7EBA2F;
}

/* ========================================
   Section 7 CSS - Other Services
   ======================================== */
.other-services-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.os-title {
  font-size: 30px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 30px;
}

.os-highlight {
  color: #7EBA2F;
}

.os-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.os-viewport {
  overflow: hidden;
  width: 100%;
}

.os-track {
  display: flex;
  transition: transform 0.4s ease-out;
  margin: 0 -10px;
}

/* ---------- Card ---------- */
.os-card {
  flex: 0 0 calc(25% - 20px);
  margin: 0 10px;
}

.os-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 32px 20px;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

/* .os-card-link:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #7EBA2F;
} */

.os-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #7EBA2F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #7EBA2F;
}

.os-icon-circle svg {
  width: 30px;
  height: 30px;
}

.os-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

/* ---------- Nav Buttons ---------- */
.os-nav-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.os-nav-btn svg {
  width: 16px;
  height: 16px;
}

.os-nav-prev {
  background: #7EBA2F;
  color: #ffffff;
}

.os-nav-next {
  background: #7EBA2F;
  color: #ffffff;
}

.os-nav-btn:hover {
  transform: scale(1.08);
}

.os-nav-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .os-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .os-card {
    flex: 0 0 calc(100% - 20px);
  }
  .os-title {
    font-size: 24px;
  }
  .os-nav-btn {
    width: 34px;
    height: 34px;
  }
}
/* ========================================
   Section 8 CSS - FAQ Section
   ======================================== */
.faq-section {
    padding: 40px 0;
    background-color: #EFFFDB;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: start;
}

.faq-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* max-width: 900px; */
    margin-left: auto;
    margin-right: auto;
}

.faq-section li {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section button {
    width: 100%;
    padding: 25px 30px;
    background: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    transition: background-color 0.3s ease;
}

.faq-section button:hover {
    background-color: #f8f9fa;
}

.faq-section .faq-number {
    font-weight: 700;
    color: #7EBA2F;
    font-size: 1.25rem;
}

.faq-section .faq-question {
    flex: 1;
}

.faq-section .faq-icon {
    font-size: 1.5rem;
    color: #7EBA2F;
    font-weight: 300;
}

.faq-section .faq-answer {
    display: none;
    padding: 0 30px 25px 60px;
}

.faq-section .faq-answer p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

.faq-section li.active .faq-answer {
    display: block;
}

.faq-section li.active button {
    background-color: #f8f9fa;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .service-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-page-hero p {
        font-size: 1.25rem;
    }
    
    .service-intro-section h2,
    .method-section h2,
    .process-steps-section h2,
    .recent-projects-section h2,
    .why-choose-section h2,
    .other-services-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .process-steps-section ul,
    .recent-projects-section ul,
    .other-services-section ul {
        grid-template-columns: 1fr;
    }
    
    .recent-projects-section li h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-page-hero {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .service-page-hero h1 {
        font-size: 2rem;
    }
    
    .service-page-hero p {
        font-size: 1rem;
    }
    
    .service-intro-section,
    .method-section,
    .process-steps-section,
    .recent-projects-section,
    .why-choose-section,
    .other-services-section,
    .faq-section {
        padding: 50px 0;
    }
}