
        .college-hero-section {
           
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 1rem;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active a {
            color: #17a2b8;
            font-weight: bold;
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .sticky-sidebar {
            position: sticky;
            top: 90px;
            /*z-index: 1000;*/
            height: fit-content;
            max-height: calc(100vh-90px);
            overflow-y: auto;
        }
        
        .sidebar-nav {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .sidebar-nav .nav-link {
            color: #2c3e50;
            padding: 0.8rem 1rem;
            margin: 0.3rem 0;
            border-radius: 5px;
            transition: all 0.3s;
            display: block;
            text-decoration: none;
        }
        
        .sidebar-nav .nav-link:hover, .sidebar-nav .nav-link.active {
            background: linear-gradient(to right, #3494E6, #EC6EAD);
            color: white;
        }
        
        .quick-links {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 1.5rem;
        }
        
        .quick-links a {
            display: block;
            color: #2c3e50;
            padding: 0.5rem 0;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .quick-links a:hover {
            color: #3494E6;
            padding-left: 5px;
        }
        
        /*.content-section {*/
        /*    background: white;*/
        /*    border-radius: 10px;*/
        /*    box-shadow: 0 0 15px rgba(0,0,0,0.1);*/
        /*    padding: 2rem;*/
        /*    margin-bottom: 2rem;*/
        /*}*/
        
        
        .content-section {
    background: white;
    border-radius: 10px;
    /*box-shadow: 0 0 15px rgba(0,0,0,0.1);*/
    /*padding: 2rem;*/
    margin-bottom: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}





        .section-title {
            border-left: 5px solid #3494E6;
            padding-left: 15px;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        .right-sidebar {
            position: sticky;
            top: 80px;
        }
        
        .contact-form {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .contact-form .form-control {
            margin-bottom: 1rem;
        }
        
        .btn-submit {
            background: linear-gradient(to right, #3494E6, #EC6EAD);
            border: none;
            padding: 0.8rem;
            font-weight: 600;
            width: 100%;
        }
        
        .campus-image {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .video-container {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .program-card {
            transition: transform 0.3s;
            height: 100%;
            margin-bottom: 1rem;
        }
        
        .program-card:hover {
            transform: translateY(-5px);
        }
        
        .alert-campus {
            background: linear-gradient(to right, #3494E6, #EC6EAD);
            color: white;
            border: none;
            border-radius: 10px;
        }
        
        @media (max-width: 992px) {
            .sticky-sidebar, .right-sidebar {
                position: static;
            }
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            background: #f8f9fa;
            padding: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 1rem;
            background: white;
            display: none;
        }
        
        .faq-active .faq-answer {
            display: block;
        }
        
        
        .hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynamic-nav {
    height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;        /* For Firefox */
    scrollbar-color: #0d6efd #f1f1f1; /* Thumb + Track colors */
}

/* For Chrome, Edge, Safari */
.dynamic-nav::-webkit-scrollbar {
    width: 6px;
}
.dynamic-nav::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 10px;
}
.dynamic-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}


@media (max-width: 767px) {
    .content-section {
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }
}

