
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    line-height: 1.6;
}

/* NAV BAR */
.container-nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #003B5C;
}
.brand strong { color: #D94F4F; }
.logo { height: 45px; margin-right: 10px; }

.menu-toggle {
    font-size: 32px;
    cursor: pointer;
    display: none;
}

nav ul {
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    font-weight: bold;
    color: #003B5C;
}

/* HEADER */
.service-header {
    background: #003B5C;
    color: white;
    padding: 50px 10%;
    text-align: center;
}

/* BODY */
.service-body {
    padding: 40px 10%;
    background: #ffffff;
    border-radius: 15px;
    margin: 20px 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-main-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-side-img {
    width: 100%;
    margin: 25px 0;
    border-radius: 12px;
}

ul li {
    margin-bottom: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 25px;
    background: #003B5C;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #003B5C;
    color: white;
    padding: 40px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-logo { height: 50px; }

/* MOBILE */
@media (max-width:768px) {

    .menu-toggle { display: block; }

    nav ul {
        display: none;
        flex-direction: column;
        background: white;
        padding: 10px;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ANIMATION BASE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

/* WHEN VISIBLE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-page {
    padding: 60px 10%;
    text-align: center;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-page p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 18px;
}

/* Wrapper fix */
.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Form fix */
.contact-form {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-page h1 {
        font-size: 28px;
    }

    .contact-page p {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}

/* RECRUITMENT HERO */
.service-hero {
    background: #003B5C;
       color: white;
    padding: 80px 10%;
    text-align: center;
}

.service-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.service-hero p {
    font-size: 18px;
}


/* SECTION BELOW HERO */
.service-details {
    padding: 50px 10%;
    background: #f8fbfd;
}

.service-details h2 {
    font-size: 26px;
    margin-top: 20px;
    color: #003b5c;
}

.service-details ul {
    margin-left: 20px;
    line-height: 1.7;
}


/* FORM SECTION */
.recruitment-form-section {
    padding: 50px 10%;
    background: #ffffff;
}

.recruitment-form-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #003b5c;
}

.recruitment-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recruitment-form label {
    font-weight: bold;
    color: #003b5c;
}

.recruitment-form input,
.recruitment-form textarea,
.recruitment-form select {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #cccccc;
    width: 100%;
    font-size: 16px;
}

.recruitment-form button {
    background: #003b5c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.recruitment-form button:hover {
    opacity: 0.9;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .service-hero {
        padding: 60px 8%;
    }

    .service-hero h1 {
        font-size: 32px;
    }

    .service-hero p {
        font-size: 16px;
    }

    .service-details {
        padding: 40px 6%;
    }

    .recruitment-form-section {
        padding: 40px 6%;
    }

}


.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
}

/* Rounded Header Box */
.header-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    background: var(--brand-light);
    padding: 12px 22px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* soft shadow */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}



/* Logo */
.logo {
    height: 60px;
    object-fit: contain;
}

/* Hamburger Menu */
.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-icon span {
    width: 28px;
    height: 4px;
    background: #000;
    border-radius: 5px;
}


/* Mobile Dropdown Menu */
#mobile-menu {
    width: 90%;
    max-width: 1200px;
    margin: 10px auto;
    background: rgba(225,255,255,0.92);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 18px;
    display: none;
    flex-direction: column;
    overflow: hidden;

    /* animation */
    animation: dropdown 0.3s ease;
}

/* Dropdown Animation */
@keyframes dropdown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

#mobile-menu a {
    padding: 15px 20px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

#mobile-menu a:last-child {
    border-bottom: none;
}

.section-card{
    background: rgba(0,123,158,0.12);
    border-left: 5px solid #007b9e;


    border-radius: 18px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}



.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
}