/* Admissions Page Styles */

/* Admission Banner */
.admission-banner {
    position: relative;
    height: 500px;
    background-image: url('images/admissions/admission-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    text-align: center;
}

.admission-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.admission-banner p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1.2s ease;
}

.admission-banner .btn {
    animation: fadeInUp 1.4s ease;
    font-size: 18px;
    padding: 12px 30px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Admission Procedure */
.admission-procedure {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.procedure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.procedure-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
}

.procedure-text h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-top: 15px;
}

.procedure-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.procedure-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.procedure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.procedure-image:hover img {
    transform: scale(1.05);
}

/* Orange Shapes */
.orange-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.orange-shapes .shape {
    position: absolute;
    background-color: rgba(243, 156, 18, 0.1);
}

.orange-shapes .shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.orange-shapes .shape-2 {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    top: 30%;
    right: 10%;
    transform: rotate(45deg);
}

.orange-shapes .shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    bottom: -30px;
    left: 20%;
    transform: rotate(20deg);
}

.orange-shapes .shape-4 {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    top: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.orange-shapes .shape-5 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    bottom: 20%;
    right: -30px;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.process-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
}

.process-text h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-top: 15px;
}

.process-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.process-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-image:hover img {
    transform: scale(1.05);
}

/* Purple Shapes */
.purple-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.purple-shapes .shape {
    position: absolute;
    background-color: rgba(142, 68, 173, 0.1);
}

.purple-shapes .shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.purple-shapes .shape-2 {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    top: 30%;
    left: 10%;
    transform: rotate(45deg);
}

.purple-shapes .shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    bottom: -30px;
    right: 20%;
    transform: rotate(20deg);
}

.purple-shapes .shape-4 {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    top: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.purple-shapes .shape-5 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    bottom: 20%;
    left: -30px;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.registration-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.registration-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.registration-option {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.registration-option:hover {
    transform: translateY(-10px);
}

.option-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.registration-option h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.registration-option p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.help-text {
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Fee Structure */
.fee-structure {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.fee-structure h2 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.fee-structure h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.fee-table-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th, .fee-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.fee-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.fee-note {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 20px;
    background-color: #fff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fee-note h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.fee-note p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.fee-note ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.fee-note li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Admission Form */
.admission-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.admission-form-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.admission-form-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
}

.form-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 12px 30px;
    font-size: 18px;
}

/* Documents Required */
.documents-required {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.documents-required h2 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.document-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-10px);
}

.document-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.document-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.document-card p {
    color: #555;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .procedure-content,
    .process-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .procedure-image,
    .process-image {
        order: -1;
    }
    
    .registration-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .admission-banner {
        height: 400px;
    }
    
    .admission-banner h1 {
        font-size: 36px;
    }
    
    .admission-banner p {
        font-size: 18px;
    }
    
    .procedure-text h2,
    .process-text h2,
    .registration-section h2,
    .fee-structure h2,
    .admission-form-section h2,
    .documents-required h2 {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .fee-table th, .fee-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .admission-banner {
        height: 350px;
    }
    
    .admission-banner h1 {
        font-size: 30px;
    }
    
    .admission-banner p {
        font-size: 16px;
    }
    
    .fee-table-container {
        overflow-x: auto;
    }
    
    .fee-table {
        min-width: 500px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
} 