:root {
    --blue: #0b3d91;
    --green: #2e8b57;
    --orange: #f28c28;
    --light-bg: #f4f6f9;
}

body {
    margin: 0;
	font-family: Arial, Helvetica, sans-serif;
    background: var(--light-bg);
    color: #333;
}

/* ===== HEADER ===== */
header {
	background: linear-gradient(to right, var(--blue), var(--green));
    border-bottom: 5px solid var(--orange);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left img {
    height: 175px; /* 50% increase */
}

header h1 {
    margin: 0;
    font-size: 25px; /* 50% increase */
    font-weight: 600;
    white-space: nowrap;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    margin-left: 20px;
}

.nav-item > a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    position: relative;
	white-space: nowrap;
}

.nav-item > a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--orange);
    left: 0;
    bottom: -6px;
    transition: 0.3s ease;
}

.nav-item:hover > a::after {
    width: 100%;
}

/* Active Page Indicator */
.nav-item > a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ===== DROPDOWNS ===== */
.dropdown {
    position: absolute;
    top: 130%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 14px;
    color: var(--blue);
    border-bottom: 1px solid #eee;
}

.dropdown a:hover {
    background: var(--light-bg);
    color: var(--green);
}

/* ===== HERO SLIDESHOW ===== */
.hero {
    position: relative;
    height: 800px;
    width: 80%;
    margin: 40px auto;
    overflow: hidden;
    background: #eaeaea;
    border-radius: 12px;
}

.slides {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* FULL COVER */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    color: white;
    text-align: center;
}

.hero-overlay h2 {
    font-size: 38px;
    margin: 0;
}

.boxed-section {
    background: white;
    width: 85%;
    margin: 40px auto;              /* Centers and adds spacing between sections */
    padding: 40px 30px;             /* Inner spacing */
    border-top: 3px solid var(--blue);     /* Top border blue */
    border-left: 3px solid var(--blue);    /* Left border blue */
    border-bottom: 3px solid var(--orange);/* Bottom border orange */
    border-right: 3px solid var(--orange); /* Right border orange */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.boxed-section h2 {
    color: var(--blue);
    margin-top: 0;
    font-size: 28px;
}

.boxed-section p {
    font-size: 16px;
    line-height: 1.7;
}

/* ===== QUICK LINKS ===== */
.quick-links {
    background: var(--light-bg);
    padding: 50px 20px;
}

.quick-links .container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.quick-card {
    flex: 1 1 320px;
}

.quick-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    /* Colored top and left borders */
    border-top: 6px solid var(--blue);    /* Top edge color */
    border-left: 6px solid var(--blue); /* Left edge color */
}

.quick-card h3 {
    margin-top: 0;
    color: var(--blue);
}

.quick-card a {
    display: block;
    text-decoration: none;
    color: #333;
    margin: 8px 0;
}

.quick-card a:hover {
    color: var(--green);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: var(--light-bg);
    padding: 45px 20px;
}

.contact-info .container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-box {
    background: white;
    padding: 25px;
    border-radius: 12px;                 /* match quick-card rounding */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* same shadow as quick-card */
    
    /* Colored top and left borders like quick-card */
    border-top: 6px solid var(--green);   /* top edge color */
    border-left: 6px solid var(--green);/* left edge color */
}

.contact-box h3 {
    margin-top: 0;
    color: var(--blue);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(to right, var(--blue), var(--green));
    border-top: 5px solid var(--orange);
    color: white;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        width: 95%;
		max-width: 1400px;
    }

    .quick-links .container {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
        flex-wrap: wrap;
    }
}

.header-social {
    position: absolute;
    top: 10px;
    right: 40px;
}

.header-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-size: 15px;
}

.header-social img {
    width: 30px;
    height: 30px;
}

/* ===== UNIFIED BULLET STYLE (Quick Cards + Boxed Sections) ===== */
.quick-card ul,
.boxed-section ul {
    list-style: none;
    padding-left: 0;
}

.quick-card ul li,
.boxed-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.quick-card ul li::before,
.boxed-section ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #1f4e79;
    font-weight: bold;
}

.quick-card ul li a {
    text-decoration: none;
    color: inherit;
}

.quick-card ul li a:hover {
    color: var(--green);
	font-weight: bold;
	text-decoration: underline;
    text-decoration-color: var(--green);
}

/* ===== RESPONSIVE NAVIGATION ===== */

@media (max-width: 1100px) {

    header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .header-left img {
        height: 120px;
    }

    header h1 {
        font-size: 20px;
    }

}

/* ===== TABLETS ===== */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        flex-direction: column;
        background: linear-gradient(to right, var(--blue), var(--green));
        margin-top: 15px;
        padding: 15px 0;
        text-align: left;
    }

    nav.show {
        display: flex;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-item > a {
        font-size: 18px;
        display: block;
        text-align: left;
    }

    /* DROPDOWN BECOMES A LIST */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 8px;
        padding: 5px 0;
    }

    .dropdown a {
        display: block;
        padding: 8px 0;
        font-size: 15px;
        color: white;
        border: none;
    }

}

/* Mobile dropdown arrow list */
@media (max-width: 900px) {

    .dropdown a::before {
        content: "› ";
        font-weight: bold;
        margin-right: 5px;
    }

}

/* ===== MOBILE ===== */

@media (max-width: 700px) {

    .hero {
        height: 400px;
        width: 95%;
    }

    .hero-overlay h2 {
        font-size: 24px;
        padding: 10px;
    }

    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-left img {
        height: 90px;
    }

    header h1 {
        font-size: 18px;
    }

    .boxed-section {
        width: 92%;
        padding: 25px;
    }

    .boxed-section h2 {
        font-size: 22px;
    }

}

/* ===== SMALL PHONES ===== */

@media (max-width: 480px) {

    .hero {
        height: 300px;
    }

    .hero-overlay h2 {
        font-size: 20px;
    }

    footer {
        padding: 30px 15px;
        font-size: 14px;
    }

}

/* ===== POLICY SECTION (based on boxed-section) ===== */
.policy-section {
    background: white;
    width: 85%;
    max-width: 900px;           
    margin: 40px auto;          
    padding: 40px 30px;         
    border-top: 6px solid var(--blue);      /* Thicker top border */
    border-left: 6px solid var(--blue);     /* Thicker left border */
    border-bottom: 6px solid var(--orange); /* Thicker bottom border */
    border-right: 6px solid var(--orange);  /* Thicker right border */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.policy-section h2 {
    color: var(--blue);
    margin-top: 0;
    font-size: 28px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
}

/* Bullet list style with extra spacing between links */
.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px; /* More space between links */
}

.policy-section ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #1f4e79;
    font-weight: bold;
}

.policy-section ul li a {
    text-decoration: none;
    color: inherit;
}

.policy-section ul li a:hover {
    color: var(--green);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--green);
}

/* ===== NOTICES SECTION ===== */

.notices-section {

background: white;
max-width: 900px;
margin: 40px auto;
padding: 40px;

border-top: 6px solid var(--blue);
border-left: 6px solid var(--blue);
border-bottom: 6px solid var(--orange);
border-right: 6px solid var(--orange);

border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);

}

.notices-section h2{

margin-top: 0;
color: var(--blue);
font-size: 28px;

}

.notices-section ul{

list-style: none;
padding: 0;

}

.notices-section li{

margin-bottom: 18px;
padding-left: 20px;
position: relative;

}

.notices-section li::before{

content: "›";
position: absolute;
left: 0;
font-weight: bold;
color: #1f4e79;

}

.notices-section a{

text-decoration: none;
color: #333;

}

.notices-section a:hover{

color: var(--green);
font-weight: bold;
text-decoration: underline;
text-decoration-color: var(--green);

}

/* PAGINATION */

#pagination{

margin-top: 30px;
text-align: center;

}

#pagination button{

margin: 5px;
padding: 8px 14px;
border: none;
background: var(--blue);
color: white;
border-radius: 6px;
cursor: pointer;

}

#pagination button:hover{

background: var(--green);

}

#pagination button.active{

background: var(--orange);

}

/* ===== VACANCY SECTION ===== */

.vacancy-section {

background: white;
max-width: 900px;
margin: 40px auto;
padding: 40px;

border-top: 6px solid var(--blue);
border-left: 6px solid var(--blue);
border-bottom: 6px solid var(--orange);
border-right: 6px solid var(--orange);

border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);

}

.vacancy-section h2{
margin-top: 0;
color: var(--blue);
font-size: 28px;
}

/* ===== VACANCY LINKS ===== */

.vacancy-link{

color: var(--green);
font-weight: bold;
text-decoration: none;
font-size: 16px;

position: relative;
padding-left: 18px;

}

/* Same arrow style as homepage */

.vacancy-link::before{
content: "›";
position: absolute;
left: 0;

font-weight: bold;
font-size: 22px;   /* makes arrow bigger */
line-height: 1;
color: #1f4e79;
}

/* Hover effect */

.vacancy-link:hover{

text-decoration: underline;
text-decoration-color: var(--green);

}

/* Vacancy date */

.vacancy-date{

margin-top: -10px;
margin-bottom: 20px;
font-size: 14px;
color: #666;

}

.vacancy-section ul {
list-style: none;
padding: 0;
}

.vacancy-section li {
margin-bottom: 18px;
}


/* ===== DEPARTMENT SECTION ===== */
.department-section {
    margin: 40px auto;
}

.department-container {
    display: flex;
    gap: 40px;
    width: 85%;
    margin: 40px auto;
}

.department-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.department-left h2 {
    color: var(--orange);
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.department-left h3 {
    margin: 0px;
}

.department-left img {
    height: 450px;
	width: auto;
    max-width: 450px;
    border-radius: 15px;
    object-fit: contain;
    margin-bottom: 10px;
}

.department-left .employee-name {
    font-weight: bold;
    color: #333;
    text-align: center;
}

.department-right {
    flex: 2;
    padding-left: 25px;
}

.department-title{

font-weight: bold;
color: var(--green);

}

/* RESPONSIVE */
@media (max-width: 900px) {
    .department-container {
        flex-direction: column;
    }
    .department-right {
        padding-left: 0;
        margin-top: 25px;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        width: 100%;
        display: none;
        flex-direction: column;
        background: linear-gradient(to right, var(--blue), var(--green));
        margin-top: 15px;
        padding: 15px 0;
    }
    nav.show {
        display: flex;
    }
    .nav-item {
        margin: 10px 0;
        width: 100%;
    }
    .nav-item > a {
        font-size: 18px;
        display: block;
        text-align: left;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 8px;
        padding: 5px 0;
    }
    .dropdown a {
        display: block;
        padding: 8px 0;
        font-size: 15px;
        color: white;
        border: none;
    }
}

/* ===== FOLDER LINKS PAGE ===== */

.folder-section {

background: white;
max-width: 900px;
margin: 40px auto;
padding: 40px;

border-top: 6px solid var(--blue);
border-left: 6px solid var(--blue);
border-bottom: 6px solid var(--orange);
border-right: 6px solid var(--orange);

border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);

}

.folder-section h2{

margin-top: 0;
color: var(--blue);
font-size: 28px;

}

.folder-links{

list-style: none;
padding: 0;

}

.folder-links li{

display: flex;
align-items: center;
gap: 15px;

margin-bottom: 20px;

}

.folder-links img{

width: 32px;
height: 32px;

}

.folder-links a{

text-decoration: none;
color: #333;
font-size: 18px;

}

.folder-links a:hover{

color: var(--green);
font-weight: bold;
text-decoration: underline;
text-decoration-color: var(--green);

}

/* CONTACT FORM */

.contact-form-section{

background: white;
max-width: 900px;
margin: 40px auto;
padding: 40px;

border-top: 6px solid var(--blue);
border-left: 6px solid var(--blue);
border-bottom: 6px solid var(--orange);
border-right: 6px solid var(--orange);

border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);

}

.contact-form-section h2{

margin-top:0;
color: var(--blue);
font-size:28px;
margin-bottom:25px;

}

.contact-form{

display:flex;
flex-direction:column;
gap:15px;

}

.contact-form label{

font-weight:bold;
color:#333;

}

.contact-form input,
.contact-form textarea{

padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:15px;
font-family: Arial, Helvetica, sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus{

outline:none;
border-color: var(--green);

}

.contact-form button{

margin-top:10px;
padding:12px;
font-size:16px;

background: var(--blue);
color:white;
border:none;
border-radius:8px;

cursor:pointer;

}

.contact-form button:hover{

background: var(--green);

}

.success-message{

display:none;

background:#e9f7ef;
border-left:6px solid var(--green);

padding:15px 20px;
margin-bottom:20px;

border-radius:6px;

color:#2e7d32;
font-weight:bold;

}