@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body { 
    font-family: 'Poppins', sans-serif; 
    scroll-behavior: smooth; 
}

/* Hero background simulating the "Learning for Life" banner */
.hero-bg {
    background: linear-gradient(rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.6)), url('https://demo.sdmesociety.in/sdm_school_website/assets/images/ss.png') center/cover no-repeat;
}

/* Interactive card styling for curriculum section */
.card-hover { 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.card-hover:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}
