

/* New Class for Main Section */
.business-section {
    width: 85%;
    margin: auto;
    padding: 50px 0;


}

/* Top Row: Heading & Text in Two Columns */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.heading {
    width: 50%;
}

.about-us {
    color: #555b6e;
    font-size: 18px;
    font-weight: bold;
}

.heading h1 {
    font-size: 44px;
    font-weight: bold;
    margin: 10px 0;

}

.text-content {
    margin-top: 30px;
    width: 37%;
    font-size: 16px;
    color: black;
    line-height: 1.8;


}

.get-started {
    background-color: #555b6e;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;

}

.get-started:hover {
    background-color:#555b6ecc;
}

/* Bottom Row: Image & Mission/Vision */
.bottom-row {
    display: flex;
    gap: 20px;

}

/* Image Box */
.image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 60%;
    height: 425px;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
}

.overclasss {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 95%;
    color: white;
    padding: 15px;
    background-color: #00000084;
    border-radius: 10px;

}

.overclasss h3 {
    margin: 0;
    font-size: 16px;
}

.overclasss p {
    font-size: 13px;
}

/* Mission and Vision Column */
.info-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Mission and Vision Boxes */
.info-box {
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;

}

.mission {
    background-color: #bee3db;

}

.vision {
    background-color: #89b0ae;
    color: white;

}

/* Responsive Design */
@media (max-width: 768px) {
    .top-row {
        flex-direction: column;
        text-align: center;
    }
    .heading,
    .text-content {
        width: 100%;
    }

    .bottom-row {
        flex-direction: column;
    }
    .image-box,
    .info-column {
        width: 100%;
    }
}



#knowmore{
    color: red;
    text-decoration: none;
}