/* =========================
   RESET
========================= */

/* =========================
   HERO SLIDER (HALF SCREEN)
========================= */
.hero-slider {
    position: relative;
    margin-top: 50px;
    width: 100%;
    height: 65vh;           /* Half of screen height */
    overflow: hidden;
}
/* slide - 15-06-2026 Start */
.slide {

    position: absolute;

    width: 100%;
    height: 100%;

    opacity: 0;

    transition: opacity 1s ease;
}

.slide.active {

    opacity: 1;
}
/* slide - 15-06-2026 end  */

.slide img {
    margin-top: 25px;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 

.slide.active img {

    transform: scale(1.08);
}
     
/* Dark overlay for better text visibility */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
} 

/* Slide Text */
.slide-text {
    position: absolute;
    top: 80%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 600px;
}

.slide-text h1 {
    font-size: 38px;
    color: var(--sky-semi-bg);
   /* color: rgb(243, 200, 8); */
    margin-bottom: 15px;
    
}

.slide-text p {
    font-size: 18px;
    color: var(--sky-semi-bg);
    margin: 0;
}
/* =========================
   ARROWS
========================= */

.slider-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(0,0,0,0.4);

    color: var(--sky-semi-bg);

    border: none;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    cursor: pointer;

    font-size: 24px;

    z-index: 100;

    transition: 0.3s ease;
}

.slider-arrow:hover {

    background: var(--logo-high);
}

.prev {

    left: 20px;
}

.next {

    right: 20px;
}
/*Arrow Css End*/
/* =========================
   DOTS
========================= */

.slider-dots {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 100;
}

.dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: rgba(255,255,255,0.5);

    cursor: pointer;

    transition: 0.3s ease;
}

.dot.active {

    background: var(--primary-color);

    transform: scale(1.2);
}
/* Dot Indicators END */

.home-main-content {
    background: var(--light-bg);
   /* padding: 80px 0; */ 
}

/*Benefit grid-start*/
/* =========================
   SOLAR BENEFITS
========================= */

.solar-benefits {
    padding: 60px 0;
   /* background: #f8fafc; */
}

/* Label */
.benefits-label {

    display: inline-block;

    padding: 8px 18px;

    background: rgba(217,119,6,0.12);

    color: var(--primary-color);

    border-radius: 50px;

    font-size: 13px; 
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 9px;
}

/* Header */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {

    margin-block: 7px;
}

.section-heading p {
 
    max-width: 700px;
    margin: auto;
}

/* Grid */
.benefits-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* Card */
.benefit-card {

    background: var(--sky-semi-bg);

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid var(--logo-high);

    box-shadow: 0 5px 15px rgba(0,0,0,.08);

   /* box-shadow: 0 5px 20px rgba(0,0,0,0.08); */

    transition: 0.3s ease;
}

.benefit-card:hover {

    transform: translateY(-8px);
}

/* Image */
.benefit-card img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    display: block;
}

/* Content */
.benefit-card-content {

    padding: 30px;
}

.benefit-card-content h3 {

    color: var(--Deep-Solar-Blue);

   /* font-size: 24px; */

    margin-bottom: 15px;
}
/*Benefit grid-End*/

/*--Latest 18-06-2026 Start--*/
.solar-calculator {
    padding: 9px 0;
   /* background: #f8fafc; */
}

.calculator-wrapper {
    max-width: 1200px;
    margin: auto;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.calculator-form input {
    border: 1px solid var(--logo-high);
    text-align: center;
    color: var(--logo-high);

}
.calculator-form select {
    padding: 15px;
    border: 1px solid var(--logo-high);
    border-radius: 10px;
}

.calculator-form button {
    background: var(--primary-dark);
    color: var(--logo-high);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.recommendation-card {
    max-width: 1200px;
    margin: 0 auto 25px;

    background: var(--Deep-Solar-Blue);
    color: var(--sky-semi-bg);
    text-align: center;
    padding: 30px;
    border-radius: 20px;

   /*  border: 2px solid #86efac;   Light Green Border */
    box-shadow: 0 8px 25px rgba(134,239,172,0.15);
   /* margin-bottom: 25px; */
} 

.recommendation-card h3 {
    color: var(--sky-semi-bg);
    margin-bottom: 10px;
}

#recommendedKW {
    font-size: 36px;
    font-weight: 700;
}
.subsidy-badge {

    display: inline-block;

    margin-top: 15px;

    padding: 10px 20px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    color: var(--sky-semi-bg);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;

    margin-top: 25px;
}

.result-card {
    background: var(--sky-semi-bg);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
   /* box-shadow: 0 5px 15px rgba(0,0,0,.08); */

    border: 1px solid var(--Deep-Solar-Blue);   /* Soft Green Border */
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: all 0.3s ease;

}

.result-card h4 {
    margin-bottom: 15px;
    color: var(--logo-high);
}

.result-card span {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
}

.subsidy-card {
    margin: 25px auto 0;
    max-width: 800px;
   /* margin-top: 20px; */
    background: #ecfdf5;
    border: 1px solid #10b981;
    padding: 20px;
    border-radius: 15px;

    text-align: center;
}

.survey-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.survey-btn {
    margin: 0;
}

.calculator-result {
    display: none;

    max-width: 1200px;
    margin: 30px auto 0;
}
.calculator-result.show {
    display: block;
}
/*--Latest 18-06-2026 End--*/


/* =========================
   WHY WE SECTION
========================= */
.why-we {
    padding: 50px 0;
   /* background: var(--light-bg); */
}

/* =========================
   SECTION HEADING
========================= */
.why-we-heading {
    text-align: center;
    margin-bottom: 60px;
}

.why-we-heading p {

    max-width: 750px;
    margin: auto;
    line-height: 1.7;
}

/* =========================
   MAIN WRAPPER
========================= */
.why-wrapper {
    display: flex;
    gap: 90px;
    align-items: center;
}

/* =========================
   LEFT SIDE ACCORDION
========================= */
.why-list {
    flex: 1;
}

/* Single Accordion Item */
.why-item {
    display: flex;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 25px;
}

/* Vertical Indicator */
.why-indicator {
    width: 3px;
    border-radius: 50px;
  /*  background: #cbd5e1; */
    transition: 0.6s ease;
   /* margin-left: 10px; */
}

/* Active Indicator */
.why-item.active .why-indicator {
    background: var(--sky-dark-bg);
}

/* Content */
.why-content {
    flex: 1;
    margin-left: 10px;
}

/* =========================
   TITLE BUTTON
========================= */
.why-title {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: transparent;
    border: none;

    cursor: pointer;

    padding: 0 0 12px;

    font-size: 18px;

    text-align: left;

    color: var(--light-solar-blue);

    
}

/* Arrow */
.why-title::after {
    content: "+";
    font-size: 20px;
    color: var(--sky-dark-bg);
    transition: 0.5s ease;
}

/* Active Arrow */
.why-item.active .why-title::after {
    content: "−";
}

/* =========================
   DESCRIPTION
========================= */
.why-description {
    max-height: 0;
    overflow: hidden;

   /* transition: all 0.4s ease; */
    max-height 0.4s ease,
    padding 0.4s ease;

    color: var(--logo-high);
    line-height: 1.8;
    font-size: 16px;
}

/* Active Description */
.why-item.active .why-description {
    max-height: 220px;
    padding-bottom: 20px;
}

/* Bottom Line */
.why-line {
    width: 100%;
    height: 1px;
    background: var(--sky-dark-bg);
    
}

/* =========================
   RIGHT SIDE IMAGE
========================= */
.why-image {
    flex: 1;

    position: relative; 

    min-height: 550px; 

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Fixed Professional Image Size */
.why-image img {
    width: 100%;
    max-width: 600px;
    height: 450px;

     object-fit: cover; 

    border-radius: 24px;

    animation: slideImage 3s ease;
}

/* Smooth Slide Animation */
@keyframes slideImage {

    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {

    .why-wrapper {
        flex-direction: column;
    }

    .why-title {
        font-size: 20px;
    }

    .why-image {
        width: 100%;
        min-height: auto;
    }

    .why-image img {
        height: 350px;
    }
}
/* Mobile */
@media (max-width: 992px) {

    .benefits-grid {

        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 34px;
    }
}