@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #f8f9fa !important;
}

h1, h2, h3, h4, h5, h6, .slider_btn_text, a, p, span, div {
    font-family: 'Inter', sans-serif;
}

/* Glassmorphism Navbar */
.header_area {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease;
}

/* Modern Premium Hero Banner */
.modern-premium-hero .banner_area {
    background: linear-gradient(135deg, #1A4D8F, #0d3a6e) !important;
    background-image: linear-gradient(135deg, #1A4D8F, #0d3a6e) !important; /* Force override inline styles */
    position: relative;
    overflow: hidden;
}

.modern-premium-hero .banner_text h3,
.modern-premium-hero .banner_text p {
    color: #ffffff !important;
}

/* Gold Accent CTA Buttons */
.modern-premium-hero .single_slider .slider_btn_text,
.modern-premium-hero .single_slider a {
    background: #C9A84C !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.2);
}

.modern-premium-hero .single_slider .slider_btn_text:hover,
.modern-premium-hero .single_slider a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(201, 168, 76, 0.4) !important;
    background: #b5953e !important;
    color: #ffffff !important;
}

/* Sub-section card enhancements */
.course_item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
