body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f7fa;
    color: #333;
}

header {
    background-color: #004080;
    color: white;
    padding: 20px 40px;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

.hero {
    background: url('images/mainpage.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    position:relative;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 50px;
    color: white;
    text-shadow: 
        0 0 2px black,
        0 0 4px black,
        0 0 6px black;
}

.section {
    padding: 60px 40px;
}

.section h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service {
    flex: 1 1 200px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service h4 {
    margin-top: 0;
}

footer {
    background-color: #00264d;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }
}

.section-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.section-link:hover {
    color: #004080;
    text-decoration: underline;
}

/*about.html */
.brand-link {
    text-decoration: none;
    color: white;
}

.brand-link:hover {
    text-decoration: underline;
}

/*services.html */
.service-block {
    margin-bottom: 40px;
    text-align: center;
}

.service-block img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}



/*contacts.htmt */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1 1 300px;
    max-width: 600px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

.contact-form button {
    background-color: #004080;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: #002f66;
}

/* Make footer stick to the bottom */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main, .section {
    flex: 1;
}

/* Footer styling remains the same */
footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.section h3 {
    text-align: center;
}

#contact {
    text-align: center;
}

#about {
    text-align: center;
}

hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, #6e6d6d, transparent);
    margin: 40px auto;
    width: 80%;
    border-radius: 5px;
}

.service-image-1,
.service-image-2,
.service-image-3,
.service-image-4,
.service-image-5,
.service-image-6 {
    display: block;
    margin: 0 auto 10px auto;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .service-image-1,
    .service-image-2,
    .service-image-3,
    .service-image-4,
    .service-image-5,
    .service-image-6 {
        max-width: 90%;
    }
}

.about-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-gallery img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    border-color: #888;
}

.section h2 {
    text-align: center;
}

.about-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.employee {
    text-align: center;
}

.employee p {
    margin-top: 10px;
    font-weight: bold;
}


/* in service.html*/
.service-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}

.service-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 500px) {
    .service-image {
        max-width: 90%;
    }
}


/*contacts.html*/
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 100px;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
}

nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

#lang-toggle {
    margin-left: auto;
    margin-right: 0%;
    padding: 2px 6px;
    border: none;
    border-radius: 6px;
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}



