/* Base typography */
body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero */
.hero-bg {
    background-image: linear-gradient(rgba(15,23,42,0.55), rgba(15,23,42,0.55)), url('https://images.unsplash.com/photo-1502877338535-766e1452684a?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3&s=1');
    background-size: cover;
    background-position: center;
}

/* Hamburger animations */
.hamburger-icon span {
    transition: transform 0.25s ease, opacity 0.2s ease;
    display: block;
    height: 2px;
    background: #374151; /* gray-700 */
}
.hamburger-icon.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-icon.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.12);
}

/* Testimonials */
.testimonial {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 30px rgba(2,6,23,0.06);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(90deg, #ffedd5, #fff7ed);
    border-radius: 10px;
    padding: 1.25rem;
}

/* Footer */
footer {
    background-color: #0f172a; /* deep navy */
    color: #cbd5e1;
}
footer a { color: #fbbf24; }

/* Utility tweaks */
.rounded-hero-img { border-radius: 12px; box-shadow: 0 12px 30px rgba(2,6,23,0.12); }

@media (max-width: 768px) {
    .hero-bg { background-position: top; }
}
/*.hero-section {
    background-image: linear-gradient(rgba(15,23,42,0.6), rgba(15,23,42,0.6)), url('assets/image/Education/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    background-blend-mode: overlay;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(2,6,23,0.12);
    width: 100%;
    height: 100%;
}*/

