.air-ticketing{
background-color: black;
}

.page-nav .navbar-nav li a{
color: #000;
}

/* Whatsapp */

.open-button i {
background-color: #0ca551;
color: white;
border: none;
cursor: pointer;
position: fixed;
bottom: 80px;
right: 28px;
padding: 5px 5px;
border-radius: 50%;
}

.open-button span {
display: none;
background-color: #f73606;
color: white;
border: none;
cursor: pointer;
position: fixed;
bottom: 85px;
right: 15px;
font-size: 10px;
padding: 3px 7px;
border-radius: 50%;
}


.marquee {
      width: 100%;
      overflow: hidden;
      position: relative;
      background: white;
      padding: 20px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .marquee-content {
      display: flex;
      gap: 50px; /* space between logos */
      animation: scroll 20s linear infinite;
    }

    .marquee-content img {
      height: 60px;
      object-fit: contain;
    }

    /* Duplicate content for seamless loop */
    .marquee-content-wrapper {
      display: flex;
      width: max-content;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }