:root {
    --maroon: #800000;
    --dark-gray: #333333;
    --light-gray: #f2f2f2;
    --white: #ffffff;
}

.navbar-brand img {
    height: 90px;
}

.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    color: white;
}

.stickyIcons {
    position: fixed;
    right: 0;
    bottom: 18%;
    background: var(--maroon);
    border-radius: var(--maroon) 0 0 var(--maroon);
    z-index: 2;
    border-top-left-radius: 0.7rem;
    border-bottom-left-radius: 0.7rem;
}

.stickyIcons ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stickyIcons ul li {
    position: relative;
    padding: .75rem .5rem !important;
    overflow: hidden;
}

.stickyIcons ul li:not(:last-child) {
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--white);
}

.stats-section {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.text-maroon {
    color: var(--maroon);
}

.stat-number {
    color: var(--maroon);
    font-size: 3rem;
    font-weight: bold;
}

.btn-maroon {
    background-color: var(--maroon);
    border-color: var(--maroon);
    color: white;
}

.btn-maroon:hover {
    background-color: #660000;
    border-color: #660000;
    color: white;
}

.text-maroon {
    color: var(--maroon) !important;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-dark-gray {
    color: var(--dark-gray);
}
.text-white {
    color: var(--white);
}
.programs-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.programs-logo:hover {
    filter: grayscale(0%);
}

.testimonial-card {
    background-color: var(--dark-gray);
    color: white;
    border-radius: 15px;
}

.quote-icon {
    color: var(--maroon);
    font-size: 2rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--maroon);
    color: white;
}

.accordion-button:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 0.25rem rgba(128, 0, 0, 0.25);
}

.footer {
    background-color: var(--dark-gray);
    color: var(--white);
}

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--maroon);
}

.course-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
    transform: translateY(-5px);
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.owl-carousel .owl-nav button {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--maroon);
    pointer-events: all;
    transition: color 0.2s;
    outline: none;
}
.owl-carousel .owl-nav button:hover {
    color: #660000;
    background: none;
}
.owl-carousel .owl-nav .owl-prev {
    margin-left: -30px;
}
.owl-carousel .owl-nav .owl-next {
    margin-right: -30px;
}
.owl-carousel .owl-dots {
    display: none !important;
}

.view-more-link {
    display: block;
    width: 100%;
    background: var(--maroon);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    text-decoration: none;
    font-weight: 500;
}
.view-more-link:hover,
.view-more-link:focus {
    background: #fff;
    color: var(--maroon);
    text-decoration: none;
    /* border: 1px solid var(--maroon); */
}

/* Custom styles for college programs section */
.custom-tabs .nav-link {
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
    margin-bottom: 0;
    padding-bottom: 1rem;
}
.custom-tabs .nav-link.active,
.custom-tabs .nav-link:focus {
    color: var(--maroon) !important;
}
.custom-tabs .nav-link.active::after,
.custom-tabs .nav-link:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--maroon);
    border-radius: 2px;
    width: 100%;
}
.custom-tabs .nav-link:hover:not(.active) {
    color: #b36b6b !important;
    background: none;
}
.custom-tabs .nav-link:hover::after {
    background: #e5cfcf;
}
.custom-tabs {
    border-bottom: none !important;
    width: 100%;
}
.custom-tabs .nav-item {
    flex: 1 1 0;
}

/* Custom styles for vertical tabs */
.vertical-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: #f8f9fa;
    color: #7a7676;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    padding: 0.75rem 1.25rem;
    position: relative;
    width: 100%;
}
.vertical-tabs .nav-link.active,
.vertical-tabs .nav-link:focus {
    background: #fff;
    color: #b3001b;
    font-weight: 600;
    border-left: 4px solid #b3001b;
}
.vertical-tabs .nav-link:hover:not(.active) {
    background: #f1eaea;
    color: #b3001b;
}
.navbar-toggler{
    display: none !important;
}
