/* Exec Team Modals */


/*--------------------------- Mission Statement --------------------------*/
.mission-statement {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: linear-gradient(to right, #f0d16d, #f0d068);
    color: white;
    text-align: center;
    padding: 20px;
}

.mission-content {
    max-width: 800px;
}

.mission-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 20px;
}

.mission-content p {
    font-size: 1.2em;
    line-height: 1.6em;
    color: white;
    text-shadow: 0 0 20px black;
}
/*-------------------------- Mission Statement End ---------------------------*/
:root {
  --header-color: rgba(235, 206, 78, 0.7);
  --white: #ffffff;
}

/*---------------------- Header ----------------*/
.row div.col-md-4 h2 {
    color: white;
    text-align: center;
    text-shadow: 0 0 5px black;
    font-weight: 500;
    margin-bottom: 0;
}

.row div.col-md-4 p {
    color: white;
    text-align: center;
    width: 300px;
    height: 100px;
    justify-self: center;
    text-shadow: 0 0 5px black;
}

a.dropdown-toggle span {
    font-size: 1em;
    font-family: "Figtree";
}

.bottom.fixed {
    box-shadow: 0 10px 10px rgba(0, 0, 0, .5);
}

html header nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu, html header nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu, html header nav ul.nav-main .dropdown-tertiary > ul.dropdown-menu ul.dropdown-menu, html header nav ul.nav-main .dropdown-tertiary.mega-menu-item > ul.dropdown-menu ul.dropdown-menu {
    border-top-color: rgba(230, 210, 97, 0.7) !important;
    position: absolute;
    width: 50vw;
    top: 100%;
    z-index: 1;
    background: rgba(241, 211, 109, 0.7) !important;
    background-color: var(--header-color) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .5) !important;
    justify-self: center;
    min-width: 100% !important;
}

.mega-menu-content span {
    color: white;
    font-weight: bold;
    font-size: larger;
    text-shadow: 0 0 5px BLACK;
    text-align: center;
}

.row div.col-md-4 {
    display: grid;
    justify-content: normal;
    align-content: space-evenly;
}

.col-md-4 img {
    justify-self: center;
}

html header nav ul.nav-main .dropdown-full-color .mega-menu-sub-title, html header nav ul.nav-main .dropdown-full-color.mega-menu-item ul.sub-menu .mega-menu-sub-title {
    color: #fff;
    opacity: 1 !important;
}



/*--------------------- Executive Team Page ----------------------------------*/


/*------------------------------ News & Events -------------------------------*/

/* Row styles */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.row-spacing {
    margin-bottom: 20px; /* Adjust the value as needed */
}

/* Column styles */
.col {
    padding: 15px;
    box-sizing: border-box;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

/* Single latest news styles */
.single-latest-news {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.single-latest-news:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image box styles */
.img-box {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    transition: transform 0.3s ease;
}

.single-latest-news:hover .img-box img {
    transform: scale(1.05);
}

/* Text box styles */
.text-box {
    padding: 15px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.text-box .meta-blog {
    display: block;
    font-size: 0.875em;
    color: #999;
    margin-bottom: 15px;
}

.text-box p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-box a.latest {
    display: inline-block;
    font-size: 1em;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto; /* Aligns read more link to the bottom */
}

.text-box a.latest:hover {
    color: #0056b3;
}

.text-box .heading-primary {
    margin-left: 5px;
}

/*-------------------------------- FAQ Page ----------------------------------*/
/* Basic styling for the FAQ section */
#faq {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

#faq h2 {
    text-align: center;
    margin-bottom: 20px;
}


.accordion-toggle {
    display: none;
}

.accordion-toggle:checked + .accordion-title + .accordion-content {
    max-height: 200px; /* Adjust as needed to fit content */
    padding: 15px;
}

.accordion-toggle {
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
    animation: bounce 0.6s; /* Apply bounce animation */
}

.accordion-toggle:hover {
    background-color: #f1f1f1;
    color: #0056b3;
}

.card-heading{
    color: black;
    box-shadow: 0 2px 4px #cfa940;
}

.card-heading h4:hover {
    color: white;
}

.card-body {
    box-shadow: 0 2px 4px black;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 0.5s forwards; /* Apply fadeIn animation */
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

/* Keyframes for fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Keyframes for bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Keyframes for rotate animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

/* Keyframes for rotate back animation */
@keyframes rotateBack {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/*------------------------------ Events Page -----------------------------*/

.ecal {
    border: 0;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow */
}


/*------------------------ Search Feature Home Page --------------------------*/

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.search-container form {
    display: flex;
    align-items: center;
}
.search-container select, 
.search-container input {
    margin-right: 10px;
    padding: 10px;
    font-size: 16px;
}
.search-container button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #004A7C;
    color: white;
    border: none;
    cursor: pointer;
}
.search-container button:hover {
    background-color: #003366;
}


/*-------------------------------Events Pane ---------------------------------*/









































































































































































































































































































































































































