/* School Intro Section */
.school-intro {
    background: #f8f9fa;
    padding: 4rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.intro-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.school-building {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.principal-img {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.management-img {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #78232d 0%, #cfab6d 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 35, 45, 0.3);
}