
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background-color: #005a8d;
            color: white;
            text-align: center;
            padding: 1px;
            position : sticky;
            top : 0;
            z-index : 500;
        }
        
        .header-image {
        text-align: right;

        }

        .header-image img {
        width: 100%;
        height: 20%;
        }
        nav ul {
            list-style: none;
            padding: 0;
        }
        nav ul li {
            display: inline;
            margin: 0 5px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
        section {
            padding: 50px;
            text-align: center;
            background: white;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
        }
        form {
            display: flex;
            flex-direction: column;
            max-width: 400px;
            margin: 0 auto;
        }
        input, textarea {
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            background-color: #005a8d;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #00416a;
        }
        footer {
            text-align: center;
            padding: 20px;
            background-color: #005a8d;
            color: white;
            margin-top: 20px;
        }




.image-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
    overflow-x: auto;
    padding: 10px;
}

.company_pic {
    flex: 1;
    max-width: 320px;
    min-width: 220px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.company_pic:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.company_pic img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.company_text {
    text-align: center;
    padding: 10px;
}

.company_text h3 {
    font-size: 18px;
    color: #005a8d;
    margin-bottom: 10px;
}

.company_text p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.company_text ul {
    text-align: left;
    padding: 0;
    list-style: none;
    font-size: 14px;
    margin-top: 10px;
}

.company_text ul li::before {
    content: '\2022';
    color: #005a8d;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}





.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}



@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        text-align: center;
        background: #005a8d;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }
    
    nav ul.show {
        display: flex;
    }
}



.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#contact-form {
    flex: 1;
    min-width: 300px;
}

.upload-section {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

.upload-btn {
    display: inline-block;
    background: #005a8d;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.upload-btn i {
    margin-right: 5px;
}

#resume-upload {
    display: none;
}

#file-name {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}


.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.about-text ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    margin-top: 10px;
}

.about-text ul li::before {
    content: '\2022';
    color: #005a8d;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}