/* Hero Section Animated Background with Waves */
.hero-section-main {
    position: relative;
    background: linear-gradient(315deg, #010114 0%, #020024 35%, #050530 65%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding-top: 100px;
    overflow: hidden;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.hero-section-main .content-wrapper {
    position: relative;
    z-index: 5;
    /* Ensure content is above waves */
}

.hero-section-main img.img-fluid {
    /* margin-bottom: 0; */
    vertical-align: bottom;
    position: relative;
    z-index: 6;
}

/* Specific fix for the row to align image to bottom while keeping text centered/padded */
.hero-section-main .row {
    align-items: flex-end;
}

/* .hero-section-main .col-lg-6:first-child {
    padding-bottom: 100px;
} */

/* Wave Animations */
.wave {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1000% 1000% 0 0;
    position: absolute;
    width: 200%;
    height: 12em;
    animation: waveAnimation 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.3;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: waveAnimation 18s linear reverse infinite;
    opacity: 0.2;
    z-index: 3;
    background: rgba(45, 96, 255, 0.15);
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: waveAnimation 20s -1s reverse infinite;
    opacity: 0.25;
    z-index: 4;
}

@keyframes waveAnimation {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

/* Flowing Color "Ingredients" (Blobs) */
.color-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1.5;
    /* Below waves but above background */
    opacity: 0.15;
    pointer-events: none;
}

.color-blob:nth-of-type(1) {
    background: radial-gradient(circle, #2D60FF 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: flow1 25s ease-in-out infinite alternate;
}

.color-blob:nth-of-type(2) {
    background: radial-gradient(circle, #050540 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
    animation: flow2 35s ease-in-out infinite alternate;
}

.color-blob:nth-of-type(3) {
    background: radial-gradient(circle, #1E59FF 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation: flow3 30s ease-in-out infinite alternate;
}

@keyframes flow1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(150px, 100px) scale(1.2);
    }
}

@keyframes flow2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-200px, -150px) scale(1.3);
    }
}

@keyframes flow3 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(100px, -100px) scale(0.9);
    }
}

/* Responsive Adjustments for Hero Section */
@media (max-width: 991px) {
    .full-w-section {
        padding: 60px 20px 0px 20px;
    }

    .hero-section-main .col-lg-6:first-child {
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-h1 {
        font-size: 42px !important;
        line-height: 50px !important;
    }

    .hero-p {
        font-size: 18px !important;
        line-height: 30px !important;
    }

    .hero-section-main .row {
        align-items: center;
    }

    .points-three {
        padding-left: 0;
        display: inline-block;
        text-align: left;
    }

    .banner-rating .banner-list {
        justify-content: center;
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .hero-h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .hero-section-main {
        padding-top: 50px;
        width: 100%;
    }

    .banner-parent-wrapper {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .full-w-section {
        width: 100%;
        border-radius: 0;
    }

    .hero-section-main img.img-fluid {
        max-width: 80%;
        margin: 30px auto 0;
        display: block;
    }
    .twenty-four{
        font-size: 20px;
    }
    .advantage-left-content h2{
        font-size: 32px;
        text-align: center;
    }
    .twenty-five{
     font-size: 20px;

    }
    .advantage-left-content .many-li li
{
    font-size: 18px;
}
.advantage-left-content .one-li li{
    font-size: 20px;
}
.advantage-left-content .one-li li:before{
    font-size: 20px;
}
.twenty-six {
    font-size: 20px;
    margin-top: 10px;
}
}

/* Continuous scale pulse animation for banner images */
.banner-images img {
    transition: all 0.3s ease;
    animation: scalePulse 2s ease-in-out infinite;
}

/* Different animation delays for staggered effect */
.banner-images img:nth-child(1) {
    animation-delay: 0s;
}
.banner-images img:nth-child(2) {
    animation-delay: 0.3s;
}
.banner-images img:nth-child(3) {
    animation-delay: 0.6s;
}
.banner-images img:nth-child(4) {
    animation-delay: 0.9s;
}

/* Hover effects - stronger scale on hover */
.banner-images img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.25));
    cursor: pointer;
    animation-play-state: paused; /* Pauses continuous animation on hover */
}

/* Continuous scale pulse animation - from normal to slightly bigger and back */
@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}