:root {
    --primary: #003366;
    --accent: #ffd700;
    --light-bg: #f8f9fa;
    --dark-text: #333333;
}
        
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
}
        
/* Navbar styling */
.navbar {
    background-color: var(--primary);
    padding: 0.8rem 1rem;
}
        
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}
        
.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}
        
.nav-link:hover {
    color: var(--accent) !important;
}

    .nav-link.active {
        color: var(--accent) !important;
        font-weight: 600;
        position: relative;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background-color: var(--accent);
            border-radius: 1px;
        }
        
.btn-apply {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
}

.btn-apply:hover {
/*    background-color: var(--accent);*/
    color: var(--accent);
    border-color: var(--accent);
}

/* User Profile Dropdown Styles */
.nav-item.dropdown .nav-link {
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

    .nav-item.dropdown .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
    }

    .nav-item.dropdown .nav-link img {
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: border-color 0.3s ease;
    }

    .nav-item.dropdown .nav-link:hover img {
        border-color: var(--accent);
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
    font-weight: 500;
}

    .dropdown-item:hover {
        background-color: var(--primary);
        color: white;
        transform: translateX(5px);
    }

    .dropdown-item i {
        width: 16px;
        text-align: center;
    }

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .nav-item.dropdown .nav-link span {
        display: none;
    }

    .nav-item.dropdown .nav-link img {
        width: 28px;
        height: 28px;
    }

    .dropdown-menu {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .nav-item.dropdown .nav-link {
        padding: 0.4rem 0.5rem;
    }

        .nav-item.dropdown .nav-link img {
            width: 24px;
            height: 24px;
        }

    .dropdown-menu {
        min-width: 160px;
    }

    .dropdown-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

    /* Carousel styling */
    .carousel-item {
        height: 500px;
        background-size: cover;
        background-position: center;
    }
        
    .carousel-caption {
        background-color: rgba(0, 51, 102, 0.8);
        padding: 2rem;
        border-radius: 8px;
        max-width: 600px;
        margin: 0 auto;
    }
        
    .carousel-caption h2 {
        color: var(--accent);
        font-weight: 700;
    }
        
    /* Section headers */
    .section-header {
        text-align: center;
        margin: 3rem 0;
        color: var(--primary);
        position: relative;
    }
        
    .section-header:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--accent);
        margin: 10px auto;
    }
        
    /* Dean's message */
    .dean-section {
        background-color: var(--light-bg);
        padding: 3rem 0;
    }
        
    .dean-img {
        border: 5px solid var(--primary);
        border-radius: 8px;
    }
        
    /* Programs section */
    .program-card {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        height: 100%;
    }
        
    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
        
    .program-card-header {
        background-color: var(--primary);
        color: white;
        padding: 1rem;
        text-align: center;
    }
        
    .program-card-body {
        padding: 1.5rem;
    }
        
    /* News section */
    .news-card {
        border-left: 4px solid var(--primary);
        margin-bottom: 1.5rem;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }
        
    .news-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
        
    .news-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }
        
    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
        
    .news-card:hover .news-image img {
        transform: scale(1.05);
    }
        
    .news-content {
        padding: 1.5rem;
    }
        
    .news-date {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
    }
        
    .news-content h4 {
        color: var(--dark-text);
        margin: 0.8rem 0;
        font-size: 1.1rem;
        line-height: 1.4;
    }
        
    .news-content p {
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
        
    /* Footer */
    footer {
        background-color: var(--primary);
        color: white;
        padding: 3rem 0 1rem;
    }
        
    .footer-links h5 {
        color: var(--accent);
        margin-bottom: 1.2rem;
        font-weight: 600;
    }
        
    .footer-links ul {
        list-style: none;
        padding-left: 0;
    }
        
    .footer-links li {
        margin-bottom: 0.8rem;
    }
        
    .footer-links a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
        
    .footer-links a:hover {
        color: var(--accent);
    }
        
    .social-icons a {
        color: white;
        font-size: 1.5rem;
        margin-right: 1rem;
        transition: color 0.3s;
    }
        
    .social-icons a:hover {
        color: var(--accent);
    }
        
    .copyright {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
        
    /* Stats section */
    .stats-section {
        background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3') center/cover;
        color: white;
        padding: 4rem 0;
    }
        
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent);
    }
        
    /* Call to action */
    .cta-section {
        background-color: var(--accent);
        padding: 3rem 0;
        text-align: center;
    }
        
    /* Responsive design for news cards */
    @media (max-width: 768px) {
        .news-image {
            height: 180px;
        }
            
        .news-content {
            padding: 1rem;
        }
            
        .news-content h4 {
            font-size: 1rem;
        }
    }
        
    @media (max-width: 576px) {
        .news-image {
            height: 160px;
        }
            
        .news-content {
            padding: 0.8rem;
        }
    }

    /* Programs page specific styles */
    .page-header {
        background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1524178232400-38d816f003ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80') center/cover;
        padding: 6rem 0 4rem;
        margin-top: 0;
    }

    .college-section {
        margin-bottom: 4rem;
    }

    .college-title {
        color: var(--primary);
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 1rem;
        border-bottom: 3px solid var(--accent);
        padding-bottom: 0.5rem;
    }

    .college-description {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .program-duration {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    .program-description {
        color: #666;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .program-features {
        list-style: none;
        padding-left: 0;
        margin-bottom: 1rem;
    }

    .program-features li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .program-requirements {
        background-color: #f8f9fa;
        padding: 0.8rem;
        border-radius: 4px;
        font-size: 0.9rem;
        color: #555;
        margin-bottom: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 1rem;
    }

    .process-step h4 {
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .process-step p {
        color: #666;
        line-height: 1.6;
    }

    /* Enhanced program card styles */
    .program-card {
        border: 1px solid #ddd;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
        background: white;
    }

    .program-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border-color: var(--primary);
    }

    .program-card-header {
        background: linear-gradient(135deg, var(--primary), #004080);
        color: white;
        padding: 1.5rem;
        text-align: center;
    }

    .program-card-header h4 {
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .program-card-body {
        padding: 1.5rem;
    }

    /* Search Section */
    .search-section {
        background: linear-gradient(135deg, #ffffff, #f8f9fa);
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 3rem;
        border: 1px solid #e9ecef;
    }

    .search-section h4 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .search-box-container .input-group {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .search-box-container .input-group-text {
        background-color: var(--primary);
        color: white;
        border: none;
        padding: 0.75rem 1rem;
    }

    .search-box-container .form-control {
        border: none;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .search-box-container .form-control:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .search-box-container .btn {
        border: none;
        padding: 0.75rem 1rem;
    }

    .search-results-info {
        text-align: center;
        min-height: 1.5rem;
    }

    .search-suggestions {
        text-align: center;
    }

    .suggestion-tag {
        transition: all 0.3s ease;
        border: 1px solid #dee2e6;
    }

    .suggestion-tag:hover {
        background-color: var(--primary) !important;
        color: white !important;
        transform: translateY(-1px);
    }

    /* College Navigation */
    .college-nav {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .college-nav h4 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .college-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        background: white;
        border-radius: 8px;
        text-decoration: none;
        color: var(--dark-text);
        transition: all 0.3s ease;
        border: 2px solid transparent;
        height: 100%;
    }

    .college-nav-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: var(--primary);
        color: var(--primary);
    }

    .college-nav-item i {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 0.8rem;
    }

    .college-nav-item span {
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .college-nav-item small {
        color: #666;
        font-size: 0.85rem;
    }

    /* Improved spacing for more programs */
    .college-section {
        margin-bottom: 5rem;
        padding-top: 2rem;
    }

    .college-section:target {
        scroll-margin-top: 100px;
    }

    /* Enhanced program card layout */
    .program-card {
        margin-bottom: 2rem;
    }

    .program-card-header h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .program-card-body {
        min-height: 280px;
        display: flex;
        flex-direction: column;
    }

    .program-card-body .btn {
        margin-top: auto;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Responsive adjustments for programs page */
    @media (max-width: 768px) {
        .page-header {
            padding: 4rem 0 3rem;
        }
            
        .college-title {
            font-size: 1.5rem;
        }
            
        .program-card-header {
            padding: 1rem;
        }
            
        .program-card-body {
            padding: 1rem;
            min-height: auto;
        }

        .college-nav {
            padding: 1.5rem;
        }

        .college-nav-item {
            padding: 1rem 0.5rem;
        }

        .college-nav-item i {
            font-size: 1.5rem;
        }

        .college-nav-item span {
            font-size: 0.9rem;
        }

        .search-section {
            padding: 1.5rem;
        }

        .search-box-container .form-control {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .college-nav-item {
            padding: 0.8rem 0.3rem;
        }

        .college-nav-item i {
            font-size: 1.3rem;
        }

        .college-nav-item span {
            font-size: 0.8rem;
        }

        .college-nav-item small {
            font-size: 0.75rem;
        }

        .search-section {
            padding: 1rem;
        }

        .search-box-container .input-group-text,
        .search-box-container .form-control,
        .search-box-container .btn {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
        }

        .suggestion-tag {
            font-size: 0.75rem;
            padding: 0.3rem 0.6rem;
        }
    }

    /* Faculty page specific styles */
    .faculty-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }

    .faculty-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .faculty-image {
        height: 400px;
        overflow: hidden;
        position: relative;
    }

    .faculty-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .faculty-card:hover .faculty-image img {
        transform: scale(1.05);
    }

    .faculty-info {
        padding: 1.5rem;
    }

    .faculty-info h4 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .faculty-title {
        color: var(--accent);
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .faculty-department {
        color: #666;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .faculty-specialization {
        color: #555;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .faculty-credentials {
        margin-bottom: 1rem;
    }

    .credential {
        display: block;
        background-color: #f8f9fa;
        color: var(--primary);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
        border: 1px solid #e9ecef;
    }

    .faculty-achievements {
        margin-bottom: 1rem;
    }

    .achievement {
        display: inline-block;
        background-color: var(--primary);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-right: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .faculty-contact {
        margin-top: 1rem;
    }

    /* Small faculty cards */
    .faculty-card-small {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }

    .faculty-card-small:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .faculty-image-small {
        height: 250px;
        overflow: hidden;
        position: relative;
    }

    .faculty-image-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .faculty-card-small:hover .faculty-image-small img {
        transform: scale(1.05);
    }

    .faculty-info-small {
        padding: 1rem;
    }

    .faculty-info-small h5 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 0.3rem;
        font-size: 1rem;
    }

    .faculty-title-small {
        color: var(--accent);
        font-weight: 500;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .faculty-specialization-small {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Department sections */
    .department-section {
        margin-bottom: 4rem;
    }

    .department-title {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 2rem;
        border-bottom: 3px solid var(--accent);
        padding-bottom: 0.5rem;
    }

    /* Research area cards */
    .research-area-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #e9ecef;
    }

    .research-area-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        border-color: var(--primary);
    }

    .research-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary), #004080);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .research-icon i {
        font-size: 1.5rem;
        color: white;
    }

    .research-area-card h4 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .research-area-card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .research-topics {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .research-topics li {
        background-color: #f8f9fa;
        color: var(--primary);
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        border: 1px solid #e9ecef;
    }

    /* Achievement cards */
    .achievement-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }

    .achievement-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        border-color: var(--primary);
    }

    .achievement-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent), #ffed4e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
    }

    .achievement-icon i {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .achievement-card h4 {
        color: var(--primary);
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .achievement-card p {
        color: #666;
        font-weight: 500;
        margin-bottom: 0;
    }

    /* Responsive design for faculty page */
    @media (max-width: 768px) {
        .faculty-image {
            height: 200px;
        }

        .faculty-info {
            padding: 1rem;
        }

        .faculty-image-small {
            height: 120px;
        }

        .faculty-info-small {
            padding: 0.8rem;
        }

        .research-area-card {
            padding: 1.5rem;
        }

        .achievement-card {
            padding: 1.5rem;
        }

        .department-title {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .faculty-image {
            height: 180px;
        }

        .faculty-image-small {
            height: 100px;
        }

        .research-area-card {
            padding: 1rem;
        }

        .achievement-card {
            padding: 1rem;
        }

        .achievement-card h4 {
            font-size: 1.5rem;
        }

        .research-icon,
        .achievement-icon {
            width: 50px;
            height: 50px;
        }

            .research-icon i,
            .achievement-icon i {
                font-size: 1.2rem;
            }
        }

        /* Program Detail Page Styles */
        .program-header {
            background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1524178232400-38d816f003ae?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80') center/cover;
            padding: 4rem 0 3rem;
            margin-top: 0;
        }

        .program-hero {
            margin-top: 2rem;
        }

        .program-meta {
            margin-top: 2rem;
        }

        .meta-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1rem;
            border-radius: 8px;
            color: white;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .program-actions .btn {
            width: 100%;
            margin-bottom: 1rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .section-subheader {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
        }

        .program-content {
            line-height: 1.8;
            color: #555;
        }

        .curriculum-section,
        .outcomes-section,
        .careers-section {
            margin-bottom: 2rem;
        }

        .outcome-item,
        .career-item {
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary);
        }

        .outcome-item i,
        .career-item h5 {
            color: var(--primary);
        }

        .sidebar-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }

        .sidebar-card .card-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
        }

        .requirements-list li,
        .deadlines-list li {
            margin-bottom: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .requirements-list li:last-child,
        .deadlines-list li:last-child {
            border-bottom: none;
        }

        .fee-item {
            margin-bottom: 1.5rem;
        }

        .fee-amount {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
        }

        .contact-info p {
            margin-bottom: 0.8rem;
            color: #666;
        }

        .contact-info i {
            color: var(--primary);
            width: 20px;
        }

        /* Responsive design for program detail page */
        @media (max-width: 768px) {
            .program-header {
                padding: 3rem 0 2rem;
            }

            .program-hero {
                margin-top: 1rem;
            }

            .program-actions {
                margin-top: 2rem;
            }

            .sidebar-card {
                padding: 1.5rem;
            }

            .outcome-item,
            .career-item {
                padding: 1rem;
            }
        }

        @media (max-width: 576px) {
            .program-header {
                padding: 2rem 0 1.5rem;
            }

            .meta-item {
                padding: 0.6rem 0.8rem;
                font-size: 0.9rem;
            }

            .sidebar-card {
                padding: 1rem;
            }

            .outcome-item,
            .career-item {
                padding: 0.8rem;
            }
        }

        /* Contact Page Styles */
        .contact-form-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }

        .contact-form .form-control,
        .contact-form .form-select {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .contact-form .form-control:focus,
        .contact-form .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
        }

        .contact-form .form-label {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .contact-info-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            height: fit-content;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #004080);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .contact-details h5 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.5;
        }

        .social-links h5 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 0.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .staff-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            height: 100%;
        }

        .staff-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .staff-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            border: 3px solid var(--primary);
        }

        .staff-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .staff-info {
            text-align: center;
        }

        .staff-info h4 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .staff-title {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .staff-contact {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

        .staff-contact i {
            color: var(--primary);
            width: 15px;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }

        .map-info {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }

        .map-info-item {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .map-info-item i {
            font-size: 1.1rem;
        }

        /* FAQ Accordion Styles */
        .accordion-button {
            background-color: white;
            border: 1px solid #e9ecef;
            color: var(--primary);
            font-weight: 600;
            padding: 1rem 1.5rem;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.25);
        }

        .accordion-item {
            border: 1px solid #e9ecef;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }

        .accordion-body {
            padding: 1.5rem;
            background-color: #f8f9fa;
            color: #666;
            line-height: 1.6;
        }

        /* Responsive design for contact page */
        @media (max-width: 768px) {
            .contact-form-section {
                padding: 1.5rem;
            }

            .contact-info-card {
                padding: 1.5rem;
                margin-top: 2rem;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-icon {
                margin: 0 auto 1rem;
            }

            .staff-card {
                padding: 1rem;
            }

            .staff-image {
                width: 60px;
                height: 60px;
            }

            .map-info-item {
                margin-bottom: 1rem;
            }

            .accordion-button {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }

            .accordion-body {
                padding: 1rem;
            }
        }

        @media (max-width: 576px) {
            .contact-form-section {
                padding: 1rem;
            }

            .contact-info-card {
                padding: 1rem;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }

            .contact-icon i {
                font-size: 1rem;
            }

            .staff-card {
                padding: 0.8rem;
            }

            .staff-image {
                width: 50px;
                height: 50px;
            }

            .social-icon {
                width: 35px;
                height: 35px;
            }

            .map-info {
                padding: 1rem;
            }
        }



/* Programs Carousel Navigation Styles */
.programs-carousel-container {
    position: relative;
    overflow: hidden;
}

.programs-carousel {
    overflow: hidden;
    margin: 0 60px;
}

.programs-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

    .programs-track .program-card {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 300px;
    }

.programs-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

    .programs-nav-btn:hover {
        background: var(--accent);
        color: var(--primary);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
    }

    .programs-nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .programs-nav-btn:disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
        transform: translateY(-50%);
        box-shadow: none;
    }

        .programs-nav-btn:disabled:hover {
            background: #ccc;
            color: #666;
            transform: translateY(-50%);
            box-shadow: none;
        }

.programs-nav-prev {
    left: 0;
}

.programs-nav-next {
    right: 0;
}

/* Responsive adjustments for programs carousel */
@media (max-width: 768px) {
    .programs-carousel {
        margin: 0 50px;
    }

    .programs-track .program-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 280px;
    }

    .programs-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .programs-carousel {
        margin: 0 40px;
    }

    .programs-track .program-card {
        flex: 0 0 100%;
        min-width: 250px;
    }

    .programs-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Admission Page */
.admission-program-card-body {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}



/* Admission Programs List  */
.admission-program-list {
    border-left: 4px solid var(--primary);
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 250px;
}

    .admission-program-list:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }



.admission-program-list-content {
    padding: 1.5rem;
}

.news-content h4 {
    color: var(--dark-text);
    margin: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}