/* CSS for Return to Top button */
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #fec804;
    border-radius: 30%;
    display: none;
    text-decoration: none;
    z-index: 999;
    transition: background 0.3s;
}

#return-to-top i {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#return-to-top:hover {
    background: rgb(252, 238, 37)
}

/* banner slider add code  */
.swiper-button-prev, .swiper-button-next {
    color: #fff; /* or any color you want */
    width: 50px;
    height: 50px;
    background-color: #fec804;
    border-radius: 30%;
}
.swiper-button-prev:hover,
 .swiper-button-next:hover {
    
    background-color: #0E384C;
    
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-weight: 900;
    font-size: 23px;
    content: 'prev';
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-weight: 900;
    font-size: 23px;
    content: 'next';
}
 /* sticky header ful code  */
 header.main-header {
    transition: all 0.3s ease;
}
header.main-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}
.main-header {
    width: 100%;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-sticky {
    width: 100%;
}
 /* testimonila section  */
