/* ==============================================
   ADDITIONAL COLLEGE SECTIONS - Complete 13 Tabs
   ============================================== */

/* Admission Section */
#admission {
    scroll-margin-top: 100px;
}

.admission-process {
    background: var(--cd-white);
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
}

.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.admission-step {
    padding: 25px;
    background: var(--cd-bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--cd-orange);
}

.admission-step h4 {
    color: var(--cd-navy);
    margin-bottom: 10px;
}

.admission-dates-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.admission-dates-table th,
.admission-dates-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--cd-border);
}

.admission-dates-table th {
    background: var(--cd-navy);
    color: white;
    font-weight: 600;
}

/* Scholarship Section */
#scholarship {
    scroll-margin-top: 100px;
}

.scholarship-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.scholarship-card {
    background: var(--cd-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--cd-shadow-sm);
    border-top: 4px solid var(--cd-orange);
}

.scholarship-card h3 {
    color: var(--cd-navy);
    margin-bottom: 15px;
}

.scholarship-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--cd-orange);
    margin: 15px 0;
}

/* CutOff Section */
#cutoff {
    scroll-margin-top: 100px;
}

.cutoff-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    border-bottom: 2px solid var(--cd-border);
}

.cutoff-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: var(--cd-text-muted);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.cutoff-tab.active {
    color: var(--cd-orange);
    border-bottom-color: var(--cd-orange);
}

.cutoff-table {
    width: 100%;
    margin: 20px 0;
}

.cutoff-table th,
.cutoff-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--cd-border);
}

.cutoff-table th {
    background: var(--cd-bg-light);
    font-weight: 600;
    color: var(--cd-navy);
}

/* Campus Section */
#campus {
    scroll-margin-top: 100px;
}

.campus-facilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.facility-card {
    background: var(--cd-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--cd-shadow-sm);
    transition: transform 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cd-shadow-md);
}

.facility-card i {
    font-size: 40px;
    color: var(--cd-orange);
    margin-bottom: 15px;
}

/* Gallery Section */
#gallery {
    scroll-margin-top: 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* News Section */
#news {
    scroll-margin-top: 100px;
}

.news-list {
    margin: 20px 0;
}

.news-item {
    background: var(--cd-white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--cd-orange);
    box-shadow: var(--cd-shadow-sm);
}

.news-date {
    color: var(--cd-text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.news-title {
    color: var(--cd-navy);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.news-excerpt {
    color: var(--cd-text-dark);
    line-height: 1.6;
}

/* QnA Section */
#qna {
    scroll-margin-top: 100px;
}

.qna-list {
    margin: 20px 0;
}

.qna-item {
    background: var(--cd-white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--cd-shadow-sm);
}

.question {
    font-weight: 600;
    color: var(--cd-navy);
    margin-bottom: 10px;
    font-size: 16px;
}

.answer {
    color: var(--cd-text-dark);
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid var(--cd-orange);
}

.answer-meta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--cd-border);
    font-size: 14px;
    color: var(--cd-text-muted);
}

/* Fees Section */
#fees {
    scroll-margin-top: 100px;
}

.fees-table {
    width: 100%;
    background: var(--cd-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--cd-shadow-sm);
    margin: 20px 0;
}

.fees-table th,
.fees-table td {
    padding: 15px;
    text-align: left;
}

.fees-table thead {
    background: var(--cd-navy);
    color: white;
}

.fees-table tbody tr:nth-child(even) {
    background: var(--cd-bg-lighter);
}

.fees-amount {
    font-weight: 700;
    color: var(--cd-orange);
    font-size: 16px;
}

/* Section Headers */
.college-section h2 {
    color: var(--cd-navy);
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--cd-orange);
    display: inline-block;
}

.college-section {
    scroll-margin-top: 100px;
    padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {

    .admission-steps,
    .scholarship-cards,
    .campus-facilities,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cutoff-tabs {
        flex-wrap: wrap;
    }
}