/* css/education.css */

/* Hero Section */
.education-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.education-hero .container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.education-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.education-hero .hero-title-highlight {
    color: #4F46E5;
}

.education-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Common Section Styles */
.education-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.education-section.bg-light {
    background-color: #F8FAFC;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
}

/* Platform Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #CBD5E1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.feature-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #64748B;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.feature-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sector-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2.5rem;
    border-top: 4px solid #4F46E5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.sector-card.students {
    border-top-color: #3B82F6;
}

.sector-card.teachers {
    border-top-color: #10B981;
}

.sector-card.admins {
    border-top-color: #F59E0B;
}

.sector-card.researchers {
    border-top-color: #EF4444;
}

.sector-card.it {
    border-top-color: #8B5CF6;
}

.sector-card.counselors {
    border-top-color: #14B8A6;
}

.sector-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sector-item {
    margin-bottom: 1rem;
}

.sector-item strong {
    display: block;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.sector-item p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.security-card {
    text-align: center;
    padding: 2rem;
}

.security-icon {
    width: 64px;
    height: 64px;
    background: #EEF2FF;
    color: #4F46E5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 1rem;
}

.security-card p {
    color: #475569;
    line-height: 1.6;
}

/* CTA Buttons */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #4F46E5;
    color: #FFFFFF;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background-color: #4338CA;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .education-hero {
        padding: 6rem 0 3rem;
    }

    .education-hero .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}