/* Modern admission page styling */
.courses_offered{
    padding: 0;
    text-align: left;
    overflow-x: hidden;
}

.admission-section {
    padding: 4rem 0;
}

.admission-section:nth-child(even) {
    background: #f8f9fa;
}

.admission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.available_courses {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.available_courses p{
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-1);
    padding: 0.75rem 0;
    border-bottom: 2px solid #e2e8f0;
}

.available_courses p:last-child {
    border-bottom: none;
}

.courses_offered table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.courses_offered table th {
    background: linear-gradient(135deg, var(--theme-1) 0%, #0a1a3c 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.courses_offered table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 0.95rem;
}

.apply-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--theme-1) 0%, var(--theme-2) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.apply-link:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    opacity: 0.95;
}

.courses_offered table tr:hover {
    background: #f8f9fa;
}

.courses_offered table tr:last-child td {
    border-bottom: none;
}

.courses_offered .table_container{
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table_container h2{
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--theme-1);
    font-weight: 700;
}

.eligibility {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--theme-1);
}

.eligibility p {
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.eligibility a {
    color: var(--theme-1);
    text-decoration: none;
    font-weight: 600;
}

.eligibility a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px){
    .admission-container {
        padding: 0 1rem;
    }
    
    .available_courses {
        padding: 1.5rem;
    }
    
    .courses_offered table th,
    .courses_offered table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .eligibility {
        padding: 1.5rem;
    }
}


/* Committee and RTI page styling */
.committees{
    padding: 0;
}

.committees ul li{
    list-style: none;
    margin: 8px;
    font-size: 1.1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--theme-1);
}

.rti {
    margin: 0;
    padding: 0;
}

.rti>div{
    margin: 1rem 0;
    font-size: 1.1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rti>a{
    display: block;
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--theme-1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.rti>a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.rti h2{
    margin: 0 0 1.5rem 0;
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-1);
}

.rti h2:after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-1), var(--theme-2));
    border-radius: 2px;
}

/* Program Outcomes Styling */
.program-description {
    margin-top: 1.5rem;
}

.program-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-1);
    margin-bottom: 1rem;
    position: relative;
}

.program-description h3:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-1), var(--theme-2));
    border-radius: 2px;
}

.program-description p {
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.outcomes-list {
    margin-top: 1.5rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--theme-1);
    transition: all 0.3s ease;
}

.outcome-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.outcome-number {
    font-weight: 700;
    color: var(--theme-1);
    font-size: 1.1rem;
    margin-right: 1rem;
    min-width: 25px;
}

.outcome-text {
    color: #4a5568;
    line-height: 1.6;
    flex: 1;
}

@media screen and (max-width: 768px) {
    .outcome-item {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .outcome-number {
        font-size: 1rem;
        margin-right: 0.75rem;
        min-width: 20px;
    }
    
    .program-description p {
        text-align: left;
    }
}

/* Fees Structure Styling */
.fees_structure h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-1);
    margin-bottom: 1.5rem;
    position: relative;
}

.fees_structure h3:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-1), var(--theme-2));
    border-radius: 2px;
}

.pdf-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pdf-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pdf-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border-radius: 8px;
    border-left: 4px solid var(--theme-1);
}

.pdf-link:hover {
    background: #f8f9fa;
    color: var(--theme-1);
}

.pdf-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pdf-link:hover .pdf-icon {
    background: var(--theme-1);
    transform: scale(1.1);
}

.pdf-link:hover .pdf-icon img {
    filter: brightness(0) invert(1);
}

.pdf-text {
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

@media screen and (max-width: 768px) {
    .pdf-link {
        padding: 1rem;
    }
    
    .pdf-text {
        font-size: 1rem;
    }
    
    .pdf-icon {
        width: 25px;
        height: 25px;
        margin-right: 0.75rem;
    }
    
    .pdf-icon img {
        width: 15px !important;
    }
}



