﻿
.about-section {
    min-height: 100vh;
    padding-top: 200px;
    padding-bottom: 60px;
    background: rgba(192, 192, 192, 0.8);
}
/* Sidebar Styling */
.list-group {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    background: rgba(192, 192, 192, 0.2);
}

.list-group-item {
    border: none;
    font-size: 1.2rem;
    background: transparent;
    transition: background-color 0.3s ease;
}

    .list-group-item:hover {
        color: #e74c3c;
        background-color: rgba(0, 0, 0, 0.03);
    }

    .list-group-item.active {
        color: #e74c3c;
        font-weight: 700;
        background-color: transparent;
        border-left: 3px solid #e74c3c;
        font-size: 1.2rem;
    }

/* Headings & Paragraphs */
.about-section h2 {
    font-size: 2rem;
}

.about-section p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Images */
.about-section img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
/* Tablets (≤ 768px) */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .list-group-item {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .about-section h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .about-section p {
        font-size: 1.05rem;
    }

    .tab-content {
        margin-top: 1.5rem;
    }
}

/* Mobiles (≤ 576px) */
@media (max-width: 576px) {
    .about-section {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .list-group {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        box-shadow: none;
        padding: 0;
        gap: 0.5rem;
    }

    .list-group-item {
        flex: 1 0 48%;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.5rem;
        border-left: none !important;
        border-bottom: 2px solid transparent;
        background-color: #fff;
        border-radius: 8px;
    }

        .list-group-item.active {
            border-bottom: 2px solid #e74c3c;
            background-color: #fdfdfd;
        }

    .about-section h2 {
        font-size: 1.25rem;
        text-align: center;
    }

    .about-section p {
        font-size: 0.95rem;
    }

    .about-section img {
        max-height: 300px;
    }
}