/* Auto-extracted from start-learning.php on 2026-05-04 */

.page-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 80px 20px 60px;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 3em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .page-hero p {
        font-size: 1.3em;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }
    
    .intro-section {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .intro-section h2 {
        font-size: 2.5em;
        color: #2c3e50;
        margin-bottom: 20px;
    }
    
    .intro-section p {
        font-size: 1.2em;
        color: #666;
        max-width: 900px;
        margin: 0 auto 30px;
        line-height: 1.8;
    }
    
    .exam-section {
        background: white;
        border-radius: 15px;
        padding: 40px;
        margin-bottom: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .exam-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .exam-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 3px solid #f0f0f0;
    }
    
    .exam-icon {
        font-size: 3em;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        color: white;
    }
    
    .exam-icon.jee-main {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .exam-icon.jee-advanced {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }
    
    .exam-icon.cbse {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }
    
    .exam-icon.isc {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    }
    
    .exam-icon.mp-board {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    }
    
    .exam-title-group {
        flex: 1;
    }
    
    .exam-title {
        font-size: 2.2em;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .exam-subtitle {
        font-size: 1.1em;
        color: #666;
    }
    
    .exam-date {
        background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
        padding: 15px 25px;
        border-radius: 10px;
        margin-bottom: 25px;
        text-align: center;
        border-left: 5px solid #fdcb6e;
    }
    
    .exam-date-label {
        font-size: 0.9em;
        color: #856404;
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
    }
    
    .exam-date-value {
        font-size: 1.3em;
        color: #2c3e50;
        font-weight: bold;
    }
    
    .exam-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .detail-box {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        border-left: 4px solid #667eea;
    }
    
    .detail-box h4 {
        font-size: 1.1em;
        color: #2c3e50;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .detail-box p, .detail-box ul {
        color: #555;
        line-height: 1.8;
        margin: 0;
    }
    
    .detail-box ul {
        padding-left: 20px;
    }
    
    .detail-box ul li {
        margin-bottom: 8px;
    }
    
    .exam-description {
        background: #f0f4f8;
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 30px;
        line-height: 1.8;
        color: #555;
    }
    
    .subject-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .subject-link-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .subject-link-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }
    
    .subject-link-card.chemistry {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    }
    
    .subject-link-card.chemistry:hover {
        box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
    }
    
    .subject-link-card.mathematics {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    }
    
    .subject-link-card.mathematics:hover {
        box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
    }
    
    .subject-link-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    
    .subject-link-title {
        font-size: 1.4em;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .subject-link-desc {
        font-size: 0.9em;
        opacity: 0.9;
    }
    
    /* Syllabus Button */
    .syllabus-button-container {
        margin-top: 30px;
        text-align: center;
        padding: 20px 0;
    }
    
    .btn-syllabus {
        display: inline-block;
        padding: 15px 35px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        transition: all 0.3s ease;
    }
    
    .btn-syllabus:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }
    
    .btn-syllabus i {
        margin-right: 10px;
    }
    
    .key-features {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 25px;
    }
    
    .key-features h4 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-size: 1.2em;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #555;
    }
    
    .feature-item i {
        color: #667eea;
        font-size: 1.2em;
    }
    
    .cta-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 20px;
        border-radius: 15px;
        text-align: center;
        margin-top: 60px;
    }
    
    .cta-section h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }
    
    .cta-section p {
        font-size: 1.2em;
        margin-bottom: 30px;
        opacity: 0.95;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        padding: 15px 35px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .cta-btn-primary {
        background: white;
        color: #667eea;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .cta-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    
    .cta-btn-secondary {
        background: rgba(255,255,255,0.2);
        color: white;
        border: 2px solid white;
    }
    
    .cta-btn-secondary:hover {
        background: rgba(255,255,255,0.3);
    }
    
    @media (max-width: 768px) {
        .page-hero h1 {
            font-size: 2em;
        }
        
        .exam-header {
            flex-direction: column;
            text-align: center;
        }
        
        .exam-title {
            font-size: 1.6em;
        }
        
        .exam-details {
            grid-template-columns: 1fr;
        }
        
        .subject-links {
            grid-template-columns: 1fr;
        }
    }
