/* Reset and Base Styles */
:root {
    --header-height: 70px;
    --header-height-mobile: 60px;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    height: 100%;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #cdd4ea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #be5cff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #be5cff 0%, #ffffff 100%);
    border-radius: 1px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

/* Mobile-first responsive fixes */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    color: #0f0f0f;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(190, 92, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #be5cff;
    border: 2px solid #be5cff;
}

.btn-secondary:hover {
    background: #be5cff;
    color: #0f0f0f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #be5cff;
    border: 2px solid #be5cff;
}

.btn-outline:hover {
    background: #be5cff;
    color: #0f0f0f;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(190, 92, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(190, 92, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.highlight {
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cdd4ea;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #be5cff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #cdd4ea;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(190, 92, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #be5cff;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Courses Section */
.featured-courses {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.course-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    color: #0f0f0f;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f0f;
    margin-bottom: 1.5rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.course-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.course-duration,
.course-level {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.course-duration {
    color: #be5cff;
}

.course-level {
    color: #666;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0f0f;
    margin: 0 auto 1.5rem;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #cdd4ea;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Page Content Styles */
.page-content {
    padding: 8rem 0 4rem;
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.content-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-section {
    padding: 0 0 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-left {}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}

.contact-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f0f0f;
}

.contact-card-text {
    color: #555;
}

.contact-right {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f0f0f;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #e1e5ee;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #be5cff;
    box-shadow: 0 0 0 4px rgba(190, 92, 255, 0.12);
}

.contact-form .btn {
    align-self: flex-start;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: #0f0f0f;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #cdd4ea;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #be5cff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cdd4ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cdd4ea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #cdd4ea;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #cdd4ea;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* About Page */
.about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f0f0f;
    margin-bottom: 0.75rem;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.about-stat {
    background: #f8f9fa;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.about-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #be5cff;
    line-height: 1;
}

.about-stat-label {
    color: #666;
}

.about-features {
    padding: 2rem 0 3rem;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-text {
    color: #555;
}

.about-values {
    padding: 2rem 0 3rem;
}

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

.value-card {
    background: #f8f9fa;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.value-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.value-text { color: #555; }

.about-leadership {
    padding: 2rem 0 3rem;
}

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

.leader-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
}

.leader-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    color: #0f0f0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.leader-name { font-weight: 700; }
.leader-role { color: #777; margin-bottom: 0.25rem; }
.leader-bio { color: #555; }

@media (max-width: 991px) {
    .about-intro-grid { grid-template-columns: 1fr; }
}

/* Responsive Design */
/* Courses Listing */
.courses-listing {
    padding: 0 0 4rem;
}

.courses-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.course-item {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.course-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.course-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #be5cff 0%, #ffffff 100%);
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}

.course-item-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #be5cff;
    background: #f7f2ff;
    padding: 0.15rem 0.5rem;
    border-radius: 0.4rem;
    margin-bottom: 0.25rem;
}

.course-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
}

.course-item-desc {
    color: #555;
    margin: 0.75rem 0 1rem;
}

.course-item-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.detail-pill {
    background: #f0f0f0;
    color: #555;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.course-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Blog Listing */
.blogs-listing {
    padding: 0 0 4rem;
}

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

.blog-item {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog-item-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.blog-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: #be5cff;
    background: #f7f2ff;
    padding: 0.15rem 0.5rem;
    border-radius: 0.4rem;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
}

.blog-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.blog-item-excerpt {
    color: #555;
    margin-bottom: 0.75rem;
}

.blog-read-more {
    color: #be5cff;
    text-decoration: none;
    font-weight: 600;
}

.blog-read-more:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .header-content {
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Page spacing */
    .page-content { padding: 7rem 0 3rem; }
    .section-title { font-size: 2.1rem; }

    /* About */
    .about-intro-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .leaders-grid { grid-template-columns: repeat(2, 1fr); }

    /* Courses list */
    .courses-list { gap: 1rem; }
    .course-item-title { font-size: 1.15rem; }
    .course-item-desc { font-size: 0.98rem; }
    .course-item-actions .btn { width: 100%; }

    /* Blogs */
    .blogs-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-item-title { font-size: 1.1rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    /* Ensure mobile menu toggle is visible */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide Get Started button on mobile */
    .header-cta .btn {
        display: none;
    }

    /* Hide desktop nav */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f0f0f;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: flex-start;
    }
    
    .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);
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile-specific fixes */
    .page-content {
        padding: 7rem 0 2rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    /* About page mobile */
    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-intro-grid {
        gap: 1.5rem;
        margin: 1.5rem 0 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .about-stat {
        padding: 0.75rem 1rem;
    }

    .about-stat-number {
        font-size: 1.5rem;
    }

    /* Courses mobile */
    .courses-list {
        gap: 0.75rem;
    }

    .course-item {
        padding: 1rem;
    }

    .course-item-header {
        gap: 0.75rem;
    }

    .course-item-icon {
        width: 40px;
        height: 40px;
    }

    .course-item-title {
        font-size: 1.1rem;
    }

    .course-item-desc {
        font-size: 0.9rem;
    }

    .course-item-details {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .detail-pill {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .course-item-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    /* Blogs mobile */
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .blog-item {
        padding: 1rem;
    }

    .blog-item-title {
        font-size: 1.1rem;
    }

    .blog-item-excerpt {
        font-size: 0.9rem;
    }

    /* Contact mobile */
    .contact-grid {
        gap: 1.5rem;
    }

    .contact-cards {
        gap: 0.75rem;
    }

    .contact-card {
        padding: 0.75rem 1rem;
    }

    .contact-card-icon {
        width: 36px;
        height: 36px;
    }

    .contact-card-title {
        font-size: 0.95rem;
    }

    .contact-right {
        padding: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }

    .contact-form .btn {
        width: 100%;
    }

    /* Features and values mobile */
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-card,
    .value-card {
        padding: 1rem;
    }

    .feature-title,
    .value-title {
        font-size: 1rem;
    }

    .feature-text,
    .value-text {
        font-size: 0.9rem;
    }

    /* Leadership mobile */
    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .leader-card {
        padding: 1rem;
    }

    .leader-avatar {
        width: 56px;
        height: 56px;
        font-size: 0.9rem;
    }

    .leader-name {
        font-size: 1.1rem;
    }

    .leader-role {
        font-size: 0.9rem;
    }

    .leader-bio {
        font-size: 0.9rem;
    }

    /* New sections mobile styles */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .path-timeline::before {
        left: 20px;
    }

    .path-step {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .path-step:nth-child(even) .step-content,
    .path-step:nth-child(odd) .step-content {
        grid-column: 2;
        text-align: left;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .methodology-card {
        padding: 1.5rem;
    }

    .partnerships-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .outcome-card {
        padding: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .topic-card {
        padding: 1.5rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .authors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .author-card {
        padding: 1.5rem;
    }

    .faq-list {
        margin: 2rem auto 0;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-card {
        padding: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .page-content {
        padding: 6.5rem 0 1.5rem;
    }

    .page-header {
        margin-bottom: 1.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
    
    .course-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Extra small mobile adjustments */
    .about-title {
        font-size: 1.6rem;
    }

    .course-item,
    .blog-item,
    .contact-card,
    .feature-card,
    .value-card,
    .leader-card {
        padding: 0.75rem;
    }

    .contact-form {
        gap: 0.75rem;
    }
}

/* === New Content Sections === */

/* Success Metrics Section */
.success-metrics {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-1);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.75rem;
}

.metric-description {
    color: #666;
    font-size: 0.95rem;
}

/* Learning Path Section */
.learning-path {
    padding: 4rem 0;
}

.path-timeline {
    margin-top: 3rem;
    position: relative;
}

.path-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-1) 0%, var(--brand-2) 100%);
    transform: translateX(-50%);
}

.path-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.path-step:nth-child(even) .step-content {
    grid-column: 1;
    text-align: right;
}

.path-step:nth-child(odd) .step-content {
    grid-column: 3;
    text-align: left;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin-bottom: 0.75rem;
}

.step-duration {
    display: inline-block;
    background: var(--brand-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #666;
    font-size: 0.9rem;
}

/* Training Methodology */
.training-methodology {
    padding: 4rem 0;
}

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

.methodology-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-3px);
}

.methodology-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.methodology-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.methodology-text {
    color: #666;
    line-height: 1.6;
}

/* Industry Partnerships */
.industry-partnerships {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnerships-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.partnerships-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.partnerships-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnerships-text ul {
    list-style: none;
    padding: 0;
}

.partnerships-text li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.partnerships-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-1);
    font-weight: 600;
}

.partnerships-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partnership-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.partnership-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-1);
    margin-bottom: 0.5rem;
}

.partnership-stat .stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
    color: white;
}

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

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cdd4ea;
}

/* Course Comparison */
.course-comparison {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
}

.comparison-header {
    background: var(--brand-1);
    color: white;
    font-weight: 600;
}

.comparison-header > div,
.comparison-row > div {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.comparison-feature {
    font-weight: 600;
    color: #0f0f0f;
}

.comparison-devops,
.comparison-flutter {
    text-align: center;
    color: #666;
}

/* Learning Outcomes */
.learning-outcomes {
    padding: 4rem 0;
}

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

.outcome-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.outcome-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
}

.outcome-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.outcome-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-1);
    font-weight: 600;
}

/* Enrollment Process */
.enrollment-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.75rem;
}

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

/* Courses CTA */
.courses-cta {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
    color: white;
}

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

.courses-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cdd4ea;
}

/* Featured Topics */
.featured-topics {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-3px);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.topic-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.75rem;
}

.topic-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.topic-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.topic-articles,
.topic-readers {
    color: var(--brand-1);
    font-weight: 500;
}

/* Newsletter Subscription */
.newsletter-subscription {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
    color: white;
    text-align: center;
}

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

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cdd4ea;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #cdd4ea;
}

/* Author Spotlight */
.author-spotlight {
    padding: 4rem 0;
}

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

.author-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.author-card:hover {
    transform: translateY(-3px);
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.author-role {
    color: var(--brand-1);
    font-weight: 500;
    margin-bottom: 1rem;
}

.author-bio {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.author-articles,
.author-followers {
    color: var(--brand-1);
    font-weight: 500;
}

/* Blog CTA */
.blog-cta {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
    color: white;
}

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

.blog-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cdd4ea;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0;
}

.faq-icon {
    color: var(--brand-1);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Support Info */
.support-info {
    padding: 4rem 0;
}

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

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-3px);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 1rem;
}

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

.support-hours {
    background: var(--brand-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
    color: white;
}

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

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cdd4ea;
}

/* === Theme Enhancements & Animations === */
:root {
    --bg-deep-1: #0b0b13;
    --bg-deep-2: #16162a;
    --bg-deep-3: #0f1b3d;
    --brand-1: #be5cff;
    --brand-2: #7f5cff;
    --brand-3: #59d0ff;
    --glow: rgba(190, 92, 255, 0.35);
}

/* Richer gradients for header/hero/cta (overrides) */
.header {
    background: radial-gradient(1200px 600px at -10% -20%, rgba(127,92,255,0.25) 0%, transparent 60%),
                linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 50%, var(--bg-deep-3) 100%);
}

.hero, .cta-section {
    background: radial-gradient(1000px 500px at 110% 10%, rgba(89,208,255,0.18) 0%, transparent 60%),
                radial-gradient(900px 500px at 0% 100%, rgba(190,92,255,0.18) 0%, transparent 60%),
                linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 50%, var(--bg-deep-3) 100%);
}

/* Keyframes */
@keyframes fadeUp {
    from { opacity: 0; transform: translate3d(0, 20px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(190, 92, 255, 0); }
    50% { box-shadow: 0 0 24px var(--glow); }
}

/* Subtle entrance animations */
.hero-content { animation: fadeUp 600ms ease-out both; }
.section-header { animation: fadeUp 600ms ease-out both; }
.courses-grid .course-card,
.courses-list .course-item,
.blogs-grid .blog-item,
.benefits-grid .benefit-card,
.contact-cards .contact-card,
.contact-right,
.features-grid .feature-card,
.values-grid .value-card,
.leaders-grid .leader-card {
    animation: fadeUp 700ms ease-out both;
}

/* Staggered animation for lists */
.courses-grid .course-card:nth-child(2),
.courses-list .course-item:nth-child(2),
.blogs-grid .blog-item:nth-child(2),
.benefits-grid .benefit-card:nth-child(2),
.contact-cards .contact-card:nth-child(2),
.features-grid .feature-card:nth-child(2),
.values-grid .value-card:nth-child(2),
.leaders-grid .leader-card:nth-child(2) { animation-delay: 120ms; }

.courses-grid .course-card:nth-child(3),
.blogs-grid .blog-item:nth-child(3),
.benefits-grid .benefit-card:nth-child(3),
.features-grid .feature-card:nth-child(3),
.values-grid .value-card:nth-child(3) { animation-delay: 180ms; }

/* Floating visual for hero graphic */
.hero-image-placeholder { animation: float 6s ease-in-out infinite; }

/* Buttons: sheen + stronger hover */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-1) 0%, #ffffff 100%);
    background-size: 200% 200%;
}

.btn-primary:hover { background-position: 100% 0; }

.btn:hover { box-shadow: 0 12px 28px rgba(190, 92, 255, 0.25); }

/* Card glow on hover */
.course-card:hover,
.blog-item:hover,
.contact-right:hover,
.contact-card:hover,
.feature-card:hover,
.value-card:hover,
.leader-card:hover {
    border-color: rgba(190, 92, 255, 0.35);
    box-shadow: 0 16px 40px rgba(190, 92, 255, 0.18);
}

/* Accent gradient bars on list items */
.courses-list .course-item::before,
.blogs-grid .blog-item::before {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-3), var(--brand-1));
    opacity: 0.85;
}

/* Optional subtle pulsing for CTAs */
.cta-section .btn-primary { animation: glowPulse 4s ease-in-out infinite; }
