* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #fff;
    padding-top: 100px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
}



.top-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 0;
    color: #003b5c;
}

.top-right i {
    margin-right: 6px;
    color: #0077a3;
}

/* Header */
.main-header {
    position: fixed;
    top: 40px;
    /* height of top-bar */
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    /* reduced height */
}



/* Logo container */
.logo {
    display: flex;
    align-items: center;
    /* vertical centering */
}

/* Logo image size & clarity */
.logo img {
    height: 52px;
    /* balanced & compact */
    width: auto;
    object-fit: contain;
}


/* Navigation */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #003b5c;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #d42603;
    font-size: large;
    text-decoration: underline;
}

/* Contact Button */
.contact-btn {
    background: linear-gradient(135deg, #004c75, #0077a3);
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    opacity: 0.9;
    background-image: linear-gradient(to right, #ff6e7f 0%, #bfe9ff 51%, #ff6e7f 100%);

}

/* Floating Social Container */
.floating-social {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Social Icon Style */
.floating-social .social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

/* Individual Colors */
.facebook {
    background: #1877f2;
}

.linkedin {
    background: #0077b5;
}

.social.twitter {
    background: #000000;
}

.whatsapp {
    background: #25d366;
}

.instagram {
    background: linear-gradient(45deg,
            #f58529,
            #feda77,
            #dd2a7b,
            #8134af,
            #515bd4);
}
.social.youtube {
  background-color: #ff0000;
}

/* Hover Effect */
.floating-social .social:hover {
    padding-right: 12px;
    width: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}


/* Footer */
.footer {
    background-color: #001f3f;
    color: #ccc;
    padding: 40px 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px 10px 15px;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #FFD700;
}

.social-media a {
    color: #FFD700;
    font-size: 1.5em;
    margin: 0 10px;
    text-decoration: none;
}


/* Main Footer */
.footer-main {
    background: #2f4357;
    padding: 60px 0;
    color: #d5e2ee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #d5e2ee;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #4a90e2;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #3b536a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
}

.social-icons a:hover {
    background: #4a90e2;
}


/* BUTTON */
.contact-form button {
    background: #1bb15e;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #169b51;
}

/* IMAGE */
.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-image {
        margin-top: 30px;
    }
}

/* PAGE TITLE SECTION */
.career-hero {
    height: 60vh;
    background: url("../documents/mainbg.jpg") center/cover no-repeat;
    position: relative;
    margin-bottom: 60px;
}

.career-overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    align-items: center;
}

.career-hero-content {
    color: #fff;
    padding: 0 60px;
    max-width: 800px;
}

.career-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.career-hero-content p {
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        height: 240px;
        padding-left: 5%;
    }

    .page-title-content h1 {
        font-size: 32px;
    }
}

/* MAIN ABOUT SECTION */
.about-section {
    padding: 80px 60px;
     padding-top: 60px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
    align-items: flex-start;
}

/* IMAGES */
.about-images img {
    width: 75%;
    border-radius: 10px;
    margin-bottom: 25px;
    margin-left: 25px;
    object-fit: cover;
}

/* CONTENT */
.badge {
    display: inline-block;
    background: #f1f1f1;
    color: #555;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.about-content h1 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-content h3 {
    margin: 25px 0 10px;
    font-size: 20px;
}

.about-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-list li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

.info-section {
    padding: 50px 0 80px;
}

.info-container {
    max-width: 900px;
    margin: auto;
}

.info-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.info-container p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}