/* ========================= GENERAL PAGE STYLING ========================= */ 
* {
    box-sizing: border-box; 
} 
html { 
    scroll-behavior: smooth;
} 
body { margin: 0;
    padding-top: 80px;
    font-family: Arial, Helvetica, sans-serif; 
    background: #f5f7fa; 
    color: #222;
} 
h1, h2, h3, p { 
    margin-top: 0; 
} 
/* ========================= NAVIGATION BAR ========================= */
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    min-height: 80px; 
    background: #ffffff; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 40px; 
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15); 
    z-index: 1000; 
} 
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 90px;
    height: auto;
    display: block;
    object-fit: cover;
}
/* Navigation links */ 
.nav-menue { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
} 
.nav-menue a { 
    color: #222; 
    text-decoration: none; 
    font-weight: bold; 
    padding: 10px 5px; 
    position: relative; 
    transition: 0.3s ease; 
} 
/* Underline animation */ 
.nav-menue a::after { 
    content: ""; 
    position: absolute; 
    left: 0; 
    bottom: 3px; 
    width: 100%; 
    height: 3px; 
    background: #f4c542; 
    transform: scaleX(0); 
    transform-origin: left; 
    transition: transform 0.3s ease; 
} 
.nav-menue a:hover { 
    color: #1a365d; 
} 
.nav-menue a:hover::after {
    transform: scaleX(1); 
    }
     /* ========================= HERO SECTION ========================= */ 
    .hero { min-height: 650px; 
        background-image: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55) ), 
        url("../images/truck-2.jpg");
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;
        display: flex; 
        justify-content: center;
        align-items: center; 
        text-align: center; 
        color: white; 
        padding: 40px 20px; 
        } 
        .about-container { 
            max-width: 850px; 
        } 
        .about-container h2 { 
            font-size: 48px; 
            line-height: 1.15; 
            margin-bottom: 20px; 
        } 
        .about-container p { font-size: 21px; 
            line-height: 1.6; 
            margin-bottom: 15px; 
        } 
        .about-container .su {
            font-size: 22px; 
            } 
            /* ========================= BUTTONS ========================= */
            .btn { display: inline-block; 
                padding: 14px 25px;
                margin: 15px 8px; 
                border-radius: 6px; 
                background: #f4c542; 
                color: #111; 
                text-decoration: none; 
                font-weight: bold; 
                transition: 0.3s ease; 
            } 
            .btn:hover { 
                background: #ffffff; 
                color: #1a365d; 
                transform: translateY(-3px); 
            } 
            /* ========================= CONTACT NUMBERS ========================= */ 
            body > nav { 
                background: #1a365d; 
                display: flex; 
                justify-content: center; 
                align-items: center; 
                gap: 30px; 
                padding: 15px;
                flex-wrap: wrap; 
            } 
            body > nav a {
                color: white; 
                text-decoration: none; 
                font-weight: bold; 
                transition: 0.3s ease; 
            } 
            body > nav a:hover { 
                color: #f4c542; 
            } 
            /* ========================= ABOUT SECTION ========================= */ 
            .about { 
                max-width: 1100px;
                margin: 60px auto; 
                padding: 60px 40px; 
                background: #1a365d; 
                color: white; 
                border-radius: 20px; 
                text-align: center; 
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
            } 
            .about h2 { 
                font-size: 36px; 
                margin-bottom: 20px 
            } 
            .about p { 
                max-width: 850px; 
                margin: auto; 
                font-size: 17px; 
                line-height: 1.8; 
            } 
            /* ========================= SERVICES ========================= */ 
            .services { 
                max-width: 1200px; 
                margin: 0 auto; 
                padding: 60px 20px; 
            } 
            .it { 
                text-align: center; 
                font-size: 36px; 
                color: #1a365d; 
                margin-bottom: 35px; 
            }
            .services-grid { 
                display: grid; 
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
                gap: 25px; 
            } 
            .card { 
                padding: 30px 25px; 
                background: white; 
                border-radius: 12px; 
                border: 1px solid #e2e8f0; 
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
                transition: 0.3s ease; 
                text-align: center; 
            } 
            .card:hover { 
                transform: translateY(-8px); 
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); 
            } 
            .card h3 { 
                color: #1a365d; 
                margin-bottom: 12px; 
                font-size: 20px; 
            } 
            .card p {
                color: #555; 
                line-height: 1.5; 
                font-size: 16px; 
            } 
            /* ========================= WHY BIGSHOW ========================= */ 
            .why { 
                max-width: 1200px; 
                margin: 0 auto; 
                padding: 70px 20px; 
                text-align: center; 
            } 
            .why h2 { 
                font-size: 36px; 
                color: #1a365d; 
                margin-bottom: 35px; 
            } 
            .why-grid { 
                display: grid; 
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
                gap: 25px; 
            } 
            .why-card { 
                padding: 30px 20px; 
                background: white; 
                border-radius: 12px; 
                border-top: 4px solid #f4c542; 
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); 
                transition: 0.3s ease; 
            } 
            .why-card:hover { 
                transform: translateY(-6px); 
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); 
            } 
            .why-card h3 { 
                color: #1a365d; 
                margin-bottom: 12px; 
            } 
            .why-card p { 
                color: #555; 
                font-size: 15px; 
                line-height: 1.6; 
            } 
            /* ========================= CONTACT SECTION ========================= */ 
            .contact { 
                padding: 70px 20px; 
                background: #eaf0f6; 
                text-align: center; 
            } 
            .contact h2 { 
                color: #1a365d; 
                font-size: 34px; 
                margin-bottom: 10px; 
            } 
            .contact p { 
                color: #555; 
                margin-bottom: 30px; 
            } 
            .contact form { 
                max-width: 600px; 
                margin: 0 auto; 
                display: flex; 
                flex-direction: column; 
                gap: 15px; 
            } 
            .contact input, .contact textarea { 
                width: 100%; 
                padding: 14px; 
                border: 1px solid #ccc; 
                border-radius: 6px; 
                font-size: 16px; 
                font-family: Arial, Helvetica, sans-serif; 
                background: white; 
            } 
            .contact textarea { 
                min-height: 150px; 
                resize: vertical; 
            } 
            .contact input:focus, .contact textarea:focus { 
                outline: 2px solid #f4c542; 
                border-color: #1a365d; 
            } 
            .contact button { 
                padding: 15px; 
                border: none; 
                border-radius: 6px; 
                background: #1a365d; 
                color: white; 
                font-size: 17px; 
                font-weight: bold; 
                cursor: pointer; 
                transition: 0.3s ease; 
            } 
            .contact button:hover { 
                background: #f4c542; 
                color: #111; 
            } 
            /* ========================= FOOTER ========================= */ 
            footer { 
                background: #111827; 
                color: white; 
                text-align: center; 
                padding: 35px 20px; 
            } 
            footer p { 
                margin-bottom: 20px; 
            } 
            .social-links { 
                display: flex; 
                justify-content: center; 
                gap: 20px; 
            } .social-links a { 
                width: 45px; 
                height: 45px; 
                background: #f4c542; 
                color: #111; 
                border-radius: 50%; 
                display: flex; 
                justify-content: center; 
                align-items: center; 
                text-decoration: none; 
                font-size: 20px; 
                transition: 0.3s ease; 
            } 
            .social-links a:hover { 
                background: white; 
                color: #1a365d; 
                transform: translateY(-5px); 
            } 
/* =========================
   CAREER HERO
========================= */

.career-hero {
    min-height: 600px;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/trucks.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: white;

    padding: 60px 20px;
}


.career-hero-content {
    max-width: 750px;
}


.career-small-title {
    color: #f4c542;

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


.career-hero-content h2 {
    font-size: 55px;

    margin-bottom: 20px;
}


.career-hero-content > p:not(.career-small-title) {
    font-size: 20px;

    line-height: 1.7;

    margin-bottom: 30px;
}


.career-hero-button {
    display: inline-block;

    padding: 14px 25px;

    background: #f4c542;

    color: #111;

    text-decoration: none;

    border-radius: 6px;

    font-weight: bold;

    transition: 0.3s ease;
}


.career-hero-button:hover {
    background: white;

    color: #1a365d;

    transform: translateY(-3px);
}


/* =========================
   CAREER OPPORTUNITIES
========================= */

.career-opportunities {
    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 20px;
}


.career-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 45px;
}


.section-label {
    color: #1a365d;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.career-heading h2 {
    font-size: 38px;

    color: #1a365d;

    margin-bottom: 15px;
}


.career-heading > p:not(.section-label) {
    color: #666;

    line-height: 1.6;
}


.career-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}


.career-card {
    background: white;

    padding: 35px 25px;

    border-radius: 12px;

    border: 1px solid #e2e8f0;

    text-align: center;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}


.career-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.15);
}


.career-icon {
    width: 65px;

    height: 65px;

    margin: 0 auto 20px;

    background: #1a365d;

    color: #f4c542;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;
}


.career-card h3 {
    color: #1a365d;

    margin-bottom: 12px;

    font-size: 20px;
}


.career-card p {
    color: #666;

    font-size: 15px;

    line-height: 1.6;

    margin: 0;
}

/* =========================
   CAREERS / JOB VACANCY
========================= */

.vacancy {
    padding: 70px 20px;
    background: #f5f6f8;
}

.vacancy-header {
    max-width: 1100px;
    margin: 0 auto 35px;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.vacancy-header h2 {
    font-size: 40px;
    margin: 8px 0 25px;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.job-details span {
    padding: 10px 14px;
    background: #f1f3f6;
    border-radius: 6px;
    font-size: 14px;
}

.job-details i {
    margin-right: 6px;
}


.vacancy-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.vacancy-grid > div {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.vacancy-grid h3 {
    font-size: 22px;
    margin: 0 0 15px;
}

.vacancy-grid p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.vacancy-grid ul {
    padding-left: 20px;
    margin: 0;
}

.vacancy-grid li {
    margin-bottom: 10px;
    line-height: 1.5;
}


.apply-box {
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 35px;
    background: #111827;
    color: white;
    border-radius: 10px;
}

.apply-box h3 {
    margin-top: 0;
    font-size: 24px;
}

.apply-box a {
    color: white;
    font-weight: bold;
}

.equality {
    margin: 25px 0 0;
    font-size: 13px;
    opacity: 0.8;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .vacancy {
        padding: 50px 15px;
    }

    .vacancy-header {
        padding: 25px;
    }

    .vacancy-header h2 {
        font-size: 30px;
    }

    .job-details {
        flex-direction: column;
    }

    .vacancy-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-grid > div {
        padding: 25px;
    }

    .apply-box {
        padding: 25px;
    }

}
/* =========================
   APPLICATION SECTION
========================= */

.application-section {
    background: #eaf0f6;

    padding: 80px 20px;
}


.application-container {
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}


.application-information h2 {
    color: #1a365d;

    font-size: 40px;

    margin-bottom: 20px;
}


.application-information > p:not(.section-label) {
    color: #555;

    line-height: 1.8;

    margin-bottom: 25px;
}


.application-benefit {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #333;
}


.application-benefit i {
    color: #1a365d;

    font-size: 18px;
}


/* =========================
   APPLICATION FORM CARD
========================= */

.application-form-container {
    background: white;

    padding: 35px;

    border-radius: 15px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


.application-form-container h3 {
    color: #1a365d;

    font-size: 27px;

    margin-bottom: 8px;
}


.application-form-container > p {
    color: #666;

    margin-bottom: 25px;
}


/* =========================
   CAREER FORM
========================= */

.career-form {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.career-form label {
    color: #333;

    font-size: 14px;

    font-weight: bold;

    margin-top: 5px;
}


.career-form input,
.career-form select,
.career-form textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #d1d5db;

    border-radius: 6px;

    font-size: 16px;

    font-family: Arial, Helvetica, sans-serif;

    background: white;
}


.career-form textarea {
    resize: vertical;

    min-height: 140px;
}


.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: 2px solid #f4c542;

    border-color: #1a365d;
}


.career-form button {
    margin-top: 15px;

    padding: 15px;

    border: none;

    border-radius: 6px;

    background: #1a365d;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s ease;
}


.career-form button:hover {
    background: #f4c542;

    color: #111;
}


.career-form button i {
    margin-left: 8px;
}
/* =========================
   JOB VACANCY
========================= */

.job-section {
    padding: 90px 20px;
    background: #f5f7fa;
}

.job-container {
    max-width: 1050px;
    margin: auto;
}

.job-header {
    background: white;
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.job-header h2 {
    font-size: 42px;
    margin: 10px 0 20px;
}

.job-intro {
    font-size: 17px;
    line-height: 1.7;
    max-width: 800px;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f5f7fa;
    border-radius: 8px;
    font-weight: 600;
}

.job-detail i {
    font-size: 18px;
}

.job-content {
    background: white;
    padding: 40px 50px;
    margin-bottom: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.job-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.job-content p {
    line-height: 1.8;
    font-size: 16px;
}

.job-list {
    padding-left: 25px;
    margin: 0;
}

.job-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.job-apply-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #111827;
    color: white;
    padding: 35px 45px;
    border-radius: 14px;
    margin-top: 30px;
}

.job-apply-box > i {
    font-size: 35px;
}

.job-apply-box h3 {
    margin: 0 0 10px;
    font-size: 25px;
}

.job-apply-box p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.job-apply-box a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.job-equality {
    text-align: center;
    margin-top: 25px;
    color: #555;
    font-size: 14px;
}
/* =========================
    PRIVACY NOTICE
========================= */

.privacy-notice {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 15px 0;
}

.privacy-notice a {
    font-weight: 600;
    text-decoration: underline;
}
/* =========================
   PRIVACY PAGE
========================= */

.privacy-page {
    padding: 70px 20px;
    background: #f5f6f8;
}

.privacy-container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 45px;
    border-radius: 12px;
}

.privacy-container h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.privacy-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-container p {
    line-height: 1.7;
}

.privacy-container a {
    font-weight: 600;
}

.privacy-note {
    margin-top: 40px;
    font-size: 13px;
    color: #666;
}


/* MOBILE */

@media (max-width: 700px) {

    .privacy-page {
        padding: 45px 15px;
    }

    .privacy-container {
        padding: 30px 22px;
    }

    .privacy-container h2 {
        font-size: 32px;
    }

}
/* =========================
    MOBILE JOB PAGE
========================= */

@media (max-width: 700px) {

    .job-section {
        padding: 60px 15px;
    }

    .job-header {
        padding: 30px 25px;
    }

    .job-header h2 {
        font-size: 32px;
    }

    .job-details {
        grid-template-columns: 1fr;
    }

    .job-content {
        padding: 30px 25px;
    }

    .job-content h3 {
        font-size: 24px;
    }

    .job-apply-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }

}

/* =========================
   CAREER MOBILE DESIGN
========================= */

@media (max-width: 768px) {

    .career-hero {
        min-height: 500px;

        padding: 40px 20px;
    }


    .career-hero-content h2 {
        font-size: 40px;
    }


    .career-hero-content > p:not(.career-small-title) {
        font-size: 17px;
    }


    .career-opportunities {
        padding: 55px 15px;
    }


    .career-heading h2 {
        font-size: 30px;
    }


    .application-section {
        padding: 55px 15px;
    }


    .application-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .application-information h2 {
        font-size: 32px;
    }


    .application-form-container {
        padding: 25px 20px;
    }

}
            /* ========================= MOBILE RESPONSIVE DESIGN ========================= */ @media (max-width: 768px) { 
                body { padding-top: 130px;
                } 
                .navbar { 
                    min-height: 130px; 
                    flex-direction: column; 
                    justify-content: center; 
                    gap: 10px; 
                    padding: 15px; 
                } 
                .logo { 
                    font-size: 18px; 
                    text-align: center; 
                } 
                .nav-menue { 
                    gap: 10px; 
                    justify-content: center; 
                    flex-wrap: wrap; 
                } 
                .nav-menue a { 
                    font-size: 13px; 
                    padding: 6px 4px; 
                } 
                .hero { 
                    min-height: 550px; 
                    padding: 30px 15px; 
                } 
                .about-container h2 { 
                    font-size: 34px; 
                } 
                .about-container p { 
                    font-size: 17px; 
                } 
                .about-container .su { 
                    font-size: 18px; 
                } 
                .about { 
                    margin: 35px 15px; 
                    padding: 40px 20px; 
                    border-radius: 15px; 
                } 
                .about h2, .it, .why h2 { 
                    font-size: 28px; 
                } 
                .services { 
                    padding: 40px 15px; 
                } 
                .why { 
                    padding: 40px 15px; 
                } 
                .contact { 
                    padding: 50px 15px; 
                } 
                .contact h2 { 
                    font-size: 27px; 
                } 
                .careers { 
                    padding: 50px 15px; 
                } 
            }

/* =========================
   COOKIE CONSENT BANNER
========================= */

.cookie-banner {
    position: fixed;

    bottom: 20px;
    left: 20px;
    right: 20px;

    max-width: 950px;

    margin: 0 auto;

    padding: 22px 25px;

    background: #111827;
    color: white;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);

    z-index: 9999;
}


.cookie-content {
    flex: 1;
}


.cookie-content h3 {
    margin: 0 0 8px;

    font-size: 18px;

    color: #f4c542;
}


.cookie-content p {
    margin: 0 0 8px;

    font-size: 14px;

    line-height: 1.5;

    color: #e5e7eb;
}


.cookie-content a {
    color: white;

    font-size: 13px;

    font-weight: bold;

    text-decoration: underline;
}


.cookie-buttons {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}


.cookie-buttons button {
    padding: 11px 20px;

    border-radius: 6px;

    font-weight: bold;

    font-size: 14px;

    cursor: pointer;
}


.cookie-reject {
    background: transparent;

    color: white;

    border: 1px solid white;
}


.cookie-accept {
    background: #f4c542;

    color: #111;

    border: 1px solid #f4c542;
}


.cookie-buttons button:hover {
    opacity: 0.85;
}


/* MOBILE */

@media (max-width: 600px) {

    .cookie-banner {
        bottom: 10px;

        left: 10px;
        right: 10px;

        flex-direction: column;

        align-items: stretch;

        padding: 18px;

        gap: 15px;
    }


    .cookie-buttons {
        width: 100%;
    }


    .cookie-buttons button {
        flex: 1;
    }

}