body {
    background: #f4f7fb;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(to right, #eaf2ff, #f8fbff);
}

.search-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

/* COMPANY BOX */
.company-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    font-weight: 600;
}

/* Hover Effect */
.company-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* Dashboard Card */
.dashboard-card {
    border-radius: 15px;
    transition: 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* LOGIN CARD */
.login-card {
    border-radius: 18px;
    background: #ffffff;
    backdrop-filter: blur(10px);
}

.login-card input {
    border-radius: 10px;
}

.login-card button {
    border-radius: 10px;
}

/* REGISTER CARD */
.register-card {
    border-radius: 18px;
    background: #ffffff;
}

.register-card input {
    border-radius: 10px;
}

.register-card button {
    border-radius: 10px;
}

/* JOB CARD */
.job-card {
    border-radius: 15px;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dashboard-card {
    border-radius: 15px;
    transition: 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-section-small {
    padding: 40px 0;
    background: linear-gradient(to right, #eaf2ff, #f8fbff);
}

.logo-frame {
    max-width: 110px;
    max-height: 110px;
    width: 100%;
    height: auto;
    border: 3px solid #0d6efd;
    border-radius: 16px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    font-size: 48px;
    font-weight: bold;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    height: 460px; /* tinggi tetap 300px */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/joopback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}