/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color palette */
:root {
    --main-black: #181818;
    --main-white: #fff;
    --main-green: #bfff00; /* lime */
    --main-grey: #222;
    --main-light-grey: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--main-white);
    background-color: var(--main-black);
}

/* Navigation */
.navbar {
    background-color: var(--main-black);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.10);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-green);
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--main-green);
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--main-white);
    padding: 0.7rem 1.2rem;
    margin: 0 0.3rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: var(--main-green);
    color: var(--main-black);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--main-black);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        display: block;
        padding: 12px 15px;
        margin: 0;
        border-radius: 8px;
        color: var(--main-white);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: var(--main-green);
        color: var(--main-black);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(24,24,24,0.7);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide:first-child {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(24,24,24,0.7), rgba(24,24,24,0.7));
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: var(--main-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--main-white);
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--main-green);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--main-white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--main-green);
    color: var(--main-black);
    box-shadow: 0 10px 20px rgba(9, 132, 227, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--main-green);
    border: 2px solid var(--main-green);
}

.btn-light {
    background-color: var(--main-white);
    color: var(--main-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: var(--main-black);
    color: var(--main-green);
    border: 2px solid var(--main-green);
}

/* Stats Section */
.stats-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
    padding: 24px 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
    gap: 32px;
    color: var(--main-black);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-green);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    color: var(--main-grey);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e6ed;
}

@media (max-width: 600px) {
    .stats-compact {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #636e72;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--main-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    color: var(--main-black);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--main-green);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--main-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--main-grey);
    font-size: 1.1rem;
}

/* About Preview Section */
.about-preview {
    padding: 6rem 5%;
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--main-black);
    color: var(--main-white);
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--main-green);
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--main-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--main-green);
}

.footer-section p {
    color: var(--main-white);
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--main-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-compact {
        flex-direction: column;
        gap: 12px;
        padding: 16px 1rem;
        margin: 20px 1rem 0;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .section-header p {
        padding: 0 1rem;
    }

    .about-content,
    .cta-content {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

/* Featured Courses Section */
.featured-courses {
    padding: 4rem 5% 2rem 5%;
    background: #fff;
}

.featured-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-course-card {
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-course-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(9,132,227,0.13);
}

.featured-course-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.featured-course-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-course-content h3 {
    font-size: 1.3rem;
    color: var(--main-green);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.featured-course-content p {
    color: #636e72;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.featured-course-button {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: var(--main-green);
    color: var(--main-black);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 4px 16px rgba(9,132,227,0.08);
}

.featured-course-button:hover {
    background: var(--main-black);
    color: var(--main-green);
}

@media (max-width: 768px) {
    .featured-courses {
        padding: 2rem 2% 1rem 2%;
    }
    .featured-course-image {
        height: 150px;
    }
    .featured-course-content {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

/* Contact Page Modern Styles */
.contact-hero {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 5% 2rem 5%;
}
.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-main {
    background: #fff;
    padding: 3rem 5%;
}
.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
}
.contact-form-section, .contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-form-section {
    border-right: 1px solid #e0e0e0;
    padding-right: 2rem;
}
.contact-info-section {
    padding-left: 2rem;
}
.contact-form-section h2, .contact-info-section h2 {
    font-size: 1.5rem;
    color: var(--main-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 500;
    color: #2d3436;
}
.form-group input, .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--main-white);
    color: var(--main-black);
    transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border: 1.5px solid var(--main-green);
    outline: none;
}
.contact-btn {
    background: var(--main-green);
    color: var(--main-black);
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 16px rgba(9,132,227,0.08);
}
.contact-btn:hover {
    background: var(--main-black);
    color: var(--main-green);
}
.contact-info {
    margin-bottom: 2rem;
    color: #2d3436;
    font-size: 1.08rem;
}
.contact-info a {
    color: var(--main-green);
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        padding: 1.5rem 0.5rem;
    }
    .contact-form-section, .contact-info-section {
        padding: 0;
        border: none;
    }
}

/* About Us Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    background: url('https://www.completesafetysupplies.co.uk/blog/wp-content/uploads/2022/03/green-chopping-board-salads-herbs-fruits.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}
.about-hero-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}
@media (max-width: 600px) {
    .about-hero {
        height: 30vh;
        min-height: 180px;
    }
    .about-hero-content h1 {
        font-size: 2rem;
    }
}

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    background: url('https://media.istockphoto.com/id/677682900/photo/cooking-class.jpg?s=1024x1024&w=is&k=20&c=_yGwT8TxZ4EFObyDVSwYQgrpB8-0zbIX3RJ40GJq4Vo=') center bottom/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}
.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}
.gallery-hero-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}
@media (max-width: 600px) {
    .gallery-hero {
        height: 30vh;
        min-height: 180px;
    }
    .gallery-hero-content h1 {
        font-size: 2rem;
    }
}

.about-hero-content.interactive {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: 100%;
    top: 0;
    transform: none;
    backdrop-filter: none;
}
.about-hero-content.interactive h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.about-hero-content.interactive p {
    color: #f1f1f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.about-hero-content .btn {
    margin-bottom: 1.5rem;
}
.scroll-down, .scroll-down span {
    display: none !important;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    flex-wrap: wrap;
}
.about-info {
    flex: 1 1 350px;
}
.about-image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
}
.about-counters {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}
.counter {
    text-align: center;
}
.counter-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--main-green);
    display: block;
}
.counter-label {
    font-size: 1rem;
    color: #636e72;
}
.about-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.about-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(9,132,227,0.13);
}
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    .about-image img {
        max-width: 100%;
    }
    .about-counters {
        flex-direction: column;
        gap: 1rem;
    }
}

.about-grid.compact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin: 2rem 0 0 0;
    padding: 0;
}

.about-card.compact {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    min-width: 0;
    max-width: 400px;
    flex: 1 1 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-card.compact img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.about-card.compact h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #222;
}

.about-card.compact p {
    margin: 0;
    font-size: 0.98rem;
    color: #555;
}

.about-card.compact:hover {
    box-shadow: 0 8px 24px rgba(9,132,227,0.10);
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 900px) {
    .about-grid.compact {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .about-card.compact {
        flex-direction: row;
        max-width: 100%;
    }
}

/* Redesigned About Section for Mobile */
.about-mobile-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    padding: 2.5rem 2rem;
}
.about-mobile-image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-mobile-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
}
.about-mobile-info {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 1rem;
}
.about-mobile-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}
.about-mobile-info p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.about-mobile-counters {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
}
.counter-card {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    padding: 1.2rem 1rem;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}
.counter-card .counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-green);
    margin-bottom: 0.3rem;
}
.counter-card .counter-label {
    font-size: 1rem;
    color: #636e72;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 900px) {
    .about-mobile-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0.5rem;
    }
    .about-mobile-image img {
        max-width: 100%;
    }
    .about-mobile-info {
        align-items: center;
        padding: 0;
    }
    .about-mobile-info h1 {
        text-align: center;
    }
    .about-mobile-info p {
        text-align: center;
    }
    .about-mobile-counters {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
    .counter-card {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .about-mobile-card {
        padding: 1rem 0.2rem;
    }
    .counter-card .counter-number {
        font-size: 1.4rem;
    }
    .counter-card .counter-label {
        font-size: 0.95rem;
    }
}

.animated-banner {
    width: 100%;
    background: linear-gradient(90deg, var(--main-green) 0%, #b6f7c1 100%);
    color: var(--main-black);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0 auto 1.5rem auto;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(9,132,227,0.08);
    letter-spacing: 0.5px;
    max-width: 700px;
    position: relative;
    top: -30px;
    z-index: 10;
    animation: fadeInBanner 1.2s;
}
@keyframes fadeInBanner {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
#animated-text {
    border-right: 2px solid var(--main-black);
    padding-right: 4px;
    animation: blink-caret 0.8s step-end infinite;
}
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--main-black); }
}
@media (max-width: 600px) {
    .animated-banner {
        font-size: 1rem;
        padding: 1rem 0.5rem;
        border-radius: 12px;
        max-width: 98vw;
    }
}

/* Centered Mission/Vision Section Styles */
.mission-vision-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.centered-card {
    background: var(--main-white);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
}
.centered-card .mission-image {
    width: 100%;
    max-width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
}
.centered-card h3 {
    font-size: 1.5rem;
    color: var(--main-green);
    margin-bottom: 1rem;
    font-weight: 700;
}
.centered-card p {
    color: var(--main-grey);
    font-size: 1.08rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .mission-vision-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .centered-card {
        max-width: 98vw;
        min-width: 0;
    }
}

/* Replace any remaining blue hex codes or references with lime */
/* Example: .stat-number, .logo, .btn-primary, .feature-card h3, etc. already use var(--main-green) */

/* Remove any direct blue color codes */
/* If any blue remains, override it with var(--main-green) */

.feature-icon, .course-details i, .contact-info a, .fa-bars {
    color: var(--main-green) !important;
}

/* If any background or border uses a blue color, set to var(--main-green) or black/white as appropriate */ 