/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}



.bg-primary {
    background-color: #005b96;
}

.text-primary {
    color: #005b96;
}

.text-white {
    color: #ffffff;
}

.text-gray-700 {
    color: #4a5568;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Secondary Menu Bar */
.bg-white {
    background-color: #ffffff;
}

/* Main Menu Bar */
#main-menu {
    transition: background-color 0.3s, box-shadow 0.3s;
}

.menu-item {
    color: #ffffff;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #004080;
}

.fixed-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #005b96;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Banner Section */
.banner {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

/* Cards */
.card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-button {
    background-color: #f1f1f1;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab-button.active,
.tab-button:hover {
    background-color: #005b96;
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Contact Modal */
.hidden {
    display: none;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Footer */
.footer {
    background-color: #005b96;
    color: white;
    padding: 2rem 0;
}

.footer a {
    color: white;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffcc00;
}

/* Custom styles */
.carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 1);
}
