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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #1a3a27;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.4);
    color: #1a3a27;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-content > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    background: #66bb6a;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Courses Section */
.courses-section {
    background: white;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #66bb6a;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-card h3 {
    color: #66bb6a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.course-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.course-btn {
    background: #66bb6a;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    width: 100%;
}

.course-btn:hover {
    background: #5cb85c;
}

/* Qualifications Section */
.qualifications-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

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

.qual-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.qual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #66bb6a;
}

.qual-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Career Section */
.career-section {
    background: #f9f9f9;
}

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

.career-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #66bb6a;
}

.career-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.career-card ul {
    list-style: none;
    padding-left: 0;
}

.career-card li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #666;
}

.career-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #66bb6a;
    font-weight: bold;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
}

.stats-section h2 {
    color: #2d5a3d;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Business Section */
.business-section {
    background: white;
}

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

.business-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s;
}

.business-card:hover {
    transform: translateY(-5px);
}

.business-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #66bb6a;
}

.business-card p {
    color: #666;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a3a27 0%, #2d5a3d 100%);
    color: white;
    padding: 4rem 2rem 0;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #a8e6cf;
    font-weight: 600;
}

.footer-logo h4 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-desc {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 230, 207, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #66bb6a;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 187, 106, 0.3);
}

.footer-section p {
    margin-bottom: 0.7rem;
    opacity: 0.9;
}

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

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

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 1;
    color: #a8e6cf;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-icon {
    font-size: 0.85rem;
    min-width: 18px;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #a8e6cf;
    transform: none;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 230, 207, 0.3), transparent);
    margin: 2rem auto;
    max-width: 1400px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: #e0e0e0;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #a8e6cf;
}

.footer-bottom-links span {
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .hero {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }

    .hero-content h2 {
        font-size: 2rem;
        color: #2d5a3d;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.2);
    }

    section h2 {
        font-size: 1.8rem;
    }

    .course-grid,
    .features-grid,
    .career-grid,
    .stats-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure gradient backgrounds on mobile */
    header {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    }

    .page-header {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }

    .page-header h1 {
        color: #2d5a3d;
    }

    .stats-section {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }

    .home-cta-section {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }

    .future-goals {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }

    .office-hours-section {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }

    .feature-card {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    nav {
        padding: 0 1rem;
    }

    header {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    }

    .logo h1 {
        color: #2d5a3d;
        font-size: 1.3rem;
    }

    .logo .tagline {
        color: #2d5a3d;
        font-size: 0.8rem;
    }

    .hero {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        color: #2d5a3d;
        padding: 3rem 1rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
        color: #2d5a3d;
    }

    .hero-content > p {
        font-size: 1rem;
        color: #2d5a3d;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.2);
        color: #2d5a3d;
    }

    .cta-button {
        background: #66bb6a;
        color: white;
    }

    section {
        padding: 3rem 1rem;
    }

    .page-header {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
        padding: 3rem 1rem;
    }

    .page-header h1 {
        color: #2d5a3d;
        font-size: 1.8rem;
    }

    .page-header p {
        color: #2d5a3d;
    }

    .popup-header {
        background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    }

    .popup-header h2 {
        color: #2d5a3d;
    }

    .popup-header p {
        color: #3d6b4d;
    }
}

/* ===== NEW PAGES STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Home Page Specific */
.about-home {
    background: white;
}

.quick-links-section {
    background: #f9f9f9;
}

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

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.quick-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    color: #66bb6a;
    margin-bottom: 0.8rem;
}

.quick-link-card p {
    color: #666;
}

.testimonials-section {
    background: white;
}

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

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #66bb6a;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-card h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.testimonial-card .role {
    color: #66bb6a;
    font-weight: 500;
}

/* Courses Page */
.course-topics {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.course-topics li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.course-topics li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #66bb6a;
}

.qual-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.qual-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.qual-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #66bb6a;
    font-weight: bold;
}

.popular-courses {
    background: #f9f9f9;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.popular-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #66bb6a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.popular-card h3 {
    color: #333;
    margin-bottom: 0.8rem;
}

.popular-card .category {
    color: #66bb6a;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.popular-card .duration,
.popular-card .students {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Features Page */
.experience-section {
    background: #f9f9f9;
}

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

.experience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.exp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    color: #66bb6a;
    margin-bottom: 1rem;
}

.experience-card p {
    color: #666;
}

.tech-features {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.tech-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tech-card p {
    color: #666;
    font-size: 0.95rem;
}

.business-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.business-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.business-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #66bb6a;
    font-weight: bold;
}

/* Career Page */
.action-btn {
    background: #66bb6a;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.3s;
}

.action-btn:hover {
    background: #5cb85c;
}

.job-search-section {
    background: white;
}

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

.job-feature-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.job-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.job-feature-card h3 {
    color: #66bb6a;
    margin-bottom: 1rem;
}

.job-feature-card p {
    color: #666;
}

.career-paths-section {
    background: #f9f9f9;
}

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

.path-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.path-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.path-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.path-stats span {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.path-card p {
    color: #666;
    margin-bottom: 1rem;
}

.skills-needed h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.skill-tag {
    display: inline-block;
    background: #66bb6a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.success-stories {
    background: white;
}

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

.story-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 2rem;
    border-radius: 12px;
}

.story-img {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.story-name {
    color: #66bb6a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-card > p {
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats span {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

/* Impact Page */
.impact-header {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.regional-impact {
    background: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.region-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.region-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.region-stats {
    margin-bottom: 1rem;
}

.region-stats p {
    color: #66bb6a;
    margin-bottom: 0.5rem;
}

.top-countries {
    color: #666;
    font-size: 0.9rem;
}

.impact-metrics {
    background: #f9f9f9;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.metric-card h3 {
    color: #66bb6a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: #666;
}

.recognition-section {
    background: white;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recognition-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.recognition-card h3 {
    color: #66bb6a;
    margin-bottom: 1rem;
}

.recognition-card p {
    color: #666;
}

.impact-stories {
    background: #f9f9f9;
}

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

.impact-story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.story-location {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.impact-story-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.impact-story-card p {
    color: #666;
    margin-bottom: 1rem;
}

.story-impact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-impact span {
    background: #66bb6a;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.future-goals {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
}

.future-goals h2 {
    color: #2d5a3d;
}

.future-goals .section-subtitle {
    color: #3d6b4d;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.goal-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.goal-card p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .quick-links-grid,
    .testimonials-grid,
    .popular-grid,
    .experience-grid,
    .tech-grid,
    .job-features-grid,
    .paths-grid,
    .stories-grid,
    .regions-grid,
    .metrics-grid,
    .recognition-grid,
    .impact-stories-grid,
    .goals-grid,
    .contact-info-grid,
    .faq-grid,
    .hours-grid,
    .popular-home-grid,
    .steps-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== HOME PAGE ADDITIONAL SECTIONS ===== */

/* Popular Categories Home */
.popular-categories-home {
    background: #f9f9f9;
}

.popular-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.popular-home-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.popular-home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #66bb6a;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.popular-home-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.course-count {
    color: #66bb6a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.popular-home-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-block;
    color: #66bb6a;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
}

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

/* How It Works */
.how-it-works {
    background: white;
}

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

.step-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #66bb6a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Highlight */
.features-highlight {
    background: #f9f9f9;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #66bb6a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Home CTA Section */
.home-cta-section {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
    text-align: center;
    padding: 5rem 2rem;
}

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

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #3d6b4d;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary {
    background: #66bb6a;
    color: white;
}

.cta-primary:hover {
    background: #5cb85c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: white;
    color: #66bb6a;
    border: 2px solid #66bb6a;
}

.cta-secondary:hover {
    background: #66bb6a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: #2d5a3d;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== POPUP CONTACT FORM STYLES ===== */

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.popup-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #666;
    z-index: 10;
}

.popup-close:hover {
    background: #66bb6a;
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.popup-header h2 {
    color: #2d5a3d;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.popup-header p {
    color: #3d6b4d;
    font-size: 1rem;
}

.popup-form {
    padding: 2rem;
}

.popup-form-group {
    margin-bottom: 1.2rem;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.popup-form-group input:focus,
.popup-form-group select:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: #66bb6a;
}

.popup-form-group textarea {
    resize: vertical;
}

.popup-submit-btn {
    width: 100%;
    background: #66bb6a;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-bottom: 1rem;
}

.popup-submit-btn:hover {
    background: #5cb85c;
    transform: translateY(-2px);
}

.popup-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Popup Responsive */
@media (max-width: 576px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }

    .popup-header {
        padding: 2rem 1.5rem;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .popup-form {
        padding: 1.5rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Info Section */
.contact-info-section {
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: #66bb6a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #66bb6a;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form & Map Section */
.contact-form-map-section {
    background: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper,
.map-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2,
.map-wrapper h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-subtitle,
.map-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66bb6a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #66bb6a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background: #5cb85c;
    transform: translateY(-2px);
}

/* Map */
.map-container {
    margin-bottom: 1.5rem;
}

.map-info {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #66bb6a;
}

.map-info p {
    color: #666;
    margin-bottom: 0.8rem;
}

.map-info p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.contact-faq-section {
    background: white;
}

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

.faq-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #66bb6a;
}

.faq-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-card p {
    color: #666;
    line-height: 1.6;
}

/* Office Hours */
.office-hours-section {
    background: linear-gradient(135deg, #a8e6cf 0%, #c8f2d4 100%);
    color: #2d5a3d;
}

.office-hours-section h2 {
    color: #2d5a3d;
}

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

.hours-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hours-card h3 {
    color: #66bb6a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hours-card .time {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.hours-card .status {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
