.hero {
    height: 80vh;
    background: linear-gradient(135deg, #dee3e9, #0d0519);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2rem;
    color: white;
    font-weight: 300;
    margin-top: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 400;
}

.hero .buttons a {
    margin: 10px;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.3);
}

/* Animation for smooth fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.school-card, .testimonial {
    transition: transform 0.3s ease-in-out;
    text-align: center;
    border-radius: 15px;
    background: white;
    margin-bottom: 20px;
}

.school-card:hover, .testimonial:hover {
    transform: scale(1.05);
}

.contact {
    background: linear-gradient(to right, #007bff, #0b0613);
}
