@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================
   GLOBAL RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
    padding-top: 0px;
    background-color: transparent;
}

.Section_top {
    height: 100vh;
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Slideshow Setup */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: smoothSlideshow 20s infinite linear;
    position: relative;
    overflow: hidden;
}
@keyframes smoothSlideshow {
    0% {
        background-image: url('../Images/Y1.jpg');
    }
    20% {
        background-image: url('../Images/Y6.jpg');
    }

    40% {
        background-image: url('../Images/Y2.jpg');
    }
    60% {
        background-image: url('../Images/Y4.jpg');
    }

    80% {
        background-image: url('../Images/Y5.jpg');
    }
    100% {
        background-image: url('../Images/Y3.jpg');
    }
}

.Section_top .content {
    position: relative;
    z-index: 1;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 32px rgba(0,0,0,0.37);
}

/* Text Content */
.Section_top .content {
    max-width: 600px;
    color: white;
}

.Section_top h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.Section_top h1 span {
    display: block;
    font-size: 28px;
    font-weight: 400;
}

.Section_top h2 {
    margin: 15px 0 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.Section_top a {
    display: inline-block;
    padding: 12px 30px;
    background: green;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.Section_top a:hover {
    background: #0b7a2f;
    transform: scale(1.05);
}


/* =========================
   INFORMATION SECTION
========================= */
/* SECTION WRAPPER */
.info-section {
    width: 100%;
    padding: 80px 6%;
    background: #f4f6f8;
}

/* FLEX CONTAINER */
.info-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 0;
}

/* SCROLLABLE IMAGES */
.scrollable {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.scrollable img {
    height: 300px;
    min-width: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.scrollable img:hover {
    transform: scale(1.05);
}

/* TEXT CONTENT */
.additional-info {
    flex: 1.2;
    color: #1f2937;
}

/* MAIN TITLE */
.additional-info h2 {
    font-size: 30px;
    font-weight: 700;
    color: #003300;
}

/* SUBTITLE */
.additional-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 25px;
}

/* PARAGRAPHS */
.additional-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* MISSION BOX */
.mission-box {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border-left: 6px solid #0b7a2f;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.mission-box h3 {
    margin-bottom: 15px;
    color: #003300;
}

.mission-box ul {
    padding-left: 20px;
}

.mission-box li {
    margin-bottom: 12px;
    line-height: 1.7;
}


/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
    height: 65px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 45px;
}

/* Center navigation */
.nav-center {
    display: flex;
    gap: 20px;
}

.nav-center a {
    text-decoration: none;
    color: #155c3b;
    font-weight: 500;
    padding: 6px 10px;
    transition: 0.3s;
}

.nav-center a:hover {
    background: rgba(21, 92, 59, 0.1);
    border-radius: 5px;
}

/* =========================
   DROPDOWN MENU
========================= */
.dropdown {
    position: relative;
}

.dropbtn {
    background: transparent;
    border: 1px solid #155c3b;
    color: #155c3b;
    padding: 7px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.dropdown-content a:hover {
    background-color: #f4f4f4;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* GLASS EFFECT BOX */
.overlay-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 50px 70px;
    border-radius: 25px;
    text-align: center;
    color: black;
    max-width: 800px;
}

/* TITLE */
.overlay-box h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

/* SUBTITLE */
.overlay-box p {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 2px;
}

/* BUTTON */
.btn-register {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    background: #a8ff00;
    color: #003300;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-register:hover {
    background: #7ee000;
    transform: scale(1.05);
}


/*NAV BOTTOM */
.nav-bottom {
    width: 100%;
    background: #003300;
    color: #e5e7eb;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


.nav-bottom h1 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}
.nav-btn, .btn {
    background: transparent;
    border: none;
    color: #1e7e34;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-btn:hover,
.btn:hover {
    background-color: #1e7e34;
    color: white;
    border-radius: 6px;
}
.nav-center a,
.nav-btn,
.btn {
    text-decoration: none;
    color: #1e7e34;
    font-weight: 600;
    padding: 8px 15px;
    transition: 0.3s;
}

.nav-center a:hover,
.nav-btn:hover,
.btn:hover {
    background-color: #1e7e34;
    color: white;
    border-radius: 6px;
}
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}
.status-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 8px;
}

.status-table th {
    background: #2e7d32;
    color: white;
    padding: 12px;
    text-align: left;
}

.status-table td {
    padding: 12px;
    background: #ffffff;
}

.status-table tr:nth-child(even) td {
    background: #f5f5f5;
}
/* Modal wider for officers */
.officers-modal-content {
    width: 95%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
}

/* Officers Grid */
.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Officer Card */
.officer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Officer Image */
.officer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* Officer Name */
.officer-card h3 {
    font-size: 14px;
    margin: 8px 0;
    font-weight: 600;
}

/* Officer Role */
.officer-card p {
    font-size: 13px;
    color: #2e7d32;
    font-weight: bold;
}



