@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
:root {
    --primary-red: #8B0000;
    --primary-blue: #1E3A8A;
    --secondary-red: #B22222;
    --secondary-blue: #2563EB;
    --light-bg: #F8FAFC;
    --dark-bg: #1E293B;
    --text-dark: #334155;
    --text-light: #64748B;
}

/* Global Styles */
body {
    /* Font yang baru: Roboto, diikuti oleh font sans-serif default */
    font-family: 'Roboto', sans-serif;
    
    color: var(--text-dark);
    padding-top: 76px;
}
/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.brand-text {
    margin-left: 10px;
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFD700 !important;
}

.btn-register {
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

/* Hero Slider */
#heroSlider {
    margin-top: -76px;
}

.carousel-item {
    height: 600px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Event Info Section */
.event-info {
    background: var(--light-bg);
}

.info-card {
    background: white;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-red);
}

.info-item {
    text-align: center;
    padding: 20px;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.info-item h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.accessibility-note {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.btn-register-main {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Companies Section */
.section-title {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.company-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid var(--primary-red);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.company-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.company-logo img {
    max-height: 100%;
    max-width: 100%;
}

.company-name h5 {
    color: var(--primary-blue);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
}

/* Jobs Page */
.jobs-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    padding: 80px 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.category-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    padding: 20px;
    text-align: center;
}

.category-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.positions-list {
    padding: 20px;
}

.position-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.position-item:last-child {
    border-bottom: none;
}

.position-item i {
    color: var(--primary-blue);
    margin-right: 15px;
    width: 20px;
}

/* Quick Actions */
.action-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-blue);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.action-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Info Page */
.info-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    padding: 80px 0;
}

.info-details .info-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.info-details .info-item:last-child {
    border-bottom: none;
}

.info-details .info-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    margin-bottom: 0;
    color: var(--primary-red);
}

.speaker-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.speaker-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-red);
}

.map-placeholder {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
}

.footer a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 10px;
}

.partner-logos img {
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 66px;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .jobs-header {
        padding: 60px 0;
    }
    
    .info-details .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-details .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Additional CSS for JavaScript effects */
.back-to-top {
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.highlight {
    animation: highlight-pulse 1s ease;
}

@keyframes highlight-pulse {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(255, 215, 0, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form validation styles */
.is-valid {
    border-color: #198754 !important;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Lazy loading for images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Mobile menu enhancements */
@media (max-width: 768px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        margin-top: 10px;
    }
}

/* Counter animation base */
.counter {
    font-weight: bold;
    color: var(--primary-blue);
}
/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Brand Styles */
.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.brand-placeholder {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 8px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Search Form */
.search-form {
    margin-right: 15px;
}

.input-group {
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.search-input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px;
    min-width: 250px;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.search-input:focus {
    background: rgba(255,255,255,0.15) !important;
    box-shadow: none !important;
}

.btn-search {
    background: rgba(255,255,255,0.2) !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: rgba(255,255,255,0.3) !important;
}

/* Register Button */
.btn-register-nav {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-blue) !important;
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-register-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--primary-blue) !important;
}

/* User Menu */
.user-menu {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px 15px !important;
    margin-left: 10px;
}

.login-link {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px 15px !important;
    margin-left: 10px;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1040;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-container {
    width: 90%;
    max-width: 500px;
    position: relative;
}

.mobile-search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-search-form .input-group {
    background: white;
    border-radius: 12px;
    padding: 5px;
}

.mobile-search-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
}

.mobile-search-form .btn {
    padding: 15px 25px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 2px 0;
        padding: 12px 20px !important;
    }
    
    .search-form {
        margin: 15px 0;
        width: 100%;
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .btn-register-nav {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .user-menu, .login-link {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        margin: 5px 0;
    }
    
    .dropdown-item {
        color: rgba(255,255,255,0.9);
    }
    
    .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
    
    .brand-logo, .brand-placeholder {
        height: 40px;
        width: 40px;
    }
}

/* Animation for mobile menu */
.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
}

/* Notification Badge */
.navbar .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.6rem;
    padding: 2px 5px;
}
/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Brand Styles */
.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.brand-placeholder {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 8px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Search Form */
.search-form {
    margin-right: 15px;
}

.input-group {
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.search-input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px;
    min-width: 250px;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.search-input:focus {
    background: rgba(255,255,255,0.15) !important;
    box-shadow: none !important;
}

.btn-search {
    background: rgba(255,255,255,0.2) !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: rgba(255,255,255,0.3) !important;
}

/* Register Button */
.btn-register-nav {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-blue) !important;
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-register-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--primary-blue) !important;
}

/* User Menu */
.user-menu {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px 15px !important;
    margin-left: 10px;
}

.login-link {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 6px 15px !important;
    margin-left: 10px;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1040;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-container {
    width: 90%;
    max-width: 500px;
    position: relative;
}

.mobile-search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-search-form .input-group {
    background: white;
    border-radius: 12px;
    padding: 5px;
}

.mobile-search-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
}

.mobile-search-form .btn {
    padding: 15px 25px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 2px 0;
        padding: 12px 20px !important;
    }
    
    .search-form {
        margin: 15px 0;
        width: 100%;
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .btn-register-nav {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .user-menu, .login-link {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        margin: 5px 0;
    }
    
    .dropdown-item {
        color: rgba(255,255,255,0.9);
    }
    
    .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
    
    .brand-logo, .brand-placeholder {
        height: 40px;
        width: 40px;
    }
}

/* Animation for mobile menu */
.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
}

/* Notification Badge */
.navbar .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.6rem;
    padding: 2px 5px;
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    border-radius: 12px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: none;
    padding: 8px 0;
}

.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    transform: translateX(4px);
}

.apply-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

.application-form {
    background: #fff;
    border-radius: 1.5rem;
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control-lg, .form-select-lg {
    border-radius: 10px;
    padding: 0.7rem 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

.jobs-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

.job-card {
    border: none;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.job-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
}

.job-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border: none;
}

.job-card .btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.job-card .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: #fff;
}

.form-select, .form-control {
    border: 1px solid #ddd;
    box-shadow: none;
}

.form-label {
    font-size: 0.95rem;
    color: #333;
}

.container {
    max-width: 1200px;
}

@media (max-width: 991.98px) {
    .navbar-collapse .dropdown-menu {
        background-color: #ffffff !important; 
        border: 1px solid #ddd !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar-collapse .dropdown-item {
        color: #334155 !important; /* Warna teks gelap */
    }

    .navbar-collapse .dropdown-item:hover {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue)) !important;
        color: white !important;
    }
}

.kadis-box {
    text-align: center;
}

.kadis-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1d3f99;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.kadis-name {
    font-weight: bold;
    color: #7c0000;
}



