/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Ensure pages with fixed navbar reserve space to avoid jump */
.enroll-page { padding-top: 80px; }

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2563eb;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Focus indicators for keyboard navigation */
.keyboard-nav *:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure navbar is always white on all pages */
nav.navbar,
.navbar {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #2563eb;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    opacity: 1 !important;
}

.nav-link.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 120px 0 80px;
    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(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: drift 20s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.hero-left .hero-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-left .feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 9999px;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-left .feature-item i {
    font-size: 1.25rem;
    color: #3b82f6;
    width: 24px;
    text-align: center;
}

.hero-left .feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #374151 !important;
}

.btn-full-width {
    width: auto !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-shadow: none;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: none;
    opacity: 1;
}

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

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

.feature-item i {
    color: #2563eb;
    font-size: 1.25rem;
}

.feature-item div {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-weight: 600;
    color: #1e293b;
}

.feature-item span {
    font-size: 0.875rem;
    color: #64748b;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Hero Right Side */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Animated background blobs for hero */
.hero .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.hero .blob1 { width: 420px; height: 420px; background: #60a5fa; top: -60px; left: -80px; animation: blobMove1 18s ease-in-out infinite; }
.hero .blob2 { width: 380px; height: 380px; background: #a78bfa; bottom: -80px; right: -60px; animation: blobMove2 22s ease-in-out infinite; }
.hero .blob3 { width: 300px; height: 300px; background: #f0abfc; top: 40%; left: 55%; animation: blobMove3 20s ease-in-out infinite; }

@keyframes blobMove1 { 0%{transform: translate(0,0) scale(1);} 33%{transform: translate(40px,20px) scale(1.05);} 66%{transform: translate(-20px,30px) scale(0.98);} 100%{transform: translate(0,0) scale(1);} }
@keyframes blobMove2 { 0%{transform: translate(0,0) scale(1);} 33%{transform: translate(-30px,-10px) scale(1.06);} 66%{transform: translate(10px,-25px) scale(0.97);} 100%{transform: translate(0,0) scale(1);} }
@keyframes blobMove3 { 0%{transform: translate(0,0) scale(1);} 33%{transform: translate(20px,-20px) scale(1.04);} 66%{transform: translate(-20px,10px) scale(0.99);} 100%{transform: translate(0,0) scale(1);} }

.visual-header {
    text-align: center;
    margin-bottom: 2rem;
}

.visual-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.visual-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.success-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: white;
    font-size: 1.25rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.hero-visual-card .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.hero-visual-card .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.career-paths {
    text-align: center;
}

.career-paths h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.path-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.path-tag {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.path-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Target Audience Section */
.target-audience {
    padding: 20px 0;
    background: white;
}

/* Learning Roadmap Section */
.learning-roadmap {
    padding: 60px 0;
    background: white;
}

.roadmap-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.roadmap-header h3 {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.roadmap-steps::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
    z-index: 0;
}

.roadmap-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    background: white;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.roadmap-step:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
    transform: translateY(-2px);
}

.step-number {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    border: 3px solid white;
}

.step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.step-check {
    background: #22c55e;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.step-description p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.roadmap-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.duration-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4.5rem;
}

.duration-icon {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.duration-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.duration-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.profiles-section,
.projects-section {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profiles-section h4,
.projects-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.profiles-list,
.projects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profiles-list li {
    padding: 0.375rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.profiles-list li::before {
    content: "•";
    color: #22c55e;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

.projects-list li {
    padding: 0.5rem 0;
    color: #64748b;
    line-height: 1.4;
    position: relative;
    padding-left: 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.projects-list li::before {
    content: "•";
    color: #22c55e;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1rem;
}

.roadmap-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.roadmap-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-btn.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.roadmap-btn.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.roadmap-btn.btn-primary {
    background: #2563eb;
    color: white;
    text-align: center;
}

.roadmap-btn.btn-primary:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .roadmap-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .roadmap-actions {
        flex-direction: column;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .duration-value {
        font-size: 1.25rem;
    }
}

.audience-content {
    margin-top: 2rem;
}

.audience-categories {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.category-section {
    text-align: center;
}

.category-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.degree-tags, .industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.degree-tag, .industry-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #c7d2fe;
    transition: all 0.3s ease;
}

.degree-tag:hover, .industry-tag:hover {
    background: #3730a3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 48, 163, 0.3);
}

.category-note {
    color: #64748b;
    font-style: italic;
    font-size: 0.9rem;
}

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

.image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.professional-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-avatar i {
    font-size: 2.5rem;
    color: white;
}

.no-coding-banner {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.no-coding-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-visual {
    margin: 2rem 0;
}

.laptop-mockup {
    display: inline-block;
    background: #1e293b;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screen {
    background: #0f172a;
    border-radius: 8px;
    padding: 2rem 3rem;
    border: 2px solid #334155;
}

.highlight-text {
    color: #fbbf24;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fbbf24, 0 0 10px #fbbf24, 0 0 15px #fbbf24;
    }
    to {
        text-shadow: 0 0 10px #fbbf24, 0 0 20px #fbbf24, 0 0 30px #fbbf24;
    }
}

.btn-banner {
    background: #fbbf24;
    color: #1e293b;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-banner:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
}

/* Career Tracks Section */
.career-tracks {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.track-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.track-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.track-header i {
    color: #2563eb;
    font-size: 2rem;
}

.track-badge {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.track-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0.5rem 0;
}

.track-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.skill-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.track-outcome {
    color: #059669;
    font-weight: 500;
    margin-top: 1rem;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: white;
}

.skills-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.skill-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.skill-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.skill-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.skill-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 500;
}

.skill-features i {
    color: #059669;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.course-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.course-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

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

.course-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.course-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.course-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.course-header i {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.course-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.course-subtitle {
    color: #64748b;
    font-size: 0.875rem;
}

.course-price {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #64748b;
}

.course-features i {
    color: #059669;
    font-size: 0.875rem;
}

.btn-course {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-course:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Instructors Section */
.instructors-section {
    padding: 100px 0;
    background: white;
}

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

.instructor-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.instructor-image {
    margin-bottom: 1.5rem;
}

.avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar i {
    color: white;
    font-size: 2.5rem;
}

.instructor-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.instructor-experience {
    color: #059669;
    font-weight: 500;
    margin-bottom: 1rem;
}

.instructor-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.instructor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Framework Section */
.framework-section {
    padding: 100px 0;
    background: white;
}

.framework-infographic {
    margin: 3rem 0;
    position: relative;
}

.framework-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.framework-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: #2563eb;
    z-index: 0;
    border-radius: 2px;
}

.framework-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.framework-step::before {
    content: attr(data-step);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.framework-step:nth-child(even)::before {
    color: #1e40af;
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    border: 8px solid #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    position: relative;
    z-index: 5;
}

.framework-step:nth-child(even) .step-circle {
    border-color: #1e40af;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
}

.step-icon {
    font-size: 2rem;
    color: #2563eb;
}

.framework-step:nth-child(even) .step-icon {
    color: #1e40af;
}

.step-card-info {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-card-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-card-info p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.framework-step::after {
    content: '';
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    z-index: 3;
}

.framework-step:nth-child(even)::after {
    background: #1e40af;
}

@media (max-width: 768px) {
    .framework-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .framework-timeline::before {
        display: none;
    }
    
    .framework-step::after {
        display: none;
    }
    
    .framework-step::before {
        top: -40px;
        font-size: 2rem;
    }
    
    .step-circle {
        width: 100px;
        height: 100px;
        border-width: 6px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-card-info {
        height: 160px;
        padding: 1.25rem;
    }
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

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

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.cta-section .cta-buttons .btn-primary {
    background: white;
    color: #2563eb;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.cta-section .cta-buttons .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.cta-section .cta-buttons .btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

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

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

.contact-item i {
    color: #2563eb;
    width: 20px;
}

.footer-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-top: 0;
}

.footer-section .contact-info * {
    -webkit-text-decoration-line: none !important;
    text-decoration-line: none !important;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    border: none;
    outline: none;
}

.footer-section .contact-item:hover {
    text-decoration: none;
    border: none;
}

.footer-section .contact-item i {
    color: #2563eb;
    width: 20px;
    font-size: 1rem;
}

.footer-section .contact-item span {
    color: #cbd5e1 !important;
    font-size: 0.95rem;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.footer-section .contact-item span:hover,
.footer-section .contact-item span:focus,
.footer-section .contact-item span:active {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Additional rules to prevent any lines under contact info on all pages */
.footer .contact-info a,
.footer .contact-info span,
.footer .contact-item a,
.footer .contact-item span,
.contact-info *,
.contact-item * {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
}

/* Prevent browser auto-styling of phone numbers and emails */
.footer .contact-info *[href^="tel:"],
.footer .contact-info *[href^="mailto:"],
.footer .contact-item *[href^="tel:"],
.footer .contact-item *[href^="mailto:"] {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Completely prevent any styling on contact info with no-link class */
.no-link,
span.no-link,
.contact-item .no-link,
.contact-info .no-link {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
    -webkit-text-decoration-color: transparent !important;
    -webkit-text-decoration-style: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    text-decoration-style: none !important;
    pointer-events: none;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.no-link:hover,
.no-link:focus,
.no-link:active,
.no-link:visited {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Force override any browser-generated links */
.contact-info a,
.contact-item a,
.footer a[href^="tel:"],
.footer a[href^="mailto:"] {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    pointer-events: none !important;
}

/* Additional nuclear option for persistent browser styling */
.contact-info *::before,
.contact-info *::after,
.contact-item *::before,
.contact-item *::after {
    content: none !important;
    border: none !important;
    text-decoration: none !important;
}

/* Ultimate solution: Create overlay to block any browser styling */
.contact-item {
    position: relative;
    isolation: isolate;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
    background: transparent;
}

/* Force all contact text to be plain text */
.contact-item span,
.contact-info span {
    all: unset !important;
    color: #cbd5e1 !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    line-height: inherit !important;
    display: inline !important;
}

/* Simple but effective solution for contact info styling */
.footer .contact-item span.no-link {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border-bottom: 0px solid transparent !important;
    box-shadow: none !important;
    background-image: none !important;
    background: transparent !important;
}

/* Target any browser-generated links specifically */
.footer .contact-item a,
.footer .contact-item a:link,
.footer .contact-item a:visited,
.footer .contact-item a:hover,
.footer .contact-item a:active {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    background: none !important;
}

/* Nuclear option - target everything in contact items */
.contact-item * {
    text-decoration: none !important;
    border-bottom: none !important;
    text-decoration-line: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
}

/* Override any browser user agent styles */
.contact-item span,
.contact-item span *,
.no-link,
.no-link * {
    all: revert !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    font-size: 0.95rem !important;
}

/* DIRECT BLUE LINE REMOVAL - Target all possible blue line sources */
.footer .contact-item *,
.footer .contact-info *,
.contact-item,
.contact-info {
    border-bottom: none !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    text-decoration-style: none !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
    -webkit-text-decoration-color: transparent !important;
    -webkit-text-decoration-style: none !important;
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
    background-image: none !important;
}

/* Force remove any blue color anywhere in contact section */
.footer .contact-item *,
.footer .contact-info * {
    color: #cbd5e1 !important;
}

/* Remove blue from any links browser might create */
.footer a,
.footer a:link,
.footer a:visited,
.footer a:hover,
.footer a:active,
.footer a:focus {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* FINAL SOLUTION - Maximum specificity to override browser */
.footer .footer-content .footer-section .contact-info .contact-item .no-link,
.footer .footer-content .footer-section .contact-info .contact-item span,
.footer .footer-content .footer-section .contact-info .contact-item span.no-link {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-text-decoration: none !important;
    -webkit-text-decoration-line: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
}

/* Override any possible browser link styling with maximum specificity */
.footer .footer-content .footer-section .contact-info .contact-item a,
.footer .footer-content .footer-section .contact-info .contact-item a:link,
.footer .footer-content .footer-section .contact-info .contact-item a:visited,
.footer .footer-content .footer-section .contact-info .contact-item a:hover,
.footer .footer-content .footer-section .contact-info .contact-item a:active {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    border-bottom: none !important;
    background: none !important;
}

/* Align Contact Info header with the contact details */
.footer-section h4 {
    margin-left: 0;
    padding-left: 29px; /* Match the space taken by icon (20px width + 9px gap) */
    margin-bottom: 1.5rem;
}

.footer-section .contact-info {
    margin-left: 0;
    padding-left: 0;
}

.footer-section .contact-item {
    margin-left: 0;
    padding-left: 0;
    align-items: center;
    gap: 9px; /* Consistent gap between icon and text */
}

.footer-section .contact-item i {
    color: #2563eb;
    width: 20px;
    font-size: 1rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
}

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

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

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

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1e293b;
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-content ul {
    color: #64748b;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.consultation-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-left .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-left .feature-item {
        flex: 1;
        min-width: 120px;
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .hero-left .feature-item i {
        font-size: 1rem;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual-card {
        max-width: 350px;
        padding: 2rem;
    }
    
    .success-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .path-tags {
        gap: 0.5rem;
    }
    
    .path-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid,
    .tracks-grid,
    .courses-grid,
    .instructors-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .professional-image {
        order: -1;
    }
    
    .image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .professional-avatar {
        width: 60px;
        height: 60px;
    }
    
    .professional-avatar i {
        font-size: 2rem;
    }
    
    .no-coding-banner {
        padding: 2rem;
    }
    
    .banner-content h3 {
        font-size: 1.5rem;
    }
    
    .laptop-mockup {
        padding: 0.75rem;
    }
    
    .screen {
        padding: 1.5rem 2rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .skill-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .degree-tags, .industry-tags {
        gap: 0.5rem;
    }
    
    .degree-tag, .industry-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for hero bars */
@keyframes loadingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

/* Performance optimizations */
* {
    /* Hardware acceleration for smooth animations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Optimize animations for performance */
.feature-card,
.track-card,
.course-card,
.instructor-card {
    will-change: transform;
}

.feature-card:hover,
.track-card:hover,
.course-card:hover,
.instructor-card:hover {
    will-change: auto;
}

/* Lazy loading placeholder */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .navbar,
    .modal,
    .btn-primary,
    .btn-secondary,
    .btn-course,
    .btn-banner {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }
    
    .hero-title {
        font-size: 24pt;
        margin-bottom: 12pt;
    }
    
    .section-header h2 {
        font-size: 18pt;
        margin-bottom: 12pt;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    border: 2px solid #2563eb;
}

.blog-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon {
    font-size: 3rem;
    color: #2563eb;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Coding Problems Section */
.coding-problems-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.problems-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #64748b;
}

.tab-button:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.tab-button.active {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.problem-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.problem-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty.beginner {
    background: #dcfce7;
    color: #166534;
}

.difficulty.intermediate {
    background: #fef3c7;
    color: #92400e;
}

.difficulty.advanced {
    background: #fecaca;
    color: #991b1b;
}

.problem-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.code-preview {
    background: #1e293b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
}

.code-preview code {
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.problem-actions {
    display: flex;
    gap: 1rem;
}

.btn-problem, .btn-solution {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-problem {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.btn-problem:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

.btn-solution {
    background: #f8fafc;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-solution:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.problems-cta {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problems-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.problems-cta p {
    color: #64748b;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    text-align: center;
    margin-bottom: 4rem;
}

.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.about-story p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-mission {
    margin-bottom: 4rem;
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    color: white;
    font-size: 1.5rem;
}

.mission-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #64748b;
    line-height: 1.6;
}

.about-approach {
    margin-bottom: 4rem;
}

.about-approach h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

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

.approach-item {
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    background: #f8fafc;
    border-radius: 8px;
}

.approach-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #64748b;
    line-height: 1.6;
}

.about-stats {
    margin-bottom: 4rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #64748b;
    font-weight: 500;
}

.about-team-intro {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
}

.about-team-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.about-team-intro p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-cta {
        flex-direction: column;
    }
    
    .problems-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-actions {
        flex-direction: column;
    }
    
    .mission-grid,
    .approach-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-story h3 {
        font-size: 1.5rem;
    }
    
    .about-story p {
        font-size: 1rem;
    }
    
    .code-preview {
        padding: 1rem;
        font-size: 0.75rem;
    }
    
    .problems-cta {
        padding: 2rem;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span:last-child {
    color: white;
    font-weight: 500;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation active state */
.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Explore Programs Section */
.explore-programs-section,
.programs-main-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.02);
}

.program-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.program-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.program-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-color: #2563eb;
    transform: scale(1.1);
}

.program-icon i {
    font-size: 2rem;
    color: #2563eb;
    transition: color 0.3s ease;
}

.program-card:hover .program-icon i {
    color: white;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #e2e8f0;
    font-size: 0.875rem;
}

.star-rating i.filled {
    color: #fbbf24;
}

.new-course {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.program-description p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.program-highlights h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.program-highlights ul {
    list-style: none;
    padding: 0;
}

.program-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
}

.program-highlights li i {
    color: #059669;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.program-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.detail-item i {
    color: #2563eb;
    font-size: 0.875rem;
}

.program-pricing {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0 0.25rem;
}

.period {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.btn-add-cart {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-add-cart:active {
    transform: translateY(0);
}

.programs-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.programs-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.programs-cta p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.programs-cta .cta-buttons .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.programs-cta .cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.programs-cta .cta-buttons .btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
}

.programs-cta .cta-buttons .btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

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

/* Responsive design for programs */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .program-content {
        gap: 1.5rem;
    }
    
    .program-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-item {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .programs-cta {
        padding: 2rem;
    }
    
    .programs-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .program-header h3 {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .program-highlights li {
        font-size: 0.875rem;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.comparison-section .container {
    position: relative;
    z-index: 1;
}

.comparison-table-wrapper {
    margin: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header {
    display: contents;
}

.comparison-header > div {
    padding: 2rem 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    border-bottom: 3px solid #e2e8f0;
}

.feature-column {
    background: #1e293b;
    color: white;
    border-right: 1px solid #334155;
}

.study-analytics-column {
    background: #2563eb;
    color: white;
    border-right: 1px solid #1d4ed8;
    position: relative;
}

.study-analytics-column::after {

    position: absolute;
    top: -10px;
    right: 10px;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.others-column {
    background: #64748b;
    color: white;
}

.comparison-row {
    display: contents;
}

.comparison-row > div {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.feature-cell {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
}

.feature-cell h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
}

.study-analytics-cell {
    background: #eff6ff;
    border-right: 1px solid #e2e8f0;
}

.others-cell {
    background: #f1f5f9;
}

.check-item, .cross-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.check-item i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cross-item i {
    color: #ef4444;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.check-item span, .cross-item span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #374151;
}

.comparison-row:last-child > div {
    border-bottom: none;
}

.comparison-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.comparison-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.comparison-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Responsive Design for Comparison Section */
@media (max-width: 768px) {
    .comparison-section {
        padding: 3rem 0;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: block;
        margin-bottom: 1.5rem;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .comparison-row > div {
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
        min-height: auto;
        padding: 1rem;
    }
    
    .feature-cell {
        background: #1e293b;
        color: white;
        text-align: center;
        font-weight: 700;
    }
    
    .feature-cell h4 {
        color: white;
        margin: 0;
    }
    
    .study-analytics-cell {
        background: #eff6ff;
        position: relative;
    }
    
    .study-analytics-cell::before {
        content: 'Study-Analytics';
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        background: #2563eb;
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .others-cell::before {
        content: 'Others';
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        background: #64748b;
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .others-cell {
        background: #f1f5f9;
        position: relative;
        border-bottom: none;
    }
    
    .comparison-table-wrapper {
        margin: 2rem 0;
        border-radius: 12px;
        box-shadow: none;
        background: transparent;
        border: none;
    }
    
    .study-analytics-column::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 2rem 0;
    }
    
    .check-item span, .cross-item span {
        font-size: 0.9rem;
    }
    
    .comparison-cta .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* End of Comparison Section Styles */

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Removed .contact-info::before rule that was creating the blue line */

.contact-info-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.questions-list {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.questions-list::before {
    content: '💭';
    position: absolute;
    top: -12px;
    left: 20px;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.questions-list p {
    margin: 0.75rem 0;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-methods {
    margin-bottom: 2.5rem;
}

.contact-methods h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.contact-methods h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.contact-method:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover .contact-icon::before {
    opacity: 1;
}

.contact-method:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #374151;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-note {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.social-links {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.social-links h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #1d4ed8 100%);
    z-index: 1;
}

.contact-form-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 2rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

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

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.form-submit:active {
    transform: translateY(0);
}

/* Contact FAQ Styles */
.contact-faq {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

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

.faq-question i {
    color: #2563eb;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Styles */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

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

.contact-cta .cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-cta .cta-buttons .btn-primary {
    background: white;
    color: #1e293b;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.contact-cta .cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-cta .cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.contact-cta .cta-buttons .btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #1e293b;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-header h2,
    .contact-form-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* End of Contact Page Styles */

/* About Us Page Styles */
.about-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

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

.about-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    position: relative;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 24px 24px 0 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why We Started Section */
.why-started {
    padding: 5rem 0;
    background: white;
}

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

.quote-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem;
    border-radius: 24px;
    margin: 3rem 0;
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.quote-icon i {
    color: white;
    font-size: 1.5rem;
}

.quote-card blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.solution-content {
    margin-top: 3rem;
}

.solution-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.solution-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748b;
}

/* What We Offer Section */
.what-we-offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.offering-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

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

.offering-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.offering-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mentor Section */
.mentor-section {
    padding: 5rem 0;
    background: white;
}

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

.mentor-intro .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.mentor-intro .section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mentor-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.mentor-story {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.mentor-story h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mentor-quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    font-style: italic;
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.mentor-photo {
    position: relative;
    text-align: center;
}

.mentor-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
    margin-bottom: 1rem;
}

.mentor-placeholder i {
    color: white;
    font-size: 4rem;
}

.mentor-badge {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.mentor-badge span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
}

.mentor-badge small {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Why Study Analytics Section */
.why-study-analytics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.struggle-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.struggle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.struggle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

.struggle-icon i {
    color: white;
    font-size: 1.5rem;
}

.struggle-card blockquote {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.realization {
    text-align: center;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.realization h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2rem;
}

.realization-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.realization-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.realization-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1rem;
}

/* Personal Message Section */
.personal-message {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

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

.message-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
}

.message-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.message-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.message-cta .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.message-cta .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.message-cta .btn-secondary {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.message-cta .btn-secondary:hover {
    background: white;
    color: #1e293b;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-text h2 {
        font-size: 2rem;
    }
    
    .stats-showcase {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mentor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mentor-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .mentor-placeholder i {
        font-size: 3rem;
    }
    
    .struggles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .message-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .message-cta .btn-primary,
    .message-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-hero-text h2 {
        font-size: 1.75rem;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    .quote-card blockquote {
        font-size: 1.2rem;
    }
    
    .offering-card {
        padding: 2rem;
    }
    
    .offering-icon {
        width: 60px;
        height: 60px;
    }
    
    .offering-icon i {
        font-size: 1.5rem;
    }
    
    .mentor-intro .section-header h2 {
        font-size: 2rem;
    }
    
    .mentor-intro .section-header h3 {
        font-size: 1.5rem;
    }
}

/* End of About Us Page Styles */

/* Refund Policy Page Styles */
.policy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.policy-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.policy-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
}

.policy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.policy-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.policy-icon.warning {
    color: #f59e0b;
}

.policy-icon.info {
    color: #3b82f6;
}

.policy-icon.success {
    color: #10b981;
}

.policy-icon.primary {
    color: #8b5cf6;
}

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

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.contact-info {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.policy-footer p {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    background: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

/* Responsive styles for policy page */
@media (max-width: 768px) {
    .policy-hero {
        padding: 100px 0 60px;
    }
    
    .policy-hero-content h1 {
        font-size: 2rem;
    }
    
    .policy-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-section-title {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .policy-icon {
        margin-right: 0.5rem;
        margin-bottom: 0.25rem;
    }
}

/* Privacy Policy Page Additional Styles */
.policy-date {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-style: italic;
}

.policy-subsection {
    margin-bottom: 1.5rem;
}

.policy-subsection h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

/* Terms of Use Page Additional Styles */
.policy-footer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: left;
}

/* End of Terms of Use Page Styles */

/* Courses Hero */
.courses-hero {
    padding: 140px 0 48px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.courses-hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 10px;
}

.courses-hero p {
    color: #475569;
    max-width: 760px;
}

.hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    padding: 10px 16px;
    border-radius: 8px;
}

/* Filters */
.courses-filters {
    margin: 18px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-size: 0.8rem;
    cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1d4ed8;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

.search-box input {
    padding: 8px 12px 8px 32px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

#courseSort {
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff;
}

/* Compact Course Grid Layout */
.compact-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
    align-items: stretch;
}

.compact-course-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.compact-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.compact-course-card.featured {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.course-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
}

/* Create a notch for the centered badge so it doesn't overlap text */
.compact-course-card { padding-top: 28px; }
.compact-course-card .course-header { margin-top: 6px; }

.course-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.course-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-icon i {
    color: white;
    font-size: 1rem;
}

.course-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.course-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lectures {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #64748b;
}

.lectures i {
    color: #2563eb;
    font-size: 0.875rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.stars {
    font-weight: 600;
    color: #1e293b;
}

.star-icons {
    display: flex;
    gap: 2px;
}

.star-icons i {
    color: #fbbf24;
    font-size: 0.75rem;
}

.star-icons i.empty {
    color: #e2e8f0;
}

.review-count {
    color: #64748b;
    font-size: 0.8rem;
}

.course-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.original-price {
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: line-through;
}

.course-description {
    margin-bottom: 12px;
}

.course-description p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 16px;
}

.course-highlights .highlight {
    background: #f1f5f9;
    color: #2563eb;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.course-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.course-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.course-btn i {
    font-size: 0.875rem;
}

/* Responsive adjustments for compact grid */
@media (max-width: 1200px) {
    .compact-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .compact-courses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .compact-course-card {
        padding: 16px;
        max-width: none;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .course-price {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .compact-course-card {
        padding: 16px;
    }
    
    .course-header h3 {
        font-size: 1rem;
    }
    
    .course-icon {
        width: 40px;
        height: 40px;
    }
    
    .course-icon i {
        font-size: 1rem;
    }
}

/* End of Compact Course Grid Styles */

/* Structured Course Description Styles */
.course-description .course-meta-item {
    font-size: 14px;
    color: #374151;
    margin: 8px 0;
    padding: 4px 0;
}

.course-description .curriculum-item {
    font-size: 13px;
    color: #4b5563;
    margin: 4px 0;
    padding: 2px 0;
    line-height: 1.4;
}

.course-description .curriculum-item::before {
    content: '';
    margin-right: 6px;
}

/* Compact course card improvements for structured content */
.compact-course-card .course-description {
    max-height: 300px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.4;
}

.compact-course-card .course-description::-webkit-scrollbar {
    width: 4px;
}

.compact-course-card .course-description::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.compact-course-card .course-description::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.compact-course-card .course-description::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}/* GS
T Info Styling */
.course-price .gst-info {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
    margin-top: 2px;
}

.compact-course-card .course-price .gst-info {
    font-size: 10px;
    color: #9ca3af;
}/* R
educe space between price and description */
.compact-course-card .course-meta {
    margin-bottom: 6px;
}

.compact-course-card .course-description {
    margin-top: 0;
    padding-top: 0;
}

/* Reduce spacing in course price section */
.compact-course-card .course-price {
    margin-bottom: 0 !important;
}

/* Remove any default margins from course elements */
.compact-course-card .course-meta,
.compact-course-card .course-price,
.compact-course-card .course-description {
    margin-bottom: 0;
}

/* Set specific spacing between elements */
.compact-course-card .course-meta {
    margin-bottom: 4px !important;
}

.compact-course-card .course-description {
    margin-top: 0 !important;
    padding-top: 0 !important;
}/*
 Increase width of hero CTA buttons */
.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    min-width: 200px;
    padding: 14px 28px;
}

@media (max-width: 768px) {
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        min-width: 180px;
        padding: 12px 24px;
    }
}/* Ho
mepage courses grid improvements */
.courses-section .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .courses-section .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}/*
 Homepage compact course cards adjustments */
.courses-section .compact-courses-grid {
    margin-top: 2rem;
}

.courses-section .compact-course-card {
    min-height: 400px;
}

.courses-section .compact-course-card .course-description {
    max-height: 200px;
    overflow-y: auto;
}