/* FULL SCREEN SLIDER */
.myHeroSlider,
.swiper-slide {
    width: 100%;
    height: 100dvh; /* mobile friendly */
    position: relative;
    overflow: hidden;
}

/* IMAGE FULL SCREEN */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* KEY LINE 🔥 */
    position: absolute;
    top: 0;
    left: 0;
}

/* OVERLAY */
.overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* TEXT */
.title {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(24px, 5vw, 55px);
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #ff6600;
}

/* Hide by default (Desktop) */
.sidebar-toggle-btn {
    display: none;
}

/* Show on Tablet & Mobile */
@media (max-width: 768px) {
    .sidebar-toggle-btn {
        display: block;
    }
}

/*.sidebar-toggle-btn {*/
/*    padding: 10px 15px;*/
/*    font-size: 18px;*/
/*    background: #ff6600;*/
/*    color: #fff;*/
/*    border: none;*/
/*    border-radius: 5px;*/
/*    cursor: pointer;*/
/*}*/


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Hover effect (desktop) */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* 📱 Small devices */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
    }
}