@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&family=Satisfy&display=swap");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --primary: #0065f8;
    --secondary: #01c676;
    --light: #ffffff;
    --light-blue: #eef4ff;
    --dark: #000000;
    --gradiant-blue: linear-gradient(
        180deg,
        #45b8ee 0%,
        #1f87f7 60%,
        #0b5bef 100%
    );
    --font-sunflower: "Sunflower", sans-serif;
}

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Ongkir
--------------------------------------------------------------*/
.career .card-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.1s;
}

.career .card-box:hover {
    border: 2px solid #1f6fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Background curve overlay */
.career .card-box::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle at center,
        rgba(139, 195, 74, 0.25),
        rgba(139, 195, 74, 0.15),
        transparent 70%
    );
    border-radius: 50%;
}

.career .card-box > * {
    position: relative;
    z-index: 1;
}

.career .card-box ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px;
}

.career .card-box i {
    transition: 0.3s;
}
.career .card-box:hover i {
    transform: translateX(5px);
}

/* Background Gradient */

/* Custom Tabs */
.applyModal .custom-tabs .nav-link {
    border: 0;
    border-radius: 0;
    padding: 10px;
    font-weight: 600;
    background: #e5e5e5;
    color: #666;
}

.applyModal .custom-tabs .nav-link.active {
    background: #17b26a;
    color: #fff;
}

/* Underline Form */
.applyModal .form-underline {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    background: transparent;
}

.applyModal .form-underline:focus {
    box-shadow: none;
    border-color: #17b26a;
}

/* Upload Box */
.applyModal .upload-box {
    border: 1.5px solid #cfcfcf;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.applyModal .upload-box:hover {
    border-color: #17b26a;
    background: #f9fdfb;
}

.applyModal .upload-content span {
    font-size: 14px;
}

.applyModal .upload-content i {
    color: #333;
}

/* Image */
.applyModal .modal-img {
    max-height: 450px;
}

.applyModal .custom-close {
    bottom: 5px;
    right: 10px;
    z-index: 1055;
    background-color: #ffa868;
    background-image: none;
    padding: 7px 10px;
    border-radius: 5px;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: auto;
    height: auto;
    color: #fff;
}

.applyModal .custom-close:hover {
    background-color: #ff6c00;
}

@media only screen and (min-width: 768px) {
    .career .card-box {
        height: 250px;
    }
}
@media only screen and (min-width: 1200px) {
}

@media only screen and (max-width: 600px) {
    .career .card-box a {
        font-size: 14px;
    }

    .applyModal .custom-tabs .nav-link {
        padding: 10px;
        font-size: 12px;
    }
}
