
        /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
        }

        /* HEADER */
       header {
            min-height: 120px;
            background: url('../images/headerbanner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

            display: flex;
            align-items: center;
            justify-content: space-between;

            padding: 10px 40px;
            color: white;
            flex-wrap: wrap;
        }
        
        .header-left{
            display:flex;
            align-items:center;
            padding-left: 160px; /* move right */
        }

        .logo {
            width: 90px;
            height: 90px;
            object-fit: contain;
            margin-right: 15px;
        }

        .header-clock{
            display:flex;
            align-items:center;
            gap:8px;
        }

        /* Reduce clock size */
        .flip-clock-wrapper {
            transform: scale(0.35);
            transform-origin: right center;
            margin:0;
        }

        /* AM PM Style */
        .ampm{
            font-size:5px;
            font-weight:bold;
            color:#fff;
        }

        /* Responsive */
        @media(max-width:768px){

        header{
        flex-direction:column;
        text-align:center;
        }

        .flip-clock-wrapper{
        transform: scale(.45);
        }

        .ampm{
        font-size:12px;
        }

        }

       .header-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            text-shadow: 2px 2px 5px rgba(216, 216, 216, 0.7);

            gap: 3px; /* 👈 controls spacing between items */
        }

        .header-text h5,
        .header-text p {
            margin: 0;          /* remove extra spacing */
            line-height: 1.2;   /* tighter text spacing */
        }

        .title {
            font-weight: bold;
            display: inline-block;
            border-bottom: 3px solid white;
            padding-bottom: 2px;
            margin-bottom: 2px; /* small spacing under title */
        }

        .header-text p {
            color: white;
            font-size: 26px;
            font-weight: bold;
            text-shadow: none;
        }

        /* NAVIGATION */
      nav {
            background: #005236;
        }

        /* SLIGHTLY RIGHT POSITION */
        nav ul {
            display: flex;
            list-style: none;
            justify-content: flex-start;
            flex-wrap: wrap;

            padding: 3px 10px;
            padding-left: 50px;
        }

        nav ul li {
            margin: 3px 10px;
        }

        nav ul li a {
            position: relative;   /* needed for underline */
            
            color: white;
            text-decoration: none;
            font-weight: normal;
            font-size: 13px;

            padding: 6px 10px;
            border-radius: 4px;
            transition: 0.3s ease;
        }

        /* WHITE HOVER (40% OPACITY) */
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.4);
            color: #ffffff;
        }

        /* YELLOW UNDERLINE ANIMATION */
        nav ul li a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 0%;
            height: 2px;
            background: #ffc400;
            transition: 0.3s ease;
            transform: translateX(-50%);
        }

        /* SHOW UNDERLINE ON HOVER */
        nav ul li a:hover::after {
            width: 80%;
        }

        /* MAIN */
        main {
            padding: 20px;
        }

        section {
            margin-bottom: 20px;
            padding: 15px;
            background: #ecf0f1;
            border-radius: 8px;

            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        /* FOOTER */
        footer {
            background: #7a001b;
            color: white;
            text-align: center;
            padding: 7px;
            margin-top: 20px;
        }

        /* =========================
           RESPONSIVE DESIGN
        ========================= */

        /* TABLET */
        @media (max-width: 992px) {
            header {
                padding: 0 50px;
            }

            .header-text p {
                font-size: 16px;
            }
        }

        /* MOBILE */
        @media (max-width: 600px) {
            header {
                height: auto;
                padding: 15px;
                flex-direction: column;
                text-align: center;
            }

            .logo {
                margin: 0 0 10px 0;
                width: 60px;
                height: 60px;
            }

            .header-text {
                align-items: center;
                text-align: center;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 8px 0;
            }
        }
        /* =========================
   SAFE RESPONSIVE FIX ONLY
   (does NOT affect desktop)
========================= */

/* TABLET & MOBILE */
@media (max-width: 992px) {

    /* CENTER HEADER CONTENT */
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* REMOVE LEFT OFFSET ONLY ON SMALL SCREENS */
    .header-left {
        padding-left: 0 !important;
        justify-content: center;
        flex-direction: column;
    }

    /* CENTER TEXT */
    .header-text {
        align-items: center;
        text-align: center;
    }

    /* CENTER CLOCK */
    .header-clock {
        justify-content: center;
        margin-top: 10px;
        width: 100%;
    }

    .flip-clock-wrapper {
        transform: scale(0.45);
        transform-origin: center;
    }
}

/* MOBILE EXTRA */
@media (max-width: 600px) {

    .flip-clock-wrapper {
        transform: scale(0.5);
    }

    nav ul {
        justify-content: center;
        padding-left: 0;
    }
}
/* Hide FlipClock on tablet and mobile */
@media (max-width: 992px) {
    .header-clock {
        display: none;
    }
}
/* HAMBURGER BUTTON (hidden on desktop) */
.menu-toggle {
    display: none;
    background: #0c2f24;
    padding: 10px 15px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

/* TABLET & MOBILE */
@media (max-width: 992px) {

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* HIDE NAV BY DEFAULT */
    nav {
        display: none;
        width: 100%;
    }

    /* SHOW NAV WHEN ACTIVE */
    nav.active {
        display: block;
    }

    /* DROPDOWN STYLE */
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    nav ul li {
        margin: 10px 0;
    }
}
/* =========================
   HERO SECTION (BASE)
========================= */
/* =========================
   HERO SECTION
========================= */
.hero-section {
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("../images/section1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 30px 20px;
    box-sizing: border-box;
}

/* CONTENT WRAPPER */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    width: 100%;
    max-width: 1100px;
    text-align: center;
}

/* =========================
   BUTTON
========================= */
.gov-button {
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;

    background: transparent;
    color: #005236;

    border: 2px solid #005236;
    border-radius: 30px;

    cursor: pointer;
    transition: 0.3s ease;
}

.gov-button:hover {
    background: #005236;
    color: #fff;
    transform: scale(1.05);
}

/* =========================
   HERO TEXT
========================= */
.hero-label {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 900;
    color: #005236;
    letter-spacing: 1px;
    -webkit-text-stroke: 0.5px #005236;
}

.hero-sub-label {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 700;
    color: #005236;
}

/* =========================
   CAROUSEL FRAME
========================= */
.hero-label-carousel {
    width: 100%;
    max-width: 900px;

    margin: 10px auto;

    position: relative;

    min-height: 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    padding: 10px 0;
    box-sizing: border-box;
}

/* =========================
   CAROUSEL ITEM (CENTERED FIX)
========================= */
.carousel-item {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) scale(0.95);

    width: 100%;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: clamp(16px, 2.5vw, 30px);
    font-weight: 900;
    color: #005236;

    white-space: normal;
    word-break: break-word;
    line-height: 1.3;

    opacity: 0;

    animation: carouselFade 18s infinite;
}

/* =========================
   CENTERED FADE ANIMATION
========================= */
@keyframes carouselFade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }

    8% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    16% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    24% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 0;
    }
}

/* =========================
   TIMING CONTROL
========================= */
.carousel-item:nth-child(1) { animation-delay: 0s; }
.carousel-item:nth-child(2) { animation-delay: 3s; }
.carousel-item:nth-child(3) { animation-delay: 6s; }
.carousel-item:nth-child(4) { animation-delay: 9s; }
.carousel-item:nth-child(5) { animation-delay: 12s; }
.carousel-item:nth-child(6) { animation-delay: 15s; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .hero-section {
        min-height: auto;
        padding: 25px 15px;
    }

    .hero-label-carousel {
        min-height: 140px;
    }

    .gov-button {
        font-size: 14px;
        padding: 10px 18px;
    }
}
/* PARENT */
.dropdown {
    position: relative;
}

/* HIDE SUB MENU INITIALLY */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 130px;
    background: #005236;

    padding: 0;
    margin: 0;

    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.3s ease;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 999;
}

/* SUB ITEMS */
 

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s ease;
}

/* HOVER EFFECT ON ITEMS */
.dropdown-menu li a:hover {
    background: #005236;
    color: #fff;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SECTION */
/* SECTION */
.form-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

/* ROW */
.form-row {
    display: flex;
    gap: 60px; /* slightly reduced for balance */
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

/* FORM BOX (INCREASED SIZE) */
.form-box {
    flex: 1;

    min-width: 350px;
    max-width: 600px;

    background: #fff;
    padding: 50px 40px;   /* 🔥 MORE VERTICAL SPACE */

    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.18);

    display: flex;
    flex-direction: column;
    gap: 18px;

    min-height: 600px;    /* 🔥 THIS IS THE MAIN HEIGHT BOOST */

    justify-content: space-between; /* spreads content nicely */
}

 
 

.form-box button:hover {
    background: #007a4d;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .form-box {
        width: 100%;
        max-width: 100%;
    }
}
.form-title {
    margin: 0 0 10px 0;
    padding: 20px;
    font-size: 30px;
    font-weight: 800;
    color: #005236;
}
.objectives {
    margin-top: 20px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.objective-item h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.objective-item p {
    margin: 5px 0 0;
    color: #555;
    font-size: 14px;
}

.icon {
    font-size: 30px;
    color: #005236;
    min-width: 40px;
}
/* =========================
   FIX IMAGE OVERLAP (SAFE OVERRIDE)
========================= */

/* DESKTOP FIX */
.image-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.image-column img {
    width: 100% !important;     /* 🔥 fix overflow */
    max-width: 100%;            /* prevent exceeding container */
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

/* TABLET */
@media (max-width: 992px) {
    .image-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .image-column img {
        width: 48% !important;  /* 2 per row */
        height: 120px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .form-row {
        flex-direction: column !important;
        gap: 25px;
    }

    .form-box {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto; /* 🔥 prevent stretching */
    }

    .image-column {
        flex-direction: column;
    }

    .image-column img {
        width: 100% !important;
        height: auto; /* 🔥 prevents overlap */
    }
}
.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #005236;
}
.panel-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.panel-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap; /* makes it responsive */
}

.panel {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.panel:hover {
    transform: translateY(-5px);
}
.panel-row {
    margin-bottom: 30px;
}
 #section4 {
    background-color: #005236;
    color: #fff;
    padding: 50px 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-col h3 {
    margin-top: 15px;
    font-size: 18px;
}

.footer-col p {
    margin: 5px 0;
    font-size: 13px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    column-count: 1;       /* makes 2 columns */
    column-gap: 30px;
}
.footer-col ul li {
    break-inside: avoid;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 500;
    
    white-space: nowrap;      /* 🔥 forces single line */
}
 
.footer-col ul li:hover {
    color: #ffd700;
}

/* Logos */
.logo-group {
    display: flex;
    gap: 10px;
}

.logo {
    width: 70px;
    height: auto;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons i {
    margin-right: 10px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-group {
        justify-content: center;
    }
}
 #scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #005236;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none; /* hidden by default */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    z-index: 9999;
}

#scrollTopBtn:hover {
    background-color: #007a4d;
    transform: scale(1.1);
}
html {
    scroll-behavior: smooth;
}