/* Marquee Container */
.marquee {
    width: 100%;
    background: #000; /* Red background */
    color: #ffffff; /* White text */
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: relative; /* Ensures normal page flow */
}

/* Marquee Animation - Left to Right */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

/* Marquee Content */
.marquee-content {
    display: inline-block;
    padding-right: 100%; /* Ensures continuous loop */
    animation: scroll 15s linear infinite; /* Adjust speed as needed */
}

.landing-page-first-bannar img {
    object-fit: fill;
  }