
/*+++++++++++++++++++++++++++++++++++++++ hero styling ends ++++++++++++++++++++++++++*/
#home {
    display: grid;
    place-items: center; /* Center content horizontally and vertically */
}

.home-hero{
    position: relative; /* Required for pseudo-element positioning */
    background-image: url('/images/hero-bg.PNG');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 600px;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-hero::before {
    content: ""; /* Required for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay */
    background: linear-gradient(135deg, #ECF2FE, #D0E9ED); 
    opacity: 0.7; /* Adjust transparency of the overlay */
    z-index: -1; /* Places the overlay behind the content */
}

.home-hero-box{
    width: 80%;
    display: grid;
    place-items: center; /* Center horizontally and vertically */
    text-align: center;
    /* background-color: aqua; */
}

.home-hero-box h1{
    color: var(--main-color);
    font-family: 'Rubik', sans-serif;
    font-size: 2.875rem;
    font-weight: bold;
}

.hero-features-box{

}
.hero-features-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-feature{
    width: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    padding:  20px 10px;
    border-radius: 5px;
}
.hero-feature svg{
    max-width: 30px;
    aspect-ratio: 1/1;
}
.hero-feature span{
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 941px) {
    .home-hero-box h1{
        font-family: 'Rubik', sans-serif;
        font-size: 1.675rem;
    }
    .home-hero-box{
        width: 90%;
    }
    .hero-feature{
        width: 140px;
    }
    .hero-feature span{
        font-size: 14px;
    }

}

@media (max-width: 426px) {
    /* #home {
        min-height: 700px;
    } */
    .home-hero-box h1{
        font-size: 1.275rem;
    }
    .hero-feature{
        width: 110px;
    }
    .hero-feature span{
        font-size: 12px;
    }

}

@media (max-width: 375px) {
    .hero-features-flex{
        gap: 5px;
    }
    .hero-feature{
        width: 100px;
    }
}

@media (max-width: 362px) {
    .hero-feature{
        width: 130px;
    }
}

@media (max-width: 320px) {
    .home-hero-box{
        width: 100%;
    }
    .hero-feature{
        width: 90px;
    }
    .hero-feature span{
        font-size: 10px;
    }
}
/*+++++++++++++++++++++++++++++++++++++++ hero styling ends ++++++++++++++++++++++++++*/




/* ++++++++++++++++++++++++++++++++++++++++++ ABOUT US SECTION STYLING +++++++++++++++++++++++++++++++ */
.about-us-section{
    background-color: rgb(241,241,241);
    min-height: 500px;
    display: grid;
    place-items: center;
}

.about-us-section-container{
    width: 100%!important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;    
    width: 60%;
}

.about-us-section-left{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.about-us-section-left h4{
    font-size: 13px;
    font-weight: bold;
    padding-bottom: 5px;
    color: #378754;
    border-bottom: 2px solid #378754;
}

.about-us-section-left span{
    font-size: 12px;
}
.about-us-section-right{
    width: 50%;
}

.about-us-section-right-icon-box{
    margin: 10px 0;
    display: flex;
    gap: 10px;
}

.each-about-us-icon-box{
    width: 50%;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 8px;
}

.each-about-us-icon-box h4{
    font-size: 15px;
    font-weight: bold;
    color: var(--greyblue);
}
.each-about-us-icon-box span{
    font-size: 13px;
}

.icon-box{
    padding: 20px;
    border-radius: 5px;
    background-color: var(--green);
}
.icon-box:hover{
    background-color: var(--greyblue);
    cursor: pointer;
}
.icon-box i{
    color: white;
}


@media (max-width: 768px) {
    .each-about-us-icon-box span{
        font-size: 12px;
    }
}

@media (max-width: 728px) {
    .each-about-us-icon-box span{
        font-size: 11px;
    }
}

@media (max-width: 560px) {
    .about-us-section{
        min-height: 700px;
    }
    .about-us-section-container{
        flex-direction: column;
        gap: 20px;
    }
    .about-us-section-left,
    .about-us-section-right{
        width: 100%;
    }
    .each-about-us-icon-box h4{
        font-size: 13px;
    }
}
/* ++++++++++++++++++++++++++++++++++++++++++ ABOUT US SECTION STYLING ENDS +++++++++++++++++++++++++++++++ */


/* ++++++++++++++++++++++++++++++++++++++++++ BENEFITS SECTION STYLING ++++++++++++++++++++++++++++++++++++ */
.benefits-section{
    display: grid;
    place-items: center;
    min-height: 300px;
    margin: 10px 0;
}
.benefits-section-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefits-section-container h3{
    font-weight: bold;
}
.benefits-contain{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}
.each-benefits-box{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap:10px ;
}
.each-benefits-box span{
    font-size: 13px;
    text-transform: capitalize;
}
.each-benefits-box h4{
    font-weight: bold;
}

@media (max-width: 560px) {
    .benefits-section{
        min-height: 300px;
    }
    .benefits-contain{
        margin-top: 10px;
    }
    .each-benefits-box{
        gap: 5px;
    }
    .each-benefits-box span{
        font-size: 11px;
    }
    .each-benefits-box h4{
        font-size: 18px;
    }
}
/* ++++++++++++++++++++++++++++++++++++++++++ BENEFITS SECTION STYLING ENDS ++++++++++++++++++++++++++++++++++++ */



/* ++++++++++++++++++++++++++++++++++++++ detailed-about-us-section +++++++++++++++++++++++++++++++++++++ */
.detailed-about-us-section{

}

.detailed-about-us-container{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CA8E46;
}



.detailed-about-us-container h4{
    font-weight: bold;
    color: white;
    font-size: 18px;
    padding-bottom: 5px;
    border-bottom: 2px solid white;
}
.detailed-about-us-container p{
    color: white!important;
}

.detailed-about-us-container li{
    font-size: 12px;
    color: white;
    list-style: disc;
}

.detailed-about-us-left{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.detailed-about-us-right{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.detailed-about-us-image1{
    width: 50%;
    background-image: url('/images/high-angle-woman-working-laptop.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}

.detailed-about-us-text1{
    width: 50%;
    background-color: #CA8E46;
    height: 400px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.detailed-about-us-image2{
    width: 50%;
    background-image: url('/images/pexels-fauxels-3184360.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
}
.detailed-about-us-image2-second{
    display: none;
}
.detailed-about-us-text2{
    width: 50%;
    background-color: #CA8E46;
    height: 400px;
    padding: 30px  20px;
    display: flex;
    flex-direction: column;
    align-items: start;
}


@media (max-width: 834px) {
    .detailed-about-us-image1{
        width: 40%;
    }
    .detailed-about-us-text1{
        width: 60%;
    }
    .detailed-about-us-image2{
        width: 40%;
    }
    .detailed-about-us-text2{
        width: 60%;
    }
    .detailed-about-us-container p,    
    .detailed-about-us-container li{
        font-size: 11px;
    }
}

@media (max-width: 700px) {
    .detailed-about-us-container{
        flex-wrap: wrap;
    }

    .detailed-about-us-left{
        width: 100%;
    }
    .detailed-about-us-right{
        width: 100%;
    }
    
    .detailed-about-us-image1{
        width: 30%;
        height: 300px;
    }
    .detailed-about-us-text1{
        width: 70%;
        height: 300px;
        display: flex;
        justify-content: center;
    }
    .detailed-about-us-image2{
        width: 30%;
        height: 300px;
    }
    .detailed-about-us-image2-first{
        display: none;
    }
    .detailed-about-us-image2-second{
        display: block;
    }
    .detailed-about-us-text2{
        width: 70%;
        height: 300px;
        display: flex;
        justify-content: center;
    }
}


@media (max-width: 420px) {
    .detailed-about-us-image1{
        width: 30%;
        min-height: 400px;
    }
    .detailed-about-us-text1{
        width: 70%;
        min-height: 400px;
    }
    .detailed-about-us-image2{
        width: 30%;
        min-height: 400px;
        background-position: left;
    }
    .detailed-about-us-text2{
        width: 70%;
        min-height: 400px;
    }

}
/* ++++++++++++++++++++++++++++++++++++++ detailed-about-us-section ends +++++++++++++++++++++++++++++++++++++ */


/* ++++++++++++++++++++++++++++++++++ stacked-services-container styling +++++++++++++++++++++++++++++++++++++++++++++++ */
.stacked-services-container{
    width: 100%!important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}
.stacked-services-left{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.stacked-services-left li{
    list-style: georgian;
    font-size: 12px;
}
.stacked-services-right{
    width: 50%;
    min-height: 400px;
    background-image: url('/images/loan-specialist2.PNG');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



@media (max-width: 987px) {
    .stacked-services-left{
        width: 50%;
    }
}
@media (max-width: 750px) {
    .stacked-services-left p{
        font-size: 11px;
    }
}
@media (max-width: 550px) {
    .stacked-services-container{
        flex-direction: column;
        padding: 10px;
        margin-top: 30px;
    }
    .stacked-services-left{
        width: 100%;
    }
    .stacked-services-right{
        width: 100%;
        min-height: 200px;
    }
}
/* ++++++++++++++++++++++++++++++++++ stacked-services-container styling ends +++++++++++++++++++++++++++++++++++++++++++++++ */



/*/*+++++++++++++++++++++++++++++++++++++++ service-section component styling ends /*+++++++++++++++++++++++++++++++++++++++*/

.service-section {
    background: radial-gradient(circle at center, rgba(100, 162, 255, 0.3), rgba(149, 176, 216, 0.5),  transparent);
    padding: 40px 0;
}

.service-boxes{
    display: grid;
    place-items: center;
    text-align: center;
}

.service-boxes-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.each-service-box{
    background-color: white;
    min-height: 220px;
    width: 220px;
    border-radius: 3px;
    padding: 10px;
    padding-bottom: 20px;
    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 7px;
}
.each-service-box svg{
    margin-top: -40px;
    max-width: 180px;
    aspect-ratio:1/1;
    height:100px;
    width: 90c;
}

.each-service-box h4{
    font-size: 15px;
    font-weight: bold;
    color: var(--main-color);
    
}

.each-service-box a{
    font-size: 12px;
    color: blue;

}

@media (max-width: 425px) {
    .each-service-box{
        width: 250px;
        margin: 10px 0;
    }

}
/*/*+++++++++++++++++++++++++++++++++++++++  service-section component styling ends /*+++++++++++++++++++++++++++++++++++++++*/
