/*
 Theme Name:   Astra Child
 Theme URI:    https://example.com/astra-child/
 Description:  Astra Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astra-child
*/

/* Custom styles for EduSankalp page */
.edu-sankalp-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.edu-sankalp-hero .hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Optional: Add a dark overlay for better text readability if needed */
.edu-sankalp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.edu-sankalp-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.edu-sankalp-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

@media (min-width: 768px) {
    .edu-sankalp-title {
        font-size: 2.5rem;
    }
}

.edu-sankalp-reasons {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.edu-sankalp-reasons-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.reasons-list {
    display: grid;
    gap: 1.5rem;
}

.reason-item {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
}

.reason-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.reason-content h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.reason-content p {
    color: #555;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .reasons-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}