body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;

    /* Background image */
    background: url('highb.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header */
header {
    background-color: rgba(255, 165, 0, 0.9); /* orange */
    padding: 20px 0;
    color: white;
}

/* Flex container for header */
.header-container {
    display: flex;
    justify-content: space-between; /* logo+text left, mascot right */
    align-items: center;            /* vertically center items */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Logo + text container */
.logo-text {
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    height:200px;
    margin-right: 20px;
}

/* Mascot image on right */
.mascot-image img {
    height: auto; /* match logo height */
    width: 300px;
}
h1 {
    text-align: center;
    color: #3892d3; /* blue theme color */
    margin-bottom: 20px;
     text-align: center;   /* centers text */
    font-size: 3em;       /* makes text larger */
    font-weight: bold;    /* optional: makes it bold */
    margin: 20px 0;       /* spacing above/below */
    color: #07304e;  
   font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 700;

}

.slogan {
    font-size: 1.2em;
    margin-top: 5px;
    color: #e0f7ff; /* light blue */
}

.mascot {
    font-size: 1.5em;
}
/* ===========================
   Navigation Bar
   =========================== */
.navbar {
    background-color: #0077cc; /* blue */
    padding: 10px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center; /* centers the menu */
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    padding: 8px 15px;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover effect */
.nav-links a:hover {
    background-color: orange;
    border-radius: 5px;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Keep menu centered */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

/* Apply Now button */
.apply-btn {
    background-color: orange;
    color: white;
    padding: 8px 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}


/* Apply Now Button */
.apply-btn {
    background-color: orange;
    color: white;
    padding: 10px 22px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(255,165,0,0.7);
    transition: 0.3s;
}

/* Hover effect */
.apply-btn:hover {
    background-color: #005fa3;
    box-shadow: 0 0 15px rgba(0,119,204,0.9);
    transform: scale(1.05);
}
/* Scrolling slogan banner */
.slogan-banner {
    width: 100%;
    overflow: hidden;
    background-color: #eb9b07; /* blue */
    color: white;
    padding: 10px 0;
}

.scroll-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
/* About Section */
.about-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;

    /* Transparent white background */
    background-color: rgba(255, 255, 255, 0.9);

    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-container h2 {
    color: #0077cc;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-container p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}/* About Image Carousel */
.about-carousel {
    max-width: 800px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    position: relative;
}

.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Active slide fades in */
.about-slide.active {
    opacity: 1;
    position: relative;
}

/* Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0077cc;
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.carousel-btn:hover {
    background-color: orange;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* About Images */
.about-images {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 30px;

    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-images img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Footer */
/* Footer */
footer {
    background-color: rgba(0, 119, 204, 0.9); /* blue */
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #ffd700; /* gold/yellow for links */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.slogan-footer {
    font-style: italic;
    margin: 10px 0;
}