
        :root {
            --primary-color: #3f51b5;
            --secondary-color: #ff5722;
            --accent-color: #4caf50;
            --light-color: #f5f5f5;
            --dark-color: #212121;
        }
        .primary-hero {
            background: linear-gradient(135deg, #4caf50, #8bc34a);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .subject-card {
            border: none;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 20px;
            height: 100%;
        }
        
        .subject-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .material-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .material-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .test-card {
            border-left: 4px solid var(--primary-color);
        }
        
        .pricing-card {
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .pricing-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .nav-pills .nav-link.active {
            background-color: var(--primary-color);
        }
        
        .nav-pills .nav-link {
            color: var(--dark-color);
        }
        
        .tab-content {
            padding: 20px 0;
        }
        
        .fun-fact {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .primary-hero {
                padding: 2.5rem 0;
            }
        }

.primary-hero-section {
    padding: 5rem 0;
    background-color: #3498db;
    color: white;
    text-align: center;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.primary-hero-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.primary-hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.curriculum-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: white;
    color: #3498db;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .primary-hero-section {
        padding: 3rem 0;
    }
    
    .primary-hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .primary-hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .curriculum-badge {
        padding: 0.4rem 1rem;
        font-size: 1.8rem;
    }
}









/* Primary Section Styles - Self-contained and won't affect main CSS */
.primary-section {
    padding: 4rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #fff;
}

.primary-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.primary-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.primary-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.primary-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-icon.child-centric {
    background-color: rgba(41, 128, 185, 0.1);
    color: #2980b9;
}

.feature-icon.interactive {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.feature-icon.bilingual {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.feature-icon.expert {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #2c3e50;
}

.feature-text span {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.primary-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (min-width: 768px) {
    .primary-content {
        flex-direction: row;
    }

    .primary-text {
        flex: 1;
    }

    .primary-image {
        flex: 1;
    }

    .primary-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
   
    .primary-text h2 {
        font-size: 1.8rem;
    }
}

/* Pricing Section Enhancements */
.pricing-cards::-webkit-scrollbar {
    display: none;
}
.pricing-cards {
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (min-width: 768px) {
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.popular {
        transform: scale(1.02);
    }

    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-3px);
    }
}

@media (max-width: 768px) {
  .pricing-cards {
    display: flex !important;       /* ✅ override grid if needed */
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .pricing-card {
    min-width: 85%;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}


@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 1.5rem;
    }

    .card-content {
        padding: 1rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .features-list {
        font-size: 0.85rem;
    }

    .enroll-btn {
        font-size: 0.9rem;
    }
}
/*------------------------------------- Subjects Section Styles - Self-contained and won't affect main CSS --------------------------------------*/
.subjects-section {
    padding: 5rem 0;
    background-color: #fff;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.subjects-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.subject-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.subject-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.subject-icon.math {
    background-color: rgba(41, 128, 185, 0.1);
    color: #2980b9;
}

.subject-icon.science {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.subject-icon.english {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.subject-icon.hindi {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.subject-icon.social {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.subject-icon.computer {
    background-color: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.subject-icon.art {
    background-color: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.subject-icon.pe {
    background-color: rgba(0, 150, 136, 0.1);
    color: #009688;
}

.subject-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.subject-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.subject-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.subject-btn.math {
    background-color: rgba(41, 128, 185, 0.1);
    color: #2980b9;
    border-color: #2980b9;
}

.subject-btn.science {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-color: #2ecc71;
}

.subject-btn.english {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-color: #3498db;
}

.subject-btn.hindi {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border-color: #f1c40f;
}

.subject-btn.social {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-color: #e74c3c;
}

.subject-btn.computer {
    background-color: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border-color: #9b59b6;
}

.subject-btn.art {
    background-color: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    border-color: #e91e63;
}

.subject-btn.pe {
    background-color: rgba(0, 150, 136, 0.1);
    color: #009688;
    border-color: #009688;
}

.subject-btn:hover {
    color: white;
}

.subject-btn.math:hover {
    background-color: #2980b9;
}

.subject-btn.science:hover {
    background-color: #2ecc71;
}

.subject-btn.english:hover {
    background-color: #3498db;
}

.subject-btn.hindi:hover {
    background-color: #f1c40f;
}

.subject-btn.social:hover {
    background-color: #e74c3c;
}

.subject-btn.computer:hover {
    background-color: #9b59b6;
}

.subject-btn.art:hover {
    background-color: #e91e63;
}

.subject-btn.pe:hover {
    background-color: #009688;
}

@media (max-width: 768px) {
    .subjects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .subjects-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: unset;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .subject-card {
        min-width: 85%;
        scroll-snap-align: start;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


























/* Study Materials Section Styles - Self-contained */
.materials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.materials-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.materials-tabs {
    margin-top: 2rem;
}

.tab-buttons-container {
    width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.tab-btn.active {
    color: white;
    background: #3498db;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.material-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.material-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.card-body p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.subject-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.subject-badge.math {
    background: rgba(41, 128, 185, 0.1);
    color: #2980b9;
}

.subject-badge.science {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.subject-badge.hindi {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.format-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(41, 128, 185, 0.1);
    color: #2980b9;
    font-size: 0.8rem;
    font-weight: 600;
}

.board-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    font-size: 0.8rem;
    font-weight: 600;
}

.duration, .pages {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.card-action {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
}

.download-btn, .details-btn {
    display: block;
    padding: 0.5rem;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn {
    background: rgba(41, 128, 185, 0.1);
    color: #2980b9;
    border: 2px solid #2980b9;
}

.download-btn:hover {
    background: #2980b9;
    color: white;
}

.details-btn {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border: 2px solid #9b59b6;
}

.details-btn:hover {
    background: #9b59b6;
    color: white;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .materials-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tab-buttons-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .tab-buttons {
        display: inline-flex;
        flex-wrap: nowrap;
        padding: 0 15px;
        min-width: max-content;
        justify-content: center;
        align-content: center;
        margin-left: 50px;
        font-size: 1.5rem;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 0.6rem 1.2rem;
        font-size: 1.3rem;
    }
    
    .materials-grid {
        grid-template-columns: unset;
        overflow-x: auto;
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
    }
    
    .material-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex: 0 0 auto;
    }
    
    /* Hide scrollbar but keep functionality */
    .tab-buttons-container::-webkit-scrollbar,
    .materials-grid::-webkit-scrollbar {
        height: 5px;
    }
    
    .tab-buttons-container::-webkit-scrollbar-track,
    .materials-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .tab-buttons-container::-webkit-scrollbar-thumb,
    .materials-grid::-webkit-scrollbar-thumb {
        background: #3498db;
        border-radius: 10px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .material-card {
        max-width: 15%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .materials-grid {
        gap: 1rem;
        padding: 0 1rem 1rem;
    }
}

.primary-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: #3498db;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.primary-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        /*flex-direction: column;*/
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .materials-grid {
        display: flex;
        overflow-x: auto;
        flex-direction: row;
        scroll-snap-type: x mandatory;
        grid-template-columns: unset;
        gap: 1rem;
        padding: 0 1rem 1rem;
    }
    
    .material-card {
        min-width: 85%;
        scroll-snap-align: start;
    }
}




























/*---------------------this is Assesment CSS------------------------------------------------------------*/

.assessments-section {
    padding: 3rem 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #f9fafb;
}

.assessments-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.assessment-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.5rem;
}

.assessment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.assessment-card p {
    color: #7f8c8d;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.card-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.card-details li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.card-details li:last-child {
    border-bottom: none;
}

.detail-value {
    background-color: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-button {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid #3498db;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-button:hover {
    background-color: #3498db;
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.info-card-header {
    background-color: #3498db;
    color: white;
    padding: 1rem 1.5rem;
}

.info-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.schedule-card .info-card-header {
    background-color: #3498db;
}

.performance-card .info-card-header {
    background-color: #2ecc71;
}

.info-card-body {
    padding: 1.5rem;
}

.schedule-table {
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    font-weight: 600;
    color: #2c3e50;
}

.schedule-table tr:hover {
    background-color: #f8f9fa;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.progress-bar {
    height: 24px;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
}

.performance-card .progress-item:nth-child(1) .progress-fill {
    background-color: #3498db;
}

.performance-card .progress-item:nth-child(2) .progress-fill {
    background-color: #2ecc71;
}

.performance-card .progress-item:nth-child(3) .progress-fill {
    background-color: #9b59b6;
}

.performance-card .progress-item:nth-child(4) .progress-fill {
    background-color: #f39c12;
}

.full-report-button {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border: 2px solid #2ecc71;
    color: #2ecc71;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.full-report-button:hover {
    background-color: #2ecc71;
    color: white;
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-action-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.primary-action-button:hover {
    background-color: #2980b9;
}

.secondary-action-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3498db;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-action-button:hover {
    background-color: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action-button,
    .secondary-action-button {
        width: 100%;
        text-align: center;
    }
}





@media (max-width: 768px) {
    .cards-grid,
    .info-grid {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .assessment-card,
    .info-card {
        display: inline-block;
        vertical-align: top;
        width: 90%;
        margin-right: 1rem;
        white-space: normal;
    }
}



/*----------this is pricing-section content -----------------------------CSS*/
.pricing-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.pricing-container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pricing-header p {
  font-size: 0.95rem;
  color: #7f8c8d;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-3px);
}

.pricing-card.popular {
  border: 2px solid #3498db;
}

.popular-badge {
  position: absolute;
  top: 10px;
  right: -25px;
  background: #3498db;
  color: white;
  font-size: 0.75rem;
  padding: 0.2rem 1rem;
  transform: rotate(45deg);
  width: 100px;
  text-align: center;
}

.card-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

.card-content h2 {
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem 0;
  color: #2c3e50;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3498db;
  margin: 0.5rem 0;
  text-align: center;
}

.price span {
  font-size: 0.85rem;
  color: #7f8c8d;
}

.features-list {
  margin: 1rem 0;
  flex-grow: 1;
  font-size: 0.9rem;
}

.features-list li {
  padding: 0.35rem 0;
  display: flex;
  align-items: start;
  color: #555;
}

.features-list i {
  color: #2ecc71;
  margin-right: 0.6rem;
  margin-top: 0.2rem;
}

.enroll-btn {
  display: block;
  padding: 0.5rem;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: 0.3s ease;
}

.enroll-btn.primary {
  background: #3498db;
  color: white;
  border: 2px solid #3498db;
}

.enroll-btn.primary:hover {
  background: #2980b9;
  border-color: #2980b9;
}

.enroll-btn.outline {
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
}

.enroll-btn.outline:hover {
  background: #3498db;
  color: white;
}

.pricing-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.pricing-footer p {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
}

.download-btn {
     display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: #00b1ff;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
  background: #f1f1f1;
  border-color: #95a5a6;
}

/* Responsive Design */
@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.popular {
    transform: scale(1.02);
  }

  .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-3px);
  }
}

@media (max-width: 480px) {
  .pricing-header h2 {
    font-size: 1.5rem;
  }

  .card-content {
    padding: 1rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .features-list {
    font-size: 0.85rem;
  }

  .enroll-btn {
    font-size: 0.9rem;
  }
}




















/*.materials-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));*/
/*    gap: 2rem;*/
/*    padding: 1rem;*/
/*}*/

.material-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.material-card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.card-body p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.subject-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    color: white;
}

.subject-badge.math { background: #e74c3c; }
.subject-badge.science { background: #3498db; }
.subject-badge.hindi { background: #2ecc71; }
.subject-badge.general { background: #9b59b6; }

.duration {
    color: #7f8c8d;
}














.fun-learning-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.fun-learning-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fun-fact-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fun-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fun-fact-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.fun-fact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.fun-fact-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Color classes for icons */
.bg-blue {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.bg-green {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.bg-yellow {
    background-color: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.bg-teal {
    background-color: rgba(26, 188, 156, 0.1);
    color: #1abc9c;
}

.bg-red {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.bg-purple {
    background-color: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

@media (max-width: 768px) {
    .fun-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .fun-fact-header {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-circle {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
}
@media (max-width: 768px) {
    .fun-facts-grid {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .fun-fact-card {
        display: inline-block;
        vertical-align: top;
        width: 85%;
        min-width: 280px;
        margin-right: 1rem;
        white-space: normal;
    }
}



/*----------------- whatsaap  -------------------*/
