/* ============ Subjects Coverage Section ============ */
/* Inter Font - Now loaded via self-hosted WOFF2 in fonts.css */

.subjects-coverage-section {
     background: linear-gradient(90deg, #2243A4 0%, #2243A4 86.95%, #566BD0 100%);
    padding: 90px 0;
    font-family: 'Inter', sans-serif;
}

.subjects-coverage-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.subjects-coverage-header {
    text-align: center;
    margin-bottom: 50px;
}

.subjects-coverage-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 150%;
    color: #ffffff;
    margin-bottom: 12px;
}

.subjects-coverage-header h2 .gradient-text {
    background: linear-gradient(90deg, #93c5fd 0%, #ddd6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.subjects-coverage-header p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 180%;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Subjects Grid */
.subjects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 30px;
    max-width: 913px;
    width: 100%;
    margin: 0 auto;
}

/* Subject Item */
.subject-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s;
}
.subject-item:hover{
    padding-left: 16px;
}
.subject-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}
.subject-item:hover .subject-dot {
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}
.subject-name span{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .subjects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 24px;
    }
}

@media (max-width: 768px) {
    .subjects-coverage-section {
        padding: 60px 0;
    }
.subject-name span{
        font-size: 15px;
}
    .subjects-coverage-header h2 {
        font-size: 32px;
    }

    .subjects-coverage-header p {
        font-size: 16px;
    }

    .subjects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }

    .subject-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .subjects-coverage-section {
        padding: 50px 0;
    }

    .subjects-coverage-header {
        margin-bottom: 35px;
    }

    .subjects-coverage-header h2 {
        font-size: 25px;
    }

    .subjects-coverage-header p {
        font-size: 15px;
        font-weight: 400;
    }

    .subjects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 16px;
    }

    .subject-item {
        gap: 10px;
        padding: 6px 0;
    }

    .subject-dot {
        width: 6px;
        height: 6px;
    }

    .subject-name {
        font-size: 14px;
    }
}
/* ============ End Subjects Coverage Section ============ */
