/* About Section Styling */
.about-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    /* background-image: url('/img/banner.jpg');  */
    background-size: cover;
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents repeating the background image */
    font-family: "Karla", sans-serif; 
    font-size: 14px; 
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add a white overlay to make the text readable */
    /* background-color: rgba(255, 255, 255, 0.8);  */
    background-color: rgba(255, 255, 255, 0.8); 
    z-index: -1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.about-images {
    position: relative;
    width: 50%;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.about-img1 {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-img2 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 50%;
}

.about-text  {
    font-size: 28px;
    color: #3e8e41;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    /* color: #3e8e41; */
    line-height: 1.6;
    margin-bottom: 0px;
    
}

.btn-learn-more {
    display: inline-block;
    padding: 10px 30px;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #2f6d32;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-images, .about-text {
        width: 100%;
        text-align: center;
    }

    .about-img2 {
        top: 10px;
        left: 10px;
    }
}

