/* Custom CSS Variables */
:root {
    --primary-color: #0d3b66;
    --primary-hover: #0a2e52;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --accent-hover: #d65a3c;
    --text-main: #2b2d42;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Helper Utilities */
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-gold { color: #f59e0b; }
.required { color: #ef4444; }
.flex-1 { flex: 1; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Top Utility Bar */
.top-bar {
    background: #07213a;
    color: #e2e8f0;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info span { margin-right: 20px; }
.contact-info i { color: var(--secondary-color); margin-right: 5px; }
.badge-link { margin-left: 15px; color: #cbd5e1; }
.badge-link:hover { color: #fff; }
.btn-apply-top {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 15px;
}

/* Main Navigation */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 10px 14px;
    border-radius: var(--radius);
}
.college-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}
.college-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}
.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    padding: 10px 0;
}
.nav-link:hover, .nav-item.active .nav-link {
    color: var(--accent-color);
}
.nav-cta {
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: var(--radius);
}
.nav-cta:hover {
    background: var(--primary-hover);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    list-style: none;
    min-width: 200px;
    display: none;
    padding: 10px 0;
}
.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text-main);
}
.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}
.dropdown:hover .dropdown-menu { display: block; }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(13,59,102,0.92), rgba(10,46,82,0.85)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1350&q=80') center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}
.hero-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.hero-section h1 {
    font-size: 3rem;
    color: #fff;
    margin: 20px 0;
}
.hero-section .highlight { color: var(--secondary-color); }
.hero-section p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    margin: 0 8px;
}
.btn-primary { background: var(--accent-color); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-secondary:hover { background: #fff; color: var(--primary-color); }

/* Layout Sections */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.section-title { margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 10px; }
.section-title p { color: var(--text-muted); }

/* Highlights Strip */
.highlights-strip {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.highlight-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.highlight-card .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.highlight-card p { font-size: 0.85rem; color: var(--text-muted); }

/* Vision & Mission Cards */
.card-accent {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}
.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Goals */
.goal-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.goal-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(13, 59, 102, 0.1);
    position: absolute;
    top: 15px;
    right: 20px;
}

/* Disclosures */
.disclosure-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: var(--transition);
}
.disclosure-box i { font-size: 1.5rem; color: var(--primary-color); }
.disclosure-box:hover {
    background: var(--primary-color);
    color: #fff;
}
.disclosure-box:hover i { color: var(--secondary-color); }

/* Inner Page Header */
.page-header {
    background: linear-gradient(135deg, #07213a, var(--primary-color));
    color: #fff;
    padding: 50px 0;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
    color: #cbd5e1;
}
.breadcrumb a { color: var(--secondary-color); }
.breadcrumb li.active { color: #fff; font-weight: 500; }

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.team-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.featured-card { border-top: 4px solid var(--secondary-color); }
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 18px;
}
.team-info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.qualifications {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.designation {
    display: inline-block;
    background: rgba(13, 59, 102, 0.08);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Trustees */
.trustees-subgroup { margin-top: 40px; }
.subgroup-title { margin-bottom: 25px; font-size: 1.6rem; }
.trustee-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.trustee-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.trustee-card h4 { font-size: 1.05rem; }
.role { font-size: 0.85rem; color: var(--text-muted); }

/* Academic Admin */
.admin-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}
.admin-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.admin-details h3 { font-size: 1.25rem; }
.admin-details .degree {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 5px 0 10px;
}
.badge-role {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Admissions Page */
.admission-info-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}
.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.course-duration {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 10px 0 20px;
}
.check-list { list-style: none; margin: 15px 0 25px; }
.check-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.check-list i { color: #2ab7ca; margin-top: 3px; }

.subject-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}
.subject-tags .tag {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Forms & UI Elements */
.admission-form-wrapper, .contact-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.15);
}

.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon-group i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 1rem;
}
.input-icon-group input,
.input-icon-group select { padding-left: 42px; }

.btn-block, .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: var(--primary-color);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-submit:hover { background: var(--primary-hover); }

/* Unified Alerts */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Document Checklist */
.checklist-docs { list-style: none; margin-top: 15px; }
.checklist-docs li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.checklist-docs i { color: var(--primary-color); }

/* Unified Subject Cards & Grids */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.subject-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.subject-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}
.subject-card i { color: var(--secondary-color); }

/* Program Overview */
.program-overview-card {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.program-overview-card h2 { font-size: 2.2rem; color: #fff; margin-bottom: 15px; }
.overview-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}
.program-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 12px;
}
.ph-item { display: flex; align-items: center; gap: 15px; }
.ph-item i { font-size: 1.8rem; color: #f59e0b; }
.ph-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.ph-item span { font-size: 1rem; font-weight: 600; }

/* Eligibility Table */
.eligibility-table-wrapper {
    max-width: 700px;
    margin: 30px auto 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.eligibility-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.eligibility-table th {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 24px;
    font-size: 0.95rem;
    font-weight: 600;
}
.eligibility-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1rem;
}
.eligibility-table tr:last-child td { border-bottom: none; }

.mark-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}
.bg-oc { background: #dbeafe; color: #1e40af; }
.bg-bc { background: #d1fae5; color: #065f46; }
.bg-mbc { background: #fef3c7; color: #92400e; }
.bg-scst { background: #fee2e2; color: #991b1b; }

/* Contact Us */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.info-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.info-icon {
    width: 46px;
    height: 46px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Map Section */
.map-container-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.map-title-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-title-bar h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Photo Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.gallery-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.gallery-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-card:hover .gallery-img-box img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }

.btn-zoom {
    background: #fff;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-zoom:hover { transform: scale(1.15); }

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    width: 100%;
}
.lightbox-caption { padding: 20px; color: #fff; }
.lightbox-caption h3 { margin: 0 0 6px 0; font-size: 1.3rem; color: #fff; }
.lightbox-caption p { color: #94a3b8; margin: 0; font-size: 0.95rem; }
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--accent-color); }

/* Footer */
.site-footer {
    background: #051626;
    color: #a0aec0;
    padding-top: 60px;
}
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 0.85rem;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(1, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: var(--shadow-md);
        display: none;
        padding: 20px 0;
    }
    .nav-menu.active { display: block; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-item { width: 100%; text-align: center; }
    .nav-link { display: block; padding: 12px; }
    .dropdown-menu { position: static; box-shadow: none; }
}

@media (max-width: 768px) {
    .admin-card { flex-direction: column; text-align: center; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .program-overview-card { padding: 25px; }
    .program-overview-card h2 { font-size: 1.7rem; }
}

@media (max-width: 600px) {
    .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 2rem; }
}



/* Container for the avatar icon/photo */
/* Container for the avatar icon/photo */
.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

/* Restrain image to avatar boundaries */
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Card Container */
.admin-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #1a365d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Avatar Styling */
.admin-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.admin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Feature Link Card Styles */
.feature-link-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white, #ffffff);
    padding: 24px;
    border-radius: var(--radius, 8px);
    border: 1px solid var(--border-color, #e9ecef);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    transition: var(--transition, all 0.3s ease);
    text-decoration: none;
}

.feature-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md, 0 4px 16px rgba(0,0,0,0.1));
    border-color: var(--primary-color, #0d3b66);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light, #f8f9fa);
    color: var(--primary-color, #0d3b66);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition, all 0.3s ease);
}

.feature-link-card:hover .feature-icon {
    background: var(--primary-color, #0d3b66);
    color: #ffffff;
}

.feature-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--primary-color, #0d3b66);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 12px;
    line-height: 1.5;
}

.link-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color, #e76f51);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-link-card:hover .link-btn {
    color: var(--accent-hover, #d65a3c);
}

.feature-link-card:hover .link-btn i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}
/* Header Brand Container */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Adjust height based on your layout */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.college-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color, #0d3b66);
    line-height: 1.2;
}

.college-sub {
    font-size: 0.75rem;
    color: var(--text-muted, #6c757d);
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
    }
    .college-name {
        font-size: 1.05rem;
    }
    .college-sub {
        font-size: 0.68rem;
    }
}

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo .college-name {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-logo .college-sub {
    color: #a0aec0;
    font-size: 0.75rem;
    display: block;
    margin-top: 2px;
}

.footer-col p {
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.6;
}
/* =========================================
   MOBILE NAVIGATION TOGGLE
   ========================================= */

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
}

.mobile-toggle .bar {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #0b2d5c;
    transition: all 0.3s ease;
}

/* =========================================
   MOBILE MENU
   ========================================= */

@media (max-width: 991px) {

    .header-container {
        position: relative;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

        /* Hidden */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.35s ease;

        z-index: 1000;
    }

    /* OPEN STATE */
    .nav-menu.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 10px 0;
        list-style: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 13px 20px;
    }

    /* Hamburger → X */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* =========================================
   DESKTOP
   ========================================= */

@media (min-width: 992px) {

    .nav-menu {
        display: block !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
    }
}

/* =========================================
   TOP BAR
   ========================================= */

.top-bar {
    width: 100%;
    background: #08233d;
    color: #fff;
}

.top-bar-content {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   CONTACT INFORMATION
   ========================================= */

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
}

.contact-info i {
    width: 16px;
    text-align: center;
    color: #f5a04c;
    font-size: 13px;
}


/* =========================================
   TOP LINKS
   ========================================= */

.top-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

.top-badges {
    display: flex;
    align-items: center;
    gap: 18px;
}

.badge-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s ease;
}

.badge-link:hover {
    color: #f5a04c;
}


/* =========================================
   ADMISSION BUTTON
   ========================================= */

.btn-apply-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 27px;
    padding: 0 13px;

    background: #ed7455;
    color: #fff;

    border-radius: 4px;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    transition: 0.2s ease;
}

.btn-apply-top:hover {
    background: #d95e40;
    color: #fff;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 576px) {

    .top-bar-content {
        min-height: auto;
        padding: 8px 12px;
        gap: 15px;
    }

    .contact-info a {
        font-size: 12px;
    }

    .top-badges {
        gap: 14px;
    }

    .badge-link {
        font-size: 12px;
    }

    .btn-apply-top {
        height: 25px;
        padding: 0 10px;
        font-size: 12px;
    }
}