    /* <<<<<<<<<<<<<< Crousel >>>>>>>>>>>>>> */
       
     #c2 {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f5f5f5;
        }
        
        .carousel-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        
        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            height: 600px; /* Adjust based on your needs */
        }
        
        .carousel img {
            width: 100%;
            height: 120%;
           
            min-width: 100%; /* This replaces flex-shrink and ensures proper sizing */
        }
        
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            border: none;
            font-size: 20px;
            color: #333;
        }
        
        .arrow:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .arrow-left {
            left: 15px;
        }
        
        .arrow-right {
            right: 15px;
        }
        
        .dots-container {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .dot.active {
            background-color: rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 768px) {
    .carousel img {
        width: 100%;
        height: 320px;
    }
    .arrow {
        padding: 6px;
    }

      .carousel {
          
            height: 300px;
        }
}
        /* <<<<<<<<<<<<<<<< Strip >>>>>>>>>>>>> */
         .ice-strip {
      background-color: #DD0000;
      color: #ffffff;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 18px 12px;            /* vertical & horizontal padding */
      box-sizing: border-box;
      text-align: center;
      border-radius: 6px;            /* hata bhi sakte hain agar chahain full-bleed */
     
      box-shadow: 0 4px 12px rgba(20,52,92,0.12);
      height:100px;
    }

    .ice-strip__text {
      font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 20px;               /* desktop size */
      font-weight: 600;
      letter-spacing: 0.6px;
      line-height: 1;
      text-transform: uppercase;
    }

    /* Responsive tweak */
    @media (max-width: 480px) {
      .ice-strip {
        padding: 14px 10px;
      }
      .ice-strip__text {
        font-size: 16px;
      }
    }

    /* <<<<<<<<<<<<<<<<<<<<<<<<<<< Section 1 >>>>>>>>>>>>>>>>>>>>>> */

  #plantC3 {
        font-family: sans-serif;
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .plant-sec-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 60px 30px;
        gap: 60px;
    }

    .plant-img-box {
        flex: 1 1 480px;
        max-width: 600px;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .plant-img-box::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 40px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        background: #E0E0E0;
        border: 4px solid #DD0000;
        z-index: -1;
        box-sizing: border-box;
    }

    .plant-img-box img {
        display: block;
        max-width: 100%;
        height: auto;
        border: 2px solid white;
    }

    .plant-text-box {
        flex: 1 1 480px;
        max-width: 600px;
    }

    .plant-text-box h2 {
        font-size: 34px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #222;
    }

    .plant-title-line {
        width: 55px;
        height: 3px;
        background-color: #DE0003;
        margin-bottom: 18px;
        display: block;
      
    }

    .plant-text-box p {
   margin: 0; /* Removed default paragraph margins */
    font-size: 15px;
    color: #555;
    line-height: 1.5; /* Tightened line spacing */
    }

    .plant-feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 30px;
    }

    .plant-feature-item {
        display: flex;
    align-items: flex-start; /* Changed from 'center' */
    text-align: left;
    margin-bottom: 15px; /* Added this */
    }

    .plant-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background-color: #e0e0e0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 22px;
        color: #DE0003;
    }

    .plant-feature-item h4 {
        margin: 0 0 5px 0; /* Reduced bottom margin */
    font-size: 18px;
    font-weight: bold;
    color: #222;
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .plant-sec-wrapper {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .plant-img-box {
            position: relative;
            display: inline-block;
            margin: 0 auto;
        }

        .plant-img-box::before {
            top: 15px;
            left: 15px;
            width: 95%;
            height: 77%;
            border: 5px solid #DD0000;
            background: transparent;
        }

        .plant-img-box img {
            display: block;
            width: 93%;
            height: 350px;
        }

        .plant-feature-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .plant-feature-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .plant-icon {
            margin-right: 0;
            margin-bottom: 8px;
        }

        .plant-title-line {
            align-items: center;
            justify-content: center;
            display: flex;
            margin-right: 200px;
        }
    }
    /* <<<<<<<<<<<<<<<<< Section 4 >>>>>>>>>>>>>>>>>>> */

   #c4-renamed {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.layout-flex-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    gap: 60px;
}

.layout-text-area {
    flex: 1 1 480px;
    max-width: 500px;
    order: 1;
}

.layout-image-box {
    flex: 1 1 480px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    overflow: visible;
    order: 2;
}

.layout-image-box::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #E0E0E0;
    border: 4px solid #DD0000;
    z-index: -1;
    box-sizing: border-box;
}

.layout-image-box img {
    display: block;
    width: 100%;
    height: 650px;
    border: 2px solid white;
}

.layout-text-area h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.layout-underline {
    width: 55px;
    height: 3px;
    background-color: #DE0003;
    margin-bottom: 18px;
}

.layout-text-area p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.layout-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 22px;
    color: #DE0003;
}

.layout-feature h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.layout-feature p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #555;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .layout-flex-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    /* Center underline in mobile */
    .layout-underline {
        display: block;
        margin: 0 auto 18px auto;
    }

    /* Reset order for stacking */
    .layout-text-area, 
    .layout-image-box {
        order: initial;
    }

    /* Adjust heading size */
    .layout-text-area h2 {
        font-size: 26px;
    }

    /* Image border adjustments for mobile */
    .layout-image-box {
        position: relative;
        display: inline-block;
        margin: 0 auto;
    }
    .layout-image-box::before {
        top: 15px;
        left: 15px;
        width: 95%;
        height: 85%;
        border: 5px solid #DD0000;
        background: transparent;
    }
    .layout-image-box img {
        display: block;
        width: 92%;
        height: 390px;
    }

    /* Stack features */
    .layout-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .feature-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .layout-feature h4 {
        font-size: 16px;
    }

    .layout-feature p {
        font-size: 14px;
    }
}


/* <<<<<<<<<<<<<<<<<<<<<<< Section 3 >>>>>>>>>>>>>>>>>>> */
 #treatPlantC3 {
        font-family: sans-serif;
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .treat-sec-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 60px 30px;
        gap: 60px;
    }

    .treat-img-holder {
        flex: 1 1 480px;
        max-width: 600px;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .treat-img-holder::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 40px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        background: #E0E0E0;
        border: 4px solid #DD0000;
        z-index: -1;
        box-sizing: border-box;
    }

    .treat-img-holder img {
        display: block;
        max-width: 100%;
        height: auto;
        border: 2px solid white;
    }

    .treat-text-holder {
        flex: 1 1 480px;
        max-width: 600px;
    }

    .treat-text-holder h2 {
        font-size: 34px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #222;
    }

    .treat-title-bar {
        width: 55px;
        height: 3px;
        background-color: #DE0003;
        margin-bottom: 18px;
        display: block;
      
    }

    .treat-text-holder p {
         margin: 0; /* Removed default paragraph margins */
    font-size: 15px;
    color: #555;
    line-height: 1.5; /* Tightened line spacing */
    }

    .treat-feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 30px;
    }

    .treat-feature-box {
          display: flex;
    align-items: flex-start; /* Changed from 'center' */
    text-align: left;
    margin-bottom: 15px; /* Added this */
    }

    .treat-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background-color: #e0e0e0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 22px;
        color: #DE0003;
    }

    .treat-feature-box h4 {
        margin: 0 0 5px 0; /* Reduced bottom margin */
    font-size: 18px;
    font-weight: bold;
    color: #222;
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .treat-sec-wrap {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .treat-img-holder {
            position: relative;
            display: inline-block;
            margin: 0 auto;
        }

        .treat-img-holder::before {
            top: 15px;
            left: 15px;
            width: 95%;
            height: 80%;
            border: 5px solid #DD0000;
            background: transparent;
        }

        .treat-img-holder img {
            display: block;
            width: 92%;
            height: 360px;
        }

        .treat-feature-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .treat-feature-box {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .treat-icon {
            margin-right: 0;
            margin-bottom: 8px;
        }

        .treat-title-bar {
            align-items: center;
            justify-content: center;
            display: flex;
            margin-right: 200px;
        }
    }
    /* <<<<<<<<<<<<<<<<<<<<<< Section 4 >>>>>>>>>>>>>>>>>>>> */
    #hr-unique-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.hr-unique-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    gap: 60px;
}

.hr-unique-text {
    flex: 1 1 480px;
    max-width: 500px;
    order: 1;
}

.hr-unique-image-box {
    flex: 1 1 480px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    overflow: visible;
    order: 2;
}

.hr-unique-image-box::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #E0E0E0;
    border: 4px solid #DD0000;
    z-index: -1;
    box-sizing: border-box;
}

.hr-unique-image-box img {
    display: block;
    width: 100%;
    height: 650px;
    border: 2px solid white;
}

.hr-unique-text h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.hr-unique-underline {
    width: 55px;
    height: 3px;
    background-color: #DE0003;
    margin-bottom: 18px;
}

.hr-unique-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hr-unique-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.hr-unique-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 22px;
    color: #DE0003;
}

.hr-unique-feature h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.hr-unique-feature p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #555;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .hr-unique-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .hr-unique-underline {
        display: block;
        margin: 0 auto 18px auto;
    }

    .hr-unique-text, 
    .hr-unique-image-box {
        order: initial;
    }

    .hr-unique-text h2 {
        font-size: 26px;
    }

    .hr-unique-image-box {
        position: relative;
        display: inline-block;
        margin: 0 auto;
    }
    .hr-unique-image-box::before {
        top: 15px;
        left: 15px;
        width: 95%;
        height: 88%;
        border: 5px solid #DD0000;
        background: transparent;
    }
    .hr-unique-image-box img {
        display: block;
        width: 93%;
        height: 400px;
    }

    .hr-unique-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hr-unique-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .hr-unique-feature h4 {
        font-size: 16px;
    }

    .hr-unique-feature p {
        font-size: 14px;
    }
}
/* <<<<<<<<<<<<<<<<<<<<<<< Section 5 >>>>>>>>>>>>>>>>>>>>>>> */
#waterSystemA1 {
        font-family: sans-serif;
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .water-section-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 60px 30px;
        gap: 60px;
    }

    .water-image-box {
        flex: 1 1 480px;
        max-width: 600px;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .water-image-box::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 40px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        background: #E0E0E0;
        border: 4px solid #DD0000;
        z-index: -1;
        box-sizing: border-box;
    }

    .water-image-box img {
        display: block;
        max-width: 100%;
        height: 500px;
        border: 2px solid white;
    }

    .water-text-box {
        flex: 1 1 480px;
        max-width: 600px;
    }

    .water-text-box h2 {
        font-size: 34px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #222;
    }

    .water-title-line {
        width: 55px;
        height: 3px;
        background-color: #DE0003;
        margin-bottom: 18px;
        display: block;
      
    }

    .water-text-box p {
        font-size: 17px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .water-feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .water-feature-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 15px;
    }

    .water-icon-box {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background-color: #e0e0e0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 22px;
        color: #DE0003;
    }

    .water-feature-item h4 {
        margin: 0 0 5px 0;
        font-size: 18px;
        font-weight: bold;
        color: #222;
    }

    .water-feature-item p {
        margin: 0;
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .water-section-wrap {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .water-image-box {
            position: relative;
            display: inline-block;
            margin: 0 auto;
        }

        .water-image-box::before {
            top: 15px;
            left: 15px;
            width: 95%;
            height: 83%;
            border: 5px solid #DD0000;
            background: transparent;
        }

        .water-image-box img {
            display: block;
            width: 92%;
            height: 380px;
        }

        .water-feature-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .water-feature-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .water-icon-box {
            margin-right: 0;
            margin-bottom: 8px;
        }

        .water-title-line {
            align-items: center;
            justify-content: center;
            display: flex;
            margin-right: 200px;
        }
    }
    /* <<<<<<<<<<<<<<<<<<<<<<< Section 6 >>>>>>>>>>>>>>>>>>>>>> */
    #c4x {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.structure-sec-x {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    gap: 60px;
}

.structure-text-x {
    flex: 1 1 480px;
    max-width: 500px;
    order: 1;
}

.structure-image-x {
    flex: 1 1 480px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    overflow: visible;
    order: 2;
}

.structure-image-x::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #E0E0E0;
    border: 4px solid #DD0000;
    z-index: -1;
    box-sizing: border-box;
}

.structure-image-x img {
    display: block;
    width: 100%;
    height: 650px;
    border: 2px solid white;
}

.structure-text-x h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.structure-line-x {
    width: 55px;
    height: 3px;
    background-color: #DE0003;
    margin-bottom: 18px;
}

.structure-text-x p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.structure-benefit-x {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}

.benefit-icon-x {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 22px;
    color: #DE0003;
}

.structure-benefit-x h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.structure-benefit-x p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #555;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
    .structure-sec-x {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .structure-line-x {
        display: block;
      
    }

    .structure-text-x, 
    .structure-image-x {
        order: initial;
    }

    .structure-text-x h2 {
        font-size: 26px;
    }

    .structure-image-x {
        position: relative;
        display: inline-block;
        margin: 0 auto;
    }
    .structure-image-x::before {
        top: 15px;
        left: 15px;
        width: 95%;
        height: 87%;
        border: 5px solid #DD0000;
        background: transparent;
    }
    .structure-image-x img {
        display: block;
        width: 92%;
        height: 400px;
    }

    .structure-benefit-x {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .benefit-icon-x {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .structure-benefit-x h4 {
        font-size: 16px;
    }

    .structure-benefit-x p {
        font-size: 14px;
    }
}
/* <<<<<<<<<<<<<<<<<<<<<<<< Section 7 >>>>>>>>>>>>>>>>>>>>>>>> */

 .water-treatment-system {
        font-family: sans-serif;
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .water-treatment-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 60px 30px;
        gap: 60px;
    }

    .treatment-image-container {
        flex: 1 1 480px;
        max-width: 600px;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .treatment-image-container::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 40px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        background: #E0E0E0;
        border: 4px solid #DD0000;
        z-index: -1;
        box-sizing: border-box;
    }

    .treatment-image-container img {
        display: block;
        max-width: 100%;
        height: auto;
        border: 2px solid white;
    }

    .treatment-content {
        flex: 1 1 480px;
        max-width: 600px;
    }

    .treatment-content h2 {
        font-size: 34px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #222;
    }

    .treatment-divider {
        width: 55px;
        height: 3px;
        background-color: #DE0003;
        margin-bottom: 18px;
        display: block;
      
    }

    .treatment-content p {
        font-size: 17px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .treatment-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .treatment-feature {
        display: flex;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 15px;
    }

    .feature-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background-color: #e0e0e0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 22px;
        color: #DE0003;
    }

    .treatment-feature h4 {
        margin: 0 0 5px 0;
        font-size: 18px;
        font-weight: bold;
        color: #222;
    }

    .treatment-feature p {
        margin: 0;
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .water-treatment-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .treatment-image-container {
            position: relative;
            display: inline-block;
            margin: 0 auto;
        }

        .treatment-image-container::before {
            top: 15px;
            left: 15px;
            width: 95%;
            height: 80%;
            border: 5px solid #DD0000;
            background: transparent;
        }

        .treatment-image-container img {
            display: block;
            width: 92%;
            height: 365px;
        }

        .treatment-features {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .treatment-feature {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-icon {
            margin-right: 0;
            margin-bottom: 8px;
        }

        .treatment-divider {
            align-items: center;
            justify-content: center;
            display: flex;
            margin-right: 200px;
        }

        
    }
    /* ===== MOBILE VIEW ORDER FIX FOR ALL 7 SECTIONS ===== */
@media (max-width: 768px) {

    /* Center divider line under heading on mobile */
    .plant-title-line,
    .layout-underline,
    .treat-title-bar,
    .hr-unique-underline,
    .water-title-line,
    .structure-line-x,
    .treatment-divider {
        display: block;
        margin: 0 auto 18px auto !important;
    }

    /* Section 1: plant */
    .plant-text-box h2 { order: 1; }
    .plant-text-box p { order: 2; }
    .plant-img-box { order: 3; }
    .plant-feature-grid { order: 4; }

    /* Section 2: layout */
    .layout-text-area h2 { order: 1; }
    .layout-text-area p { order: 2; }
    .layout-image-box { order: 3; }
    .layout-feature { order: 4; }

    /* Section 3: treat */
    .treat-text-holder h2 { order: 1; }
    .treat-text-holder p { order: 2; }
    .treat-img-holder { order: 3; }
    .treat-feature-list { order: 4; }

    /* Section 4: hr-unique */
    .hr-unique-text h2 { order: 1; }
    .hr-unique-text p { order: 2; }
    .hr-unique-image-box { order: 3; }
    .hr-unique-feature { order: 4; }

    /* Section 5: water */
    .water-text-box h2 { order: 1; }
    .water-text-box p { order: 2; }
    .water-image-box { order: 3; }
    .water-feature-list { order: 4; }

    /* Section 6: structure-x */
    .structure-text-x h2 { order: 1; }
    .structure-text-x p { order: 2; }
    .structure-image-x { order: 3; }
    .structure-benefit-x { order: 4; }

    /* Section 7: treatment */
    .treatment-content h2 { order: 1; }
    .treatment-content p { order: 2; }
    .treatment-image-container { order: 3; }
    .treatment-features { order: 4; }

    /* Remove extra vertical gaps on mobile */
    .plant-sec-wrapper,
    .layout-flex-section,
    .treat-sec-wrap,
    .hr-unique-section,
    .water-section-wrap,
    .structure-sec-x,
    .water-treatment-container {
        gap: 30px !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

    /* <<<<<<<<<<<<<<<<<< Construction >>>>>>>>>>>>>>>>>>> */

     .section-title {
        background-color: #DC0000 ;
        color: white;
        text-align: center;
        padding: 15px 0;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .specialities {
        display: flex;
        flex-wrap: wrap;
    }

    .speciality {
        position: relative;
        flex: 1;
        min-width: 250px;
        height: 450px;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Default overlay with number */
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: background 0.3s ease;
    }

    /* Large faded number */
    .overlay::before {
        content: attr(data-number);
        position: absolute;
        font-size: 150px;
        color: rgba(255, 255, 255, 0.2);
        font-weight: bold;
        z-index: 1;
    }

    /* Text */
    .speciality h3 {
        position: relative;
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        z-index: 2;
    }

    /* Hover effect with blue tint */
    .speciality:hover .overlay {
        background: rgba(236, 81, 81, 0.4);
    }

    @media (max-width: 768px) {
        .speciality {
            flex: 100%;
            height: 250px;
        }
    }
    /* <<<<<<<<<<<<<<<<<<< Crousel Cards >>>>>>>>>>>>>>>>>>>>>>> */
    #clientShowcase {
      margin: 0;
      font-family: 'Segoe UI', Arial, sans-serif;
      background-color: #DC0000;
      color: white;
      overflow: hidden;
    }

    /* Performance metrics section */
    .metrics-container {
      display: flex;
      justify-content: center;
      gap: 100px;
      padding: 50px 20px 30px;
      text-align: center;
      flex-wrap: wrap;
      background-color: white;
      color: black;
    }

    .metric-item h2 {
      font-size: 40px;
      font-weight: 700;
      margin: 0;
    }

    .metric-item p {
      margin-top: 8px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 13px;
      opacity: 0.9;
    }

    /* Partner showcase section */
    .partners-showcase {
      text-align: center;
      padding: 20px 20px 50px;
    }

    .section-heading {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
    }

    .section-heading::before,
    .section-heading::after {
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 0 8px;
    }

    /* Carousel styles */
    .carousel-wrapper {
      overflow: hidden;
      width: 100%;
      padding: 0 20px;
    }

    .carousel-items {
      display: flex;
      transition: transform 0.5s ease;
    }

    .partner-logo-card {
      background-color: white;
      color: black;
      flex: 0 0 calc(20% - 20px); /* 5 cards visible */
      margin: 0 10px;
      height: 260px;
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .partner-logo-card:hover {
      transform: translateY(-4px);
    }

    .partner-logo-card img {
      max-width: 350px;
      max-height: 150px;
      margin-bottom: 12px;
      object-fit: contain;
    }

    .partner-logo-card p {
      font-weight: bold;
      font-size: 14px;
      margin: 0;
      text-align: center;
    }

    /* Navigation indicators */
    .carousel-indicators {
      text-align: center;
      margin-top: 25px;
    }

    .carousel-indicator {
      display: inline-block;
      height: 10px;
      width: 10px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      margin: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .carousel-indicator.active {
      background-color: white;
    }

    @media (max-width: 992px) {
      .partner-logo-card {
        flex: 0 0 calc(33.333% - 20px);
      }
    }

    @media (max-width: 600px) {
      .partner-logo-card {
        flex: 0 0 calc(50% - 20px);
      }
    }
    /* <<<<<<<<<<<<<<<<<<< CTA Section >>>>>>>>>>>>>>> */
        .cta-section {
        position: relative;
         background: url('/public/images/bg5.jpg') no-repeat center center/cover;
        background-attachment: fixed; /* keeps background fixed */
        color: white;
        text-align: center;
        padding: 80px 20px;
    }

    /* Gray overlay */
    .cta-section::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(128, 128, 128, 0.6); /* gray with opacity */
        z-index: 0;
    }

    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: auto;
    }

    .cta-content h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .cta-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-content a {
        background-color: #DE0003;
        color: white;
        padding: 12px 30px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        transition: background 0.3s ease;
    }

    .cta-content a:hover {
        background-color: #14345C;
    }

    /* <<<<<<<<<<<<<<<<<<< Testimonials >>>>>>>>>>>>>>>>>>>>> */

     .reviews-wrapper {
            padding: 80px 0;
            background-color: #E0E0E0;
            font-family: 'Inter', Arial, sans-serif;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .reviews-heading {
            text-align: center;
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .reviews-subheading {
            text-align: center;
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 60px;
            font-weight: 400;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .review-box {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .review-quote {
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-person {
            display: flex;
            align-items: center;
        }

        .person-photo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid #e5e7eb;
        }

        .person-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #111827;
            margin: 0 0 3px 0;
        }

        .person-role {
            font-size: 0.85rem;
            color: #6b7280;
            margin: 0;
        }

        .brand-logos {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #e5e7eb;
        }

        .brand-title {
            color: #6b7280;
            margin-bottom: 25px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .brand-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .brand-container img {
            height: 40px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .brand-container img:hover {
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .brand-container {
                gap: 20px;
            }
            
            .brand-container img {
                height: 30px;
            }
        }

        

















        
/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Sticky Button */
.get-quote-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #DD0000, #d36c6c);
  color: white;
  padding: 15px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
  text-align: center;
  z-index: 9999;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transform: rotate(180deg);
}

.get-quote-btn:hover {
  background: linear-gradient(135deg, #DD0000, #d36c6c);
  right: 2px;
  box-shadow: 0 6px 20px rgba(0, 112, 161, 0.4);
}

.get-quote-btn .quote-icon {
  writing-mode: horizontal-tb;
  margin-bottom: 8px;
  font-size: 18px;
}

.get-quote-btn .quote-text {
  letter-spacing: 1px;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Popup Content */
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease;
  border: 1px solid #eee;
}

@keyframes slideUp {
  from { 
    transform: translateY(20px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-header {
  margin-bottom: 20px;
  text-align: center;
}

.popup-header h2 {
    display: inline-block;
    border-bottom: 3px solid #0070A1;
    padding-bottom: 6px;
  }
  

.popup-header p {
  color: #666;
  margin: 0;
  font-size: 14px;
  font-weight: bold;

}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: all 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  color: #333;
  background: #f5f5f5;
}

/* Form Styling */
.quote-form {
  margin-top: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
}

.popup-content form input,
.popup-content form textarea {
  width: 100%;
  padding: 12px 15px 12px 40px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  transition: all 0.3s;
}

.popup-content form textarea {
  padding: 12px 15px;
  resize: vertical;
}

.popup-content form input:focus,
.popup-content form textarea:focus {
  outline: none;
  border-color: #0070A1;
  box-shadow: 0 0 0 3px rgba(0, 112, 161, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #DD0000, #d36c6c);
  color: white;
  padding: 12px 25px;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0070A1, #005a8c);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 112, 161, 0.3);
}

.submit-btn i {
  font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .popup-content {
    padding: 25px 20px;
  }
  
  .get-quote-btn {
    padding: 12px 8px;
    height: 150px;
  }
  
  .popup-header h2 {
    font-size: 20px;
  }
}














.expert-advice-section {
    background: linear-gradient(135deg, #0070A1, #028090);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: white;
}
.input-field {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: white;
    padding: 10px 15px;
}
.input-field::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.input-field:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fcbf49;
    box-shadow: none;
    color: white;
}
.submit-btn {
    background-color: #fcbf49;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: 0.3s ease;
}
.submit-btn:hover {
    background-color: #f77f00;
    transform: translateY(-2px);
}
.terms-link:hover {
    text-decoration: underline;
}