.hero-gradient {
    background: linear-gradient(135deg, rgb(232 222 255 / 10%) 0%, rgba(59, 130, 246, 0.1) 25%, rgb(255 221 253 / 10%) 50%, rgb(233 234 211 / 10%) 75%, rgb(253 176 214 / 10%) 100%);
    height: 35rem;
    position: relative;
    overflow: hidden;
}

.section-gradient {
    background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.05) 0%,
            rgba(59, 130, 246, 0.05) 50%,
            rgba(16, 185, 129, 0.05) 100%);
}

/* Floating Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.bg-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #8b5cf6, #3b82f6);
    top: 30%;
    left: 29%;
    animation-delay: 0s;
    filter: c;
    filter: blur(89px);
}

.bg-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #6943a6, #ff9b8b);
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.bg-shape:nth-child(3) {
    width: 150px;
    height: 260px;
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    bottom: 90%;
    left: 63%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Navigation Enhancements */


/* Button Styles */
.btn-gradient {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    border: none;
    color: white;
    padding: 0px 29px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    height: 60px;
}

.btn-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s;
    
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Typography Enhancements */
.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), #d644ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

/* Form Elements */
.custom-input {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Card Enhancements */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-card {
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border-left: 5px solid var(--primary-color);
    position: relative;
    margin: 2rem 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Animated Testimonials Carousel Styles */
.testimonials-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    padding: 6rem 0;
    position: relative;
    height: 44rem;
    display: flex;
    align-items: center;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ec4899);
    border-radius: 2px;
}

/* Testimonial Container */
.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonials-section .testimonial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow:
        0 20px 40px rgba(139, 92, 246, 0.1),
        0 10px 20px rgba(139, 92, 246, 0.05),
        0 4px 8px rgba(139, 92, 246, 0.02);
    opacity: 0;
    transform: translate(-50%, -50%) translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 700px;
    width: 100%;
    z-index: 10;
}

.testimonials-section .testimonial-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0);
    z-index: 15;
}

.testimonials-section .testimonial-card.prev {
    transform: translate(-50%, -50%) translateX(-100px);
    opacity: 0;
    z-index: 5;
}

/* Layered shadow effect */
.testimonials-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 25px;
    transform: translate(8px, 8px);
    z-index: -1;
    opacity: 0.3;
}

.testimonials-section .testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 25px;
    transform: translate(4px, 4px);
    z-index: -1;
    opacity: 0.6;
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 900;
    z-index: 20;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
        opacity: 0.15;
    }
}

.testimonial-content {
    position: relative;
    z-index: 10;
}

.testimonials-section .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonials-section .testimonial-author {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.author-name {
    color: var(--primary-color);
    font-weight: 600;
}

.author-title {
    color: #9ca3af;
    font-weight: 400;
}

/* User avatars */
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

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

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation dots */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.nav-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.nav-dot:hover {
    background: rgba(139, 92, 246, 0.6);
}

/* Background decorative elements */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 1;
    animation: floatBg 20s ease-in-out infinite;
}

.bg-decoration:nth-child(1) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-decoration:nth-child(2) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ec4899, transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 10s;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Auto-play animation */
.testimonials-section .testimonial-card.animate-in {
    animation: slideInFloat 1s ease-out;
}

.testimonials-section .testimonial-card.animate-out {
    animation: slideOutFloat 0.8s ease-in forwards;
}

@keyframes slideInFloat {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(150px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0) scale(1);
    }
}

@keyframes slideOutFloat {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) translateX(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateX(-150px) scale(0.9);
    }
}

/* Hover effects */
.testimonials-section .testimonial-card:hover {
    transform: translate(-50%, -50%) translateY(-5px);
    box-shadow:
        0 25px 50px rgba(139, 92, 246, 0.15),
        0 15px 30px rgba(139, 92, 246, 0.08),
        0 5px 15px rgba(139, 92, 246, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-section .testimonial-card.active:hover {
    transform: translate(-50%, -50%) translateY(-5px);
}

/* Responsive design for testimonial carousel */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-section .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .testimonials-section .testimonial-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .testimonials-section .testimonial-text {
        font-size: 1.1rem;
    }

    .quote-icon {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }

    .testimonial-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .testimonials-section .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-section .testimonial-text {
        font-size: 1rem;
    }

    .testimonials-section .section-title {
        font-size: 1.5rem;
    }
}

/* Logo and Image Elements */
.partner-logo {
    /* width: 80px; */
    height: 190px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-100);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.partner-logo:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.partner-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.customer-logo {
    background: white;
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.customer-logo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.customer-logo:hover::after {
    transform: scaleX(1);
}

.customer-logo:hover {
    transform: translateY(-5px);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.dashboard-tab {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-tab:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

/* .chart-placeholder {
            background: linear-gradient(135deg,
                    var(--primary-color),
                    var(--secondary-color));
            border-radius: 10px;
            padding: 1rem;
            color: white;
            margin: 1rem 0;
            position: relative;
            overflow: hidden;
        } */

.eodtext-clr {

    color: var(--text-primary);
}

/* .chart-placeholder::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg,
                    transparent 30%,
                    rgba(255, 255, 255, 0.1) 50%,
                    transparent 70%);
            animation: shimmer 2s infinite;
        } */

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

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

/* Footer Enhancements */
.footer {
    background: linear-gradient(135deg, #f5f7fe, #e9e8ff);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
}

.footer h6 {
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.footer h6::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-link:hover {
    padding-left: 5px;
    color: var(--text-primary);
    font-weight: 600;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Animation Classes with GSAP Integration */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.gsap-animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GSAP ScrollTrigger Styles */
.gsap-animate {
    will-change: transform, opacity;
}

/* Smooth scrolling optimization */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations for animations and smooth scrolling */
.bg-shape,
.floating-bg-element,
.floating-icon,
.floating-particle,
.fade-in {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* Prevent layout shift during animations */
.fade-in,
.feature-card,
.customer-logo {
    contain: layout style paint;
}

/* Smooth scrolling performance */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enhanced scroll feel */
* {
    -webkit-overflow-scrolling: touch;
}

body {
    /* Enhanced smooth scrolling settings */
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar styling for better feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #8b5cf6, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #7c3aed, #2563eb);
}

/* Performance hint for scroll animations */
.scroll-container {
    contain: layout style paint;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #1ad3bb);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

/* Enhanced scroll velocity effects */
:root {
    --scroll-velocity: 0;
}

.scroll-velocity-parallax {
    transform: translate3d(0, calc(var(--scroll-velocity) * 0.5px), 0);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light-gradient {
    background: linear-gradient(135deg, var(--background-light), #e2e8f0);
}

/* Loading States */
.loading {
    position: relative;
    color: transparent !important;
}

.eodpy-section {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-tabs {
        justify-content: center;
    }

    .feature-card {
        margin-bottom: 2rem;
    }



    .btn-gradient,
    .btn-outline-gradient {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .dashboard-mockup {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {


    .hero-gradient,
    .section-gradient {
        background: white !important;
    }

    .feature-card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

    .hero-gradient,
    .section-gradient {
        background: white;
    }

    .btn-gradient {
        background: var(--primary-color);
        border: 2px solid var(--text-primary);
    }

    .feature-card {
        border: 2px solid var(--text-primary);
    }
}

/* Reduced Motion - Disable GSAP animations if user prefers */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .bg-shape,
    .floating-bg-element,
    .floating-icon,
    .floating-particle {
        animation: none !important;
        transform: none !important;
    }

    .fade-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gsap-animate {
        transform: none !important;
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Floating Icons Animation Styles */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    z-index: 3;
    animation: floatIcon 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.floating-icon.blurred {
    filter: blur(2px) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    opacity: 0.7;
}

.floating-icon.heavy-blur {
    filter: blur(4px) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    opacity: 0.5;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(5px) rotate(2deg);
    }

    50% {
        transform: translateY(-30px) translateX(-5px) rotate(-2deg);
    }

    75% {
        transform: translateY(-15px) translateX(3px) rotate(1deg);
    }
}

/* Enhanced background elements for hero section */
.floating-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: floatBg 12s ease-in-out infinite;
    z-index: 2;
}

.floating-bg-element:nth-child(4) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
            rgba(139, 92, 246, 0.3),
            transparent);
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.floating-bg-element:nth-child(5) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.3),
            transparent);
    top: 50%;
    right: -120px;
    animation-delay: 3s;
}

.floating-bg-element:nth-child(6) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(16, 185, 129, 0.3),
            transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes floatBg {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translateY(20px) translateX(-15px) rotate(240deg) scale(0.9);
    }
}

/* Interactive hover effects */
.floating-icon:hover {
    transform: scale(1.3) translateY(-10px) !important;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25)) brightness(1.2);
    z-index: 10;
}

/* Particle effects */
.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    z-index: 2;
    animation: particleFloat 20s linear infinite;
}

.floating-particle:nth-child(7) {
    left: 15%;
    animation-delay: 0s;
    background: rgba(139, 92, 246, 0.4);
}

.floating-particle:nth-child(8) {
    left: 30%;
    animation-delay: 4s;
    background: rgba(59, 130, 246, 0.5);
}

.floating-particle:nth-child(9) {
    left: 45%;
    animation-delay: 8s;
    background: rgba(16, 185, 129, 0.4);
}

.floating-particle:nth-child(10) {
    left: 60%;
    animation-delay: 12s;
    background: rgba(245, 158, 11, 0.5);
}

.floating-particle:nth-child(11) {
    left: 75%;
    animation-delay: 16s;
    background: rgba(236, 72, 153, 0.4);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive adjustments for floating icons */
@media (max-width: 768px) {
    .floating-icon {
        font-size: 2rem;
    }

    .floating-icon:nth-child(n + 8) {
        display: none;
    }

    .floating-bg-element {
        width: 150px !important;
        height: 150px !important;
    }
}

.service-sticky-section {
    background: ghostwhite;
}

/* dfsfd */
/* CSS - Fixed & Optimized */
.sticky-wrapper {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    align-items: start;
}


.content-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
    /* We animate images only, text stays visible */
    margin-bottom: 3rem;
}

.text-content {
    max-width: 560px;
}

.text-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0F172A;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 10px 27px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

/* Sticky Image */
.sticky-image {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    /* box-shadow: 0 25px 50px rgba(0,0,0,0.2); */
    top: 50%;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    transition: none !important;
    border: 5px solid white;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sticky-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .sticky-image {
        position: relative;
        top: auto;
        transform: none;
        height: 55vh;
        margin: 3rem 0;
    }

    .content-section {
        min-height: 60vh;
        text-align: center;
        justify-content: center;
    }

    .text-content h2 {
        font-size: 2.5rem;
    }
}