/* =====================================================
   GLOBAL RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f4f6f8;
    color: #333;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================================================
   HEADER TOP
===================================================== */
.header-top {
    background: #004080;
    color: #fff;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.header-top i { margin-right: 5px; }
.submenu a { color: #fff; margin-left: 10px; }

/* =====================================================
   BANNER
===================================================== */
.banner {
    background: linear-gradient(
        90deg,
        rgba(46,125,50,.85) 0%,
        rgba(251,192,45,.85) 20%,
        rgba(79,195,247,.85) 50%,
        rgba(255,255,255,.75) 70%,
        rgba(229,57,53,.85) 85%,
        rgba(245,124,0,.85) 100%
    );
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(2px);
}

.banner-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.banner-content h1,
.banner-content p {
    font-weight: bold;
}

/* =====================================================
   LOGO + NAVBAR
===================================================== */
.logo-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.logo-menu .logo { height: 50px; }

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #007bff;
}


/* =====================================================
   DROPDOWN
===================================================== */
.has-dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: 0.3s;
}

.has-dropdown.open > a i {
    transform: rotate(90deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.has-dropdown:hover > .dropdown {
    display: flex;
}

.dropdown li a {
    padding: 10px 15px;
}

.dropdown li a:hover {
    background: #f0f0f0;
    color: #007bff;
}

/* Desktop Dropdown */
.has-dropdown {
    position: relative;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
}

/* Desktop hover */
.has-dropdown:hover > .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: #004080;
    color: white;
}

/* Mobile Dropdown */
@media (max-width: 992px){

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
    }

    .has-dropdown.open > .dropdown-menu{
        display: block;
    }
}

/* =====================================================
   SEARCH
===================================================== */
.search-container { margin-left: 15px; }

.search-form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.search-form input,
.search-form select {
    border: none;
    padding: 6px 10px;
    outline: none;
}

.search-form button {
    background: #004080;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    transition: 0.3s;
}

.search-form button:hover {
    background: #00264d;
}

/* =====================================================
   SLIDER
===================================================== */
.slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    background: rgba(0,0,0,.35);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ff4c4c;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #004080;
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-center {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-center div {
    flex: 1;
    min-width: 250px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 20px;
    padding-top: 10px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.back-to-top {
    background: #ffdd00;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {

    .menu-toggle { display: block; }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        transition: 0.3s;
    }

    .navbar.active { left: 0; }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
    }

    .has-dropdown.open > .dropdown {
        display: flex;
    }
}

@media (max-width: 768px) {
    .slider { height: 50vh; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* ==============================
   Mission – Vision – Values
   ============================== */

.mission-vision-values {
    background: #f7f9fb;
    padding: 70px 20px;
}

.mission-vision-values .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Style */
.section-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Top accent line */
.section-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2e7d32, #fbc02d, #1976d2);
}

/* Hover effect */
.section-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Titles */
.section-item h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1b5e20;
    text-align: center;
}

/* Text */
.section-item p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #444;
    text-align: justify;
}

/* Values list */
.section-item ul {
    margin-top: 10px;
    padding-left: 22px;
}

.section-item ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
    position: relative;
}

/* Custom bullet */
.section-item ul li::marker {
    color: #2e7d32;
    font-weight: bold;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ================= HEADER TOP ================= */
.header-top{
    background:#004080;
    color:#fff;
    padding:8px 20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    font-size:14px;
}

/* ================= BANNER ================= */
.banner{
    background:linear-gradient(90deg,#2e7d32,#fbc02d,#1976d2);
    padding:25px;
    text-align:center;
    color:#000;
}

/* ================= LOGO + MENU ================= */
.logo-menu{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    padding:10px 20px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    position:relative;
    z-index:1000;
}

.logo{
    height:50px;
}

/* ================= NAVBAR ================= */
.navbar{
    display:flex;
    justify-content:space-between;
    width:100%;
}

/* Left menu */
.nav-left{
    display:flex;
    list-style:none;
}

.nav-left li a{
    display:block;
    padding:10px 14px;
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-left li a:hover{
    color:#007bff;
}

/* ================= DROPDOWN ================= */

/* Desktop dropdown */
.has-dropdown{
    position:relative;
}

.has-dropdown .dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    background:#fff;
    border:1px solid #ddd;
    display:none;
    flex-direction:column;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.has-dropdown:hover .dropdown{
    display:flex;
}

/* Dropdown items */
.dropdown li a{
    padding:10px 15px;
    white-space:nowrap;
}

.dropdown li a:hover{
    background:#f4f6f8;
}

/* ================= MOBILE MENU ================= */

.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* Mobile navbar */
@media(max-width:992px){

.menu-toggle{
    display:block;
}

.navbar{
    position:fixed;
    top:0;
    left:-100%;
    width:80%;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:20px;
    transition:.3s;
    overflow-y:auto;
}

.navbar.active{
    left:0;
}

.nav-left{
    flex-direction:column;
    width:100%;
}

.nav-left li a{
    width:100%;
    padding:12px;
}

/* Mobile dropdown */
.has-dropdown .dropdown{
    position:static;
    display:none;
    border:none;
    box-shadow:none;
    width:100%;
}

.has-dropdown.open .dropdown{
    display:flex;
}

}

/* ================= SOCIAL ICONS ================= */
.header-top a{
    color:#fff;
    margin-left:8px;
    transition:.3s;
}

.header-top a:hover{
    opacity:.8;
}