﻿/* About Us Header Section */
.aboutpg-header-section {
    background-image: url('/images/home/feature-bg-1024x403.jpg'); /* Correct relative path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; /* Ensure no tiling */
    padding: 50px 20px; /* Adjust padding for spacing */
    color: #fff;
    text-align: center;
    height: 30vh;
}


.aboutpg-header-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    Dark teal overlay z-index: 1;
}

.aboutpg-header-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

    .aboutpg-header-content h1 {
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0;
    }

    .aboutpg-header-content p {
        margin-top: 10px;
        font-size: 1rem;
    }

.aboutpg-breadcrumb-link {
    color: white;
    text-decoration: none;
}

    .aboutpg-breadcrumb-link:hover {
        text-decoration: underline;
    }

.aboutpg-breadcrumb-divider {
    margin: 0 5px;
    font-weight: bold;
}

.aboutpg-breadcrumb-current {
    color: #ddd;
}

.scholarship-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.scholarship-card {
    border: 2px solid #0056b3;
    border-radius: 10px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    overflow: hidden;
    background: #f9f9f9;
}

.scholarship-header {
    background-color: #0056b3;
    color: white;
    padding: 15px 20px;
}

    .scholarship-header h3 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: bold;
    }

.scholarship-body {
    padding: 20px;
    line-height: 1.8;
}

    .scholarship-body p {
        margin: 12px 0;
        font-size: 1.1rem;
    }

.apply-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

    .apply-btn:hover {
        background-color: #218838;
    }