:root{    
    --dark-blue: #203354;
    --light-blue: #1d9cdd;
    --accent-yellow: #ffef0a;
    --light-gray: #DEDEDE;
    --white:#FFFFFF;
}

h1{
    font-size: 3rem;
    font-family: raleway, sans-serif;
    font-weight: 300;
    font-style: normal;
}

h2{
    font-size: 2rem;
    font-family: raleway, sans-serif;
    font-weight: 600;
    font-style: normal;
}

h3{
    font-size: 1.5rem;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
}

h4{
    font-size: 0.8rem;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

p{
    font-size: 1rem;
    font-family: baskerville-urw, serif;
    font-style: normal;
    font-weight: 400;
}

li{
    font-size: 1rem;
    font-family: baskerville-urw, serif;
    font-style: normal;
    font-weight: 400;
}

a{
    font-size: 1rem;
    font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.icon-link{
    color: inherit;
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    gap: 8px; /* Adds space between text and icon */
    text-decoration: none; /* Remove default link underline */
}

.icon-link i {
    font-size: 0.8rem; /* Matches text size */
    vertical-align: middle; /* Ensures better alignment */
    line-height: 1.2;
}


/* NAVBAR */
.navbar{
    background-color: var(--dark-blue);
    position: relative;
    z-index: 1050;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
}

/* Make navbar toggler icon white */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.left-side-nav{
    height: 100px;
}

.right-side-nav{
    height: 100px;
}

.nav-link{
    font-size: 1rem;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 5px;
    color: var(--light-gray);
    cursor: pointer;
}

.nav-link h2{
    text-transform: none;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--light-gray); /* or whatever color you prefer */
}


/* Create the underline effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Start hidden */
    height: 2px;
    background-color: var(--light-gray); /* Change to preferred color */
    transition: width 0.3s ease-in-out; /* Animation effect */
}

/* When hovering, animate from left to right */
.nav-link:hover::after {
    width: 100%; /* Full width on hover */
}

.nav-item:hover > .nav-link::after,
.nav-item:focus-within > .nav-link::after {
    width: 100%; /* Ensures underline stays when menu is open */
}

.megalink{
    position: relative;
    padding-bottom: 5px;
    color: var(--light-gray);
    display: block;
    margin: 0;
}
.megalink::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px; 
    height: 1px; /* Adjust thickness */
    background-color: var(--dark-blue); /* Light gray underline */
}

/* Create the animated navy blue underline */
.megalink::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%; /* Starts hidden */
    height: 2px; /* Adjust thickness */
    background-color: var(--accent-yellow); /* Blue underline */
    transition: width 0.3s ease-in-out; /* Smooth left-to-right effect */
}

/* On hover, animate navy blue underline */
.megalink:hover::before {
    width: 120px; /* Expand full width */
}


.dropdown-toggle::after {
    /*Remove caret from dropdown */
    display: none;
}

.dropdown-menu {
    display: block  !important;
    border: none;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-border-radius: 0;
    background-color: var(--dark-blue);
    clip-path: inset(0 0 100% 0); /* Completely hidden at first */
    transition: opacity 0.6s ease-out, clip-path 0.6s ease-out, visibility 0.6s ease-out;
    z-index: 1000;
    --bs-dropdown-link-active-bg: var(--light-gray);
    --bs-dropdown-link-active-color:var(--light-blue)
}

.nav-item:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0); /* Gradually reveals from top to bottom */
}

.dropdown-menu.hide-menu{
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
}

.nav-item:hover > .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
}

.nav-item{
    position: relative;
    height: inherit;
    display: flex;
    align-items: center;
}

.megamenu-img{
    height: 85%;
}

.megamenu{
    height: 400px;
    width: 800px;
    position: relative;
}

.megamenu-left{
    height: 100%;
    width: 40%;

}

.megamenu-right{
    width: 60%;
    height: 85%;
}

.megamenu-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.megamenu-social a {
    color: var(--light-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

.megamenu-social a:hover {
    color: var(--accent-yellow);
}

.dropdown-menu.dropdown-menu-end {
    left: auto !important; /* Disable default left alignment */
    right: 0 !important; /* Align the menu to the right edge of its container */
}

.megamenu-buttons{
    background-color: var(--dark-blue);
    color: var(--accent-yellow);
    border-radius: 0px;
    border: none;
    height: 15%;
    transition: all 0.2s ease-in-out;
}


.arrow-right{
    height: 16px;
    width: auto;
    color: var(--light-gray);
    vertical-align: middle;
    line-height: 1.2;
    fill: var(--light-gray);
}

.nav-dropdown-list{
    color: var(--light-gray);
    list-style: none;
    font-size: 1.1rem;
    font-family: baskerville-urw, serif;
    font-style: normal;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 10%;
    width: 50%;
}

.dropdown-item{
    color: var(--light-gray);
}

.dropdown-item a{
    font-size: 1rem;
    font-family: baskerville-urw, serif;
    font-style: normal;
    font-weight: 400;
    color: var(--light-gray);
}

/* Darken effect */
#navOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* Subtle dark overlay */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    z-index: 998; /* Behind the dropdowns but above the rest of the page */
}

/* LOGO */
.navbar-brand{
    justify-self: center;
}

#navLogo {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
}

#navLogoMobile{
    height: 70px;
    width: auto;
}

.navbar-nav{
    height: inherit;
    --bs-nav-link-hover-color: var(--dark-blue);
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--dark-blue);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        z-index: 1040;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    .left-side-nav, .right-side-nav {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 2rem 0;
        margin: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
        padding: 1rem 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        display: flex;
        justify-content: center;
    }

    .navbar-nav .nav-link {
        font-size: 1.5rem;
        padding: 0.5rem 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar-nav .nav-link h2 {
        font-size: 1.5rem;
        margin: 0;
        text-align: center;
    }

    .navbar-collapse.show .navbar-nav .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger the animation for nav items */
    .navbar-nav .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-nav .nav-item:nth-child(5) { transition-delay: 0.5s; }

    /* Adjust the toggler position */
    .navbar-toggler {
        position: relative;
        z-index: 1050;
    }

    /* Hide dropdown menus in mobile */
    .dropdown-menu {
        display: none !important;
    }

    /* Mobile dropdown styles */
    .navbar-nav .nav-item.dropdown {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .navbar-nav .dropdown-menu {
        display: none !important;
        position: static !important;
        float: none;
        width: 100%;
        background-color: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0;
        opacity: 1;
        visibility: visible;
        clip-path: none;
        transform: none;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        overflow: visible !important;
    }

    /* Simple mobile dropdown styling */
    .navbar-nav .dropdown-menu .megamenu {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar-nav .dropdown-menu .megamenu-left,
    .navbar-nav .dropdown-menu .megamenu-right {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar-nav .dropdown-menu .megamenu-img,
    .navbar-nav .dropdown-menu .megamenu-buttons,
    .navbar-nav .dropdown-menu .megamenu-social {
        display: none !important;
    }

    .navbar-nav .dropdown-menu .nav-dropdown-list {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        list-style: none !important;
    }

    .navbar-nav .dropdown-menu .megalink {
        display: block !important;
        color: var(--light-gray) !important;
        font-size: 1.1rem !important;
        font-family: proxima-nova, sans-serif !important;
        padding: 0.75rem 0 !important;
        text-align: center !important;
        text-decoration: none !important;
        border: none !important;
        background: none !important;
        margin: 0 !important;
        transition: color 0.3s ease !important;
    }

    .navbar-nav .dropdown-menu .megalink::before,
    .navbar-nav .dropdown-menu .megalink::after {
        display: none !important;
    }

    .navbar-nav .dropdown-menu .megalink:hover {
        color: var(--accent-yellow) !important;
        text-decoration: none !important;
    }

    /* Mobile dropdown toggle button */
    .navbar-nav .nav-item.dropdown .nav-link {
        position: relative;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    /* Remove the underline effect on mobile */
    .navbar-nav .nav-item.dropdown .nav-link::before {
        display: none !important;
    }

    /* Completely remove all underline effects for mobile dropdowns */
    .navbar-nav .nav-item.dropdown .nav-link::after {
        content: '\F282';
        font-family: "bootstrap-icons";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        font-size: 1rem;
        color: var(--light-gray);
        background: none !important;
        width: auto !important;
        height: auto !important;
    }

    .navbar-nav .nav-item.dropdown .nav-link.show::after {
        transform: translateY(-50%) rotate(180deg);
        color: var(--accent-yellow);
        background: none !important;
        width: auto !important;
        height: auto !important;
    }

    /* Override any desktop underline styles for mobile */
    .navbar-nav .nav-item.dropdown .nav-link:hover::after,
    .navbar-nav .nav-item.dropdown .nav-link:focus::after {
        width: auto !important;
        height: auto !important;
        background: none !important;
    }

    .navbar-nav .nav-item.dropdown .nav-link.show {
        color: var(--accent-yellow) !important;
    }

    /* Completely disable all underline animations for mobile dropdowns */
    .navbar-nav .nav-item.dropdown .nav-link:hover::before,
    .navbar-nav .nav-item.dropdown .nav-link:focus::before,
    .navbar-nav .nav-item.dropdown .nav-link.show::before {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: none !important;
    }

    /* Smooth dropdown animation */
    .navbar-nav .dropdown-menu {
        display: none !important;
        position: static !important;
        float: none;
        width: 100%;
        background-color: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        clip-path: none;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        overflow: visible !important;
        transform: translateY(0);
        margin-top: 0.5rem;
    }
}

/* HERO CONTAIER */

.hero-home {
    position: relative; /* Ensures elements inside can be positioned properly */
    height: 90vh; /* Full-screen height */
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: start; /* Aligns to the top */
}

.hero-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--dark-blue) 50%, white 50%);
    z-index: -1; /* Moves it behind everything inside .hero-home */
}
/* HERO VIDEO CONTAINER */
.hero-video-container {
    position: relative;
    width: 90vw;
    height: 80vh; /* Full screen height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 90vw;
    height: 80vh; /* Full screen height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; /* Ensure it's above the ::before pseudo-element */
}

/* BACKGROUND VIDEO */
#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the container */
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darkens the video for readability */
}

/* HEADER & SUBHEADER */
.hero-text {
    position: absolute;
    top: 50%;
    left: 25%;
    max-width: 40%; /* Prevents text from overflowing */
    transform: translate(-50%, -50%); /* Center text */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Forces left alignment */
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 10px;
}

/* Positioning for the bottom section */
.hero-bottom-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;

}

/* Divider Line */
.hero-divider {
    width: 75%;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}


/* Bottom Content (Text & Button) */
.hero-bottom-content {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 10px auto 0;
    color: white;
    font-size: 1rem;
}
.hero-cta{
    gap: 5px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: #28a745; /* Green color */
    border-radius: 50%;
    vertical-align: middle;
}

/* Apply Now Button */
.apply-btn {
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.apply-btn i {
    font-size: 1rem;
    vertical-align: middle;
}

@media (max-width: 991px) {

    .hero-bottom-content{
        text-align: center;
        flex-direction: column;
        gap: 2rem;
        width: 50%;
    }
    
    .status-indicator{
        display: none;
    }

    .status-text{
        display: none;
    }
}


/*********** WELCOME SECTION*****/ 

.welcome{
    height: fit-content;
    margin-bottom: 5%;
    gap: 5%;
}

/* Selection Content Box */
.selection-content {
    border-radius: 8px;
    width: 100%;
    opacity: 1; /* Default state */
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.selection-content.fade-out {
    opacity: 0;
    transform: translateX(-30px);
}

.selection-content.fade-in {
    opacity: 1;
    transform: translateX(0);
}
/* When Active, the Content Fades and Slides Into Place */
.selection-content.active {
    opacity: 1;
    transform: translateX(0);

}

.selection-content h2 {
    text-align: left;
    color: var(--light-gray);
    font-size: 2rem;
    margin-bottom: 10px;
}

.selection-content p {
    text-align: left;
    font-size: 1rem;
    color: var(--light-gray);
}

/* Wrapper to Align Title & Circles */
.selection-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

/* Vertical Title */
.vertical-title {
    color: var(--light-gray);
    transform: rotate(-90deg); /* Rotates text to be vertical */
    white-space: nowrap; /* Prevents text from wrapping */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -30px;
    padding: 0;
    line-height: 1 ;
}

/* Vertical Title with a Small Left Border (Like the Screenshot) */
.vertical-title::before {
    content: "";
    width: 3px;
    height: 20px; /* Adjust height for the small bar */
    background-color: var(--light-blue); 
    margin-right: 8px; /* Space between bar and text */
}
/* Circles (Options) */

/* Selection Circles */
.selection-container {
    display: flex;
    flex-direction: column;
    gap: 70px; /* Space between circles */
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.selection-option {
    width: 25px;
    height: 25px;
    border: 1px solid var(--accent-yellow);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-blue);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;

}

/* Add a slight scaling effect when clicking */
.selection-option:active {
    transform: scale(1.15); /* Slight bounce effect */
}

/* Active Option - Filled Circle with an Outer Ring */
.selection-option.active {
    background-color: var(--dark-blue); /* Space between inner and outer circle */
    border: 1px solid var(--accent-yellow); /* Outer black ring */
    position: relative;
    transition: border 0.3s ease-in-out;
    transform: scale(1.2); /* Slight bounce effect */


}

/* Inner Black Circle - Start Small & Grow */
.selection-option::before {
    content: "";
    width: 0px; /* Starts at zero */
    height: 0px;
    background-color: var(--accent-yellow); /* Solid black inner circle */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}



/* When Active, the Inner Dot Grows Smoothly */
.selection-option.active::before {
    width: 10px; /* Inner black dot size */
    height: 10px;
}

.selection-option::after {
    content: "";
    position: absolute;
    width: 1px; /* Line thickness */
    height: 70px; /* Adjust to match spacing */
    background-color: var(--accent-yellow);
    top: 100%; /* Start below the circle */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Remove line from last circle */
.selection-option:last-child::after {
    display: none;
}

#selection-button-arrow{
    color: var(--accent-yellow);
}

#selection-button-text{
    color: var(--accent-yellow);
}

.welcome-right{
    align-self: flex-end;
    height: 600px;
    background-color: var(--dark-blue);
    padding-right: 10%;
    width: 50%;
}

.welcome-left{
    width: 50%;
}




@media (max-width: 767px) {

    .welcome{
        flex-direction: column !important;
    }



    .welcome-left{
        width: 100% !important;
    }

    .welcome-right{
        width: 100% !important;
        margin-top: 5%;
    }
}



/*************** STATS SECTION************************/
/* Stats Section */
.stats-section {
    background-color: var(--dark-blue); 
    color: var(--light-gray);
    height: 100vh;
    display: flex;
    align-items: center;
}

.stats-header{
    width: fit-content;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-content {
    text-align: center;
    color: var(--light-gray);
}

.testimonial-text {
    font-size: 1.5rem;
    font-family: baskerville-urw, serif;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--light-gray);
    opacity: 0.8;
    font-size: 1rem;
}

@media (max-width: 767px) {

    h1{
        font-size: 2rem;
    }

    h2{
        font-size: 1.5rem;
    }

    h3{
        font-size: 1.2rem;
    }
    

    .hero-text {
        left: 50%;
        max-width: 80%;
        align-items: center;
        text-align: center;
    }

    .stats-container{
        flex-direction: column;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-container {
        padding: 1rem;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }

    .testimonial-author p {
        font-size: 0.9rem;
    }

    .counter {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stats-section {
        height: auto;
        padding: 4rem 0;
    }

    .stats-header {
        text-align: center;
        width: 100%;
        align-items: center !important;
    }

    .stats-section .small-header {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .stats-section h2 {
        text-align: center;
    }

    .blog-carousel-section {
        display: none;
    }
}

/* Number Styling */
.counter {
    font-size: 3rem;
    color: var(--accent-yellow);
}

/* Stat Labels */
.stat-label {
    letter-spacing: 1px;
}

.small-header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1 ;
}

/* Vertical Title with a Small Left Border (Like the Screenshot) */
.small-header::before {
    content: "";
    width: 3px;
    height: 20px; /* Adjust height for the small bar */
    background-color: var(--light-blue); /* Match the small yellow bar in the screenshot */
    margin-right: 8px; /* Space between bar and text */
}


/* ***********STUDENT LIFE BLOG*****************/
/* Section Styling */
.blog-carousel-section {
    background-color: white;
    height: 100vh;
}

/* Align header to the left */
.blog-section-header {
    text-align: left;
    margin-left: 15px; /* Align with first card */
}

/* Card Styling */
.card {
    border-radius: 0%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
}

.card img{
    border-radius: 0%;
}

.card-img-top{
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.card-body{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}


/* Carousel Controls */
.custom-arrow {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 2;
}

.custom-arrow i {
    color: var(--dark-blue);
    font-size: 2rem;
}

.custom-arrow:hover {
    background-color: transparent;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover {
    transform: translateY(-50%) translateX(-5px);
}

.carousel-control-next:hover {
    transform: translateY(-50%) translateX(5px);
}

@media (max-width: 767px) {
    .carousel-control-prev {
        left: -40px;
    }

    .carousel-control-next {
        right: -40px;
    }

    .custom-arrow i {
        font-size: 1.5rem;
    }
}

/* Mobile View: Show Only 1 Card at a Time */
@media (max-width: 767px) {

    .carousel-inner .carousel-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .carousel-inner .carousel-item .row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .carousel-inner .carousel-item .col-12 {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .card{
        height: 280px;
        margin: 0 auto;
    }

    .card-img-top{
        height: 140px;
        object-fit: cover;
    }

    /* Bring Arrows Closer for Mobile */
    .carousel-control-prev {
        display: none;
        left: 10px; /* Moves left arrow closer to the card */
    }

    .carousel-control-next {
        display: none;
        right: 10px; /* Moves right arrow closer to the card */
    }

     /* Adjust Arrow Hover Effect on Mobile */
     .carousel-control-prev:hover {
        transform: none;
    }

    .carousel-control-next:hover {
        transform: none;
    }

    .blog-section-header{
        width: 80%;
    }

    #blog-button{
        margin-left: 10%;
    }
}

/***************** EVENTS SECTION ********************/

/* Section Styling */
.upcoming-events-section {
    background-color: white;
}

.card:hover {
    text-decoration: underline;
}


/* Footer General Styling */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-blue);
    width: 100%;
    height: 100vh;
    position: relative;
    color: var(--light-gray);
    margin-top: 60px;
}

/* Footer Logo */
.footer-logo {
    max-width: 280px;
    display: block;
    margin: 0 auto;
}

/* Footer Quick Links */
.footer-quick-links p {
    margin: 0;
    font-size: 1rem;
    font-family: proxima-nova, sans-serif;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 15px;
}

.footer-quick-links a:hover p {
    color: var(--accent-yellow);
}

/* Footer Contact Info */
.footer-contact-section {
    display: flex;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    font-size: 1rem;
}

.contact-item i {
    color: var(--light-blue);
    font-size: 1.1rem;
}

.contact-item span {
    color: var(--light-gray);
}

.footer-apply-section {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-apply-section:last-child {
    margin-bottom: 0;
}

.footer-apply{
    color: var(--accent-yellow);
    margin-bottom: 0;
    text-transform: none;
    font-size: 1.2rem;
}

.footer-apply h4{
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
}

/* Footer Contact Link - White text instead of yellow */
.footer-contact {
    color: white !important;
}

.footer-contact:hover {
    color: var(--light-gray) !important;
}

/* Footer Payment Link - White text instead of yellow */
.footer-payment {
    color: white !important;
}

.footer-payment:hover {
    color: var(--light-gray) !important;
}

/* Payment Options Styling */
.payment-options {
    width: 100%;
}

.payment-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.payment-option h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.payment-option p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.payment-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.payment-btn-primary {
    background: var(--dark-blue);
    color: white;
}

.payment-btn-primary,
.payment-btn-primary .icon-link,
.payment-btn-primary h4 {
    color: white !important;
}

.payment-btn-primary:hover {
    background: var(--light-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-btn-secondary {
    background: var(--accent-yellow);
    color: var(--dark-blue);
}

.payment-btn-secondary:hover {
    background: #e6c200;
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-btn i {
    font-size: 1.1rem;
}

/* Bottom Footer */
.footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
    color: var(--light-gray);
    background-color: rgba(0, 0, 0, 0.1);
}

/* Footer Links */
.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.hero-page {
    position: relative; /* Ensures elements inside can be positioned properly */
    height: 90vh; /* Full-screen height */
    overflow: hidden;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: start; /* Aligns to the top */
}


.hero-img-container{
    position: relative;
    width: 90vw;
    height: 80vh; 
    background-image: url(./images/uacohio-11.jpg);
    background-size: cover;
}

.hero-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--dark-blue) 50%, white 50%);
    z-index: -1; 
}

.hero-page-secondary {
    position: relative;
    height: 60vh;
    width: 100%;
    background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.hero-page-secondary h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    font-family: raleway, sans-serif;
    position: relative;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-page-secondary h3 {
    color: var(--light-gray);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: baskerville-urw, serif;
    margin: 0;
    text-align: center;
}

.hero-page-secondary h1::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 0;
    background-color: var(--light-blue);
    animation: barGrow 0.8s ease-out forwards;
}

@keyframes barGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 60px;
        opacity: 1;
    }
}

.hero-secondary .breadcrumbs-wrapper {
    background-color: transparent; /* inherits the white below the gradient */
    width: 100%;
}


.page-container{
    max-width: 90vw;
    margin: 5rem auto 0;
    padding-left: 5%;
    display: flex;
    flex-direction: row-reverse;
}



.sidebar {
    width: 30%;
    padding: 0;
    height: 100%;
    position: sticky;
    top: 0;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
}

.sidebar .d-flex {
    width: 100%;
    padding: 2rem 2rem 2rem 0;
}

.accordion {
    width: 100%; /* Ensure it takes full width inside sidebar */
    max-height: calc(100vh - 40px); /* Ensures it fits within the sidebar */
    overflow-y: auto; /* Allows scrolling inside the accordion */
    background: var(--light-gray);
}

.accordion-item{
    background-color: var(--light-gray);
    padding: 5px;
}


.accordion h2 {
    color: var(--dark-blue);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border: none;
    background: var(--light-gray); /* Set background to gray */
    width: 100%;
    text-align: left;
    transition: background 0.3s ease-in-out;
    font-size: 1rem;
    font-weight: 400;
}


.accordion h2:hover {
    background: rgba(0, 31, 77, 0.1);
}

.accordion h2 .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--dark-blue);
    transition: transform 0.3s ease-in-out;
    font-size: 1.2rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding-left: 16px;
    border-left: 3px solid var(--light-blue);
    background: var(--light-gray);
}

.accordion-content.active {
    max-height: 500px; /* Adjust based on your content */
    padding: 10px 16px;
}

.accordion h2 .icon.rotate {
    transform: rotate(45deg);
}

.accordion-content a {
    display: block;
    padding: 8px 0;
    color: var(--dark-blue);
    text-decoration: none; /* Remove underline */
    font-size: 16px;
    transition: color 0.3s ease-in-out; /* Smooth color transition */
}

.accordion-content a:hover {

    color: var(--light-blue); /* Change text color to light blue */
}

.active h2 .icon {
    content: "-";
}

.content-container {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Adds space between each content section */
}


.page-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-content-right img {
    width: 90%;
    max-width: 900px;
    border-radius: 5px;
}

.page-content-right .text-box {
    background: rgba(0, 31, 77, 0.8);
    color: white;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 5px;
}

.page-content-greybox{
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    width: 80%;
    padding: 5%;
}

.page-content-greybox img{
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.page-content-whitebox{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    width: 80%;
    padding: 5%;
}

.page-content-whitebox img{
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.page-content-bluebox{
    background-color: var(--dark-blue);
    color: var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    width: 80%;
    padding: 5%;
}

.page-content-bluebox img{
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    align-self: flex-start;
    margin-bottom: 1rem;
}

.page-content-greybox,
.page-content-whitebox,
.page-content-bluebox {
  width: 85%;
  margin-left: 0;
  margin-right: auto;
}

/* Reusable Breadcrumbs Component */
.breadcrumbs-wrapper {
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(5px);
}

.breadcrumbs-inner {
    max-width: 90vw;
    margin: 0 auto;
    padding: 1rem 5%;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item h4 {
    font-family: raleway, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.breadcrumb-item a {
    color: var(--dark-blue);
    text-decoration: none;
    position: relative;
    font-family: raleway, sans-serif;
    font-weight: 400;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--dark-blue);
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--light-blue);
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumb-item.active h4 {
    color: var(--light-blue);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--dark-blue);
    opacity: 0.5;
    font-size: 1.2rem;
    font-family: raleway, sans-serif;
    padding: 0 0.5rem;
}

@media (max-width: 767px) {
    .hero-page-secondary {
        height: 30vh;
    }
    
    .hero-page-secondary h1 {
        font-size: 2.5rem;
    }
}

/* Secondary Pages Breadcrumbs */
.breadcrumbs-wrapper-secondary {
    width: 100%;
    background-color: transparent;
    padding: 1.5rem 0;
    position: relative;
}

.breadcrumbs-white {
    background-color: white;
}

.breadcrumbs-wrapper-secondary .breadcrumbs-inner {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
}

.breadcrumbs-wrapper-secondary .breadcrumb {
    margin: 0;
    padding: 0 0 0 5%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item h4 {
    font-family: raleway, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    transition: color 0.3s ease;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item a {
    color: var(--dark-blue);
    text-decoration: none;
    position: relative;
    font-family: raleway, sans-serif;
    font-weight: 400;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--dark-blue);
    transition: width 0.3s ease;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item a:hover {
    color: var(--light-blue);
}

.breadcrumbs-wrapper-secondary .breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item.active h4 {
    color: var(--light-blue);
    font-weight: 500;
}

.breadcrumbs-wrapper-secondary .breadcrumb-item + .breadcrumb-item::before {
    content: '\F285';  /* Bootstrap chevron-right icon code */
    font-family: "bootstrap-icons";
    color: var(--dark-blue);
    opacity: 0.3;
    font-size: 0.8rem;
    padding: 0;
    vertical-align: middle;
    line-height: 1;
    margin: 0 1rem;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 991px) {
    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }

    /* Hide breadcrumbs on mobile */
    .breadcrumbs-wrapper-secondary {
        display: none;
    }

    /* Adjust content container for mobile */
    .content-container {
        width: 100% !important;
        padding: 0 !important;
    }

    /* Center content boxes */
    .page-content-greybox,
    .page-content-whitebox,
    .page-content-bluebox {
        width: 100%;
        margin: 0 auto 2rem auto;
    }

    /* Adjust page container padding */
    .page-container {
        padding: 1rem;
    }

    /* Adjust hero section for mobile */
    .hero-page-secondary {
        padding: 3rem 1rem;
    }

    .hero-page-secondary h1 {
        font-size: 2.5rem;
    }

    .hero-page-secondary h3 {
        font-size: 1.2rem;
    }

    /* Adjust breadcrumbs for mobile */
    .breadcrumbs-wrapper-secondary {
        padding: 0.5rem 1rem;
    }

    .breadcrumbs-wrapper-secondary h4 {
        font-size: 0.9rem;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-quick-links p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .footer-apply h4 {
        font-size: 1rem;
    }

    .footer-links {
        font-size: 12px;
    }
}

/* Additional breakpoint for smaller devices */
@media screen and (max-width: 576px) {
    .hero-page-secondary h1 {
        font-size: 2rem;
    }

    .hero-page-secondary h3 {
        font-size: 1rem;
    }

    .page-content-greybox h2,
    .page-content-whitebox h2,
    .page-content-bluebox h2 {
        font-size: 1.8rem;
    }

    .page-content-greybox h3,
    .page-content-whitebox h3,
    .page-content-bluebox h3 {
        font-size: 1.4rem;
    }

    .page-content-greybox p,
    .page-content-whitebox p,
    .page-content-bluebox p {
        font-size: 1rem;
    }

    /* Responsive image adjustments for content boxes */
    .page-content-greybox img,
    .page-content-whitebox img,
    .page-content-bluebox img {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .page-content-greybox img,
    .page-content-whitebox img,
    .page-content-bluebox img {
        width: 100%;
        max-width: 500px;
        height: 200px;
    }
}

/* FAQ Accordion Styles */
.faq-accordion-container {
    width: 100%;
    max-width: 900px;
    margin: 0;
    padding: 2rem 6rem 2rem 0;
}

.faq-accordion-container .d-flex {
    width: 100%;
}

.faq-accordion-container .small-header {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.faq-accordion-container h2 {
    margin-bottom: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.faq-question i {
    font-size: 1.25rem;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    opacity: 0;
}

.faq-answer p {
    margin: 0;
    padding: 1rem 0;
    color: #666;
    line-height: 1.6;
}

/* Active state styles */
.faq-item.active .faq-question {
    background: #f8f9fa;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top: 1px solid #eee;
    opacity: 1;
    padding: 0 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-accordion-container {
        padding: 1rem 0 1rem 5%;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Quote Section Styles */
.vertical-divider {
    width: 4px;
    height: 350px;
    background-color: var(--light-blue);
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.vertical-divider.animate {
    opacity: 1;
    transform: scaleY(1);
}

.quote-section {
    padding: 8rem 0;
    background-color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.quote-section h2 {
    color: var(--dark-blue);
    font-size: 2.8rem;  /* Slightly larger font size */
    line-height: 1.3;
    font-family: baskerville-urw, serif;
    font-style: italic;
    font-weight: 400;
}

.quote-attribution {
    color: var(--dark-blue);
    font-family: baskerville-urw, serif;
    font-style: italic;
    font-size: 1.2rem;  /* Slightly larger font size */
    margin-top: 1.5rem;  /* Increased spacing */
    opacity: 0.8;
}

.quote-section h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;  /* Increased spacing */
    font-size: 1.8rem;  /* Slightly larger font size */
}

.quote-section .lead {
    color: var(--dark-blue);
    font-size: 1.2rem;  /* Slightly larger font size */
    line-height: 1.7;
}

@media (max-width: 991px) {
    .quote-section {
        padding: 6rem 0;
        min-height: 400px;
    }
    
    .quote-section h2 {
        font-size: 2.2rem;
    }
    
    .vertical-divider {
        height: 300px;  /* Adjusted for tablet */
        margin: 2rem auto;
    }
}

@media (max-width: 767px) {
    .quote-section {
        padding: 4rem 0;
        min-height: 350px;
    }
    
    .quote-section h2 {
        font-size: 2rem;
    }
    
    .quote-section .lead {
        font-size: 1.1rem;
    }
    
    .vertical-divider {
        display: none;
    }

    .quote-section .col-lg-5:first-child {
        margin-bottom: 3rem;
    }
}

/* CALL TO ACTION SECTION */
.cta-section {
    background-color: var(--white);
    padding: 80px 0;
    margin: 80px 0 0 0;
    width: 100%;
}

.cta-section .small-header h4 {
    color: var(--dark-blue);
}

.cta-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 600;
}

.cta-section p {
    color: var(--dark-blue);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* CTA Divider */
.cta-divider {
    width: 1px;
    height: 300px;
    background-color: var(--dark-blue);
    opacity: 0.3;
    margin: 0 auto;
}

/* Contact Information */
.contact-info h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--light-blue);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-item p {
    color: var(--dark-blue);
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

/* CTA Button Override */
.cta-section .footer-apply {
    color: var(--light-blue);
}

.cta-section .footer-apply h4 {
    color: var(--light-blue);
}

.cta-section .footer-apply i {
    color: var(--light-blue);
}

/* Admissions Button Override */
.page-content-greybox .footer-apply {
    color: var(--dark-blue);
}

.page-content-greybox .footer-apply h4 {
    color: var(--dark-blue);
}

.page-content-greybox .footer-apply i {
    color: var(--dark-blue);
}

/* White Box Button Override */
.page-content-whitebox .footer-apply {
    color: var(--dark-blue);
}

.page-content-whitebox .footer-apply h4 {
    color: var(--dark-blue);
}

.page-content-whitebox .footer-apply i {
    color: var(--dark-blue);
}

/* Responsive adjustments for CTA section */
@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
}

.navbar-nav .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Override Bootstrap dropdown styles for mobile */
.navbar-collapse.show .navbar-nav .dropdown-menu.show {
    display: block !important;
    position: static !important;
    float: none !important;
    width: 100% !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 0.5rem !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
    transform: none !important;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-container header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.dashboard-container nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #333;
}

.status-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.no-application {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #0056b3;
}

.info-message {
    padding: 1rem;
    background: #e7f3ff;
    border-left: 4px solid #007bff;
    margin: 1rem 0;
}

.next-steps {
    margin-top: 2rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.application-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 4px;
    margin: 0 0.5rem;
}

.progress-step::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: #dee2e6;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active {
    background: #007bff;
    color: white;
}

.progress-step.completed {
    background: #28a745;
    color: white;
}

.info-summary {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-summary h3 {
    margin-top: 0;
    color: #495057;
}

.info-summary p {
    margin: 0.5rem 0;
}

.info-summary strong {
    color: #212529;
}

/* Success Page Styles */
.success-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.success-animation {
    margin: 2rem auto;
    width: 100px;
    height: 100px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #28a745;
    }
}

.success-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.success-details h2 {
    color: #212529;
    margin-top: 0;
}

.success-details ul {
    list-style-type: none;
    padding: 0;
}

.success-details li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.success-details li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.success-actions {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 0.5rem;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Personal Information Form Styles */
.application-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group input[type="date"] {
    font-family: inherit;
}

.form-group small {
    display: block;
    color: #666;
    margin-top: 0.25rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Upload Progress Bar */
.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    transition: width 0.3s ease;
    animation: progress-animation 2s infinite;
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.progress-text {
    text-align: center;
    color: #666;
    margin-top: 0.5rem;
}

/* File Upload Styles */
input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

input[type="file"]::-webkit-file-upload-button {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: #0056b3;
}

/* Auth Pages Navbar Styles */
.auth-navbar {
    background-color: var(--dark-blue);
    padding: 1.5rem 5%; /* Increased padding to accommodate larger logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-navbar-brand img {
    height: 80px; /* Increased from 50px */
    width: auto;
}

.auth-navbar-brand h1 {
    color: var(--white);
    font-size: 2rem; /* Increased from 1.5rem to match larger logo */
    margin: 0;
}

.auth-navbar-home {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.auth-navbar-home:hover {
    color: var(--accent-yellow);
}

.auth-navbar-home i {
    font-size: 1.2rem;
}

/* Auth Forms Container */
.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.auth-container h2 {
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form-group {
    margin-bottom: 1.5rem;
}

.auth-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.auth-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .auth-form-group input {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px; /* Better touch target */
    }
}

.auth-form-group input:focus {
    outline: none;
    border-color: var(--light-blue);
}

.auth-submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .auth-submit-btn {
        padding: 1rem;
        font-size: 16px;
        min-height: 48px; /* Better touch target */
    }
}

.auth-submit-btn:hover {
    background: var(--light-blue);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-links a {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.auth-links a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .auth-page-container {
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .auth-navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .auth-navbar-brand {
        flex-direction: column;
        gap: 0.5rem;
    }

    .auth-navbar-brand img {
        height: 60px;
    }

    .auth-navbar-brand h1 {
        font-size: 1.2rem;
        text-align: center;
    }

    .auth-container {
        margin: 0;
        padding: 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .auth-form-group input {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        box-sizing: border-box;
    }

    .auth-submit-btn {
        padding: 1rem;
        font-size: 16px;
        box-sizing: border-box;
    }

    .application-info {
        padding: 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .application-info-container {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .application-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin: 0 0 1rem 0;
        padding: 1rem;
        box-sizing: border-box;
    }

    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .auth-page-container {
        padding: 0;
        margin: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .auth-navbar {
        padding: 0.75rem;
    }

    .auth-navbar-brand img {
        height: 50px;
    }

    .auth-navbar-brand h1 {
        font-size: 1rem;
    }

    .auth-container {
        margin: 0;
        padding: 0.75rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .application-info {
        padding: 0.75rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .application-info-container {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .application-step {
        margin: 0 0 0.75rem 0;
        padding: 0.75rem;
        box-sizing: border-box;
    }

    .application-info h2 {
        font-size: 1.5rem;
    }

    .application-step h3 {
        font-size: 1.2rem;
    }
}

/* Application Info Section Styles */
.application-info {
    background-color: var(--light-gray);
    padding: 3rem 5%;
    margin: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

.application-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.application-info h2 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: left;
}

.application-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .application-step {
        gap: 0.75rem;
        padding: 0.75rem;
    }
}

.step-number {
    background: var(--light-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

.step-content h3 {
    color: var(--dark-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.required-docs {
    background: var(--dark-blue);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.required-docs h3 {
    color: var(--accent-yellow);
    margin: 0 0 1rem 0;
}

.required-docs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.required-docs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-gray);
}

.required-docs li i {
    color: var(--accent-yellow);
}

@media (max-width: 576px) {
    .application-info {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    .application-step {
        flex-direction: column;
        padding: 0.75rem;
    }

    .step-number {
        margin-bottom: 0.5rem;
    }
}

/* Side by Side Layout */
.auth-page-container {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 2rem;
}

/* Update auth container styles */
.auth-container {
    flex: 1;
    margin: 0;
    min-width: 400px;
}

/* Update application info styles */
.application-info {
    flex: 1.5;
    margin: 0;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.application-info-container {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .auth-page-container {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .auth-container {
        min-width: unset;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .application-info {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .auth-page-container {
        padding: 0 0.75rem;
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .auth-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .application-info {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .application-step {
        padding: 0.75rem;
        margin: 0 0 1rem 0;
        box-sizing: border-box;
    }
}

/* CONTACT PAGE STYLES */
.contact-section {
    background-color: var(--white);
    padding: 80px 0;
    margin: 80px 0 0 0;
    width: 100%;
}

.contact-section .small-header h4 {
    color: var(--light-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.contact-section p {
    color: var(--dark-blue);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Divider */
.contact-divider {
    width: 1px;
    height: 400px;
    background-color: var(--dark-blue);
    opacity: 0.3;
    margin: 0 auto;
}

/* Contact Information */
.contact-info h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--light-blue);
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--dark-blue);
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-floating {
    margin-bottom: 1rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.contact-form .form-floating label {
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--light-blue);
}

/* Contact Submit Button */
.contact-submit-btn {
    background-color: var(--light-blue);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.contact-submit-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.contact-submit-btn:disabled:hover {
    background-color: #6c757d;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
        margin: 60px 0 0 0;
    }
    
    .contact-divider {
        display: none;
    }
    
    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
        margin: 40px 0 0 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
}

/* Contact Form Alert Messages */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #198754;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 1.1rem;
}

.alert .btn-close {
    opacity: 0.7;
}

.alert .btn-close:hover {
    opacity: 1;
}

/* Board of Trustees Member Cards */
.board-members-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.board-member-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--light-blue);
}

.board-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.member-title {
    margin-bottom: 1rem;
}

.member-title .small-header {
    justify-content: flex-start;
    align-items: flex-start;
}

.member-name {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: raleway, sans-serif;
}

.member-message {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-family: baskerville-urw, serif;
}

/* Responsive adjustments for board member cards */
@media (max-width: 768px) {
    .board-members-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .board-member-card {
        padding: 1.5rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-message {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .board-member-card {
        padding: 1.25rem;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .member-message {
        font-size: 0.9rem;
    }
}

/* Staff Directory Styles */
.department-section {
    margin-bottom: 3rem;
}

.department-section:last-child {
    margin-bottom: 0;
}

.staff-members-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.staff-member-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border-left: none;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 2rem;
}

.staff-member-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.staff-member-card:hover {
    transform: none;
    box-shadow: none;
}

.staff-member-card .member-title {
    margin-bottom: 0.5rem;
}

.staff-member-card .member-title .small-header {
    justify-content: flex-start;
    align-items: flex-start;
}

.staff-member-card .member-name {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: raleway, sans-serif;
}

.staff-member-card .member-message {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-family: baskerville-urw, serif;
    text-align: left;
}

/* Responsive adjustments for staff member cards */
@media (max-width: 768px) {
    .staff-members-grid {
        gap: 1.5rem;
        margin-top: 1.25rem;
    }
    
    .staff-member-card {
        padding-bottom: 1.5rem;
    }
    
    .staff-member-card .member-name {
        font-size: 1.3rem;
    }
    
    .staff-member-card .member-message {
        font-size: 0.95rem;
    }
    
    .department-section {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .staff-members-grid {
        gap: 1.25rem;
    }
    
    .staff-member-card {
        padding-bottom: 1.25rem;
    }
    
    .staff-member-card .member-name {
        font-size: 1.2rem;
    }
    
    .staff-member-card .member-message {
        font-size: 0.9rem;
    }
    
    .department-section {
        margin-bottom: 2rem;
    }
}

