/* =========================================================
   WHY CHOOSE US PAGE
   PRAKASH SOLAR GREEN ENERGY
========================================================= */

.why-page {
    overflow: hidden;
    background: #f6f9f7;
}


/* =========================================================
   HERO
========================================================= */

.why-hero {
    position: relative;
    padding: 105px 0 85px;
    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #063a21 0%,
            #08733d 55%,
            #0a8b49 100%
        );

    color: #fff;
}

.why-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .10;
    pointer-events: none;

    background-image:
        radial-gradient(circle, #fff 1px, transparent 1px);

    background-size: 38px 38px;
}

.why-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.why-hero .eyebrow {
    color: #a9ee7c;
}

.why-hero h1 {
    max-width: 850px;

    margin: 18px 0 22px;

    color: #fff;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.why-hero h1 span {
    color: #a9ee7c;
}

.why-hero p {
    max-width: 700px;

    color: rgba(255,255,255,.80);

    font-size: 18px;
    line-height: 1.8;
}

.why-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.why-hero-buttons .btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 23px;

    border-radius: 11px;

    font-weight: 700;
}

.why-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 32px;

    font-size: 14px;
}

.why-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.why-breadcrumb i {
    color: rgba(255,255,255,.5);
    font-size: 11px;
}

.why-breadcrumb span {
    color: rgba(255,255,255,.6);
}


/* =========================================================
   INTRO
========================================================= */

.why-intro {
    padding: 100px 0;
    background: #fff;
}

.why-intro h2 {
    margin: 13px 0 22px;

    color: #123b28;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.8px;
}

.why-intro h2 span {
    color: #178548;
}

.why-intro p {
    color: #66756c;
    line-height: 1.8;
}

.why-intro .lead {
    font-size: 17px;
}


/* =========================================================
   CHECK LIST
========================================================= */

.why-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 20px;

    margin-top: 27px;
}

.why-check-list div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #244734;

    font-size: 14px;
    font-weight: 600;
}

.why-check-list i {
    color: #178548;
    font-size: 17px;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.why-highlight {
    position: relative;

    padding: 45px;

    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #073c23,
            #087b42
        );

    color: #fff;

    box-shadow: 0 25px 60px rgba(3,60,31,.15);
}

.why-highlight::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);
}

.why-highlight-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 17px;

    background: #94e96a;
    color: #063a21;

    font-size: 27px;
}

.why-highlight > span {
    color: #a9ee7c;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-highlight h3 {
    max-width: 500px;

    margin: 12px 0 15px;

    color: #fff;

    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.why-highlight p {
    max-width: 560px;

    margin: 0;

    color: rgba(255,255,255,.75);

    line-height: 1.8;
}

.highlight-line {
    width: 70px;
    height: 3px;

    margin: 27px 0 20px;

    border-radius: 20px;

    background: #94e96a;
}

.highlight-bottom {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
}

.highlight-bottom i {
    color: #a9ee7c;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.why-section-heading {
    max-width: 750px;

    margin: 0 auto 55px;
}

.why-section-heading .eyebrow {
    color: #178548;
}

.why-section-heading h2 {
    margin: 12px 0 15px;

    color: #123b28;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.why-section-heading h2 span {
    color: #178548;
}

.why-section-heading p {
    max-width: 650px;

    margin: auto;

    color: #68776e;

    line-height: 1.75;
}


/* =========================================================
   BENEFITS
========================================================= */

.why-benefits {
    padding: 100px 0;
    background: #f6f9f7;
}

.why-benefit-card {
    position: relative;

    height: 100%;

    padding: 34px;

    overflow: hidden;

    border: 1px solid #e2eae4;
    border-radius: 20px;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.why-benefit-card:hover {
    transform: translateY(-6px);

    border-color: #bcdcc6;

    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.benefit-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    border-radius: 16px;

    background: #eaf8e2;
    color: #178548;

    font-size: 25px;
}

.benefit-number {
    position: absolute;

    top: 25px;
    right: 27px;

    color: #d9e7dd;

    font-size: 14px;
    font-weight: 800;
}

.why-benefit-card h3 {
    margin-bottom: 12px;

    color: #173d29;

    font-size: 21px;
    font-weight: 750;
}

.why-benefit-card p {
    margin: 0;

    color: #6b7a71;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   SOLAR TYPES
========================================================= */

.why-solar-types {
    padding: 100px 0;
    background: #fff;
}

.solar-type-card {
    position: relative;

    height: 100%;

    padding: 38px;

    border: 1px solid #e2eae4;
    border-radius: 22px;

    background: #fff;

    transition: .3s ease;
}

.solar-type-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(0,0,0,.07);
}

.solar-type-card.featured {
    border-color: #88ca8f;

    background:
        linear-gradient(
            145deg,
            #f5fbf3,
            #fff
        );
}

.solar-type-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 17px;

    background: #eaf8e2;
    color: #178548;

    font-size: 27px;
}

.solar-type-card h3 {
    margin-bottom: 14px;

    color: #173d29;

    font-size: 24px;
    font-weight: 800;
}

.solar-type-card p {
    min-height: 82px;

    margin-bottom: 25px;

    color: #68776e;

    font-size: 14px;
    line-height: 1.75;
}

.solar-type-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #178548;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.solar-type-card a i {
    transition: transform .2s ease;
}

.solar-type-card a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   PROCESS
========================================================= */

.why-process {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #f6f9f7,
            #eef5ef
        );
}

.why-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-process-item {
    position: relative;

    padding: 35px 27px;

    border-radius: 20px;

    background: #fff;
    border: 1px solid #e1eae3;
}

.process-count {
    position: absolute;

    top: 22px;
    right: 23px;

    color: #cbdacf;

    font-size: 14px;
    font-weight: 800;
}

.process-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background: #eaf8e2;
    color: #178548;

    font-size: 22px;
}

.why-process-item h3 {
    margin-bottom: 10px;

    color: #173d29;

    font-size: 20px;
    font-weight: 750;
}

.why-process-item p {
    margin: 0;

    color: #6a786f;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.why-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            130deg,
            #063a21,
            #087b42
        );
}

.why-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.why-cta .eyebrow {
    color: #a9ee7c;
}

.why-cta h2 {
    max-width: 700px;

    margin: 10px 0 15px;

    color: #fff;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.why-cta p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.72);

    line-height: 1.75;
}

.why-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.why-cta-buttons .btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 23px;

    border-radius: 11px;

    font-weight: 700;

    white-space: nowrap;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fba59;
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .why-hero {
        padding: 80px 0 70px;
    }

    .why-intro,
    .why-benefits,
    .why-solar-types,
    .why-process {
        padding: 75px 0;
    }

    .why-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 767px) {

    .why-hero {
        padding: 65px 0 55px;
    }

    .why-hero h1 {
        font-size: 40px;
    }

    .why-hero p {
        font-size: 16px;
    }

    .why-intro,
    .why-benefits,
    .why-solar-types,
    .why-process {
        padding: 60px 0;
    }

    .why-check-list {
        grid-template-columns: 1fr;
    }

    .why-highlight {
        min-height: auto;
        padding: 32px 27px;
    }

    .why-highlight h3 {
        font-size: 27px;
    }

    .why-section-heading {
        margin-bottom: 40px;
    }

    .why-process-grid {
        grid-template-columns: 1fr;
    }

    .why-cta {
        padding: 60px 0;
    }

    .why-cta-buttons {
        width: 100%;
    }

    .why-cta-buttons .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .why-hero h1 {
        font-size: 34px;
    }

    .why-hero-buttons {
        flex-direction: column;
    }

    .why-hero-buttons .btn {
        width: 100%;
    }

    .why-benefit-card,
    .solar-type-card {
        padding: 28px 24px;
    }

    .why-highlight {
        padding: 28px 23px;
    }

}