/* Brand Colors */
:root {
    --primary-yellow: #FFB600;
    --dark-gray: #2B2B2B;
    --light-gray: #F2F2F2;
    --bg-primary-light: #FFF8E6;
}

/* Global Styles */
body {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

html {
    scroll-behavior: smooth;
}

/* Custom Bootstrap Overrides */
.text-primary {
    color: var(--primary-yellow) !important;
}

.bg-primary-light {
    background-color: var(--bg-primary-light) !important;
}

.btn-custom-primary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background-color: #E6A500;
    border-color: #E6A500;
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 182, 0, 0.3);
}

/* Navigation */
#mainNav {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-gray) !important;
}

.brand-logo {
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}



}
.nav-link {
    color: #6c757d !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-yellow) !important;
}

/* Hero Section */
.hero-section {
    background-image: url(img/bg-3.png);
    background-size: cover;
	background-color:black;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}


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

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

.hero-buttons {
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.hero-cards {
    padding-left: 2rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.hero-card-highlight {
    background: rgba(255, 182, 0, 0.2);
    border-color: rgba(255, 182, 0, 0.3);
}

.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.hero-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Instructor Cards */
.instructor-card {
    border: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

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

.instructor-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-yellow), #E6A500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-photo {
    transform: scale(1.1);
}

.instructor-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.instructor-specialty {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructor-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.skill-badge {
    background-color: rgba(255, 182, 0, 0.1);
    color: #B8860B;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    margin: 0.125rem;
    display: inline-block;
}

.module-info {
    background-color: var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 1rem;
}

/* Curriculum Cards */
.curriculum-module {
    border: none;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    background: white;
}

.curriculum-module:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.module-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.curriculum-module:hover .module-number {
    transform: scale(1.1);
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.module-instructor {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.module-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.module-topics li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.module-topics li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-size: 1rem;
}

.module-duration {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.live-classes-card {
    background: linear-gradient(45deg, rgba(255, 182, 0, 0.1), rgba(255, 182, 0, 0.2));
    border: 1px solid rgba(255, 182, 0, 0.3);
    border-radius: 1rem;
    padding: 3rem 2rem;
}

.live-classes-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.live-classes-icon i {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

/* Benefits Cards */
.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

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

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.benefits-cta {
    background: linear-gradient(45deg, rgba(255, 182, 0, 0.2), rgba(255, 182, 0, 0.3));
    border: 1px solid rgba(255, 182, 0, 0.3);
    border-radius: 1rem;
    padding: 3rem 2rem;
}

/* Lead Form */
.lead-form-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    background: white;
}

.form-header {
    background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
    padding: 2rem;
}

.form-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-body {
    padding: 3rem 2rem;
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 0, 0.25);
}

.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 182, 0, 0.25);
}

.form-label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Success Modal */
.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.next-steps {
    background-color: rgba(255, 182, 0, 0.1);
    border: 1px solid rgba(255, 182, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.brand-logo-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-yellow), #E6A500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-weight: bold;
    font-size: 1.25rem;
}

.social-links a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow) !important;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-yellow) !important;
}


/* Pricing Section */
.pricing-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: white;
}

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

.pricing-featured {
    border: 3px solid var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-yellow), #E6A500);
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pricing-featured .pricing-header {
    background: linear-gradient(135deg, rgba(255, 182, 0, 0.1), rgba(255, 182, 0, 0.05));
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.pricing-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-discount {
    background: var(--primary-yellow);
    color: var(--dark-gray);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0;
}

.price-original {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.price-current {
    color: var(--dark-gray);
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-body {
    padding: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #495057;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.pricing-limited {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #856404;
}

.pricing-limited i {
    margin-right: 0.5rem;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #dc3545, #c82333);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.urgency-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
}


/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cards {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Loading Animation */
.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Color Classes for Benefits */
.bg-blue { background-color: #007bff; }
.bg-green { background-color: #28a745; }
.bg-purple { background-color: #6f42c1; }
.bg-orange { background-color: #fd7e14; }
.bg-red { background-color: #dc3545; }
.bg-yellow { background-color: var(--primary-yellow); }
.bg-indigo { background-color: #6610f2; }
.bg-pink { background-color: #e83e8c; }
.bg-teal { background-color: #20c997; }