/* clients Effect */
:root {
    --modal-bg: rgba(255, 255, 255, 0.9);
    --modal-width: 80%;
    --modal-height: 80%;
    --modal-padding: 20px;
    --modal-border-radius: 20px;
}
  
/* Backdrop Effect */
dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-header-clients {
    position: relative;
    margin-bottom: 20px;
}

.section-header-clients h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.section-header-clients .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
}

/* Center Heading and Top-Right Button */
.d-flex.position-relative {
    display: flex;
    justify-content: center; /* Centers the heading */
    align-items: center; /* Vertically aligns the heading */
    position: relative; /* Required for positioning the button */
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0; /* Aligns button to the top */
}

.end-0 {
    right: 0; /* Aligns button to the right */
}
