/* Header Section */
.header-section {
    background: var(--gradient);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Profil Pejabat */
.officers-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

/* Slick Carousel Customization */
.officer-slider {
    margin: 50px auto;
    max-width: 1200px;
}

.officer-card {
    width: 280px;
    height: 350px;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.officer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: all 0.5s ease;
}

.officer-card .officer-image {
    animation: slideLeftRight 8s infinite ease-in-out;
}

.officer-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(67, 97, 238, 0.9);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.officer-card:hover .officer-info {
    bottom: 0;
}

.officer-card:hover .officer-image {
    filter: brightness(0.7);
    animation: none;
}

.officer-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.officer-position {
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.officer-nip {
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border: 1px solid #001c8aaf;
    border-radius: 5px;
    background-color: #001c8aaf;
}

.officer-bio {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    padding: 10px;
    border: 1px solid #001c8aaf;
    border-radius: 5px;
    background-color: #0033ffaf;
}

/* Slick Arrow Customization */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    color: var(--primary-color);
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

/* Slick Dots Customization */
.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}