.conten-isi {
    position: relative;
    width: 100vw; 
    height: 460px; 
    overflow: hidden;
}

.conten-isi img {
    width: 100%; 
    height: 100%px; 
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
    animation: slideShow 25s infinite;
    opacity: 0;
    transform: scale(1);
}

@media (max-width: 768px) {
    .conten-isi {
        width: 100%; 
        height: 150px; 
        margin-top: 0; 
        padding-top: 0; 
    }

    .conten-isi img {
        object-fit: contain; 
    }
}


@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1.1); 
    }
    33% {
        opacity: 1;
        transform: scale(1);
    }
    66% {
        opacity: 0;
        transform: scale(1); 
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}


.conten-isi img:nth-child(1) {
    animation-delay: 0s;
}
.alamat-link {
    color: #007BFF; 
    text-decoration: none;
    font-weight: bold; 
}

.alamat-link:hover {
    text-decoration: underline;  
}

.alamat-link i {
    margin-right: 5px; 
}


.conten-isi img:nth-child(2) {
    animation-delay: 8.33s;
}

.conten-isi img:nth-child(3) {
    animation-delay: 16.66s;
}

.overlay-text {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    
}

.overlay-text h2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
    opacity: 0;  
    animation: fadeInTitle 1.5s ease-out forwards; 
}

.overlay-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a0f57, #a32919);
    transform: scaleX(0);
    transform-origin: bottom right;
    animation: slideUnderline 1s forwards 1.5s;
}

@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUnderline {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@media (max-width: 768px) {
    .overlay-text h2 {
        display: none;
    }

    .overlay-text p {
      display: none;
    }
}



.container-int {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.section {
    padding: 60px 0;
}

.informasi-perusahaan {
    background-color: #f4f7f9;
    padding: 10px 0;
    text-align: center;
}

.informasi-perusahaan h2 {
    font-size: 2.8rem;
    color: #004a99;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.info-perusahaan {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.6rem;
    color: #004a99;
    margin-bottom: 15px;
}

.info-card p,
.info-card ul {
    font-size: 1rem;
    color: #666;
}

.info-card ul {
    list-style-type: none;
    padding-left: 0;
}

.info-card ul li {
    margin-bottom: 10px;
}

/* Deskripsi Produk */
.produk-perusahaan {
    margin-top: 50px;
    text-align: left;
}

.produk-perusahaan h3 {
    font-size: 2rem;
    color: #004a99;
    margin-bottom: 20px;
}

.produk-item {
    margin-bottom: 40px;
}

.produk-item h4 {
    font-size: 1.8rem;
    color: #004a99;
}

.produk-item ul {
    font-size: 1rem;
    color: #666;
}

.produk-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 15px;
}

/* Moto Perusahaan */
.moto {
    margin-top: 50px;
    font-style: italic;
}

.moto h3 {
    font-size: 2rem;
    color: #004a99;
    margin-bottom: 20px;
}

.moto blockquote {
    font-size: 1.5rem;
    color: #333;
    margin: 20px auto;
    font-weight: bold;
}

.lowongan {
    background-color: #ffffff;
    padding: 60px 0;
}

.lowongan h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #004a99;
}

.lowongan .section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.job-card {
    width: 100%;
    max-width: 500px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.job-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.job-info {
    padding: 20px;
}

.job-info h3 {
    font-size: 1.8rem;
    color: #004a99;
    margin-bottom: 10px;
}

.job-info p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.apply-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #072957;
    color: #fff;
    font-size: 1rem;
    font-weight: 600; 
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.apply-btn:hover {
    background-color: #004a99; 
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.apply-btn:active {
    transform: translateY(1px); 
}

.share-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.share-icon {
    font-size: 24px;  
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.share-icon:hover {
    color: #0056b3; 
    transform: scale(1.1); 
}

.share-icon i {
    margin: 0;
}

.kontak h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #6c757d;
}

.kontak p {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
}

@media (max-width: 768px) {
    .perusahaan .info {
        flex-direction: column;
        text-align: center;
    }

    .perusahaan .company-image {
        width: 80%;
    }

    .perusahaan p {
        width: 100%;
        margin-top: 20px;
    }

    .job-list {
        flex-direction: column;
        align-items: center;
    }

    .job-card {
        width: 80%;
        margin-bottom: 20px;
    }
}
