
           html {
            scroll-padding-top: 70px; /* Should be equal to the height of your fixed header */
        }

        body {
            padding-top: 70px; /* Adjust this value based on the actual height of your header */
            font-family: 'Roboto', Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .site-header {
            background-color: #003366;
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            display: flex;
            align-items: center; /* Align items vertically */
            text-decoration: none; /* Remove underline from the link */
            color: white; /* Ensure text color is white */
        }

        .logo img {
            height: 50px; /* Adjust logo height */
            width: auto; /* Maintain aspect ratio */
            margin-right: 10px; /* Space between logo and text */
        }
        .logo-text {
            font-family: 'Poppins', sans-serif; /* Use the same font as headings */
            font-size: 1.5em; /* Adjust font size as needed */
            color: white; /* Set text color to white for contrast */
            font-weight: bold; /* Make the text bold */
        }
        .hamburger {
            display: none; /* Hidden by default */
            flex-direction: column; /* Stack the lines */
            cursor: pointer; /* Pointer cursor on hover */

        }

        .hamburger div {
            width: 23px; /* Width of the lines */
            height: 3px; /* Height of the lines */
            background-color: white; /* Color of the lines */
            margin: 4px 0; /* Space between lines */
            transition: 0.4s; /* Transition for animation */
        
        }
        .main-nav {
            display: flex; /* Keep nav items in a horizontal line */
            margin-left: auto; /* Push nav to the right */
        }
        .main-nav ul {
            list-style-type: none;
            padding: 10;
            margin: 3;
            display: flex;
        }

        .main-nav li {
            margin-left: 20px;
            font-family: 'Lato', Helvetica, sans-serif;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .main-nav a:hover {
            color: #00e1ff;;
        }
         body, html {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
        }
        
        .video-background {
            position: fixed;
            right: 0;
            bottom: 0;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
        }
        .content {
            position: relative;
            height: 100vh;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-family: 'Lato', Helvetica, sans-serif;
            font-weight: 700;  /* Bold */
            font-size: 3em;
            margin-bottom: 0.5em;
        
        }
        p {
            font-family: 'DM Sans', sans-serif; /* Set font to DM Sans */
             font-size: 1.2em; /* Adjust font size as needed */
            margin-bottom: 1.5em; /* Space below paragraphs */
            color: #000000; /* Ensure text color is black */
        }
        .cta-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: #2532eb; /* Dark blue background */
            color: #ffffff; /* White text */
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            border-radius: 30px; /* Rounded corners */
            transition: all 0.3s ease; /* Smooth transition for all properties */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
            border: 2px solid #2532eb; /* Border matching the background */
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transition: all 0.5s;
        }
        
        .cta-button:hover {
            background-color: #172be0; /* Slightly lighter blue on hover */
            color: #ffffff;
            transform: translateY(-3px); /* Slight upward movement */
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Larger shadow on hover */
        }
        
        .cta-button:hover:before {
            left: 100%;
        }
        
        .cta-button:active {
            transform: translateY(0); /* Button returns to original position when clicked */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Smaller shadow when clicked */
        }
        .history-section {
            display: flex;
            padding: 40px 0;
            background-color: #f4f4f4;
            font-family: 'DM Sans', sans-serif; /* Set font to DM Sans */
            font-size: 1.3em; /* Adjust font size as needed */
            margin-bottom: 1.5em; /* Space below paragraphs */  
            color: #000000; 
        }
        .image-collage {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
        }
        .image-collage img {
            width: 100%;
            max-width: 300px;
            margin-bottom: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .history-text {
            flex: 1;
            padding: 0 40px;
        }
        .history-text h2 {
            color: #003366;
        }
        .lower-content {
            background-color: white;
            padding: 50px 0;
            text-align: center;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .quick-links {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .quick-link {
            flex-basis: calc(33.333% - 20px);
            background-color: #f4f4f4;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .quick-link h3 {
            color: #003366;
            margin-top: 0;
        }
        .history-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #1316c5;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            cursor: pointer;
            margin-top: 20px;
        }
        .history-button:hover {
            background-color: #1316c5;
            
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        
.lower-content {
    position: relative;
    background-color: rgba(186, 211, 235, 0.774); /* Dark overlay */
    color: rgb(23, 19, 240);
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}
.lower-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.lower-content .container {
    position: relative;
    z-index: 1;
}

.lower-content h2,
.lower-content p {
    color: rgb(14, 13, 13);
}

.quick-link {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.quick-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.quick-link h3 {
    color: rgba(8, 20, 126, 0.952); /* DISCOVER */
}

.cta-button {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2532eb;
}
.image-collage img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.image-collage img:hover {
    opacity: 0.8;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.news-ticker-container {
    background-color: #f4f4f4;
    padding: 10px 0;
    overflow: hidden;
}

.news-ticker {
    display: flex;
    animation: ticker 30s linear infinite;
}

.news-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    opacity: 0.7;
}

.news-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-right: 10px;
}

.news-item p {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;  /* Regular */
    margin: 0;
    font-weight: bold;
    color: #003366;
}
@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.latest-news-header {
    background-color: #003366;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.latest-news-header h2 {
    margin: 0;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-ticker-container {
    background-color: #f4f4f4;
    padding: 15px 0;
    overflow: hidden;
    border-top: 2px solid #003366;
    border-bottom: 2px solid #003366;
}

.news-ticker {
    display: flex;
    animation: ticker 30s linear infinite;
}

.news-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: 30px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item:hover {
    opacity: 0.7;
}
.news-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 3px;
}

.news-item p {
    margin: 0;
    font-weight: bold;
    color: #003366;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.our-programs-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.our-programs-section h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
}
p {
    color: #000000; /* Set paragraph text to black */
}

.programs-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.program {
    width: 30%;
    background-color: rgba(255, 255, 255, 0.747);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.program:hover {
    transform: translateY(-5px);
}

.program img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-details {
    padding: 20px;
}

.program-details h3 {
    color: #003366;
    margin-top: 0;
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #1316c5;
}

@media (max-width: 768px) {
    .program {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .program {
        width: 100%;
    }
}
.campus-life-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.campus-life-section h2 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
}

.campus-life-content {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
}

.campus-life-slideshow {
    width: 90%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.campus-life-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;   
    transition: opacity 0.5s ease-in-out;
}

.campus-life-slideshow img.active {
    opacity: 1;
}

.campus-life-text {
    width: 50%;
    padding: 20px;
}

.campus-life-text h3 {
    color: #003366;
    margin-top: 0;
}

.campus-life-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 1.00em;
}

.campus-life-text li {
    margin-bottom: 10px;
    font-size: 1.20em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em; /* Adjust size for smaller screens */
    }

    h3 {
        font-size: 1.75em; /* Adjust size for smaller screens */
    }

    p {
        font-size: 1em; /* Adjust size for smaller screens */
    }
    .campus-life-content {
        flex-direction: column;
    }

    .campus-life-slideshow,
    .campus-life-text {
        width: auto;
    }

    .campus-life-slideshow {
        margin-bottom: 30px;
    }
}
.site-footer {
    background-color: #003366;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

.footer-contact, .footer-social {
    margin-bottom: 20px;
}

.footer-contact h3, .footer-social h3 {
    margin-bottom: 10px;
}

.footer-contact p, .footer-social a {
    margin: 5px 0;
    color: #ffffff;
    text-decoration: none;
}

.footer-social a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-right {
        text-align: center;
    }
}
@media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .main-nav {
                margin-top: 10px;
                align-self: stretch;
            }

            .main-nav ul {
                flex-direction: column;
            }

            .main-nav li {
                margin-left: 0;
                margin-bottom: 10px;
            }
        }

        /* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Stack header items */
        align-items: flex-start; /* Align items to the start */   
    }
    .main-nav {
        display: none; /* Hide the nav by default on small screens */
        flex-direction: column; /* Stack items vertically */
        width: 100%; /* Full width */
        background-color: #003366; /* Background color for dropdown */
        position: absolute; /* Position it absolutely */
        top: 90px; /* Position below the header */
        left: 0; /* Align to the left */
        z-index: 1000; /* Ensure it stays on top */
    }

    .main-nav.active {
        display: flex; /* Show the nav when active */
    }

    .hamburger {
        display: flex; /* Show hamburger icon on small screens */
    }

    .main-nav ul {
        flex-direction: column; /* Stack navigation items */
    }

    .main-nav li {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 10px; /* Add bottom margin */
    }

    .video-background {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .content {
        padding: 1rem; /* Add padding for better spacing */
    }

    h1 {
        font-size: 2.5em; /* Adjust heading size */
    }

    h2 {
        font-size: 2em; /* Adjust size for smaller screens */
    }

    .program {
        width: 100%; /* Full width for programs on small screens */
        margin-bottom: 20px; /* Add margin for spacing */
    }

    .campus-life  {
        flex-direction: column; /* Stack items vertically */
        align-items: center
    }

    .campus-life-text {
        flex-direction: column; /* Stack items vertically */
        align-items: center
    }
    .campus-life-slideshow img{
        flex-direction: column; /* Stack items vertically */
        align-items: center
    }
    
    .footer-content {
        flex-direction: column; /* Stack footer items vertically */
        align-items: center; /* Center footer items */
    }
}

@media (max-width: 480px) {
    .cta-button, .enroll-button {
        width: 100%; /* Full width buttons */
        padding: 12px; /* Adjust padding */
    }
}
        .basic-education-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .education-level {
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: 5px;
        }
        
        .education-level h2 {
            color: #003366;
            margin-bottom: 0.5rem;
        }
        
        .enroll-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #003366;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        
        .enroll-button:hover {
            background-color: #004080;
        }
        .pdf-link {
            color: #003366; /* Change to your desired color */
            text-decoration: underline; /* Underline for emphasis */
        }
        
        .pdf-link:hover {
            color: #1f026e; /* Change color on hover */
        }
        
        
        