﻿:root {
    --primary-color: #f75c03;
    --secondary-color: #3b3b3b; 
    --background-color: #f9f9f9; 
    --card-background: #ffffff; 
    --accent-color: #03a9f4; 
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--background-color);
}

h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    padding: 10px 0;
}

h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

header {
    background: var(--card-background);
    padding: 15px 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

nav ul {
    list-style: none;
    display: flex;
    justify-content:space-around;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

    nav a:hover {
        background-color: var(--primary-color);
        color: white;
    }


main {
    padding: 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}


.cta-button, .apply-button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(247, 92, 3, 0.3);
}

.apply-button {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 6px rgba(3, 169, 244, 0.3);
}

    .cta-button:hover, .apply-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }


#hero {
    background: linear-gradient(135deg, var(--card-background), #ffe0b2); /* Light gradient */
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

    .service-list article {
        background: var(--card-background);
        padding: 20px;
        border-radius: var(--border-radius);
        text-align: center;
        flex: 1;
        min-width: 250px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }


#job-listings {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vacancy-card {
    background: var(--card-background);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

    .vacancy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .vacancy-card h3 {
        margin-bottom: 5px;
        color: var(--secondary-color);
    }

.location, .salary {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.vacancy-card ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 10px;
    margin-top: 10px;
}



/* Tablet and Desktop Styles */
@media (max-width: 768px) {
    /* Stack header items */
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        margin-top: 10px;
    }

        nav ul {
            flex-direction: column;
            gap: 10px;
        }

    .service-list {
        flex-direction: column;
    }

        .service-list article {
            min-width: 100%;
        }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    main {
        padding: 20px 4%;
    }

    .cta-button, .apply-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.Error{
    color:red;
    font-weight:normal;
}

label {
    font-weight: bold;
}

