﻿.content-overlay {
/*    position: absolute;
*/    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
}


/* Header/Banner Section */
.banner {
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('path-to-background-image.jpg');
    background-size: cover;
    padding: 40px 0;
    position: relative;
}

.about-heading {
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.college-name {
    color: #002D62;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: #002D62;
    padding: 20px 0;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-icon {
    background-color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

    .stat-icon i {
        font-size: 40px;
        color: #002D62;
    }

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Overview Section */
.overview-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.overview-title {
    font-size: 30px;
    color: #002D62;
    font-weight: 900;
    margin-bottom: 15px;
}

.overview-content {
    text-align: justify;
    font-size: 15px;
    color: black;
    font-weight: 500;
}

/* Make it responsive */
@media (max-width: 576px) {
    .about-text {
        font-size: 14px;
    }

    .overview-title {
        font-size: 24px;
    }

    .overview-content {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .content-overlay {
        top: 50%;
        width: 95%;
        padding: 0;
        position: absolute;
    }

    .about-heading {
        font-size: 18px;
    }

    .college-name {
        font-size: 16px;
    }

    .about-text {
        font-size: 12px;
    }

    .subtitle-button {
        background-color: #2B5592;
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 18px;
        font-weight: 600;
        display: inline-block;
        min-width: 250px;
    }

    /* Card styles */
    .info-card {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        height: 100%;
        position: relative;
        border-left: 5px solid #2B5592;
        margin-bottom: 25px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

        .info-card h3 {
            color: #002855;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .info-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

            .info-card ul li {
                position: relative;
                padding-left: 15px;
                margin-bottom: 8px;
                font-size: 14px;
            }

                .info-card ul li:before {
                    content: "•";
                    position: absolute;
                    left: 0;
                    color: #2B5592;
                    font-weight: bold;
                }

    .card-arrow {
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 40px;
        color: #2B5592;
        opacity: 0.5;
    }

    /* Two column layout for list items on medium and larger screens */
    @media (min-width: 768px) {
        .two-columns ul {
            column-count: 2;
            column-gap: 20px;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .info-card {
            padding: 15px;
        }

            .info-card h3 {
                font-size: 18px;
            }

        .card-arrow {
            font-size: 30px;
        }
    }

    @media (max-width: 767px) {
        .section-title {
            font-size: 24px;
            margin: 30px 0 15px;
        }

        .subtitle-button {
            font-size: 16px;
            min-width: 200px;
        }

        .info-card {
            margin-bottom: 15px;
        }

        .card-arrow {
            display: none;
        }
    }

    @media (max-width: 575px) {
        .section-title {
            font-size: 22px;
        }

        .subtitle-button {
            font-size: 14px;
            padding: 6px 15px;
        }

        .info-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .info-card ul li {
            font-size: 12px;
            margin-bottom: 6px;
        }
    }
}