:root {
    --hero-bg-color: #000007;
    --header-bg-color: black;
    --nav-top-bg-color: black;

    --section-1-bg-color: #fcf9ff;
    --section-2-bg-color: #ffffff;
    --section-3-bg-color: #111117;
    --section-4-bg-color: #eef4ed;
    --section-5-bg-color: #dcddde;
    --section-6-bg-color: #111117;
    --section-6-bg-image: url('/assets/images/bg-1.jpg');
    --section-7-bg-color: #ffffff;
}

.section-2 h3,
p {
    color: black;
}

footer {
    background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: black
}

input[type="submit"] {
    color: white;
    width: 125px;
}

.special-button {
    padding: 0 16px;
}

@media(max-width: 1200px) {
    .special-button {
        padding: 0;
    }
}

/* Container wrapper */
.sb-testimonials {
    font-family: Arial, sans-serif;
    background-color: #dcddde;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Slider container */
.sb-testimonial-slider {
    width: 90%;
    max-width: 800px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Each slide */
.sb-swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Logo image in circle (or full image; comment out border-radius for full image) */
.sb-testimonial-logo {
    width: 200px;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Company name */
.sb-testimonial-company {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Testimonial content */
.sb-testimonial-content {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
}

/* Testimonial date */
.sb-testimonial-date {
    font-size: 0.9em;
    color: #888;
}

/* Swiper navigation buttons */
.sb-swiper-button-next,
.sb-swiper-button-prev {
    color: #333;
}

/* Swiper pagination bullets */
.sb-swiper-pagination .swiper-pagination-bullet {
    background: #333;
}

/* =============================
   Integration Sliders - Unique Styles
   ============================= */

/* Overall container styling for each integration slider */
.integration-slider {
    position: relative;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-x: hidden;
    /* Prevent horizontal overflow */
}

/* Swiper internal structure */
.integration-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Each slide: centered with internal padding */
.integration-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Logo images for desktop */
.integration-slider .swiper-slide img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* New Navigation Container */
.integration-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    /* Allow clicks only on buttons */
}

.integration-nav .swiper-button-prev,
.integration-nav .swiper-button-next {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

/* Optional margin adjustments for nav buttons */
.integration-nav .swiper-button-prev {
    margin-left: 10px;
}

.integration-nav .swiper-button-next {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .integration-slider {
        padding: 5px;
        /* reduce padding to help prevent overflow */
    }

    .integration-slider .swiper-slide img {
        max-width: 150px;
        /* smaller logos on mobile */
    }

    .integration-nav .swiper-button-prev,
    .integration-nav .swiper-button-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}