/* ============================================================
   WHYUS SECTION — Mobile-First Responsive CSS
   Breakpoints:
     Mobile      : 0 → 480px      (base styles, no query)
     Small Tab   : 481px → 600px
     Medium Tab  : 601px → 768px
     Large Tab   : 769px → 1024px
     Small Desk  : 1025px → 1280px
     Medium Desk : 1281px → 1440px
     Large Desk  : 1441px → 1920px
     XL Screens  : 1921px+
   Units : clamp() + vw — zero px in property values
   Colors: ONLY from .white-whyus / .blue-whyus theme classes
============================================================ */


/* =============================== */
/* WhyUs Section — Mobile Base     */
/* =============================== */
.whyus-section {
    position: relative;
}

.whyus-section a {
    color: currentColor;
    text-decoration: underline currentColor;
}

.whyus-section svg {
    position: absolute;
    right: 0;
    left: 0;
    height: clamp(0.8rem, 2vw, 1.3rem);
    width: 100%;
}

.whyus-container {
    margin: 0 auto;
    padding: 0 clamp(0.8em, 4vw, 1.2em) clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 22;
}


/* =============================== */
/* Section Title                   */
/* =============================== */
.whyus-section-title {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    position: relative;
    text-align: center;
}

.whyus-section-title::after {
    content: "";
    position: absolute;

    width: 35%;
    height: clamp(0.18rem, 0.5vw, 0.32rem);

    left: 50%;
    transform: translateX(-50%); 

    bottom: -0.3em; 

    border-radius: clamp(1rem, 3vw, 1.5rem);
    background-color: currentColor;
}


/* =============================== */
/* WhyUs Content & Features        */
/* =============================== */
.whyus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 2.5rem);
}

.whyus-image {
    width: 100%;
    z-index: 2;
}

.whyus-image img {
    width: 100%;
}

.whyus-features {
    width: 100%;
}


/* =============================== */
/* Service List & Grid             */
/* =============================== */
.whyUS__service-list .row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.6rem, 2.5vw, 1.2rem);
    align-items: stretch;
}

.whyUS__service-list .row .col {
    width: 100%;
    display: flex;
}


/* =============================== */
/* Service Item                    */
/* =============================== */
.whyUS__service-item {
    flex: 1;
    padding: clamp(0.8em, 2.5vw, 1.3em) clamp(1em, 3vw, 1.8em);
    border-width: clamp(0.07rem, 0.2vw, 0.12rem);
    border-style: solid;
    border-radius: clamp(0.8rem, 2.5vw, 1.3rem);
    position: relative;
    transition: 0.3s;
    text-align: start;
    display: flex;
    flex-direction: column;
    overflow: hidden;


    box-shadow: inset 0 0 clamp(0.5em, 2vw, 1em) rgba(0, 0, 0, 0.18);
}

.whyUS__service-item ul li {
    margin-bottom: clamp(0.1em, 0.3vw, 0.2em);
}


.whyUS__service-item::after {
    position: absolute;
    content: "";
    width: clamp(0.9rem, 2vw, 1.5rem);
    height: clamp(4rem, 12vw, 6rem);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, top 0.3s ease, transform 0.3s ease;
    border-radius: clamp(0.6rem, 1.5vw, 1rem) 0 0 clamp(0.6rem, 1.5vw, 1rem);
    background-color: currentColor;
    z-index: 1;
}


.whyUS__service-item__en::after {
    right: auto;
    left: 0;
    border-radius: 0 clamp(0.6rem, 1.5vw, 1rem) clamp(0.6rem, 1.5vw, 1rem) 0;
}


.whyUS__service-item:hover::after {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    transform: none;
    border-radius: calc(clamp(0.8rem, 2.5vw, 1.3rem) - clamp(0.07rem, 0.2vw, 0.12rem));
}

.whyUS__service-item__en:hover::after {
    left: 0;
    right: 0;
}


.whyUS__service-item .ps-title,
.whyUS__service-item p,
.whyUS__service-item .read-more-div {
    position: relative;
    z-index: 2;
}


.whyUS__service-item .ps-title {
    font-weight: 500;
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    line-height:2;
    margin-bottom: clamp(0.4em, 1.5vw, 0.7em);
    text-align: center;
    border-bottom-width: clamp(0.05rem, 0.15vw, 0.08rem);
    border-bottom-style: solid;
    padding-bottom: clamp(0.25em, 1vw, 0.4em);
}


.whyUS__service-item p {
    font-size: clamp(0.8rem, 3vw, 0.92rem);
    line-height: 1.7;
    margin: 0;
}


/* =============================== */
/* Small Tablet  481px → 600px     */
/* =============================== */
@media (min-width: 481px) {
  .whyus-container {
          flex-direction: row;
        align-items: center;

        padding: clamp(2.5rem, 6vw, 4rem) clamp(1em, 3vw, 1.8em);
    }
   

    .whyus-section-title {
        font-size: clamp(1.4rem, 4.5vw, 1.9rem);
    }
}


/* =============================== */
/* Medium Tablet  601px → 768px    */
/* =============================== */
@media (min-width: 601px) {
    .whyus-container {
          flex-direction: row;
        align-items: center;
        gap: clamp(2rem, 4vw, 3.5rem);
        padding: 0 clamp(1em, 3vw, 1.8em) clamp(1.2rem, 3.5vw, 2.2rem);
    }

    .whyus-section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
 .whyUS__service-list .row .col {
        width: calc(50% - clamp(0.3rem, 1.25vw, 0.6rem));
             
    }
    .whyUS__service-item .ps-title {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    }

    .whyUS__service-item p {
        font-size: clamp(0.82rem, 2vw, 0.95rem);
    }
}


/* =============================== */
/* Large Tablet  769px → 1024px    */
/* =============================== */
/* @media (min-width: 769px) {
    .whyus-container {
          flex-direction: row;
        align-items: center;
        gap: clamp(2rem, 4vw, 3.5rem);
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1em, 3vw, 1.8em);
    }
    .whyus-section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    }

    .whyUS__service-list .row {
        gap: clamp(0.8rem, 2vw, 1.4rem);
    }

    .whyUS__service-item {
        padding: clamp(1em, 2vw, 1.5em) clamp(1.2em, 2.5vw, 2em);
    }

    .whyUS__service-item .ps-title {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .whyUS__service-item p {
        font-size: clamp(0.85rem, 1.8vw, 0.98rem);
    }
} */


/* =============================== */
/* Small Desktop  1025px → 1280px  */
/* =============================== */
@media (min-width: 1025px) {
    .whyus-content {
        flex-direction: row;
        align-items: center;
        gap: clamp(2rem, 4vw, 3.5rem);
    }

    .whyus-image {
        flex: 1;
    }

    .whyus-features {
        flex: 1;
    }

    .whyus-container {
        padding: 1rem clamp(1.5em, 3vw, 2.5em);
    }

    .whyus-section-title {
        font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    }

    .whyUS__service-list .row .col {
        width: calc(50% - clamp(0.4rem, 1vw, 0.7rem));
    }

    .whyUS__service-item::after {
        width: clamp(1rem, 1.5vw, 1.5rem);
        height: clamp(4.5rem, 10vw, 6.5rem);
    }

    .whyUS__service-item .ps-title {
        font-size: clamp(1rem, 1.3vw, 1.2rem);
    }

    .whyUS__service-item p {
        font-size: clamp(0.85rem, 1.1vw, 0.98rem);
    }
}


/* =============================== */
/* Medium Desktop  1281px → 1440px */
/* =============================== */
@media (min-width: 1281px) {
    .whyus-section-title {
        font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    }

    .whyUS__service-item .ps-title {
        font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    }

    .whyUS__service-item p {
        font-size: clamp(0.88rem, 1vw, 1.02rem);
    }
}


/* =============================== */
/* Large Desktop  1441px → 1920px  */
/* =============================== */
@media (min-width: 1441px) {
    .whyus-section-title {
        font-size: clamp(2rem, 2vw, 2.6rem);
    }

    .whyus-container {
        max-width: clamp(70rem, 88vw, 90rem);
        padding: 1rem clamp(2em, 3vw, 3em);
    }
}


/* =============================== */
/* Extra Large  1921px+            */
/* =============================== */
@media (min-width: 1921px) {
    .whyus-section-title {
        font-size: clamp(2.2rem, 1.8vw, 3rem);
    }

    .whyUS__service-item .ps-title {
        font-size: clamp(1.2rem, 1vw, 1.4rem);
    }

    .whyUS__service-item p {
        font-size: clamp(1rem, 0.9vw, 1.2rem);
    }
}





/* =============================== */
/* .white-whyus                    */
/* =============================== */
.white-whyus {
    background-color: var(--white);
    color: var(--helperColor);
}

.white-whyus .whyus-section-title {
    color: var(--lightHelper);
}

.white-whyus .whyUS__service-item {
    color: var(--helperColor);
    border-color: var(--lightHelper);
    box-shadow: inset 0 0 clamp(0.5em, 2vw, 1em) rgba(0, 75, 150, 0.12);
}

.white-whyus .whyUS__service-item::after {
    background-color: var(--lightHelper);
}

.white-whyus .whyUS__service-item .ps-title {
    color: var(--lightHelper);
    border-bottom-color: var(--lightHelper);
}

.white-whyus .whyUS__service-item p {
    color: var(--helperColor);
}

.white-whyus .whyUS__service-item:hover .ps-title,
.white-whyus .whyUS__service-item:hover p,
.white-whyus .whyUS__service-item:hover ul {
    color: var(--white);
     border-bottom-color: var(--white);
}


/* =============================== */
/* .blue-whyus                     */
/* =============================== */
.blue-whyus {
    background-color: var(--lightHelper);
    color: var(--white);
}

.blue-whyus .whyus-section-title {
    color: var(--white);
}

.blue-whyus .whyUS__service-item {
    color: var(--white);
    border-color: var(--white);
    box-shadow: inset 0 0 clamp(0.5em, 2vw, 1em) rgba(0, 0, 0, 0.18);
}

.blue-whyus .whyUS__service-item::after {
    background-color: var(--white);
}

.blue-whyus .whyUS__service-item .ps-title {
    color: var(--white);
    border-bottom-color: var(--white);
}

.blue-whyus .whyUS__service-item p {
    color: var(--white);
}

.blue-whyus .whyUS__service-item:hover .ps-title,
.blue-whyus .whyUS__service-item:hover p,
.blue-whyus .whyUS__service-item:hover ul {
    color: var(--lightHelper);
}