/* NeoSkills Common Styles */

/* Custom variables */
:root {
    --primary-blue: #160cdb;
    --secondary-blue: #0b18d7;
    --primary-orange: #f97316;
    --secondary-orange: #ea580c;
    --whatsapp-green: #25d366;
    --text-gray: #6b7280;
    --light-gray: #f8fafc;
    --border-gray: #e5e7eb;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Custom Buttons */
.btn-custom-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, var(--secondary-orange), #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-outline-custom {
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-blue);
}

/* Navigation */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 2px 20px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-orange) 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-orange) 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: var(--primary-orange);
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.course-features {
    list-style: none;
    padding: 0;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.course-features li:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.price-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--secondary-blue);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.bg-light-custom {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    height: 100%;
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-orange);
    margin-top: 1rem;
}

/* Syllabus */
.syllabus-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.syllabus-item:hover {
    transform: translateY(-2px);
}

.syllabus-item h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-orange);
}

/* Footer */
.footer-custom {
    background: #111827;
    color: white;
}

.footer-custom h5 {
    color: var(--primary-orange);
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-custom a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-custom a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-sticky:hover {
    color: white;
    background: #22c55e;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Utility Classes */
.text-orange {
    color: var(--primary-orange) !important;
}

.text-blue {
    color: var(--secondary-blue) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.syllabus-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.syllabus-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .hero-section,
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .course-features li {
        padding: 0.5rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}




.included-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.included-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.included-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.included-card:hover::before {
    transform: scaleX(1);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.included-card:hover .included-icon {
    transform: scale(1.1);
}

.included-icon i {
    font-size: 28px;
}

.included-card h5 {
    font-weight: 600;
    font-size: 1.25rem;
}

.included-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-badge {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    display: inline-block;
}

.value-proposition .badge {
    font-size: 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.bg-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%) !important;
}

@media (max-width: 768px) {
    .included-icon {
        width: 60px;
        height: 60px;
    }

    .included-icon i {
        font-size: 24px;
    }

    .included-card h5 {
        font-size: 1.1rem;
    }
}


.target-audience-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.target-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.target-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.target-icon i {
    font-size: 24px;
}

.target-audience-card h5 {
    font-weight: 600;
    font-size: 1.2rem;
}

.target-audience-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .target-icon {
        width: 50px;
        height: 50px;
    }

    .target-icon i {
        font-size: 20px;
    }
}






.faq-item {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-button {
    background: #fff;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2E5BFF;
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    /* background: linear-gradient(135deg, #2E5BFF 0%, #1a4bff 100%); */
    /* color: white; */
    box-shadow: 0 4px 15px rgba(46, 91, 255, 0.3);
}

.faq-button:not(.collapsed) .text-orange {
    color: #FFD700 !important;
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD700'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-answer {
    background: #f8f9ff;
    border-top: 2px solid rgba(46, 91, 255, 0.1);
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.accordion-collapse {
    border: none;
}

/* Animation for accordion */
.accordion-collapse.collapsing,
.accordion-collapse.show {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-button {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1.25rem;
    }
}



        :root {
            --primary-blue: #2C5282;
            --secondary-blue: #3182CE;
            --accent-orange: #FF8C42;
            --light-orange: #FFB366;
        }

        .activity-speaking { background: #e74c3c; }
        .activity-listening { background: #3498db; }
        .activity-writing { background: #f39c12; }
        .activity-vocabulary { background: #9b59b6; }

        .progress-mini {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-mini-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-blue), var(--accent-orange));
            transition: width 0.3s ease;
        }

        .week-header-row {
            background: var(--primary-blue) !important;
        }

        .tracker-table {
            font-size: 0.875rem;
        }

        .tracker-table th {
            background: var(--primary-blue);
            color: white;
            border: none;
            font-weight: 600;
            padding: 1rem 0.75rem;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .tracker-table td {
            padding: 0.75rem;
            border: 1px solid #dee2e6;
            vertical-align: middle;
        }

        .tracker-table tbody tr:hover {
            background-color: #f8f9fa;
        }

        .input-sm {
            padding: 0.375rem 0.5rem;
            font-size: 0.875rem;
            border-radius: 0.375rem;
        }

        .whatsapp-btn {
            text-decoration: none;
            color: inherit;
        }

        .whatsapp-sticky {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .export-notice {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            color: #856404;
            border: 1px solid #ffeeba;
        }