/* Section styling */
#trusted-partners {
    background-image: url("../images/trustedparnterbg.png"); /* Replace with your image path */
  background-size: contain; /* Ensure the image covers the entire section */
  background-position: right; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */ /* Light peach background gradient */
    padding: 50px 0;
}

/* Typography */
h2 {
    font-weight: bold;
    color: #4a4a4a;
}


/* Partner logo box styling */
/* .partner-logo {
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

.partner-logo img {
    max-width: 100%;
    height: auto;
}

.carousel-indicators button {
    background-color: #f28a49;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: #f05b1a;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    #trusted-partners {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 1.5rem;
    }
}
