@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rye&family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap");

:root {
    --color-primary: #58cdff;
    --color-secondary: #282f44;
    --color-white: #fff;
    --color-background: #3e3e3e;
    --color-cardbackground: #343434;
    --color-yellow: #ffc107;
    --footer-background: #222222;
    --color-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* ;line-height: ; */
    /* background-color: var(--color-background); */
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--color-white);
}

h1 {
    font-family: "Sansita", sans-serif;
    font-size: 60px;
    line-height: 1.24;
}

h2 {
    font-family: "Sansita", sans-serif;
    font-size: 40px;
    line-height: 1.24;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    line-height: 1.24;
    text-transform: capitalize;
}

h4 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.24;
    text-transform: capitalize;
}

h5 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.24;
    text-transform: capitalize;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col100 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 15px;
}

.col70 {
    max-width: 70%;
    flex: 0 0 70%;
    padding: 0 15px;
}

.col60 {
    max-width: 60%;
    flex: 0 0 60%;
    padding: 0 15px;
}

.col50 {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
}

.col40 {
    max-width: 40%;
    flex: 0 0 40%;
    padding: 0 15px;
}

.col33 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding: 0 15px;
}

.col25 {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0 15px;
}



.header {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.navcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    max-height: 100vh;
}

.navbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* padding: 20px 0; */
    margin-top: 20px;
    z-index: 2;

}

.navcontainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    max-height: 50px;
    width: 50px;
    display: block;
}

.brand span {
    font-family: "Rye", serif;
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.2;
    margin: 10px 0 0 10px;
}

.brand a {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 24px;
}

.logo-icon {
    color: var(--color-primary);
    font-size: 28px;
    margin-right: 10px;
}

.navbar {
    display: flex;
    position: relative;
    align-items: center;

}

.navbar li {
    padding: 0 16px;
}

.navbar li a {
    color: var(--color-white);
    text-transform: capitalize;
}

.navbar li a:hover,
.navbar li a.active {
    color: var(--color-primary);
}

.navbar li a.active {
    border-bottom: 3px solid var(--color-primary);
}

.auth-buttons {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.register-btn,
.login-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease all;
}

.register-btn {
    background: transparent;
    color: var(--color-white);
    border: none;
}

.register-btn:hover {
    color: var(--color-primary);
}

.login-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.login-btn:hover {
    color: var(--color-primary);
    background: var(--color-white);
}

#click {
    display: none;
}

.menu-btn {
    display: none;
    color: var(--color-white);
    font-size: 22px;
    cursor: pointer;
}

/* banner section */

.banner-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("images/bannerimg.png") no-repeat;
    background-position: center;
    background-size: cover;
    /* filter: brightness(50%); */
}

.banner-heading,
.banner-details {
    text-align: center;
    color: var(--color-white);
}

.banner-heading {
    font-family: "Sansita", sans-serif;
}

.banner-details {
    max-width: 520px;
    margin-top: 25px;
}

/* job section  */
.job-input-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: var(--color-background);
    padding: 60px 0;
}

.form-container {
    background: var(--color-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 900px;
    color: #fff;
    margin: 0 auto;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: var(--color-white);
}

input[type="text"],
input[type="email"],
input[type="tel"] {

    background-color: var(--color-background);
    border: 1px solid #969696;
    padding: 20px;
    border-radius: 6px;
    color: var(--color-white);
    font-size: 16px;
}

input::placeholder {
    color: #aaa;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 18px;
    color: #ccc;
}

.radio-group label {
    font-size: 16px;
    color: #9E9C9C;
}

.radio-group input {
    margin-right: 6px;
}

.choose-file input[type="file"] {
    margin-top: 18px;

}


.form-submit-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.form-submit-btn a {
    background-color: #4ac1f7;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s;
}

.form-submit-btn a:hover {
    background-color: #2daee6;
}



/* footer section */

.footer {
    background-color: var(--footer-background);
    color: var(--color-white);
    padding: 0;
    width: 100%;
}

.footer-upper {
    display: flex;
    padding: 60px 0;
    justify-content: space-between;
}

.col-left span {
    font-family: "Rye", serif;
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.2;
    /* margin-left: 10px;
    margin-top: 10px; */
    margin: 10px 0 0 10px;
}

.col-left {
    display: flex;
    flex-direction: column;
}

.col-left .brand {
    margin-bottom: 25px;
}

.footer-desc {
    margin-bottom: 25px;
    width: 470px;
}

.newsletter {
    width: 465px;
    height: 60px;
    display: flex;
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    border: none;
    /* padding: 12px 15px; */
    background: transparent;
    outline: none;
}

.submit-btn {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 5px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 5px;
}

.submit-btn {
    color: var(--color-black);
}

.footer-links-section {
    padding: 0 15px;
}

.footer-links-section h4 {
    color: #fff;
    margin-bottom: 40px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #42b4e6;
}

.footer-copyright {
    border-top: 1px solid #333;
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

.footer-copyright a {
    color: var(--color-white);
}

.footer-copyright a:hover {
    color: var(--color-primary);
}

.footer-copyright p {
    font-size: 16px;
    color: var(--color-white);
    text-transform: lowercase;
    margin: 0;
    margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .menu-btn {
        display: block;
        z-index: 999;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        background: var(--color-background);
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
        z-index: 3;
        padding-top: 80px;
    }

    .navbar li {
        margin: 30px 0;
    }

    .navbar li a {
        font-size: 20px;
        display: block;
    }

    #click:checked~.navbar {
        left: 0;
    }

    #click:checked~.menu-btn i:before {
        content: "\f00d";
    }

    .auth-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 40px;
    }

}

/* job input section responsive */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .job-input-section {
        padding: 40px 0;
        min-height: 600px;
    }

    .form-container {
        width: 90%;
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    label {
        font-size: 18px;
    }

    input[type="text"], 
    input[type="email"], 
    input[type="tel"] {
        padding: 15px;
        font-size: 15px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .radio-group label {
        font-size: 15px;
    }

    .form-submit-btn a {
        padding: 12px 35px;
        font-size: 15px;
    }
}

/* Mobile Large - 480px and below */
@media (max-width: 480px) {
    .job-input-section {
        padding: 30px 10px;
        min-height: 500px;
    }

    .form-container {
        width: 95%;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .application-form {
        gap: 15px;
    }

    .form-row {
        gap: 12px;
    }

    label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    input[type="text"], 
    input[type="email"], 
    input[type="tel"] {
        padding: 12px;
        font-size: 14px;
    }

    .radio-group {
        margin-top: 12px;
        gap: 8px;
    }

    .radio-group label {
        font-size: 14px;
    }

    .choose-file input[type="file"] {
        margin-top: 12px;
    }

    .form-submit-btn {
        margin-top: 15px;
    }

    .form-submit-btn a {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Mobile Small - 375px and below */
@media (max-width: 375px) {
    .job-input-section {
        padding: 25px 5px;
    }

    .form-container {
        width: 98%;
        padding: 15px;
        border-radius: 8px;
    }

    label {
        font-size: 15px;
        margin-bottom: 6px;
    }

    input[type="text"], 
    input[type="email"], 
    input[type="tel"] {
        padding: 10px;
        font-size: 13px;
        border-radius: 5px;
    }

    .radio-group label {
        font-size: 13px;
    }

    .radio-group input {
        margin-right: 4px;
    }

    .form-submit-btn a {
        padding: 8px 20px;
        font-size: 13px;
        border-radius: 6px;
    }
}

/* Mobile Extra Small - 320px and below */
@media (max-width: 320px) {
    .job-input-section {
        padding: 20px 2px;
        min-height: 450px;
    }

    .form-container {
        width: 99%;
        padding: 12px;
        margin: 0 auto;
    }

    .application-form {
        gap: 12px;
    }

    .form-row {
        gap: 10px;
    }

    label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    input[type="text"], 
    input[type="email"], 
    input[type="tel"] {
        padding: 8px;
        font-size: 12px;
    }

    input::placeholder {
        font-size: 11px;
    }

    .radio-group {
        margin-top: 10px;
        gap: 6px;
    }

    .radio-group label {
        font-size: 12px;
        line-height: 1.3;
    }

    .choose-file input[type="file"] {
        margin-top: 10px;
        font-size: 11px;
    }

    .form-submit-btn {
        margin-top: 12px;
    }

    .form-submit-btn a {
        padding: 8px 15px;
        font-size: 12px;
        width: 100%;
        max-width: none;
    }
}

/* footer-section media  */
@media (max-width: 1200px) {
    .footer-container {
        margin-left: 150px;
    }

    .col40 {
        width: 50%;
    }

    .col20 {
        width: 33.333%;
        margin-top: 40px;
    }

    .footer-upper {
        padding: 40px 0;
        flex-wrap: wrap;
    }

    .footer-links-section h4 {
        margin-bottom: 25px;
    }

}

@media (max-width: 992px) {
    /* .footer-container {
        margin-left: 60px;
    } */

    .col40 {
        max-width: 100%;
    }

    .col20 {
        max-width: 100%;
        margin-top: 40px;
        flex: 0 0 100%;
    }

    .footer-upper {
        padding: 40px 0;
        flex-wrap: wrap;
    }

    .footer-links-section h4 {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        margin-left: 50px;
    }

    .col40 {
        max-width: 100%;
        width: 500px;
    }

    .col20 {
        /* width: 33.33%; */
        max-width: 100%;
        /* max-width: 200px; */
        margin-top: 40px;
    }

    .footer-upper {
        padding: 30px 0;
    }

    .footer-desc {
        max-width: 100%;
    }

    .newsletter {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    /* .footer-container {
        margin-left: 90px;
    } */

    .col40 {
        width: 100%;
        /* max-width: 300px; */
    }

    .col20 {
        width: 100%;
        margin-top: 30px;
        margin-left: 20px;
    }

    .footer-links-section {
        padding: 0;
    }

    .footer-links-section h4 {
        margin-bottom: 20px;
    }

    .footer-upper {
        padding: 25px 0;
    }

    .footer-links li {
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .col-left .brand {
        display: flex;
        align-items: flex-start;
    }

    .col-left .brand img {
        max-width: 80px;
    }

    .col-left span {
        font-size: 18px;
    }

    .newsletter {
        height: 50px;
        width: 100%;
    }

    .submit-btn {
        width: 40px;
        height: 40px;
    }

    .footer-copyright p {
        font-size: 14px;
    }
}