﻿

/*Admission Procedure Css*/


.admission-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    padding-top: 80px;
    border-bottom: 3px solid #1a4b8c;
}

    .page-header h1 {
        color: #1a4b8c;
        margin: 0 0 10px 0;
        font-size: 2.5rem;
    }

    .page-header p {
        color: #666;
        font-size: 1.1rem;
        margin: 0;
    }

/* Two Column Layout */
.admission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.procedure-section, .transfer-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Section Headers */
.section-header {
    background: linear-gradient(135deg, #1a4b8c, #2c5aa0);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .section-header h2 {
        margin: 0;
        font-size: 1.5rem;
    }

.section-icon {
    font-size: 2rem;
}

/* Requirements List */
.requirements-list {
    padding: 25px;
}

.requirement-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a4b8c;
    transition: transform 0.2s ease;
}

    .requirement-card:hover {
        transform: translateX(5px);
    }

    .requirement-card.important {
        border-left-color: #b8860b;
        background: #fffaf0;
    }

.req-number {
    background: #1a4b8c;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.requirement-card.important .req-number {
    background: #b8860b;
}

.req-content h3 {
    color: #1a4b8c;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.requirement-card.important h3 {
    color: #b8860b;
}

.req-content p {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

    .req-content p:last-child {
        margin-bottom: 0;
    }

.req-note {
    background: rgba(255,255,255,0.7);
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.policy-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #856404;
    font-size: 0.85rem;
}

.warning-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}



/*SubjectOffered css*/


.academics-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}





/* Subjects Grid */
.subjects-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.grade-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .grade-card:hover {
        transform: translateY(-5px);
    }

.grade-header {
    background: linear-gradient(135deg, #1a4b8c, #2c5aa0);
    color: white;
    padding: 20px;
    text-align: center;
}

    .grade-header h3 {
        margin: 0;
        font-size: 1.3rem;
    }

.subjects-list {
    list-style: none;
    padding: 25px;
    margin: 0;
    display: grid;
    gap: 12px;
}

    .subjects-list li {
        padding: 10px 15px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid;
        transition: all 0.3s ease;
    }

        .subjects-list li:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        /* Subject type colors */
        .subjects-list li:nth-child(1),
        .subjects-list li:nth-child(2) {
            border-left-color: #e74c3c;
        }
        /* Languages */
        .subjects-list li:nth-child(3),
        .subjects-list li:nth-child(6),
        .subjects-list li:nth-child(7),
        .subjects-list li:nth-child(8),
        .subjects-list li:nth-child(9) {
            border-left-color: #3498db;
        }
        /* Science/Math */
        .subjects-list li:nth-child(4),
        .subjects-list li:nth-child(5),
        .subjects-list li:nth-child(10),
        .subjects-list li:nth-child(11) {
            border-left-color: #9b59b6;
        }
        /* Humanities */
        .subjects-list li:nth-child(12),
        .subjects-list li:nth-child(13) {
            border-left-color: #f39c12;
        }
        /* Arts/Creative */
        .subjects-list li:nth-child(14) {
            border-left-color: #27ae60;
        }
/* Physical */

/* Activities Section */
.activities-section {
    margin-top: 60px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.activity-header {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    color: white;
    padding: 20px;
    text-align: center;
}

    .activity-header h3 {
        margin: 0;
        font-size: 1.3rem;
    }

.activities-list {
    list-style: none;
    padding: 25px;
    margin: 0;
    display: grid;
    gap: 15px;
}

    .activities-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .activities-list li:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

.activity-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}



/*Transfer certificate*/


.transfer-certificate-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    padding-top: 80px;
    border-bottom: 3px solid #1a4b8c;
}

    .page-header h1 {
        color: #1a4b8c;
        margin: 0 0 10px 0;
        font-size: 2.3rem;
    }

    .page-header p {
        color: #666;
        font-size: 1.1rem;
        margin: 0;
    }

/* Notice Card */
.notice-card {
    background: #e8f4f8;
    border: 1px solid #1a4b8c;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notice-content h3 {
    color: #1a4b8c;
    margin: 0 0 10px 0;
}

.notice-content p {
    color: #1a4b8c;
    margin: 0;
    opacity: 0.9;
}

/* Requirements Container */
.requirements-container {
    margin-bottom: 40px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #1a4b8c;
}

    .requirement-item.important {
        border-left-color: #b8860b;
        background: #fffaf0;
    }

.req-number {
    background: #1a4b8c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.requirement-item.important .req-number {
    background: #b8860b;
}

.req-content h3 {
    color: #1a4b8c;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.requirement-item.important h3 {
    color: #b8860b;
}

.req-content p {
    color: #333;
    margin: 0 0 15px 0;
}

    .req-content p:last-child {
        margin-bottom: 0;
    }



.policy-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #856404;
}

.warning-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}



/*Uniform css*/


.uniforms-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    padding-top: 80px;
    border-bottom: 3px solid #1a4b8c;
}

    .page-header h1 {
        color: #1a4b8c;
        margin: 0 0 10px 0;
        font-size: 2.5rem;
    }

    .page-header p {
        color: #666;
        font-size: 1.1rem;
        margin: 0;
    }





/* Uniform Sections */
.uniform-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-title {
    color: #1a4b8c;
    border-bottom: 2px solid #b8860b;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Grade Cards */
.grade-uniforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.grade-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a4b8c;
}

    .grade-card h3 {
        color: #1a4b8c;
        margin: 0 0 15px 0;
        font-size: 1.2rem;
    }

.uniform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .uniform-list li {
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }

        .uniform-list li:before {
            content: "•";
            color: #b8860b;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

/* Uniform Details */
.uniform-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.regular-uniform, .pt-uniform {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

    .regular-uniform h4, .pt-uniform h4 {
        color: #1a4b8c;
        margin: 0 0 15px 0;
        font-size: 1.1rem;
    }

    .regular-uniform ul, .pt-uniform ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .regular-uniform li, .pt-uniform li {
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }

        .regular-uniform li:before, .pt-uniform li:before {
            content: "•";
            color: #b8860b;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

/* Common Items */
.common-items {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

    .common-items h4 {
        color: #1a4b8c;
        margin: 0 0 15px 0;
    }

    .common-items ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .common-items li {
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }

        .common-items li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

/* Requirements Section */
.requirements-section {
    margin-top: 40px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.requirement-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.req-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.requirement-card h3 {
    color: #1a4b8c;
    margin: 0 0 15px 0;
}

.requirement-card p {
    color: #666;
    margin: 0;
}

/* Policy Reminder */
.policy-reminder {
    background: #1a4b8c;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

    .policy-reminder h3 {
        margin: 0 0 20px 0;
        font-size: 1.3rem;
    }

    .policy-reminder ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .policy-reminder li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
    }

        .policy-reminder li:before {
            content: "!";
            color: #b8860b;
            font-weight: bold;
            position: absolute;
            left: 0;
        }





/* ========== RESPONSIVE DESIGN ========== */


@media (max-width: 992px) {
    /* Contact Section */
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    /* Admission Procedure */
    .admission-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Subjects Offered */
    .subjects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Uniforms */
    .grade-uniforms {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .uniform-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


@media (max-width: 778px) {
   
    .page-header {
        padding-top: 60px;
        margin-bottom: 30px;
    }

        .page-header h1 {
            font-size: 2rem;
        }

        .page-header p {
            font-size: 1rem;
        }

    /* Contact Section */
    .contact-info, .contact-form {
        padding: 25px 20px;
    }

        .contact-info h3 {
            font-size: 1.6rem;
        }

    .office-hours {
        padding: 30px 25px;
        margin-top: 30px;
    }

    /* Admission Procedure */
    .section-header {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

        .section-header h2 {
            font-size: 1.3rem;
        }

    .requirements-list {
        padding: 20px;
    }

    .requirement-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .req-number {
        align-self: center;
    }

    /* Subjects Offered */
    .subjects-grid {
        gap: 15px;
    }

    .grade-header {
        padding: 15px;
    }

        .grade-header h3 {
            font-size: 1.2rem;
        }

    .subjects-list {
        padding: 20px;
        gap: 10px;
    }

        .subjects-list li {
            padding: 8px 12px;
            font-size: 0.9rem;
        }

    .activities-list {
        padding: 20px;
        gap: 12px;
    }

        .activities-list li {
            padding: 12px;
        }

    /* Transfer Certificate */
    .requirement-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .req-number {
        align-self: center;
    }

    .notice-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Uniforms */
    .uniform-section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .grade-card {
        padding: 15px;
    }

        .grade-card h3 {
            font-size: 1.1rem;
        }

    .regular-uniform, .pt-uniform {
        padding: 15px;
    }

    .common-items {
        padding: 15px;
    }

    .policy-reminder {
        padding: 20px;
    }
}


@media (max-width: 576px) {
    
    .page-header {
        padding: 40px 15px 20px 15px;
        margin-bottom: 25px;
    }

        .page-header h1 {
            font-size: 1.8rem;
        }

        .page-header p {
            font-size: 0.95rem;
        }

    /* Contact Section */
    .contact-section {
        padding: 15px 0;
    }

    .contact-container {
        gap: 20px;
        margin-bottom: 40px;
    }

    .contact-info {
        padding: 20px 15px;
    }

        .contact-info h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

    .contact-details {
        margin-top: 20px;
    }

    .contact-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

        .contact-item i {
            margin-right: 0;
            margin-bottom: 5px;
        }

    .office-hours {
        padding: 20px 15px;
        margin-top: 25px;
    }

        .office-hours h3 {
            font-size: 1.3rem;
            text-align: center;
        }

    .hours-table td {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    /* Admission Procedure */
    .admission-page {
        padding: 15px;
    }

    .section-header {
        padding: 15px;
    }

        .section-header h2 {
            font-size: 1.2rem;
        }

    .section-icon {
        font-size: 1.5rem;
    }

    .requirements-list {
        padding: 15px;
    }

    .requirement-card {
        margin-bottom: 15px;
        padding: 12px;
    }

    .req-content h3 {
        font-size: 1rem;
    }

    .req-content p {
        font-size: 0.9rem;
    }

    .req-note, .policy-note {
        font-size: 0.8rem;
        padding: 10px;
    }

    /* Subjects Offered */
    .academics-page {
        padding: 15px;
    }

    .subjects-grid {
        margin-bottom: 40px;
    }

    .grade-header {
        padding: 12px;
    }

        .grade-header h3 {
            font-size: 1.1rem;
        }

    .subjects-list {
        padding: 15px;
        gap: 8px;
    }

        .subjects-list li {
            padding: 6px 10px;
            font-size: 0.85rem;
        }

    .activities-section {
        margin-top: 40px;
    }

    .activities-grid {
        gap: 20px;
    }

    .activity-header {
        padding: 15px;
    }

        .activity-header h3 {
            font-size: 1.1rem;
        }

    .activities-list {
        padding: 15px;
        gap: 10px;
    }

        .activities-list li {
            padding: 10px;
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }

    .activity-icon {
        width: auto;
    }

    /* Transfer Certificate */
    .transfer-certificate-page {
        padding: 15px;
    }

    .requirement-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .req-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .req-content p {
        font-size: 0.9rem;
    }

    .notice-card {
        margin-bottom: 20px;
    }

    /* Uniforms */
    .uniforms-page {
        padding: 15px;
    }

    .uniform-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .grade-uniforms {
        gap: 12px;
        margin-bottom: 20px;
    }

    .grade-card {
        padding: 12px;
    }

        .grade-card h3 {
            font-size: 1rem;
            text-align: center;
        }

    .uniform-list li {
        padding: 4px 0;
        padding-left: 18px;
        font-size: 0.9rem;
    }

    .uniform-details {
        gap: 15px;
    }

    .regular-uniform h4, .pt-uniform h4 {
        text-align: center;
        font-size: 1rem;
    }

    .common-items h4 {
        text-align: center;
    }

    .requirement-card {
        padding: 20px 15px;
    }

        .requirement-card h3 {
            font-size: 1.1rem;
        }

    .policy-reminder {
        padding: 15px;
        margin-top: 30px;
    }

        .policy-reminder h3 {
            font-size: 1.1rem;
            text-align: center;
        }

        .policy-reminder li {
            padding: 6px 0;
            padding-left: 20px;
            font-size: 0.9rem;
        }
}

