.category-slider .out_card{
    position: relative;
    width:100%;
    height:250px;
}
.category-slider .out_img{
    padding: 15px 0;
}
.category-slider .in_card{
    position:absolute;
    bottom:10%;
    left:50%;
    transform: translateX(-50%);
    width:80%;
}
.tingginya{
    height: 800px;
}

.service-prosedure .cta-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin: 20px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

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

.service-prosedure .cta-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2), transparent);
    border-radius: 50%;
    z-index: 0;
}

.service-prosedure .cta-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2), transparent);
    border-radius: 50%;
    z-index: 0;
}

.service-prosedure .cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-prosedure .text-content {
    flex: 1;
    text-align: left;
}

.service-prosedure .cta-container h1 {
    font-size: 2.2em;
    color: #007bff;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(to right, #007bff, #00c4b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-prosedure .cta-container p {
    font-size: 1.1em;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.service-prosedure .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    color: #ffffff;
    background: #007bff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.service-prosedure .cta-button i {
    margin-right: 10px;
}

.service-prosedure .cta-button:hover {
    background: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .service-prosedure .cta-container {
        padding: 20px;
        margin: 15px 0;
    }
    .service-prosedure .cta-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .service-prosedure .text-content {
        text-align: center;
    }
    .service-prosedure .cta-container h1 {
        font-size: 1.8em;
    }
    .service-prosedure .cta-container p {
        font-size: 1em;
    }
    .service-prosedure .cta-button {
        min-width: 180px;
        padding: 12px 20px;
    }
}

/* sertifikat iso 9001 */
#certification-section {
    margin-bottom: 1.5rem;
    background: #F3F7FB;
    padding: 1rem 0;
    border-radius: 0.75rem;
}
#certification-section .card-custom {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#certification-section .card-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
#certification-section .certification-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}
#certification-section .certification-card {
    background: #ffffff;
    padding: 1rem;
    text-align: center;
    width: 20rem; /* Increased width to make logo area wider */
}
#certification-section .certification-img {
    height: 8rem;
    width: 100%; /* Ensure image takes full width of card */
    object-fit: cover; /* Maintain cover fit */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.1));
}
#certification-section .certification-text {
    color: #1e3a8a;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
#certification-section .certification-subtext {
    color: #475569;
    font-size: 0.625rem;
    font-style: italic;
}
@media (max-width: 767.98px) {
    #certification-section .certification-title {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
    #certification-section .certification-card {
        width: 15rem; /* Smaller width for mobile */
    }
    #certification-section .certification-img {
        height: 6rem; /* Smaller height for mobile */
    }
    #certification-section .certification-text {
        font-size: 0.65rem;
    }
    #certification-section .certification-subtext {
        font-size: 0.55rem;
    }
    #certification-section .card-custom {
        padding: 1rem;
    }
}
