:root {
    --white: #FFFFFF;
    --gold: #F7B32B;
    --gold-dark: #E09D1E;
    --dark-purple: #2D1B4E;
    --purple: #8A4FFF;
    --purple-light: #A77CFF;
    --gray-100: #F8F7FA;
    --gray-600: #4A4468;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-md: 0 20px 25px -12px rgba(0,0,0,0.08);
    --radius-card: 1.25rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #1E1A2F;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.125rem;
}

.gold-underline {
    width: 70px;
    height: 4px;
    background: var(--gold);
    margin: 0.75rem auto 1.5rem;
    border-radius: 4px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--dark-purple);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.btn-primary i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(247,179,43,0.25);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.96);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    color: var(--gold);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-purple);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-btn {
    background: var(--dark-purple);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
}

.nav-btn:hover {
    background: var(--purple);
    color: white !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-purple);
}

/* Hero */
.hero {
    background: linear-gradient(145deg, #FCF9F2 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    color: var(--purple);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    background: rgba(138,79,255,0.1);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.hero-gold {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 1.5rem 0 2rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    flex: 0.8;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1;
    border: 1px solid rgba(247,179,43,0.2);
}

.stat-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-purple);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f0ebf9;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.card-icon {
    background: rgba(138,79,255,0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--purple);
}

.course-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-purple);
}

.course-card h4 {
    font-size: 1rem;
    color: var(--gold);
    margin: 0.25rem 0 1rem;
    font-weight: 600;
}

.course-card p {
    color: var(--gray-600);
    margin: 1rem 0 1.5rem;
}

.card-link {
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    color: var(--gold);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-100);
    padding: 1rem 1.5rem;
    border-radius: 80px;
    transition: all 0.2s;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.feature-item span {
    font-weight: 600;
    color: var(--dark-purple);
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
}

/* Steps */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: white;
    padding: 1.8rem 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--gold);
}

.step-number {
    background: var(--dark-purple);
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 60px;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step h4 {
    font-weight: 800;
    color: var(--dark-purple);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 1.8rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ebe6f5;
}

.testimonial-card i.fa-quote-left {
    color: var(--gold);
    font-size: 1.6rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: normal;
    font-size: 1rem;
    color: #2d2a3e;
    margin: 1rem 0 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 60px;
    object-fit: cover;
}

.author-info h5 {
    font-weight: 800;
    color: var(--dark-purple);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(125deg, var(--dark-purple) 0%, var(--purple) 100%);
    border-radius: 3rem;
    text-align: center;
    padding: 3.5rem 2rem;
    margin: 2rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.btn-cta {
    background: var(--gold);
    color: var(--dark-purple);
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
}

/* Footer */
footer {
    background: #11101c;
    color: #ccc;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid #2a253b;
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-grid {
        flex-direction: column;
    }
}

/* Navigation - Dark Background (matching footer) */
.navbar {
    background: #11101c;  /* Same as footer */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gold);  /* Gold text on dark background */
}

.logo span {
    color: white;
    background: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: white;  /* White links for contrast */
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);  /* Gold on hover */
}

.nav-btn {
    background: var(--gold);
    color: #11101c !important;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 700;
}

.nav-btn:hover {
    background: var(--gold-dark);
    color: #11101c !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Responsive: mobile menu background matches header */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        background: #11101c;  /* Same dark background */
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
}
/* Responsive: mobile menu background also golden */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        background: var(--gold);  /* Match golden background */
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
}
/* Courses Grid - Centered Cards with Golden Button */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f0ebf9;
    text-align: center;           /* Center all text */
    display: flex;
    flex-direction: column;
    height: 100%;                 /* Equal height cards */
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.card-icon {
    background: rgba(138,79,255,0.1);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;   /* Center icon */
}

.card-icon i {
    font-size: 2rem;
    color: var(--purple);
}

.course-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-purple);
    margin-bottom: 0.25rem;
}

.course-card h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-card p {
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
    flex-grow: 1;                 /* Push button to bottom */
}

/* Golden Button inside cards */
.btn-course {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--dark-purple);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;               /* Center button */
    border: none;
    cursor: pointer;
}

.btn-course i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-course:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(247,179,43,0.3);
}

.btn-course:hover i {
    transform: translateX(4px);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-image {
    flex: 1;
    min-width: 280px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

