﻿

.about-section {
    padding: 40px;
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Quick Links */
.quick-links {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 20px;
}

    .quick-links h3 {
        font-size: 20px;
        color: #0b2d5c;
        margin-bottom: 20px;
        position: relative;
    }

        .quick-links h3:after {
            content: '';
            width: 50px;
            height: 4px;
            background: #c11c3b;
            position: absolute;
            left: 0;
            bottom: -8px;
        }

.tab-link {
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    background: #efefef;
    color: #222;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #ddd;
    transition: 0.3s;
    border-radius: 8px;
}

    .tab-link:hover {
        background: #2d89e5;
        color: #fff;
    }

    .tab-link.active {
        background: #2d89e5;
        color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,.15);
    }

/* Content */
.content-box h2 {
    margin-bottom: 25px;
}

    .content-box h2 span {
        background: #b3183d;
        color: #fff;
        padding: 5px 15px;
    }

.content-wrap {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.content-text {
    flex: 1;
}

    .content-text p {
        font-size: 18px;
        line-height: 1.9;
        color: #333;
    }

.content-image {
    width: 320px;
}

    .content-image img {
        width: 100%;
        border-radius: 10px;
    }

.banner-img1 {
    animation: 1s fadeInUpBig;
    border-radius: 20px;
    margin-top: 85px;
}
.tab-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .tab-link i {
        width: 20px;
        text-align: center;
        font-size: 16px;
    }
@media(max-width:768px) {

    .content-wrap {
        flex-direction: column;
    }

    .content-image {
        width: 100%;
    }

    .banner-img {
        animation: 1s fadeInUpBig;
        border-radius: 20px;
        margin-top: 10px;
    }
}
