.kelas-hero {
    background: #0b1f3a; 
    color: #fff;
    padding: 90px 20px 50px; 
    overflow: hidden;
    position: relative;
    margin-top: 70px; 
    text-align: left;
}

.kelas-hero::before {
    content: none;
}

.kelas-hero .hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
    z-index: 1;
    margin-top: -25px; 
}

.kelas-hero .hero-img img {
    max-width: 370px;
}

.kelas-hero .hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.kelas-hero .hero-text p {
    margin-top: 12px;
    opacity: 0.9;
    font-size: 1.1rem;
    color: #e6ebff;
}

.career-section {
    background: #0b1f3a; 
    color: #fff;
    padding: 60px 0 70px;
    border-top: none;
    margin-top: -20px; 
}

.career-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #fff;
    margin-top: -10px; 
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 25px rgba(0,0,0,0.3);
}

.career-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.career-card .card-body {
    padding: 20px;
}

.career-card .card-title {
    color: #fff;
    font-weight: 700;
}

.career-card .card-text {
    color: #dce4ff;
}

.career-form-box {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 5px auto 0; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    color: #fff;
}

.career-form-box input,
.career-form-box textarea,
.career-form-box select {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.career-form-box input::placeholder,
.career-form-box textarea::placeholder {
    color: #cfd8ff;
}

.career-form-box button {
    display: inline-block;
    background: #1b3a6f;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.career-form-box button:hover {
    background: #274b8a;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(15px); }
}

footer, .footer, #footer {
  display: none !important;
}

body {
    background: #0b1f3a;
    color: #fff;
}

@media (max-width: 992px) {
    .kelas-hero .hero-container {
        gap: 25px;
    }

    .kelas-hero .hero-text h1 {
        font-size: 2.2rem;
    }

    .kelas-hero .hero-text p {
        font-size: 1rem;
    }

    .kelas-hero .hero-img img {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .kelas-hero {
        padding: 80px 20px 40px;
        text-align: center;
    }

    .kelas-hero .hero-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 30px;
        margin-top: 0;
    }

    .kelas-hero .hero-text {
        max-width: 100%;
    }

    .kelas-hero .hero-text h1 {
        font-size: 1.8rem;
    }

    .kelas-hero .hero-text p {
        font-size: 0.95rem;
    }

    .kelas-hero .hero-img img {
        max-width: 80%;
        height: auto;
    }

    .career-section {
        padding: 50px 15px;
    }

    .career-form-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .kelas-hero {
        padding: 70px 15px 40px;
    }

    .kelas-hero .hero-text h1 {
        font-size: 1.6rem;
    }

    .kelas-hero .hero-text p {
        font-size: 0.9rem;
    }

    .kelas-hero .hero-img img {
        max-width: 90%;
    }

    .career-form-box {
        padding: 25px 15px;
    }
}
