
.marquee-container {
    margin-top: 10px;
    background-color: green;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-radius: 10px;
}

.marquee-text {
    display: inline-block;
    min-width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: white;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
.navbar{
    margin-top: 10px;
    background-color: #F5F5DC;
    border-radius: 10px;
}
.navbar-brand img {
    width: 50px;
    height: 50px;
    margin-top: -7px;
    border-radius: 50px;
}

     /* Center Align Navbar Items in Mobile */
     @media (max-width: 991px) { /* Bootstrap's default breakpoint for collapsing navbar */
        
        .navbar-collapse {
            text-align: center;
        }
        .navbar-nav {
            flex-direction: column;
            align-items: center; /* Center items */
            width: 100%;
        }
        .auth-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 10px;
        }
        .auth-buttons .btn {
            width: 80%; /* Make buttons full width */
            margin: 5px 0;
        }
        #carouselExampleAutoplaying img{
            height: auto;
          }
       
    }
.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: green;
  }
  #carouselExampleAutoplaying{
    margin-top: 10px;
    border-radius: 10px;
  }
  .carousel-item img{
    height: 70vh;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  .card-img-top{
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
.testimonial-box {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    font-size: 30px;
}
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card img {
    transition: transform 0.3s ease-in-out;
}
.card:hover img {
    transform: scale(1.1);
}