
#banner-home{
    background: url(../img/home-banner-1.png);
    width: 100%;
    height: 100vh;
    background-size: 100% 100%
}
.overlay{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fadeIn {
    animation: fadeIn 0.3s ease-in-out;
}


/* preloader css */
/* Preloader Styles */
/* .preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1a1a2e, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    overflow: hidden;
}

/* Shooting Star Animation */
/*.shooting-star {
    position: absolute;
    width: 3px;
    height: 80px;
    background: linear-gradient(transparent, gold);
    top: 10%;
    left: 50%;
    opacity: 0;
    animation: shooting 2s linear infinite;
}

@keyframes shooting {
    0% {
        transform: translate(-50%, 0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translate(200px, 200px) rotate(-45deg);
        opacity: 0;
    }
}

/* Glowing Text Animation */
/*.brand-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: gold;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Smooth Preloader Fade-Out */
/*.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
} */


/* Preloader Styles */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #151515, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 50;
    overflow: hidden;
}

/* Starry Background */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.4;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

/* Shooting Star Animation */
.shooting-star {
    position: absolute;
    width: 3px;
    height: 80px;
    background: linear-gradient(transparent, white);
    top: 10%;
    left: 50%;
    opacity: 0;
    animation: shooting 2s linear infinite;
}

@keyframes shooting {
    0% {
        transform: translate(-50%, 0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translate(200px, 200px) rotate(-45deg);
        opacity: 0;
    }
}

/* Glowing Text Animation */
.brand-name {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.6);
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Smooth Preloader Fade-Out */
.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}


.owl-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.owl-carousel {
    overflow: hidden;
    padding: 20px;
}
.owl-nav button { 
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.owl-nav button span {
    font-size: 24px;
    color: #333;
}