.font-montserrat { font-family: 'Montserrat', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }
.custom-scrollbar {
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.job-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.modal-open {
    opacity: 1;
    transform: scale(1);
}
body.no-scroll {
    overflow: hidden;
}
img.lazy {
    loading: lazy;
}
.carousel-container {
    position: relative;
}
.carousel-inner {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
    transition: transform 0.3s ease;
}
.carousel button {
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 10;
}
.carousel button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}
.carousel button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.custom-select {
    appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" /%3E%3C/svg%3E');
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    cursor: pointer;
}
.modal-description article {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.modal-description ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.modal-description li {
    margin-bottom: 0.5rem;
}
.modal-description strong {
    font-weight: 600;
}
.modal-description iframe {
    width: 100%;
    height: auto;
    min-height: 315px;
    margin-bottom: 1rem;
}
/* Responsive improvements */
@media (max-width: 768px) {
    #job-modal .bg-white {
        max-width: 95vw !important;
        padding: 1rem;
        max-height: 90dvh;
    }
    .carousel-item img {
        height: auto;
    }
}
#job-modal .bg-white {
    display: flex;
    flex-direction: column;
    max-height: 90dvh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
#apply-modal .bg-white {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
button:hover {
    transition: background-color 0.3s ease;
}