/* ============================================================
   SECTION LABEL / TITLE / DESC + WHY US SECTION — Mobile-First
   Breakpoints: Mobile(0-480) | SmTab(481-600) | MedTab(601-768)
              | LgTab(769-1024) | SmDesk(1025-1280) | MedDesk(1281-1440)
              | LgDesk(1441-1920) | XL(1921+)
   Units : clamp() + vw — zero px in property values
   Colors: ONLY from .white-why-us / .blue-why-us
============================================================ */

/* ======================== */
/* 1. Base — Mobile (no colors) */
/* ======================== */

.bs-section-label {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.3em, 1.2vw, 0.5em);
    font-weight: 700;
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    letter-spacing: clamp(0.08em, 0.3vw, 0.13em);
    text-transform: uppercase;
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
}

.bs-section-label::before {
    content: '';
    width: clamp(1.2rem, 4vw, 1.75rem);
    height: clamp(0.1em, 0.3vw, 0.13em);
    /* background comes from theme class */
    flex-shrink: 0;
}

.bs-section-title {
    font-family: var(--bs-font-head);
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.bs-section-desc {
    font-size: clamp(0.85rem, 2.8vw, 1.05rem);
    max-width: 37rem;
    line-height: 1.8;
}

.bs-section-head {
    margin: clamp(2rem, 7vw, 3.5rem);
}

.bs-section-head.center {
    text-align: center;
}

.bs-section-head.center .bs-section-label {
    justify-content: center;
}

.bs-section-head.center .bs-section-desc {
    margin: 0 auto;
}

/* ======================== WHY US SECTION ======================== */

.bs-why-us {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 6vw, 3rem) clamp(0.8rem, 4vw, 1.5rem);
}

.bs-why-us::before {
    content: '';
    position: absolute;
    top: clamp(-4rem, -8vw, -5rem);
    left: clamp(-4rem, -8vw, -5rem);
    width: clamp(12rem, 30vw, 20rem);
    height: clamp(12rem, 30vw, 20rem);
    background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.bs-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 4vw, 1.75rem);
}

.bs-why-card {
    border-radius: clamp(0.6rem, 2.5vw, 1rem);
    padding: clamp(1rem, 4vw, 2.25rem) clamp(1rem, 3.5vw, 1.75rem);
    position: relative;
    overflow: hidden;
    border: clamp(0.06em, 0.15vw, 0.08em) solid transparent;
    opacity: 0;
    transform: translateY(clamp(1rem, 4vw, 1.875rem));
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.bs-why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bs-why-card-icon {
    width: clamp(2.5rem, 6vw, 3.75rem);
    height: clamp(2.5rem, 6vw, 3.75rem);
    border-radius: clamp(0.6rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: clamp(0.8rem, 2.5vw, 1.375rem);
    position: absolute;
    top: clamp(0.8rem, 2vw, 1.25rem);
    left: clamp(1rem, 3vw, 1.5rem);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.bs-why-card h3 {
    font-family: var(--bs-font-head);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    margin-bottom: clamp(0.4em, 1.2vw, 0.625em);
   
}

.bs-why-card p {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    line-height: 1.75;
  
}

.bs-card-number {
    font-family: var(--bs-font-head);
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    padding: 1.8rem;
    margin: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(3rem, 8vw, 4.5rem);
    height: clamp(3rem, 8vw, 4.5rem);
    border-radius: clamp(0.5rem, 1.5vw, 0.875rem);
    box-shadow: 0 clamp(0.3em, 0.8vw, 0.5em) clamp(0.8em, 1.5vw, 1.2em) rgba(10,37,64,0.25);
    border: clamp(0.06em, 0.15vw, 0.08em) solid transparent;
}

/* ======================== */
/* 2. Breakpoints */
/* ======================== */

@media (min-width: 481px) {
    .bs-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 601px) {
    .bs-why-us {
        padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem);
    }

    .bs-section-title {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
}

@media (min-width: 769px) {
    .bs-why-us {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 2.5rem);
    }

    .bs-why-grid {
        gap: clamp(1.2rem, 3vw, 2rem);
    }
}

@media (min-width: 1025px) {
    .bs-why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.2rem, 2vw, 2rem);
    }

    .bs-why-us {
        padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    }

    .bs-why-card:hover {
       
        box-shadow: 0 clamp(0.3em, 0.8vw, 0.5em) clamp(0.8em, 2vw, 1.4em) rgba(0,0,0,0.12);
    }

    .bs-why-card:hover .bs-why-card-icon {
        box-shadow: 0 clamp(0.3em, 0.8vw, 0.5em) clamp(0.8em, 1.5vw, 1.2em) rgba(10,37,64,0.25);
    }
}

@media (min-width: 1281px) {
    .bs-section-head {
        margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }

    .bs-why-us {
        padding: clamp(4rem, 6vw, 5.5rem) clamp(3rem, 5vw, 5rem);
    }
}

@media (min-width: 1441px) {
    .bs-why-grid {
        gap: clamp(1.5rem, 2vw, 2.2rem);
    }
}

@media (min-width: 1921px) {
    .bs-why-us {
        padding: clamp(5rem, 6vw, 7rem) clamp(5rem, 8vw, 9rem);
    }
}
/* white theme */




/* ======================== */
/* 3. Theme Classes — Colors */
/* ======================== */

.white-why-us {
    background-color: var(--white);
    color: var(--helperColor);
}

.white-why-us .bs-section-label {
    color: var(--helperColor);
}

.white-why-us .bs-section-label::before {
    background: var(--helperColor);
}

.white-why-us .bs-section-title {
    color: var(--lightHelper);
}

.white-why-us .bs-section-desc {
    color: var(--helperColor);
}

.white-why-us .bs-why-card {
    background-color: var(--lightHelper);
    border-color: transparent;
}

.white-why-us .bs-why-card-icon {
    background: var(--primaryColor);
    color: var(--white);
}

.white-why-us .bs-why-card h3 {
    color: var(--white);
}

.white-why-us .bs-why-card p {
    color: var(--white);
}

.white-why-us .bs-card-number {
    color: var(--lightHelper);
    background-color: var(--white);  
}
.white-why-us .bs-card-number:hover {
    color: var(--white);
    background-color: var(--lightHelper); 
      border-color: var(--white); 
}

.white-why-us .bs-why-card:hover {
    border-color: var(--white);

}

.white-why-us .bs-why-card:hover .bs-why-card-icon {
    background: var(--lightHelper);
}

.blue-why-us {
    background-color: var(--lightHelper);
    color: var(--white);
}

.blue-why-us .bs-section-label {
    color: var(--white);
}

.blue-why-us .bs-section-label::before {
    background: var(--white);
}

.blue-why-us .bs-section-title {
    color: var(--white);
}

.blue-why-us .bs-section-desc {
    color: var(--white);
}

.blue-why-us .bs-why-card {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.blue-why-us .bs-why-card-icon {
    background: var(--white);
    color: var(--lightHelper);
}
.blue-why-us .bs-card-number {
    color: var(--lightHelper);
    background-color: var(--white);
    
}
.blue-why-us .bs-why-card h3 {
    color: var(--white);
}

.blue-why-us .bs-why-card p {
    color: var(--white);
}



.blue-why-us .bs-why-card:hover {
    background-color: var(--white);
    border-color: var(--white);
}

.blue-why-us .bs-why-card:hover h3,
.blue-why-us .bs-why-card:hover p,
.blue-why-us .bs-why-card:hover .bs-card-number {
    color: var(--lightHelper);
}

.blue-why-us .bs-why-card:hover .bs-why-card-icon {
    background: var(--lightHelper);
    color: var(--white);
}


@media (min-width: 1025px) {
    .white-why-us .bs-why-card:hover {
        border-color: var(--lightHelper);
    }
}
/* **************** */
/* ============================================================

============================================================ */



.bs-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}
.bs-section-head {
text-align: center;
}
.bs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
    padding: 1.375rem 1.5rem;
    border-radius: 10px;
    border: 0.08em solid;
    opacity: 0;
    margin: 0.9rem ;
    padding: 0.5rem ;
    transform: translateX(1.25rem);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bs-feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.bs-feature-icon {
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    flex-shrink: 0;
      border: clamp(0.06em, 0.15vw, 0.08em) solid transparent;
}


.bs-feature-text h4 {
    font-family: var(--bs-font-head);
    font-weight: 700;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    margin-bottom: 0.25rem;
}

.bs-feature-text p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* 2. Breakpoints */

@media (min-width: 769px) {
    .bs-features-list {
        gap: 1.25rem;
    }

    .bs-feature-item {
        padding: 1.5rem 1.75rem;
        gap: 1.25rem;
    }
}

@media (min-width: 1025px) {
    .bs-feature-item:hover {
        box-shadow: 0 0.25rem 1.5rem rgba(232,160,32,0.12);
    }
}

/* 3. Theme Classes — Colors */

.white-features .bs-feature-item {
    background-color: var(--white);
    border-color: var(--lightHelper);
}
.white-features .bs-section-head {
    color: var(--lightHelper);
}

.white-features .bs-feature-item:hover {
    border-color: var(--lightHelper);
}

.white-features .bs-feature-icon {
    background-color: var(--lightHelper);
    color: var(--white);
}

.white-features .bs-feature-item:hover .bs-feature-icon {
    background-color: var(--white);
    color: var(--lightHelper);
      border-color: var(--lightHelper);
}

.white-features .bs-feature-text h4 {
    color: var(--primaryColor);
}

.white-features .bs-feature-text p {
    color: var(--helperColor);
}

.blue-features .bs-feature-item {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.blue-features .bs-feature-item:hover {
    background-color: var(--white);
}

.blue-features .bs-feature-icon {
    background-color: var(--white);
    color: var(--lightHelper);
}

.blue-features .bs-feature-text h4 {
    color: var(--white);
}

.blue-features .bs-feature-text p {
    color: var(--white);
}

.blue-features .bs-feature-item:hover .bs-feature-text h4,
.blue-features .bs-feature-item:hover .bs-feature-text p {
    color: var(--primaryColor);
}