* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #30875c;
    --secondary-color: #2a7451;
    --accent-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Accessibility and SEO Helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content link for keyboard navigation */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 6px;
}

/* Focus indicators for better accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove focus outline from nav links */
.nav-menu a:focus {
    outline: none;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid rgba(48, 135, 92, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border: 2px solid rgba(48, 135, 92, 0.15);
    border-radius: 3px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.apply-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--primary-color);
    letter-spacing: 0.3px;
}

.apply-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(48, 135, 92, 0.25);
}

/* Hero Section */
.hero {
    background: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 135, 92, 0.85), rgba(42, 116, 81, 0.75));
    clip-path: polygon(0 0, 95% 0, 85% 100%, 0 100%);
    z-index: 2;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    text-align: left;
    animation: slideInLeft 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content > * {
    max-width: 600px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid currentColor;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Button fix for "Get Started Today" */
.btn-primary.get-started {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(48, 135, 92, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary.get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary.get-started:hover::before {
    left: 100%;
}

.btn-primary.get-started:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(48, 135, 92, 0.4);
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: var(--accent-color);
}

/* Home Banner Section */
.home-banner {
    padding: 0;
    background: var(--white);
}

.banner-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: url('img/home-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Page Header for About Page */
.page-header {
    background: url('img/header.png');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 135, 92, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(48, 135, 92, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(48, 135, 92, 0.2);
}

.program-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(48, 135, 92, 0.3);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(48, 135, 92, 0.4);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.program-card .learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.program-card .learn-more:hover {
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

/* About Page Specific Styles */
.about-hero {
    background: url('img/about2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 135, 92, 0.8), rgba(42, 116, 81, 0.6));
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(48, 135, 92, 0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(48, 135, 92, 0.15);
    border-color: rgba(48, 135, 92, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Circular Progress Graphs */
.circular-progress {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
}

.progress-circle {
    transition: stroke-dashoffset 2s ease-in-out;
}

/* Progress Bars */
.progress-bar-container {
    width: 100%;
    height: 30px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(48, 135, 92, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 2s ease-in-out;
    box-shadow: 0 2px 8px rgba(48, 135, 92, 0.3);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Accreditation Section */
.accreditation {
    padding: 4rem 0;
    background-color: var(--accent-color);
    background: url('img/bg.png'), var(--accent-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.accreditation-item {
    text-align: center;
    padding: 1rem;
}

.accreditation-item img {
    height: 60px;
    width: auto;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.accreditation-item:hover img {
    filter: grayscale(100%);
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.testimonials-left {
    color: var(--white);
}

.testimonials-left h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-left p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonials-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    display: block;
}

.testimonial-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    width: 100%;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.testimonial-slide {
    width: 25%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}

.author-position {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Clients Section */
.clients {
    padding: 4rem 0;
    background: var(--accent-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.client-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 3px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    border: 2px solid rgba(48, 135, 92, 0.1);
    width: 100%;
    max-width: 200px;
}

.client-item:hover {
    transform: translateY(-5px);
    border-color: rgba(48, 135, 92, 0.3);
}

.client-item img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.client-item:hover img {
    filter: grayscale(100%);
}

.client-name {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

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

/* Footer */
.footer {
    background: #222;
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(48, 135, 92, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .nav-menu a.active::after {
        bottom: 0.5rem;
    }
    
    .apply-btn {
        display: block;
        margin: 1rem 2rem;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border: none;
        background: var(--accent-color);
        padding: 0;
        box-shadow: none;
    }

    .dropdown-menu a {
        padding: 0.75rem 3rem;
        font-size: 1rem;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    /* Hero Section Mobile */
    .hero::before {
        width: 100%;
        background: linear-gradient(rgba(48, 135, 92, 0.8), rgba(48, 135, 92, 0.8));
        clip-path: none;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .hero-content > * {
        max-width: none;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Programs Grid Mobile */
    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* About Content Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Stats Mobile */
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* Banner Mobile */
    .banner-content h2 {
        font-size: 1.5rem;
    }

    .banner-content p {
        font-size: 0.95rem;
    }
    
    .banner-content .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Testimonials Mobile */
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-left {
        text-align: center;
    }

    .testimonials-left h2 {
        font-size: 1.75rem;
    }

    .testimonials-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 2.5rem;
        top: 0.5rem;
        left: 1rem;
    }

    /* Clients Grid Mobile */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-item {
        max-width: 120px;
        padding: 0.75rem;
    }

    .client-item img {
        height: 40px;
    }

    /* Page Header Mobile */
    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header-content {
        padding: 2rem 1.5rem;
    }

    /* About Hero Mobile */
    .about-hero h2 {
        font-size: 1.75rem;
    }

    .about-hero-content {
        padding: 0 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    /* Buttons Mobile */
    .btn-primary,
    .btn-secondary,
    .get-started {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Program Cards Mobile */
    .program-card {
        padding: 1.5rem;
    }
    
    .program-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
    
    /* Accreditations Mobile */
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .accreditation-item img {
        max-height: 60px;
    }
    
    /* Container padding mobile */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero::before {
        width: 70%;
        clip-path: polygon(0 0, 90% 0, 80% 100%, 0 100%);
    }

    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2.5rem;
    }
    
    .hero-content > * {
        max-width: 550px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium Enhancements */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Accreditation hover effect */
.accreditation-item {
    transition: all 0.3s ease;
}

.accreditation-item:hover {
    transform: scale(1.05);
}

.accreditation-item img {
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.accreditation-item:hover img {
    filter: grayscale(0) drop-shadow(0 5px 15px rgba(48, 135, 92, 0.2));
}

/* Banner enhancement */
.home-banner {
    position: relative;
    overflow: hidden;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Learn more link enhancement */
.learn-more {
    position: relative;
    transition: all 0.3s ease;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}