

/* =======================
   Base Styles
======================= */
body {
    background: #f9f9f9;
    color: #333;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* =======================
   Menu Bar
======================= */
.menu-bar {
    background-color: #007bff;
    overflow: hidden;
    color: white;
    padding: 5px 10px;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1000;
}

.menu-bar a {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.menu-bar a:hover {
    background-color: #00aaff;
    color: black;
}

.menu-bar .welcome-message {
    color: black;
    padding: 10px 12px;
}

.menu-bar .logout-button {
    background-color: #07f2db;
    border: none;
    color: black;
    padding: 14px 16px;
    font-size: 16px;
    cursor: pointer;
}

.menu-bar .logout-button:hover {
    background-color: #ddd;
}

.menu-logo {
    font-size: 1.4em;
    font-weight: bold;
    color: white;
}

.menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-links a:hover {
    background-color: #003f80;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-links {
        width: 100%;
        flex-direction: column;
        display: none;
        background-color: #0056b3;
        margin-top: 10px;
    }

    .menu-links a {
        padding: 10px;
        border-top: 1px solid #004b9e;
    }

    .menu-toggle:checked + .menu-icon + .menu-links {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .container {
        margin: 10px;
    }
}

/* =======================
   Slideshow
======================= */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.slideshow-container img {
    width: 100%;
    height: 400px;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot:hover,
.active {
    background-color: #717171;
}

/* =======================
   Hero Section
======================= */
.hero {
    background: url('images/image1.jpg') no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 5px #000;
}

.hero-text p {
    font-size: 1.2em;
    text-shadow: 1px 1px 3px #000;
}

/* =======================
   Container Sections
======================= */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 5px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col {
    flex: 1;
}

.left h2 {
    color: #007bff;
}

.right img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* =======================
   Services Section
======================= */
.services {
    background-color: #eef2f7;
    padding: 40px 20px;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* =======================
   Quick Access
======================= */
.quick-access {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.quick-access .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.quick-access a {
    margin: 5px;
    display: inline-block;
}

/* =======================
   Button Styles
======================= */
.button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover {
    background-color: #005f87;
}

/* =======================
   Footer
======================= */
footer, .footer {
    background-color: #006680;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    position: relative;
    bottom: auto;
    width: 100%;
}

/* =======================
   Typography
======================= */
h2 {
    color: #0077b6;
    text-shadow: 1px 1px 2px #ccc;
    font-size: 2rem;
    margin-bottom: 10px;
}

.styled-list {
    list-style-type: none;
    padding: 0;
}

.styled-list li {
    padding: 10px;
    margin-bottom: 8px;
    background: #e9f7fa;
    border-left: 5px solid #00aaff;
    border-radius: 4px;
}

/* =======================
   Layout Boxes
======================= */
.centered-div-login {
    margin: 20px auto;
    width: 400px;
    text-align: center;
    border: 2px solid #07f2db;
    border-radius: 15px;
}

.centered-div {
    margin: 20px auto;
    width: 1000px;
    text-align: left;
    padding: 20px;
    border: 2px solid #07f2db;
    border-radius: 15px;
}

/* =======================
   Grid Table
======================= */
.custom-grid {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, sans-serif;
}

.custom-grid th,
.custom-grid td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.custom-grid th {
    background-color: #f2f2f2;
    color: #333;
}

/* =======================
   Feedback Form
======================= */
.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}

/* =======================
   Gallery
======================= */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}


.event-gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.event-gallery h1 {
    margin-bottom: 30px;
    font-size: 2em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.event-item {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-item img {
    width: 100%;
    height: auto;
    display: block;
}

.event-item p {
    padding: 10px;
    font-weight: bold;
}

