/* =========================
   Map Container
========================= */
.map-container {
    width: 100%;
    height: 500px;
}

/* =========================
   WhatsApp Button
========================= */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-button:hover {
    background-color: #20b957;
}

.whatsapp-button a {
    text-decoration: none;
    color: white;
}

/* =========================
   Scrolling Images
========================= */
.scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid #ccc;
}

.scroll-images {
    display: inline-flex;
    animation: scroll-ltor 25s linear infinite;
}

.scroll-images img {
    width: 821px;
    height: 100px;
    margin-right: 10px;
}

@keyframes scroll-ltor {
    0% { transform: translateX(50%); }
    100% { transform: translateX(-100%); }
}

@keyframes scroll-rtol {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(100%); }
}

/* =========================
   Notification Bar
========================= */
.hidden {
    display: none;
}

.notification {
    overflow: hidden;
    white-space: nowrap;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    padding: 10px 0;
    margin: 20px 0;
    border-radius: 5px;
    position: relative;
    font-size: 16px;
}

.notification a {
    display: inline-block;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    animation: scroll-left 10s linear infinite;
}

.notification:hover a {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* =========================
   Slider
========================= */
.slider-container {
    position: relative;
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.9s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 75%;
    object-fit: cover;
}

.caption {
    width: 100%;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 2px;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* =========================
   Two Column Image Layout
========================= */
.containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.columns {
    flex: 1;
    max-width: 50%;
}

.columns img {
    width: 100%;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .containers {
        flex-direction: column;
    }
    .columns {
        max-width: 100%;
    }
}

/* =========================
   Navbar Styling
========================= */
.navbar {
    background-color: #d9f0ff !important;
}

.navbar a {
    color: white !important;
}

.navbar a:hover {
    color: #f1c40f !important;
}

.cq {
    background-color: #ff0e0e;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cq1 {
    background-color: #203082;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#floatingBox {
    position: fixed;
    top: -250px;
    left: 10px;
    width: 100px;
    background: white;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 10px;
    transition: top 0.4s ease;
    z-index: 9999;
}

#floatingBox img {
    width: 100px;
    height: auto;
    display: block;
}

