/* Enhanced Carousel Styling - 30% Text Left, 70% Image Right */
.banner_slider_item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(81, 76, 99, 0.9) 100%);
}

/* Container for floating tags above slider */
#home_five_banner {
    position: relative;
}

.banner_slider_text_wrapper {
    width: 45%;
    padding: 80px 60px;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 30, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-right: 2px solid rgba(224, 60, 51, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease-out;
}

.banner_slider_image_wrapper {
    width: 70%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner_slider_image_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.banner_slider_image_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 60, 51, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.banner_slider_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.2) saturate(1.15) brightness(1.05);
    -webkit-filter: contrast(1.2) saturate(1.15) brightness(1.05);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.banner_slider_item:hover .banner_slider_image_wrapper img {
    transform: scale(1.1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner_five_text {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Animated Tags/Badges - Small Particle Style - Floating Above All Slides */
#floating_tags_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
}

.banner_tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: absolute;
    overflow: visible;
    backdrop-filter: blur(4px);
    transition: all 1s ease;
    white-space: nowrap;
}

/* Multiple lighter color variations for tags */
.banner_tag_1 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.25) 0%, rgba(255, 182, 193, 0.10) 100%);
    border: 1px solid rgba(255, 182, 193, 0.4);
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2), inset 0 0 8px rgba(255, 182, 193, 0.10);
}

.banner_tag_2 {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.25) 0%, rgba(173, 216, 230, 0.10) 100%);
    border: 1px solid rgba(173, 216, 230, 0.4);
    box-shadow: 0 2px 8px rgba(173, 216, 230, 0.2), inset 0 0 8px rgba(173, 216, 230, 0.10);
}

.banner_tag_3 {
    background: linear-gradient(135deg, rgba(152, 251, 152, 0.25) 0%, rgba(152, 251, 152, 0.10) 100%);
    border: 1px solid rgba(152, 251, 152, 0.4);
    box-shadow: 0 2px 8px rgba(152, 251, 152, 0.2), inset 0 0 8px rgba(152, 251, 152, 0.10);
}

.banner_tag_4 {
    background: linear-gradient(135deg, rgba(255, 218, 185, 0.25) 0%, rgba(255, 218, 185, 0.10) 100%);
    border: 1px solid rgba(255, 218, 185, 0.4);
    box-shadow: 0 2px 8px rgba(255, 218, 185, 0.2), inset 0 0 8px rgba(255, 218, 185, 0.10);
}

.banner_tag_5 {
    background: linear-gradient(135deg, rgba(221, 160, 221, 0.25) 0%, rgba(221, 160, 221, 0.10) 100%);
    border: 1px solid rgba(221, 160, 221, 0.4);
    box-shadow: 0 2px 8px rgba(221, 160, 221, 0.2), inset 0 0 8px rgba(221, 160, 221, 0.10);
}

.banner_tag_6 {
    background: linear-gradient(135deg, rgba(255, 228, 196, 0.25) 0%, rgba(255, 228, 196, 0.10) 100%);
    border: 1px solid rgba(255, 228, 196, 0.4);
    box-shadow: 0 2px 8px rgba(255, 228, 196, 0.2), inset 0 0 8px rgba(255, 228, 196, 0.10);
}

.banner_tag_7 {
    background: linear-gradient(135deg, rgba(176, 224, 230, 0.25) 0%, rgba(176, 224, 230, 0.10) 100%);
    border: 1px solid rgba(176, 224, 230, 0.4);
    box-shadow: 0 2px 8px rgba(176, 224, 230, 0.2), inset 0 0 8px rgba(176, 224, 230, 0.10);
}

.banner_tag_8 {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.25) 0%, rgba(255, 192, 203, 0.10) 100%);
    border: 1px solid rgba(255, 192, 203, 0.4);
    box-shadow: 0 2px 8px rgba(255, 192, 203, 0.2), inset 0 0 8px rgba(255, 192, 203, 0.10);
}

.banner_tag_9 {
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.25) 0%, rgba(144, 238, 144, 0.10) 100%);
    border: 1px solid rgba(144, 238, 144, 0.4);
    box-shadow: 0 2px 8px rgba(144, 238, 144, 0.2), inset 0 0 8px rgba(144, 238, 144, 0.10);
}

.banner_tag_10 {
    background: linear-gradient(135deg, rgba(230, 230, 250, 0.25) 0%, rgba(230, 230, 250, 0.10) 100%);
    border: 1px solid rgba(230, 230, 250, 0.4);
    box-shadow: 0 2px 8px rgba(230, 230, 250, 0.2), inset 0 0 8px rgba(230, 230, 250, 0.10);
}

.banner_tag_11 {
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.25) 0%, rgba(255, 250, 205, 0.10) 100%);
    border: 1px solid rgba(255, 250, 205, 0.4);
    box-shadow: 0 2px 8px rgba(255, 250, 205, 0.2), inset 0 0 8px rgba(255, 250, 205, 0.10);
}

.banner_tag_12 {
    background: linear-gradient(135deg, rgba(224, 255, 255, 0.25) 0%, rgba(224, 255, 255, 0.10) 100%);
    border: 1px solid rgba(224, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(224, 255, 255, 0.2), inset 0 0 8px rgba(224, 255, 255, 0.10);
}

/* Individual particle animations for each tag - moving across full height */
.banner_tag_1 {
    animation: particleFloat1 12s ease-in-out infinite;
    animation-delay: 0s;
    left: 10%;
    top: 10%;
}

.banner_tag_2 {
    animation: particleFloat2 14s ease-in-out infinite;
    animation-delay: 1s;
    left: 20%;
    top: 20%;
}

.banner_tag_3 {
    animation: particleFloat3 13s ease-in-out infinite;
    animation-delay: 2s;
    left: 30%;
    top: 15%;
}

.banner_tag_4 {
    animation: particleFloat4 15s ease-in-out infinite;
    animation-delay: 0.5s;
    left: 40%;
    top: 25%;
}

.banner_tag_5 {
    animation: particleFloat5 11s ease-in-out infinite;
    animation-delay: 1.5s;
    left: 50%;
    top: 10%;
}

.banner_tag_6 {
    animation: particleFloat6 16s ease-in-out infinite;
    animation-delay: 2.5s;
    left: 60%;
    top: 30%;
}

.banner_tag_7 {
    animation: particleFloat7 12s ease-in-out infinite;
    animation-delay: 0.8s;
    left: 70%;
    top: 15%;
}

.banner_tag_8 {
    animation: particleFloat8 14s ease-in-out infinite;
    animation-delay: 1.8s;
    left: 80%;
    top: 25%;
}

.banner_tag_9 {
    animation: particleFloat9 13s ease-in-out infinite;
    animation-delay: 0.3s;
    left: 15%;
    top: 50%;
}

.banner_tag_10 {
    animation: particleFloat10 15s ease-in-out infinite;
    animation-delay: 1.2s;
    left: 25%;
    top: 60%;
}

.banner_tag_11 {
    animation: particleFloat11 12s ease-in-out infinite;
    animation-delay: 2.2s;
    left: 35%;
    top: 55%;
}

.banner_tag_12 {
    animation: particleFloat12 14s ease-in-out infinite;
    animation-delay: 0.6s;
    left: 45%;
    top: 65%;
}

/* Particle floating animations - Moving across full slider height */
@keyframes particleFloat1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(30px, 150px) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translate(-20px, 300px) rotate(-3deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(25px, 450px) rotate(4deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(-35px, 200px) rotate(-4deg);
        opacity: 1;
    }

    50% {
        transform: translate(25px, 400px) rotate(3deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-30px, 500px) rotate(-5deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(40px, 180px) rotate(4deg);
        opacity: 1;
    }

    50% {
        transform: translate(-25px, 350px) rotate(-3deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(35px, 480px) rotate(5deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(-30px, 220px) rotate(-3deg);
        opacity: 1;
    }

    50% {
        transform: translate(20px, 380px) rotate(4deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-25px, 520px) rotate(-4deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(35px, 160px) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translate(-30px, 320px) rotate(-4deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(30px, 460px) rotate(3deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat6 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(-40px, 190px) rotate(-5deg);
        opacity: 1;
    }

    50% {
        transform: translate(30px, 360px) rotate(4deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-35px, 490px) rotate(-3deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat7 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(25px, 170px) rotate(3deg);
        opacity: 1;
    }

    50% {
        transform: translate(-35px, 340px) rotate(-5deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(40px, 470px) rotate(4deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat8 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(-25px, 210px) rotate(-4deg);
        opacity: 1;
    }

    50% {
        transform: translate(35px, 370px) rotate(5deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-30px, 510px) rotate(-3deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, 600px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat9 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(30px, -100px) rotate(4deg);
        opacity: 1;
    }

    50% {
        transform: translate(-25px, -200px) rotate(-3deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(35px, -300px) rotate(5deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, -400px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat10 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(-35px, -120px) rotate(-5deg);
        opacity: 1;
    }

    50% {
        transform: translate(30px, -220px) rotate(4deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-30px, -320px) rotate(-3deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, -400px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat11 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(40px, -110px) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translate(-30px, -210px) rotate(-4deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(35px, -310px) rotate(3deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, -400px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes particleFloat12 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(-30px, -130px) rotate(-3deg);
        opacity: 1;
    }

    50% {
        transform: translate(25px, -230px) rotate(5deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(-35px, -330px) rotate(-4deg);
        opacity: 0.9;
    }

    100% {
        transform: translate(0, -400px) rotate(0deg);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner_five_text h6 {
    font-size: clamp(18px, 2.5vw, 24px) !important;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 0 20px rgba(224, 60, 51, 0.5);
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    position: relative;
    padding-left: 20px;
}

.banner_five_text h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--main-color) 0%, rgba(224, 60, 51, 0.3) 100%);
    box-shadow: 0 0 10px var(--main-color);
}

.banner_five_text h6 span {
    color: var(--main-color) !important;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(224, 60, 51, 0.8), 0 0 30px rgba(224, 60, 51, 0.4);
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner_five_text h6 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--main-color) 0%, transparent 100%);
    transform: scaleX(0);
    animation: expandLine 0.8s ease-out 0.5s forwards;
    box-shadow: 0 0 10px var(--main-color);
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner_five_text h1 {
    font-size: clamp(32px, 4.5vw, 64px) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 0;
    letter-spacing: -2px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 30px rgba(224, 60, 51, 0.2));
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner_slider_item {
        flex-direction: column;
        min-height: 500px;
    }

    .banner_slider_text_wrapper {
        width: 100%;
        padding: 60px 30px;
        border-right: none;
        border-bottom: 2px solid rgba(224, 60, 51, 0.3);
    }

    .banner_slider_image_wrapper {
        width: 100%;
        height: 300px;
    }

    .banner_five_text {
        width: 100% !important;
        padding: 0;
    }

    .banner_five_text h6 {
        font-size: 14px !important;
        letter-spacing: 2px;
        padding-left: 15px;
    }

    .banner_five_text h6::before {
        height: 20px;
    }

    .banner_five_text h1 {
        font-size: 28px !important;
    }

    .banner_tag {
        font-size: 8px;
        padding: 3px 10px;
    }
}