.hero-section-2 {
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(0deg, #EAE9FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.hero-section-2-faq {
    /* padding-top: 100px; */
    /* padding-bottom: 80px; */
    background: linear-gradient(0deg, #EAE9FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 80px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: "poppins", sans-serif;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: jumpLetter 0.5s ease forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.15s; }
.hero-title span:nth-child(3) { animation-delay: 0.2s; }
.hero-title span:nth-child(4) { animation-delay: 0.25s; }
.hero-title span:nth-child(5) { animation-delay: 0.3s; }
.hero-title span:nth-child(6) { animation-delay: 0.35s; }
.hero-title span:nth-child(7) { animation-delay: 0.4s; }
.hero-title span:nth-child(8) { animation-delay: 0.45s; }
.hero-title span:nth-child(9) { animation-delay: 0.5s; }
.hero-title span:nth-child(10) { animation-delay: 0.55s; }
.hero-title span:nth-child(11) { animation-delay: 0.6s; }
.hero-title span:nth-child(12) { animation-delay: 0.65s; }
.hero-title span:nth-child(13) { animation-delay: 0.7s; }
.hero-title span:nth-child(14) { animation-delay: 0.75s; }
.hero-title span:nth-child(15) { animation-delay: 0.8s; }
.hero-title span:nth-child(16) { animation-delay: 0.85s; }
.hero-title span:nth-child(17) { animation-delay: 0.9s; }

.hero-subtitle {
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-hero-demo {
    background-color: #1640D6;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn-hero-demo:hover {
    background-color: #1134b0;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 0.8s ease 1.5s forwards;
}

.features-split-section {
    background-color: #FEFEFF;
    /* padding-bottom: 60px; */
}

.space-top-bottom11 {
    /* padding-top: 80px; */
    padding-bottom: 80px;
}

.feature-title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    line-height: 40px;
}

.feature-text {
    font-size: 24px;
    line-height: 1.7;
    color: #000;
}

.feature-img-wrapper img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-banner {
    background: linear-gradient(90deg, 
        #1E59FF 0%, 
        #2A6AFF 33%, 
        #123599 66%, 
        #1E59FF 100%);
    background-size: 200% 200%;
    padding: 25px 0;
    color: #fff;
    width: 100%;
    font-size: 32px;
    position: relative;
    overflow: hidden;
    animation: gradientSlide 6s ease infinite;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: sparkle 4s linear infinite;
}

.banner-text {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes sparkle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Animations */
@keyframes jumpLetter {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.first-title-coun{
    color: #1849D3;
    font-size: 30px;
    font-weight: bold
}
.faq-hero{
    width: 80%;
    border-radius: 24px;
    margin-bottom: 40px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.035));
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title span {
        transform: translateY(20px);
    }
    
    @keyframes jumpLetter {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        50% {
            transform: translateY(-5px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-subtitle {
        font-size: 18px;
    }

    .feature-title {
        font-size: 26px;
    }
     .feature-text{
        font-size: 18px;
     }
    .banner-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title span {
        transform: translateY(15px);
    }
    
    @keyframes jumpLetter {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }
        50% {
            transform: translateY(-3px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile view: Images above, content below */
@media (max-width: 992px) {
    /* For grow-your-gym section */
    .grow-your-gym .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .grow-your-gym .item-img {
        order: 1;
        margin-bottom: 20px;
    }
    
    .grow-your-gym .item-content {
        order: 2;
    }
    
    /* For features-split-section blocks */
    .features-split-section .row.align-items-center {
        flex-direction: column;
    }
    
    /* Ensure all image columns come first on mobile */
    .features-split-section .col-lg-6:has(.feature-img-wrapper) {
        order: 1 !important;
    }
    
    .features-split-section .col-lg-6:has(.feature-title) {
        order: 2 !important;
        margin-top: 30px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Remove specific padding for mobile */
    .features-split-section .ps-lg-5,
    .features-split-section .pe-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Force image to be above content in all scenarios */
    .features-split-section .order-lg-1,
    .features-split-section .order-lg-2,
    .features-split-section .order-1,
    .features-split-section .order-2 {
        order: 1 !important; /* Image first */
    }
    
    .features-split-section .col-lg-6:not(:has(.feature-img-wrapper)) {
        order: 2 !important; /* Content second */
        margin-top: 30px;
    }
}

/* For better mobile experience on smaller screens */
@media (max-width: 576px) {
    .grow-your-gym .item {
        margin-bottom: 40px;
    }
    
    .grow-your-gym .item:last-child {
        margin-bottom: 0;
    }
    
    .features-split-section .col-lg-6:has(.feature-img-wrapper) {
        margin-bottom: 20px;
    }
    
    .features-split-section .row {
        margin-bottom: 40px !important;
    }
    
    .features-split-section .row:last-child {
        margin-bottom: 0 !important;
    }
}


/* Smooth scroll reveal animations */
.grow-your-gym .col-md-4,
.features-split-section .row {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Animation classes to be added via JavaScript */
.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stagger animation for grow-your-gym blocks */
.grow-your-gym .col-md-4:nth-child(1) { transition-delay: 0.1s; }
.grow-your-gym .col-md-4:nth-child(2) { transition-delay: 0.2s; }
.grow-your-gym .col-md-4:nth-child(3) { transition-delay: 0.3s; }

/* Stagger animation for features-split-section blocks */
.features-split-section .row:nth-child(1) { transition-delay: 0.1s; }
.features-split-section .row:nth-child(2) { transition-delay: 0.2s; }
.features-split-section .row:nth-child(3) { transition-delay: 0.3s; }
.features-split-section .row:nth-child(4) { transition-delay: 0.4s; }
.features-split-section .row:nth-child(5) { transition-delay: 0.5s; }
.features-split-section .row:nth-child(6) { transition-delay: 0.6s; }

/* Image animations within blocks */
.features-split-section .feature-img-wrapper img,
.grow-your-gym .item-img img {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease 0.3s;
}

.animate-visible .feature-img-wrapper img,
.animate-visible .item-img img {
    opacity: 1;
    transform: scale(1);
}

/* Content animations */
.features-split-section .feature-title,
.grow-your-gym .item-content h6 {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.4s;
}

.features-split-section .feature-text,
.grow-your-gym .item-content p {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.5s;
}

.animate-visible .feature-title,
.animate-visible .item-content h6,
.animate-visible .feature-text,
.animate-visible .item-content p {
    opacity: 1;
    transform: translateX(0);
}

/* For blocks with image on right side (even children) */
.features-split-section .row:nth-child(even) .feature-title,
.features-split-section .row:nth-child(even) .feature-text {
    transform: translateX(20px);
}

.features-split-section .row:nth-child(even).animate-visible .feature-title,
.features-split-section .row:nth-child(even).animate-visible .feature-text {
    transform: translateX(0);
}