.section-1 {
    /* background-image: url('../images/about-page-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    background-color: #0F5D9DC4;
    opacity: 0.6;
}

.abput-page-heading {
    font-size: 50px;
    font-family: "Poppins";
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px;

}

/* section2 */
.section-about {
    display: flex;
    align-items: center;
    padding: 50px;

    gap: 40px;
    flex-wrap: wrap;
    background-color: #ffffff;
}

.box-wrapper {
    position: relative;
    width: 400px;
    height: 450px;
}

.border-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #0071c2;
    border-bottom-left-radius: 80px;
    box-sizing: border-box;
    transform: translate(-20px, -20px);
}

.image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d9d9d9;
    border-bottom-left-radius: 80px;
    z-index: 2;
    background-image: url('../images/Shekar-and-co-Ceo.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid #0056a0;
}

.text-content {
    flex: 2;
    min-width: 300px;
}

.text-content h3 {
    color: #0056a0;
    font-size: 20px;
    margin-bottom: 10px;
}

.text-content h2 {
    color: #0056a0;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
}

.text-content p {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
    text-align: justify;
}

@media (max-width: 768px) {
    .section-about {
        flex-direction: column;
        padding: 30px 20px;
    }

    .image-box {
        height: 300px;
    }
}


.section-container {
    background-color: #cfeefe;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 40px;
    align-items: flex-start;
}

.left-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.left-content h1 {
    font-size: 32px;
    color: #003e80;
    margin-bottom: 10px;
}

.left-content h2 {
    font-size: 26px;
    color: #3b82f6;
    margin-bottom: 20px;
    font-weight: 500;
}

.left-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.left-content a.button {
    display: inline-block;
    background-color: #0056a0;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.left-content a.button:hover {
    background-color: #004080;
}
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    flex: 1 1 500px;
    max-width: 600px;
}

.info-card,
.info-image-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.info-card {
    padding: 30px 20px;
    text-align: center;
}

.info-card img {
    max-width: 80px;
    margin: 0 auto 15px;
}

.info-card h3 {
    font-size: 20px;
    color: #003e80;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.info-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        align-items: center;
    }

    .right-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .right-cards {
        grid-template-columns: 1fr;
    }
}

/* HD (1366x768) Responsiveness */
@media screen and (min-width: 1360px) and (max-width: 1370px) and (min-height: 760px) and (max-height: 770px) {
    .section-about {
        padding: 40px 30px;
        gap: 30px;
    }

    .box-wrapper {
        width: 350px;
        height: 400px;
    }

    .text-content h2 {
        font-size: 24px;
    }

    .text-content h3 {
        font-size: 18px;
    }

    .text-content p {
        font-size: 15px;
    }
}

/* Full HD (1920x1080) Responsiveness */
@media screen and (min-width: 1920px) {
    .section-about {
        padding: 60px 50px;
        gap: 50px;
    }

    .box-wrapper {
        width: 450px;
        height: 500px;
    }

    .text-content h2 {
        font-size: 32px;
    }

    .text-content h3 {
        font-size: 24px;
    }

    .text-content p {
        font-size: 18px;
    }
}

/* Mac Devices (1440x900) Responsiveness */
@media screen and (min-width: 1440px) and (max-width: 1440px) and (min-height: 900px) and (max-height: 900px) {
    .section-about {
        padding: 45px 35px;
        gap: 35px;
    }

    .box-wrapper {
        width: 380px;
        height: 420px;
    }

    .text-content h2 {
        font-size: 26px;
    }

    .text-content h3 {
        font-size: 20px;
    }

    .text-content p {
        font-size: 16px;
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .section-about {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .box-wrapper {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }

    .text-content {
        text-align: center;
    }

    .text-content h2 {
        font-size: 22px;
    }

    .text-content h3 {
        font-size: 18px;
    }

    .text-content p {
        font-size: 14px;
    }
}

/* Section Container Responsiveness */
@media screen and (min-width: 1920px) {
    .section-container {
        padding: 80px 60px;
        gap: 60px;
    }

    .left-content h1 {
        font-size: 40px;
    }

    .left-content h2 {
        font-size: 32px;
    }

    .left-content p {
        font-size: 18px;
    }

    .card {
        padding: 40px 30px;
    }

    .card h3 {
        font-size: 24px;
    }

    .card p {
        font-size: 16px;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1440px) {
    .section-container {
        padding: 70px 50px;
        gap: 50px;
    }

    .left-content h1 {
        font-size: 36px;
    }

    .left-content h2 {
        font-size: 28px;
    }

    .left-content p {
        font-size: 16px;
    }

    .card {
        padding: 35px 25px;
    }

    .card h3 {
        font-size: 22px;
    }

    .card p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .section-container {
        padding: 40px 20px;
        gap: 30px;
    }

    .left-content h1 {
        font-size: 28px;
    }

    .left-content h2 {
        font-size: 22px;
    }

    .left-content p {
        font-size: 14px;
    }

    .card {
        padding: 25px 15px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }
}