:root {
    --primary-blue: #4f46e5; --gradient-start: #2563eb; --gradient-end: #3b82f6; --dark-text: #1f2937; --medium-text: #6b7280;
    --footer-bg-dark: #2d3748; --footer-icon-bg: #4a5568; --light-text: #a0aec0;
    --background-color: #ffffff; --card-bg-light: #f9fafb; --border-color: #e5e7eb; --font-family: 'Poppins', sans-serif;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--dark-text); background-color: var(--background-color); overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-weight: 600; line-height: 1.3; } p { color: var(--medium-text); line-height: 1.6; } a { text-decoration: none; }
section { padding: 5rem 0; }
.section-tagline { text-align: center; color: var(--primary-blue); font-weight: 500; }
.animate-on-scroll { opacity: 0; transition: opacity 0.8s ease-out, transform 0.6s ease-out; }
.animate-on-scroll:not([data-animation="pop-in"]) { transform: translateY(30px); }
.animate-on-scroll[data-animation="pop-in"] { transform: scale(0.95); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.btn { display: inline-block; padding: 10px 24px; border-radius: 8px; font-weight: 500; transition: all 0.2s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background-color: var(--primary-blue); color: #fff; }
.btn-primary:hover { background-color: #4338ca; transform: translateY(-2px); }
.btn-secondary { color: var(--primary-blue); border: 1px solid #c7d2fe; }
.navbar { background-color: rgba(255,255,255,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 1rem 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 100px; }
.nav-links a { margin: 0 1.2rem; color: var(--dark-text); font-weight: 500; font-size: 0.95rem; }
.nav-links a.active { color: var(--gradient-end); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.hero-section { padding: 5rem 0; }
.hero-section h1.gradient-text { font-size: 3.2rem; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; }
.hero-section p { max-width: 800px; font-size: 1rem; margin-bottom: 2rem; }
.apply-now-btn { padding: 12px 32px; font-size: 1rem; font-weight: 600; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.about-image img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }
.accordion { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; }
.accordion-header { display: flex; align-items: center; gap: 1rem; padding: 1rem; cursor: pointer; }
.accordion-body { padding: 0 1rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.active .accordion-body { max-height: 100px; padding-bottom: 1rem; }
.gateway-section, .testimonials-section, .departments-section, .apply-page-section, .about-section { background-color: var(--card-bg-light); }
.hero-section { background-color: #fff; }
.gateway-section h2, .testimonials-section h2, .departments-section h2 { text-align: center; margin-bottom: 3rem; }
.gateway-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.gateway-card { background-color: #fff; padding: 2rem 1.5rem; border-radius: 12px; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; }
.gateway-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.gateway-card img { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.testimonial-card { background-color: #fff; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow); text-align: left; display: flex; flex-direction: column; }
.testimonial-card p { flex-grow: 1; }
.testimonial-card .far.fa-comment-dots { font-size: 2rem; color: #a5b4fc; margin-bottom: 1rem; }
.testimonial-card .rating { color: #f59e0b; margin: 1.5rem 0; }
.student { display: flex; align-items: center; gap: 0.75rem; }
.student img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cta-section { text-align: center; }
.cta-image-wrapper { position: relative; width: 150px; height: 150px; margin: 0 auto 2rem; }
.cta-image-wrapper img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.phone-icon { position: absolute; bottom: 5px; right: 5px; width: 40px; height: 40px; background-color: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); }
.departments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.department-card { background-color: #fff; padding: 2.5rem 2rem; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: left; }
.department-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.department-card h3 { font-size: 1.25rem; color: var(--primary-blue); margin-bottom: 1rem; }
.department-card p { margin-bottom: 0; }
.site-footer { background-color: var(--card-bg-light); padding: 5rem 0 0; }
.footer-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.footer-card { background-color: #fff; padding: 2rem; border-radius: 12px; position: relative; box-shadow: var(--shadow); }
.footer-card-icon { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background-color: var(--light-blue-bg); border-radius: 50%; display: grid; place-items: center; color: var(--primary-blue); }
.work-hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; }
.address-details .contact-item { display: flex; align-items: start; gap: 1rem; margin-bottom: 1rem; }
.address-details .contact-item i { color: var(--primary-blue); margin-top: 5px; }
.footer-bottom { text-align: center; padding: 4rem 0 2rem; background-color: var(--footer-bg-dark); color: var(--light-text); margin-top: 5rem; }
.footer-logo { max-width: 150px; margin: 0 auto 2rem; /* The bad filter is removed, this is the fix! */ }
.footer-socials { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; }
.footer-socials a { width: 44px; height: 44px; background-color: var(--footer-icon-bg); color: var(--light-text); border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; transition: background-color 0.2s ease, color 0.2s ease; }
.footer-socials a:hover { background-color: var(--primary-blue); color: #fff; }
.copyright { color: var(--light-text); font-size: 0.9rem; margin: 0; }
.apply-page-section { padding: 5rem 0; }
.form-container { max-width: 700px; margin: 0 auto; background-color: #fff; padding: 3rem; border-radius: 12px; box-shadow: var(--shadow-lg); text-align: center; }
.form-container h1 { color: var(--primary-blue); }
.form-container p { margin-bottom: 2.5rem; }
.apply-form { text-align: left; }
.apply-form .form-group { margin-bottom: 1.5rem; }
.apply-form label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.apply-form input { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; }
@media(max-width: 992px) {
    .nav-links, .navbar .btn-secondary { display: none; } .hamburger { display: block; }
    .about-grid, .footer-contact-grid { grid-template-columns: 1fr; } .about-image { margin-top: 2rem; }
    .nav-links.mobile-active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background-color: #fff; box-shadow: var(--shadow); }
    .nav-links.mobile-active a { padding: 1rem; text-align: center; border-top: 1px solid var(--border-color); }
}
@media(max-width: 768px) { .testimonials-grid, .departments-grid { grid-template-columns: 1fr; } }