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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.ashish-pic {
   opacity: 1 !important;
}

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

/* Color Variables */
:root {
    --primary: #2042F4;
    --secondary: hsl(270, 95.2%, 75.3%);
    --accent: hsl(266, 85%, 58%);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
    --gradient-primary:#2042F4;
    --gradient-secondary: linear-gradient(135deg, hsl(220, 14.3%, 95.9%) 0%, hsl(270, 95.2%, 97%) 100%);
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
}

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

.nav-desktop button {
    background: none;
    border: none;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-desktop button:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important;
}

.btn-primary:hover {
    background: var(--secondary) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu button {
    background: none;
    border: none;
    text-align: left;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    color: #fbbf24;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 1rem;
}

.hero-badge-weeks {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-badge-price {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background: #fbbf24;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light)
}

.hero-badge-price .badge-number {
    color: #1f2937;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--light);
}

.hero-badge-price .badge-text {
    color: #374151;
}

/* Why Most Fail Section */
.why-fail {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

.fail-card {
    text-align: center;
    padding: 2rem;
    background: #fef2f2;
    border-radius: 1rem;
    border: 1px solid #fecaca;
    transition: box-shadow 0.3s;
}

.fail-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fail-icon {
    width: 4rem;
    height: 4rem;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.fail-icon i {
    font-size: 2rem;
    color: #dc2626;
}

.fail-card h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.fail-card p {
    color: #64748b;
}

/* Course Modules Section */
.course-modules {
    padding: 5rem 0;
    background: var(--gradient-secondary);
}

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

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s;
}

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

.module-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.module-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.module-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.module-card li i {
    color: #10b981;
    flex-shrink: 0;
}

/* Student Outcomes Section */
.student-outcomes {
    padding: 5rem 0;
    background: white;
}

.outcomes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.outcome-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outcome-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.outcome-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.outcome-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
}

.outcome-icon.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.outcome-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.outcome-text p {
    color: #64748b;
}

.outcomes-image {
    position: relative;
}

.outcomes-image img {
    width: 100%;
    border-radius: 1rem;
}

.outcomes-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, transparent 100%);
    border-radius: 1rem;
}

/* Comparison Table Section */
.comparison {
    padding: 5rem 0;
    background: var(--gradient-secondary);
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table td {
    padding: 1.5rem;
    font-weight: 500;
    color: #1f2937;
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
    text-align: center;
}

.comparison-table i.success {
    color: #10b981;
    font-size: 2rem;
}

.comparison-table i.fail {
    color: #ef4444;
    font-size: 2rem;
}

/* Instructor Section */
.instructor {
    padding: 5rem 0;
    background: white;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

 .instructor-image {
    position: relative;
}

.instructor-image img {
      display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    
    
} 

.instructor-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.instructor-title {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructor-description {
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.instructor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

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

.social-links a {
    color: var(--primary);
    font-size: 2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--gradient-primary);
}

.pricing-card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.2);
    padding: 3rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

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

.pricing-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.pricing-amount {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
}

.amount-text {
    font-size: 1.25rem;
}

.amount-subtext {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.features-included h4,
.features-bonus h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pricing-features ul {
    list-style: none;
text-align: left;;
}

.pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    
    gap: 0.5rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.pricing-features .features-included i {
    color: #10b981;
}

.pricing-features .features-bonus i {
    color: var(--primary);
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-pay {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.btn-pay:hover {
    transform: scale(1.05);
}
.btn-pay a {
     color: var(--dark);
     text-decoration: none;
}

.btn-whatsapp {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    margin: 0 auto;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background: #059669;
}

.qr-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.qr-section p {
    color: #64748b;
    margin-bottom: 1rem;
}

.qr-code {
    width: 8rem;
    height: 8rem;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code i {
    font-size: 3rem;
    color: #94a3b8;
}

.qr-text {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon.primary {
    background: var(--primary);
}

.contact-icon.secondary {
    background: var(--secondary);
}

.contact-icon.whatsapp {
    background: #10b981;
}

.contact-title {
    font-weight: 600;
    color: #1f2937;
}

.contact-value {
    color: #64748b;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
}

.guarantee-card h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.guarantee-card p {
    color: #64748b;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-question {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-question:hover {
    background: var(--primary);
    color: white;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

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

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

.footer-section button {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.footer-section button:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.error {
    background: #ef4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .outcomes-content,
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.show {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fail-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .outcomes-list {
        gap: 1.5rem;
    }
    
    .instructor-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
}