/* Academic Program Page Styles */

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.academics-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(../New_folder/academics.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.academics-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.academics-hero .hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Curriculum Section */
.curriculum-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.curriculum-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.curriculum-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.curriculum-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.curriculum-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Grades Section */
.grades-section {
    padding: 80px 0;
    background: white;
}

.grades-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.tab-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-list {
    list-style-type: none;
    padding-left: 0;
}

.program-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.program-list li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tab-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Assessment Section */
.assessment-section {
    padding: 80px 0;
    background: white;
}

.assessment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.assessment-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.assessment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.approach-list {
    display: grid;
    gap: 20px;
}

.approach-item {
    display: flex;
    gap: 20px;
}

.approach-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.approach-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.approach-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

.assessment-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.academics-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.academics-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.academics-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .curriculum-grid,
    .tab-grid,
    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .curriculum-image,
    .tab-image,
    .assessment-image {
        order: -1;
    }
    
    .curriculum-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .academics-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .academics-hero .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        padding: 0 15px;
    }
    
    .academics-hero .hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    /* Sections Padding */
    .curriculum-section,
    .grades-section,
    .features-section,
    .assessment-section,
    .academics-cta {
        padding: 50px 0;
    }

    /* Curriculum Section */
    .curriculum-content h3 {
        font-size: 1.5rem;
    }

    .curriculum-content p {
        font-size: 1rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Grades Tabs */
    .tab-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-bottom: none;
        border-left-color: var(--secondary-color);
        background-color: #f0f0f0;
    }

    .tab-text h3 {
        font-size: 1.5rem;
    }

    .tab-text p {
        font-size: 1rem;
    }

    .program-list li {
        font-size: 0.95rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    /* Assessment Section */
    .assessment-content h2 {
        font-size: 1.8rem;
    }

    .assessment-content p {
        font-size: 1rem;
    }

    .approach-text h4 {
        font-size: 1.1rem;
    }

    .approach-text p {
        font-size: 0.95rem;
    }

    /* CTA Section */
    .academics-cta h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .academics-cta p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .academics-hero {
        height: 45vh;
    }
    
    .academics-hero .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .academics-hero .hero-content p {
        font-size: 1rem;
    }

    /* Sections Padding */
    .curriculum-section,
    .grades-section,
    .features-section,
    .assessment-section,
    .academics-cta {
        padding: 40px 0;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Typography */
    .curriculum-content h3,
    .tab-text h3 {
        font-size: 1.3rem;
    }

    .curriculum-content p,
    .tab-text p {
        font-size: 0.95rem;
    }

    /* Feature Items */
    .feature-item {
        padding: 12px;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    /* Tab Buttons */
    .tab-btn {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .program-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }

    /* Feature Cards */
    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Assessment */
    .assessment-content h2 {
        font-size: 1.5rem;
    }

    .approach-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .approach-text h4 {
        font-size: 1rem;
    }

    .approach-text p {
        font-size: 0.9rem;
    }

    /* CTA */
    .academics-cta h2 {
        font-size: 1.5rem;
    }

    .academics-cta p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}