.slider_section {
    position: relative;
}

.slider_bg_box {
    position: relative;
}

.solar-img {
    width: 100%;
    height: 100%;
}

.text-container {
    position: absolute;
    max-width: calc(100% - 40px); /* Adjust margins to prevent overflowing */
    padding: 20px; /* Add padding for better spacing */
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
}

.slider-heading {
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: left;
    color: white;    
}

.slider-text {
    font-family: 'Inter', sans-serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 92.45px;
    text-align: left;
    color: white;
    margin-bottom: 10px;   
 
}

.learn-more-btn {
    background-color: #0E5E9B;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border-radius: 5px;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .text-container {
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 10px;
    }

    .slider-text{
        font-family: 'Inter', sans-serif;
        font-size: 42px !important;
        font-weight: 500;
        line-height: 45px;
        text-align: left;
        color: white;
        margin-bottom: 10px;
    }

    .learn-more-btn{
        padding: 7px 20px;
    }

    .slider-heading{
        font-family: Inter;
        font-size: 18px;
        font-weight: 500;
        line-height: 15px;
        text-align: left;
        color: white;    
    }
    }


    @media screen and (max-width: 768px) {
        .text-container {
            left: 10px;
            max-width: calc(100% - 20px);
            padding: 10px;
        }
    
        .slider-text{
            font-family: 'Inter', sans-serif;
            font-size: 22px !important;
            font-weight: 500;
            line-height: 30px;
            text-align: left;
            color: white;
            margin-bottom: 10px;
        }
    
        .learn-more-btn{
            padding: 7px 20px;
        }
    
        .slider-heading{
            font-family: Inter;
            font-size: 10px;
            font-weight: 500;
            line-height: 15px;
            text-align: left;
            color: white;    
        }
        }







/* introduction section  */

.introduction-section {
      display: flex;
    width: 100%;
    padding-top: 4rem;
    /* margin-bottom: 4rem; */
    flex-direction: row;
    align-items: center;
}

.left-side {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-side img {
    width: 100%;
    height: auto;
    max-width: 70%;
    /* height: 24rem; */
    /* aspect-ratio: 3/2; */
}

.right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.line {
    background-color: #FF0019;
    width: 49px;
    height: 3px;
    margin-bottom: 20px;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    text-align: left;
}

.intro-heading {
    font-family: Roboto;
    font-size: 32px;
    font-weight: 700;
    line-height: 37.5px;
    text-align: left;    
    margin-bottom: 20px;
}

.intro-text {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    text-align: left;
   color: #333333;    
    margin-bottom: 20px;
}

.questions-heading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    text-align: left;
    color: #757575;
    margin-bottom: 10px;
}

.email-button {
    background-color: #ffffff;
    border: 2px solid #09607A;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    /* font-weight: 700; */
    color: #09607A;
    cursor: pointer;
    width: fit-content; /* Ensures button width adjusts to its content */
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .introduction-section {
        flex-direction: column;
    }

    .intro-text{
        padding-right: 7rem !important;
    }

    .right-side{
        padding-left: 3.5rem;
        
    }

  

    .left-side img {
        width: 100%;
        height: auto;
        max-width: 89%;
    }

    .left-side{
        width: 100%;
    }

    .right-side{
    width: fit-content !important;
 
    }
    
}


@media screen and (max-width: 768px) {

    .intro-text{
        padding-right: 4rem !important;
    }

    .intro-heading{
        /* padding-right: 5rem !important;  */
        font-size: 20px;
    }

    .right-side{
        /*padding-left: 2.5rem !important;*/
        
    }
}


@media screen and (max-width: 420px) {

    .intro-text{
        padding-right: 4rem !important;
    }

    .intro-heading{
        /* padding-right: 5rem !important;  */
        font-size: 20px;
    }

    .right-side{
        padding-left: 1.5rem !important;
        
    }
}


/* interoduction section end  */