<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    scroll-behavior: smooth;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden; /* Prevents overflow during zoom */
    transition: opacity 1s ease-in-out; /* Smooth fade-out */
}

/* Loading Logo Styles */
.loading-logo {
    width: 20%; /* Start with a small size relative to the screen */
    max-width: 150px; /* Ensure it's not too large on small screens */
    transition: transform 2s ease-in-out, opacity 2s ease-in-out; /* Smooth zooming and fading */
}

/* Zoom-out effect */
.zoom-out .loading-logo {
    transform: scale(70); /* Scale the logo up significantly to cover the screen */
    opacity: 0; /* Fade out as it zooms in */
}

/* Hide the loading screen */
.hidden {
    opacity: 0; /* Fade out the loading screen */
    visibility: hidden; /* Ensure it's removed from view */
    transition: opacity 1s ease-in-out, visibility 0s linear 1s; /* Delay visibility change to match opacity */
}






/* NAVIGATION BAR DESIGN ----------------------------------------------------------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff; /* Ensure background color stays consistent */
}

.custom-navbar {
    margin-left: auto;
    margin-right: auto;
}

.custom-navbar .nav-link {
    font-weight: bold;
    color: #333;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover state */
.custom-navbar .nav-link:hover {
    color: #0056b3;
}

/* Active state */
.custom-navbar .nav-link.active {
    color: #0056b3; /* Blue text color for active state */
}

/* Hover and active underline effect */
.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 100%;
}

.custom-navbar .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #0056b3;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Align logo to the left in mobile view */
.navbar-brand {
    margin-right: auto;
}

/* Ensure navbar items are centered */
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-brand {
        margin-right: auto; /* Align logo to the left */
    }

    .navbar-nav {
        margin: 0; /* Reset margin for navbar items */
    }

    .custom-navbar .nav-link {
        margin: 0; /* Remove extra margin on smaller screens */
        padding: 10px; /* Add padding to make it easier to click */
    }
}




/* Announcement Bar ----------------------------------------------------------------------------------------------------------------------- */
.announcement-bar-container {
    width: 100%; /* Full-width container for the background */
    background-color: black; /* Full-width background color */
    position: relative;
    z-index: 1000;
}

/* Announcement Bar */
.announcement-bar {
    width: 60%; /* Set the width of the text area */
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto; /* Center the text area */
}

/* Mobile View: Expand the announcement bar to 100% width and increase text speed */
@media (max-width: 768px) {
    .announcement-bar {
        width:100%; /* Full-width on smaller screens */
    }
    .announcement-text {
        animation: marquee .1s linear infinite; /* Faster scrolling on smaller screens */
    }
}

/* Announcement Text */
.announcement-text {
    display: inline-block;
    animation: marquee 30s linear infinite; /* Adjusted duration for slower scrolling */
    font-size: 0.9rem; /* Slightly smaller text */
    color: white; /* White text for contrast */
}

@keyframes marquee {
    0% { transform: translateX(100%); } /* Start off the right side */
    100% { transform: translateX(-100%); } /* Move completely off to the left */
}



/* HERO SECTION  -----------------------------------------------------------------------------------------------------------------------*/
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-transform: uppercase;
    padding: 0 15px;
    overflow: hidden; /* Ensure content does not overflow */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%; /* Center the image vertically */
    left: 50%; /* Center the image horizontally */
    width: 100%;
    height: 100%;
    background-image: url('../img/frosty.jpg'); /* Path to your image */
    background-size: cover; /* Ensure the image covers the section */
    background-position: top center; /* Center the background image */
    background-repeat: no-repeat;
    transform: translate(-50%, -50%); /* Center the image */
    z-index: -1; /* Make sure the background is behind the content */
}

/* HERO TITLE */
.hero-title {
    color: #fff;
    font-family: "Norwester", Sans-serif;
    font-size: 40px; /* Default font size */
    font-weight: 400;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.2; /* Adjust line height if needed */
    text-align: center; /* Ensure the text is centered */
}

/* Responsive Font Size */
@media (max-width: 768px) {
    .hero-title {
        font-size: 30px; /* Smaller font size for tablets */
        letter-spacing: 6px; /* Adjust letter spacing */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px; /* Even smaller font size for mobile phones */
        letter-spacing: 4px; /* Adjust letter spacing */
    }
}

/* OBJECTIVES AND CTA SECTION ----------------------------------------------------------------------------------------------------------------------- */
.section-bg {
    background-color: #003366;
    color: #ffffff;
    padding: 50px 0; /* Add padding for better spacing */
}

.no-underline {
    text-decoration: none;
}

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

.text-start p {
    margin-bottom: 20px; /* Increased margin for better readability */
    font-size: 1rem;
    line-height: 1.6;
}

.section-bg .col-md-4 img {
    height: 80px;
    margin-bottom: 20px;
}

.section-bg .text-start strong {
    display: inline-block;
    margin-bottom: 10px; /* Increased margin for better spacing */
    font-weight: bold;
}

.section-bg .text-start i {
    color: #ffffff;
}

.section-bg .text-start span {
    display: block;
    margin-left: 25px;
}

.section-bg .btn-outline-light {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 8px 16px; /* Adjust padding for better button size */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-bg .btn-outline-light:hover {
    background-color: #ffffff;
    color: #003366;
}

.section-bg h5 {
    margin-bottom: 20px; /* Spacing below headings */
    font-weight: bold; /* Make headings bold */
    font-size: 1.2rem; /* Slightly increase font size */
}

.section-bg ul {
    padding-left: 0; /* Remove default padding */
}

.section-bg ul li {
    margin-bottom: 10px; /* Spacing between list items */
}

.section-bg .d-flex a {
    font-size: 1.2rem; /* Adjust icon size */
    margin-right: 10px; /* Space between social icons */
    color: #fff; /* Ensure icons are white */
}

.section-bg .d-flex a:hover {
    color: #ccc; /* Light grey color on hover */
}


/* ABOUT SECTION  ----------------------------------------------------------------------------------------------------------------------- */
.about-section {
    background-color: #f8f8f8; /* Light whitish-grey color */
    color: #333; /* Text color */
    padding: 40px 0; /* Padding for top and bottom */
    margin: 0; /* Remove default margin */
    border-radius: 8px; /* Rounded corners (optional) */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth (optional) */
}

.about-section h2 {
    color: #003366; /* Slightly different color for the heading */
    margin-bottom: 20px;
}

.about-section p {
    color: #555; /* Text color */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* STUDENT HANDBOOK SECTION -----------------------------------------------------------------------------------------------------------------------*/

.student-handbook-section {
    background-color: #ECF3F9; /* Light background to differentiate from other sections */
    color: #333;
    padding: 40px 0; /* Additional padding for spacing */
}

.student-handbook-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #003366;
}

.student-handbook-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.student-handbook-section .btn {
    font-weight: bold;
    padding: 10px 20px;
}

/* Larger image size */
.student-handbook-img {
    height: auto; /* Increase the max-height to make the image bigger */
    max-width: 100%; /* Maintain aspect ratio */
}


.formatted-text {
    margin-bottom: 1.5em; /* Adjusts the space between paragraphs */
    line-height: 1.6; /* Adjusts the line spacing within the paragraph */
    font-size: 1rem; /* Adjust the font size as needed */
    color: #333; /* Adjust the color if necessary */
}


@media (max-width: 768px) {
    .student-handbook-img {
        max-height: 250px; /* Slightly smaller image for tablets */
    }
}

@media (max-width: 576px) {
    .student-handbook-img {
        max-height: 200px; /* Even smaller image for mobile phones */
    }
}

/* Card Styles */
.card {
    border: none; /* Remove default border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
}

.card-title {
    font-weight: bold;
}

.card-body {
    padding: 20px; /* Add padding inside the card */
}

/* Enhanced Card Styles */
.activity-form-card, .student-id-form-card {
    border: 1px solid #003366; /* Add a border to the cards */
    border-radius: 10px; /* Slightly rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.activity-form-card:hover, .student-id-form-card:hover {
    transform: translateY(-10px); /* Lift the card slightly on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */
}

/* Button Hover Effect */
.activity-form-card .btn, .student-id-form-card .btn {
    background-color: #0056b3;
    border-color: #0056b3;
}

.activity-form-card .btn:hover, .student-id-form-card .btn:hover {
    background-color: #003366; /* Darken the button on hover */
    border-color: #003366;
}


/* Mini Navigation Buttons */
.btn-outline-primary {
    border-color: #0056b3; /* Darker border */
    color: #0056b3; /* Text color */
    margin: 5px; /* Margin between buttons */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0056b3; /* Dark blue background on hover */
    color: #fff; /* White text on hover */
}

/* Active button style */
.btn-outline-primary.active, .btn-outline-primary:active {
    background-color: #0056b3; /* Dark blue background when active */
    color: #fff; /* White text when active */
    border-color: #0056b3; /* Keep border consistent */
}

/* Event List Styles */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr auto;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    font-weight: bold;
    color: #333;
}

.event-name {
    font-weight: bold;
    color: #0056b3;
}

.event-location {
    color: #333;
}

.event-details {
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
}

.event-details:hover {
    text-decoration: underline;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .event-item {
        grid-template-columns: 1fr; /* Stack all elements vertically */
        grid-template-rows: auto auto auto auto; /* Each element on its own row */
        row-gap: 0.5rem; /* Space between rows */
    }

    .event-date,
    .event-name,
    .event-location,
    .event-details {
        display: block;
        width: 100%;
    }

    .event-date {
        font-size: 1rem;
    }

    .event-name {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }

    .event-location {
        font-size: 0.95rem;
        margin-top: 0.25rem;
    }

    .event-details {
        margin-top: 0.5rem;
    }
}





/* Featured Events Section ----------------------------------------------------------------------------------------------------------------------- */
.featured-events-section {
    background-color: #f8f8f8;
}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Ensure event cards stay below the navbar */
}

.event-card img {
    width: 100%;
    height: 300px; /* Adjusted height for images */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card .event-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align the content towards the bottom */
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: 0; /* Lower z-index to prevent overlapping the navbar */
}

.event-card .event-details h5 {
    position: absolute;
    top: 40%; /* Move the title slightly up */
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    font-size: 1.5rem; /* Adjust size as needed */
}

.event-card .event-details p {
    position: absolute;
    top: 60%; /* Position the description in the middle */
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    font-size: 1rem; /* Adjust size as needed */
}

.event-card .event-details .btn-primary {
    margin-top: auto;
    position: absolute;
    bottom: 20px;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-card:hover .event-details {
    opacity: 1;
}


/* Services Section ----------------------------------------------------------------------------------------------------------------------- */
.services-section {
    background-color: #eef2f7; /* Light background for the section */
    color: #333;
    padding: 40px 0; /* Padding for top and bottom */
}

.services-section h2 {
    color: #003366; /* Dark blue for the heading */
    margin-bottom: 30px;
    text-align: left; /* Align the title to the left */
}

.services-description {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Comfortable line spacing */
    color: #555; /* Softer color for paragraph text */
    max-width: 100%; /* Remove the width restriction */
    margin: 0 0 40px 0; /* Remove auto centering, add margin only at the bottom */
    text-align: left; /* Align the text to the left */
}

/* Service Card */
.service-card {
    background-color: #ffffff; /* White background for each card */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 400px; /* Fixed height for all images */
    object-fit: cover; /* Maintain aspect ratio and cover the entire area */
    border-radius: 10px; /* Match image corners with card corners */
    margin-bottom: 15px; /* Space between image and text */
}

.service-card h5 {
    margin-top: 0;
    color: #0056b3; /* Blue color for the title */
    font-weight: bold;
}

.service-card p {
    font-size: 0.95rem; /* Slightly smaller font size for the description */
    color: #555;
}

.service-card a {
    color: #0056b3; /* Link color */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Personnel Section ----------------------------------------------------------------------------------------------------------------------- */
.personnel-section {
    background-color: #f8f8f8;
    padding: 40px 0;
}

.personnel-section h2 {
    font-size: 2rem;
    color: #003366;
}

.personnel-section p {
    font-size: 1rem;
    color: #555;
}

/* Personnel Image and Details */
.personnel-section img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #003366; /* Add a border around the circular images */
    border-radius: 50%;
    margin-bottom: 10px;
}

.personnel-section h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.personnel-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px; /* Add some space between rows */
}

/* Campus Life Section -----------------------------------------------------------------------------------------------------------------------*/
.campus-life-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.campus-life-section h2 {
    color: #003366; /* Dark blue color for the heading */
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.campus-life-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default is 4 columns in the grid for desktop */
    gap: 0; /* Remove space between the images */
    margin: 0 auto;
    max-width: 1100px; /* Adjusted max-width to reduce the overall size */
    height: auto; /* Set height to auto to accommodate all images */
}

.campus-life-grid img {
    width: 100%;
    height: 250px; /* Reduced height for all images */
    object-fit: cover;
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove box shadow */
}

/* Mobile View */
@media (max-width: 768px) {
    .campus-life-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    }

    .campus-life-grid img {
        height: 150px; /* Further reduced height for mobile view */
    }
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pagination {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-pagination:hover {
    color: #0056b3;
}

.page-indicator {
    font-size: 1rem;
    color: #333;
}


/* Contact Us Section */
.contact-us-section {
    background-color: #f8f8f8; /* Matches the general background theme */
    padding: 50px 0;
}

.contact-us-section h2 {
    color: #003366; /* Crimson color for the heading */
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-details {
    color: #333; /* Neutral dark color for text */
}

.contact-details p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333; /* Neutral dark color */
}

.contact-info {
    list-style-type: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #0056b3; /* Crimson color for text */
}

.contact-info li i {
    margin-right: 10px;
    color: #0056b3; /* Blue color for icons to match other elements */
}

.contact-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow to match overall theme */
}

/* Mobile View */
@media (max-width: 768px) {
    .contact-us-section .container {
        flex-direction: column; /* Stack elements vertically */
    }

    .contact-image {
        order: 2; /* Display the image after the contact details */
        margin-top: 20px; /* Add space above the image */
    }

    .contact-details {
        order: 1; /* Ensure contact details appear first */
    }
}



/* FOOTER -----------------------------------------------------------------------------------------------------------------------*/

.developer-logo {
    height: 20px; 
    vertical-align: middle; 
    margin-left: 5px; 
}

.developer-name {
    margin-left: 5px;
}

</pre></body></html>