
.dropdown-menu {
    background-color: black !important;
    border: none;
}

.dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background-color: #444 !important; /* Darker shade on hover */
    color: white !important;
}
.carousel-item {
    position: relative;
    z-index: 1;
}
.carousel-item img {
    width: 100%;   /* Ensures the image takes the full width of the carousel */
    height: 500px; /* Set a fixed height (adjust as needed) */
    object-fit: cover; /* Ensures images scale properly without distortion */
}
footer {
    background-color: #343a40;
    color: #fff;
    padding: 3rem 0;
  }

  .social-icons a {
    font-size: 1.25rem;
  }
  @media (max-width: 576px) { /* Adjust for small screens */
    .form-control {
        width: 100%;
        margin-bottom: 5px;
    }
    .btn {
        width: 100%;
    }
}
.brand-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #f8f8f8;
    padding: 10px 0;
}

.brand-slide-track {
    display: flex;
    width: calc(200px * 12); /* Adjust width based on number of images */
    animation: scroll 15s linear infinite;
}

.brand-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 80px;
    padding: 10px;
}

.brand-slide img {
    max-width: 100%;
    height: auto;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-item img {
    height: 100vh;
    object-fit: contain;
}
