
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
}

.btn.btn-secondary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    /*background: var(--bs-red) !important;*/
	color: var(--bs-white);
	/*border: var(--bs-red) !important;*/
	background-color: #C06A2B !important;
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.nav-bar .categories-bars .categories-bars-item {
    padding: 5px 15px;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item a,
.nav-bar .categories-bars .categories-bars-item span {
    color: var(--bs-dark);
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item:hover {
    background: var(--bs-primary);
}

.nav-bar .categories-bars .categories-bars-item:hover a,
.nav-bar .categories-bars .categories-bars-item:hover span {
    color: var(--bs-white);
}

.nav-bar .navbar.navbar-light {
    padding: 0 !important;
}

.nav-bar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .nav-bar .navbar .navbar-nav .nav-link {
        padding: 8px 0px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 5px 15px;
}

#allCat {
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 51px; 
    z-index: 999; 
    background: var(--bs-light);
}

.nav-bar .navbar-toggler {
    border-radius: 5px !important; 
    box-shadow: none !important;
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel.owl-carousel .owl-nav .owl-prev,
.header-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 87%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel.owl-carousel .owl-nav .owl-prev {
    right: 130px;
    transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-next {
    right: 60px;
    transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-prev:hover,
.header-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.carousel .carousel-header-banner {
    position: relative;
}

.carousel .carousel-banner-offer {
    position: absolute;
    top: 20px; 
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel .carousel-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; 
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/*** Carousel Header End ***/


/*** Page Header start ***/
.page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*** Page Header end ***/


/*** Products Start ***/
.product .product-item {
    width: 100%;
    height: 100%;
    position: relative;
	
}

.product .product-item .product-item-inner {
    height: 100%;
	border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.product .product-item .product-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    /* opacity: 0; */
    transition: 0.5s;
    z-index: 1;

}

.product .product-item:hover .product-item-add {
    background: var(--bs-white);
    margin-bottom: -124px;
    opacity: 1;
}
.product .product-item:hover .product-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.product .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new,
.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    position: absolute;
    width: 40px; 
    height: 40px;
    border-radius: 60px; 
    top: 10px; 
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center; 
	font-size: 12px;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner img {
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner img {
    transform: scale(1.1);
}

.product .product-item .product-item-inner .product-item-inner-item .product-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.product .product-item .product-item-inner .product-item-inner-item .product-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner .product-item-inner-item .product-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item:hover .product-item-inner .product-details {
    opacity: 1;
}

.product .tab-class .nav .nav-item a.active {
    background: var(--bs-primary) !important;
}

.product .tab-class .nav .nav-item a.active span {
    color: var(--bs-white) !important;
}
/*** Product End ***/


/*** ProductList Categories Start ***/
.productList .productList-carousel {
    height: 215px !important;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    position: relative;
    width: calc(100% - 1px);
    transition: 0.5s;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    margin-bottom: 75px;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item:hover {
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.productList .productList-carousel .owl-nav .owl-prev,
.productList .productList-carousel .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.productList .productList-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0px;
    padding: 5px 10px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    opacity: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-next {
    opacity: 1;
}
/*** ProductList Categories End ***/



/*** bestseller Products Start ***/
.products .products-mini .products-mini-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-img {
 position: relative;
 overflow: hidden;
}

.products .products-mini .products-mini-item .products-mini-img img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
    border-bottom-left-radius: 0 !important;
    transform: scale(1.3);
}

.products .products-mini .products-mini-item .products-mini-img .products-mini-icon {
    position: absolute;
    width: 50px; 
    height: 50px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon {
    opacity: 1;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon:hover {
    background: var(--bs-secondary) !important;
}

.products .products-mini .products-mini-item .products-mini-add {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-white);
    transition: 0.5s;
    z-index: 9;
    opacity: 0;
}

.products .products-mini .products-mini-item:hover .products-mini-add {
    opacity: 1;
    margin-bottom: -75px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** bestseller Products End ***/

/*** Pagination Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Pagination End ***/

/*** Footer Start ***/
.footer {
    /*background: var(--bs-dark);*/
	/*background: var(--bs-secondary);*/
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);  
	position: relative;   
    background: url('../img/copyright.webp') center center no-repeat;
    background-size: cover;
    overflow: hidden;
	 z-index: 2;
    color: white;
	}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /*background: var(--bs-primary) !important;*/
	position: relative;
   
    background: url('../img/footer.webp') center center no-repeat;
    background-size: cover;
    overflow: hidden;
	 z-index: 2;
    color: white;
}

.copyright::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Adjust darkness */
    z-index: 1;
}

/*** copyright end ***/

.colorhoneyfont {
	color: #C06A2B !important;
	font-weight: bold;
}

.footer a:hover{
    color:#FFD700 !important;
}
/*** developer link ***/
/*
.developer-link{
    color:#F5E6C8;
    text-decoration:none;
    padding:4px 10px;
    border-radius:20px;
    transition:.3s ease;	
	background:rgba(0,0,0,0.2);
	text-shadow:0 1px 2px rgba(0,0,0,0.4);
}*/
.developer-link
{
	position: relative;
    z-index: 9999;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}
.developer-link:hover{
    background:rgba(235, 79, 7,.15);   
    box-shadow:0 0 12px rgba(235, 79, 7,.25);
}
/*** About Vision Section ***/
.about-vision-section{
    position: relative;
    padding: 80px 0;
    background: url('../img/about-vision-bg.webp') center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.overlay{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.82);
}

.container{
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.content-box{
    margin-bottom: 70px;
}

.section-title{
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #d87a00;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    height: 3px;
    background: #d87a00;
}

.content-box p{
    font-size: 18px;
    line-height: 1.9;
    color: #5b3710;
    font-weight: 500;
    text-align: justify;
}

.vision-quote{
    background: rgba(255, 193, 7, 0.12);
    border-left: 5px solid #d87a00;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #b66300;
    text-align: center;
}

@media(max-width:768px){

    .about-vision-section{
        padding: 50px 0;
        background-position: center;
    }

    .section-title{
        font-size: 32px;
    }

    .content-box p{
        font-size: 16px;
    }

    .vision-quote{
        font-size: 18px;
        padding: 15px;
    }
}

.content-box{
    backdrop-filter: blur(2px);
}

.content-box:hover{
    transform: translateY(-3px);
    transition: 0.3s ease;
}

/* product owl carousel */

.product-carousel .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}

.product-carousel .owl-prev,
.product-carousel .owl-next {
    position: absolute;
    width: 35px;
    height: 35px;
    line-height: 35px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.8) !important;
}

.product-carousel .owl-prev {
    left: 10px;
}

.product-carousel .owl-next {
    right: 10px;
}

.product-carousel .owl-nav {
    margin-top: 0;
}

.product-carousel .owl-prev,
.product-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.9) !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 32px !important;
    text-align: center;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    transition: all .3s ease;
}

.product-carousel .owl-prev {
    left: 10px;
}

.product-carousel .owl-next {
    right: 10px;
}

.product-carousel .owl-prev:hover,
.product-carousel .owl-next:hover {
    background: #f59e0b !important;
    color: #fff !important;
}

.product-carousel .owl-nav button span {
    font-size: 22px;
    line-height: 28px;
}
.product-carousel .owl-prev i,
.product-carousel .owl-next i {
    font-size: 16px;
}

/*mouse bee*/
.bee-cursor{
    position:fixed;
    width:80px;
	height: auto;
    z-index:9999;
    pointer-events:none;
    transform:translate(-50%,-50%);
	opacity: 0.95;
}

.bee-cursor img{
    width:100%;
    animation:wingFlutter 0.15s infinite alternate;
}

@keyframes wingFlutter{
    from{
        transform:rotate(-5deg);
    }
    to{
        transform:rotate(5deg);
    }
}
/* Hide on tablet and mobile */
@media (max-width: 991px){
    .bee-cursor{
        display: none !important;
    }
	.product .product-item .product-item-inner {
    padding-top:50px;
}

}

/* carousel banner */
.header-carousel-item {
    position: relative;
}

.hero-image {
    min-height: 650px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 38%;
    left: 6%;
    transform: translateY(-50%);
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.honey-text {
    color: #D4A017;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.15);
}

.mushroom-text {
    /*color: #7B5A3A;*/
	color: #c38d39;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.15);
}

.millet-text {
    color: #B5A642;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.15);
}

.divider {
    width: 150px;
    height: 2px;
    background: #b5a642;
    margin: 20px 0;
}

.hero-subtitle {
    font-size: 1.8rem;
    /*color: #4b3621;*/
	color: #f28b00;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-features span {
    font-size: 1rem;
    font-weight: 600;
    /*color: #4b3621;*/
	color: #FF5F1F;
    background: rgba(255,255,255,0.75);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

/* Tablet */
@media (max-width: 991px) {

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .hero-image {
        min-height: 500px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features span {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}
.honey-heart{
    color: #E0A106;
    text-shadow: 0 0 8px rgba(224,161,6,0.3);
}

/* social media follow */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    color: #ff9800; /* Orange */
    transform: translateY(-3px);
}

/* flashing phone button */
.phone-btn {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2.5s infinite;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    transform: translateY(-2px);
}

/* Ringing Mobile Icon */
.phone-btn i {
    display: inline-block;
    transform-origin: center;
    animation: ringPhone 1.5s infinite;
}

/* Pulse Glow */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 165, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* Phone Ring Animation */
@keyframes ringPhone {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}
.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}
.phone-btn {
    background: linear-gradient(135deg, #f9b233, #c67c00);
    color: white;
    font-weight: 700;
    animation: honeyPulse 2s infinite;
}
/* flying bee in the header */
.flying-bee {
    position: absolute;
    top: 15px;
    left: -60px;
    z-index: 9999;
    animation: flyBee 18s linear infinite;
    pointer-events: none;
}

.flying-bee img {
    width: 40px;
    height: auto;
    animation: beeWings 0.25s ease-in-out infinite alternate;
}

@keyframes flyBee {
    0% {
        left: -60px;
        transform: translateY(0px) rotate(0deg);
    }

	10% {
        transform: translateY(-10px) rotate(10deg);
    }
	
    20% {
        transform: translateY(5px) rotate(10deg);
    }

    30% {
        transform: translateY(8px) rotate(-5deg);
    }

    40% {
        transform: translateY(-8px) rotate(8deg);
    }
    50% {
        transform: translateY(10px) rotate(-8deg);
    }
	 60% {
        transform: translateY(15px) rotate(-8deg);
    }
	 70% {
        transform: translateY(-8px) rotate(-8deg);
    }
	 80% {
        transform: translateY(8px) rotate(-8deg);
    }
	 90% {
        transform: translateY(10px) rotate(-8deg);
    }
	 50% {
        transform: translateY(15px) rotate(-8deg);
    }
    100% {
        left: calc(100% + 60px);
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes beeWings {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
/* main header title */
.fpo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.25),
        0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
	cursor: default;
}

.fpo-title:hover {
    color: #fff8dc;
    text-shadow:
        0 0 8px rgba(255,255,255,0.4),
        0 0 15px rgba(255,215,0,0.3);
}

@media (max-width: 992px) {
    .fpo-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .fpo-title {
        font-size: 1.1rem;
        text-align: center;
    }
}
/* back to top */
/*
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
*/
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD54F, #D4A017);
    border: 3px solid #FFF2B3;
    box-shadow:
        0 8px 20px rgba(212,160,23,.35),
        inset 0 2px 6px rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all .3s ease;
	display: none; 
	overflow: hidden;
    clip-path: polygon(
        25% 6.7%, 75% 6.7%,
        100% 50%, 75% 93.3%,
        25% 93.3%, 0% 50%
    );
}
.back-to-top img {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    width: 40px;
    height: 40px;
    margin: 0;
    transform: none !important;
    animation: beeBuzz 1.5s ease-in-out infinite;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

@keyframes beeBuzz {
    0%,100% {
        transform: translateY(0) rotate(-5deg);
    }
    25% {
        transform: translateY(-2px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(-5deg);
    }
    75% {
        transform: translateY(-2px) rotate(5deg);
    }
}
