

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #031650; /* Beige color scheme */
    font-size: 18px; /* Increase font size */
}

header {
    position: sticky;
    top: 0;
    background-color: #031650; /* Tan color for the entire menu */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Increase padding for larger header */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure header stays on top */
    color: #ffffff;
}

.logo {
    font-size: 28px; /* Increase logo font size */
    font-weight: bold;
    text-align: center;
    flex: 1; /* Center logo */
}

.logo img {
    max-width: 500px;
    max-height: 80px;
    width: auto;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center; /* Center the menu options */
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.menu-item {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
    padding: 10px 20px; /* Increase padding for larger menu items */
    background-color: #031650; /* Tan color for menu items */
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #031650; /* Darker tan background for submenu */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.submenu li {
    padding: 10px 20px;
    white-space: nowrap;
}

.subnote {
    display: block;
    font-size: 14px; /* Increase subnote font size */
    color: #ffffff;
}

.menu-item:hover .submenu {
    display: block;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    color: #ffffff;
}

@media (max-width: 400px) {
    header {
        justify-content: space-between; /* Adjust alignment for mobile */
    }

    .logo {
        order: 1; /* Ensure logo stays centered */
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Position menu below header */
        left: 0;
        background-color: #031650; /* Tan color for mobile menu */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        align-items: center; /* Center menu options */
    }

    .menu.active {
        display: flex;
    }

    .menu-item {
        width: 100%;
        text-align: center; /* Center text in menu items */
    }

    .submenu {
        position: static;
        box-shadow: none;
    }

    .menu-item::after {
        content: '▼';
        float: right;
    }

    .menu-item.active .submenu {
        display: block;
    }

    .menu-buttons {
        display: none; /* Hide buttons on mobile */
    }
}

.btn-purple {
    background-color:#1a43bf;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-purple1 {
    background-color:#1a43bf;
    color: rgb(255, 255, 255);
    border: none;
    font-size: 16px;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-purple2 {
    background-color:#1a43bf;
    color: rgb(255, 255, 255);
    border: none;
    font-size: 19px;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
}
.message-from-president {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #46299e; /* Slightly darker background */
    color: #ffffff;
    padding: 50px 20px;
}

.message-from-president .content {
    max-width: 50%;
}

.message-from-president .content p strong {
    display: block;
    margin-top: 20px;
    font-size: 18px;
}

.message-from-president .image {
    max-width: 50%;
}

.message-from-president .image img {
    width: 100%;
    height: auto;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
section {
    padding: 0px;
    background: #ffffff;
}
.content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}
.content.visible {
    opacity: 1;
    transform: translateY(0);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.image-box, .text-box {
    width: 100%;
    height: 200px;
    background: #ffffff;
    margin-bottom: 20px;
}
.text-box {
    background: #f8faf9;
    padding: 20px;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.flex-item {
    flex: 1;
    min-width: 200px;
}
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .flex-container {
        flex-direction: column;
    }
}

.stats-section {
    display: flex;
    justify-content: space-around;
    background-color: #ebeffd;
    color: #1d1d75;
    padding: 20px;
}
.stat {
    text-align: center;
}
.number {
    font-size: 2em;
    font-weight: bold;
}
.arrow {
    font-size: 1.5em;
    margin: 10px 0;
}
@media only screen and (max-width: 800px) and (min-width: 300px){
    body {
        font-size: 14px;
    }

    .menu {
        display: none;
    }

    .hamburger-menu {
        display: block !important;
    }

    .hero-content {
        text-align: center;
        padding: 10px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
    }


    .hero-image img {
        transition: transform 0.5s ease-in-out !important;
    }

    .hero-image img.pop-effect {
        transform: scale(1.2) !important;
    }
    

    .flex-container {
        flex-direction: column;
        align-items: center;
    }

    .flex-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .stats-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .menu-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 400px) {
    .submenu {
        display: none;
    }

    .menu-item.active .submenu {
        display: block;
    }
}
.two-columns {
    display: flex;
    justify-content: space-between;
}

.left-column, .right-column {
    width: 48%;
}

.left-column img {
    width: 100%;
    height: auto;
}





.two-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.left-column, .right-column {
    width: 48%;
}

.left-column img {
    width: 100%;
    height: auto;
}

.content {
    display: none;
}

.header-container {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container h3 {
    margin: 0;
    font-size: 1.2em;
}

.arrow {
    font-size: 0.8em;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .left-column, .right-column {
        width: 100%; /* Make columns full width on mobile */
    }

    .header-container h3 {
        font-size: 1em; /* Adjust header size for mobile */
    }

    .arrow {
        font-size: 0.7em; /* Adjust arrow size for mobile */
    }
}

.abutton {
    background-color: #ebeffd;
    border: none;
    color: rgb(0, 0, 0);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 3rem;
}
.abutton:hover {
    background-color: #b0c1ff; /* Slightly darker background */
    color: rgb(0, 0, 0); /* Change text color to white */
}

.aabutton {
    background-color: hsl(240, 100%, 24%);
    border: none;
    color: rgb(192, 175, 255);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 3rem;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #031650;
    color: white;
    padding: 20px;
}
.footer-logo {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}
.footer-columns {
    display: flex;
    flex: 3;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1;
    margin: 0 10px;
    min-width: 150px;
}
.footer-column h3 {
    border-bottom: 1px solid #031650;
    padding-bottom: 10px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin: 10px 0;
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        order: -1;
        margin-bottom: 20px;
    }
    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-column {
        margin-bottom: 20px;
        text-align: left;
    }
}

.president-message {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 95%;
    width: 100%;
}

.president-image {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.message-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media (min-width: 600px) {
    .container {
        flex-direction: row;
        text-align: left;
    }

    .president-image {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .message-content {
        padding: 20px 40px;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 25%;
    box-sizing: border-box;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff00;
    color: rgba(0, 0, 0, 0);
    border: none;
    padding: 10px;
    cursor: pointer;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .carousel-item {
        min-width: 100%;
        scroll-snap-align: start;
    }

    .arrow {
        display: none;
    }
}



.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Add blur effect */
}

.popup-content {
    background: hsl(240, 56%, 98%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative; /* Ensure the close button is positioned correctly */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: black; /* Change the color to black */
    background: white; /* Ensure the background is white */
    border-radius: 50%; /* Make it a circle */
    padding: 5px; /* Add some padding */
    border: 1px solid rgb(255, 255, 255); /* Add a border */
    z-index: 1001; /* Ensure it is above other elements */
}

.logo {
    max-width: 100px;
    margin-bottom: 20px;
}

input[type="email"] {
    width: calc(100% - 120px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background: hsl(232, 60%, 42%);
    color: hsl(0, 0%, 100%);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #003976;
}

@media (max-width: 600px) {
    .popup-content {
        width: 90%;
        max-width: 300px; /* Make it smaller on phone-sized screens */
        padding: 15px; /* Adjust padding for smaller screens */
        height: auto; /* Ensure it adjusts height automatically */
    }

    .logo {
        max-width: 80px; /* Adjust logo size for smaller screens */
    }

    input[type="email"] {
        width: calc(100% - 100px); /* Adjust input width for smaller screens */
    }

    button {
        padding: 8px 16px; /* Adjust button padding for smaller screens */
    }
}
.section0101 {
    background: linear-gradient(to bottom, #031650, #031650);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}
.box01 {
    border: 1.5px solid white;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    margin: 10px;
    flex: 1 1 300px;
    max-width: 900px;
    border-radius: 15px;
}
.box01 h1 {
    color: white;
    margin: 0 0 10px;
}
.box01 p {
    color: white;
    margin: 0;
}
.aimage-container {
    margin: 10px;
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}
.aimage-container img {
    width: 100%;
    border-radius: 15px;
}
.aimage-container .subtitle {
    color: white;
    margin-top: 10px;
}
@media (max-width: 600px) {
    .section {
        flex-direction: column;
    }
}
.container {
    display: flex;
    flex-wrap: wrap;
}
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.column {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .column {
        flex: 100%;
    }
}
@media (min-width: 769px) {
    .column {
        flex: 50%;
    }
}

@media (max-width: 600px) {
    section div {
        flex: 1 1 100%;
        margin-right: 0;
    }
    section img {
        width: 100%;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {
    section div {
        flex: 1;
        margin-right: 20px;
    }
    section img {
        width: auto;
    }
}