 :root {
            --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
            --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --accent-color: #8B5CF6;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --bg-light: #F8FAFC;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-screen.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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


.exei-logo img{ width: 100px;}

        /* Gradient Background with Particles */
        .gradient-bg {
  position: relative;
  min-height: 50vh;
  z-index: 1;
  background-image: url(../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}
 



.gradient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
}
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
           background: rgb(218 155 243);
            border-radius: 50%;
            animation: float-particle 8s infinite ease-in-out;
        }

        .particle:nth-child(odd) {
            animation-direction: reverse;
        }

        @keyframes float-particle {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            50% { 
                transform: translateY(-100px) translateX(50px) rotate(180deg);
                opacity: 0.8;
            }
        }

        /* Enhanced Navbar */
        .navbar {
          
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                   }

        .navbar.scrolled .navbar-brand,
        .navbar.scrolled .nav-link {
            color: var(--text-dark) !important;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            transition: width 0.3s ease;
        }

        .navbar-brand:hover::after {
            width: 100%;
        }

        .btn-demo {
            background: linear-gradient(90deg, #9F00E8 0%, #FF4B30 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-demo::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 ease;
        }

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

        .btn-demo:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            color: #000;
        }

.bg-color{background: linear-gradient(rgb(253, 104, 29) 0%, rgb(125, 37, 236) 100%) !important;}

.btn-new-demo {
            background: #000;
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-new-demo::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 ease;
        }

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

        .btn-new-demo:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            color: #000;
        }



        /* Enhanced Hero Section */
        .hero-section {
            padding: 220px 0;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
            padding-bottom: 0px;
        }
        .color-purple{
        color: #A606DA;
        }

        .hero-title {
            font-size: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            color:#000;
            margin-right: auto;
            
        }
          .btn-primary-custom {
    background: transparent;
    color: #A908D5;
    border: none;
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}
.btn-primary-custom i {
        color: #EA3C57;
}
.inhace{
font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #a606da;

}
.inhace p{font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #000;
}
.automation{font-size: 24; color: #000; font-weight: 400;}
.automation-card{box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #EBEBEB;
}
.automation-card{     padding: 10px 25px; border-radius: 8px;}
.container-shape{
 background-color: #fff; padding-bottom: 0px;
 border-top-left-radius: 20px;   /* Top-left corner */
  border-top-right-radius: 20px;  /* Top-right corner */
}
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary-gradient);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .btn-primary-custom:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary-custom:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        /* Floating Elements Enhanced */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float-complex 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 50%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 25%;
            left: 20%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            width: 120px;
            height: 120px;
            top: 70%;
            right: 25%;
            animation-delay: 1s;
        }

        @keyframes float-complex {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
                opacity: 0.3;
            }
            25% { 
                transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-60px) translateX(-10px) rotate(180deg) scale(0.9);
                opacity: 0.8;
            }
            75% { 
                transform: translateY(-30px) translateX(-30px) rotate(270deg) scale(1.2);
                opacity: 0.4;
            }
        }

        /* Enhanced Sections */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .features-section {
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
           box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #E3E3E3;
            position: relative;
            overflow: hidden;
        }
        .feature-card-new{ padding: 0px; border: none; box-shadow: none; }
        .feature-card::before { background:none;}

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            
            transition: left 0.6s ease;
        }
        .feature-card h5{
            font-size: 1.1rem;
             font-weight: 600;
             margin-bottom: 0.5rem;
        }

        .feature-card:hover::before {
            left: 100%;
        }

      

      .feature-card {
  position: relative;
  display: inline-block;
}

.feature-card {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 250px;
}

/* Feature Icon (center circle) */
.feature-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #FFEDF3;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 30px;
  color: #000;
  padding: 14px;
}

        /* Enhanced Stats Section */
        .stats-section {
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            animation: pulse-bg 4s ease-in-out infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .stat-card {
            background: white;
            border-radius: 25px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid #E3E3E3;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

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

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
        }

        .stat-number.counting {
            animation: bounce 0.6s ease;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .stat-label {
            font-size: 22px;
            font-weight: 700;
            color: #000;
            margin-bottom: 15px;
        }

        .stat-description {
            color: #727272;
            font-size: 18px;
            line-height: 1.6;
        }
         .stat-description span {
    color: #000;
    font-weight: 600;
            
        }

        /* Enhanced Section Titles */
        .section-title {
            font-size: 34px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
            width: 100%;
        }

       

        .section-subtitle {
            text-align: center;
            color: #000;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Product Section Enhanced */
     

        .product-section {
            background: white;
            position: relative;
        }

        .product-card {
            background: linear-gradient(145deg, #f8fafc, #e2e8f0);
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 30px;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover::before {
            opacity: 0.05;
        }

        .product-card:hover {
            transform: translateX(15px);
            box-shadow: -10px 20px 50px rgba(139, 92, 246, 0.2);
        }

        .product-image {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }


        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        /* Enhanced Footer */
        .footer {
            background: #000;
            color: white;
            padding: 210px 0 40px;
            position: relative;
            overflow: hidden;
        }

         .footer-curve {
            position: absolute;
            top: -6px;
            left: -81px;
            width: 110%;
            height: 149px;
            background-color: #fff;
            border-bottom-left-radius: 50% 100%;
            border-bottom-right-radius: 50% 100%;
            z-index: 1;
            right: 3px;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gradient);
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            /* margin-top: 100px; */
        }

        .footer-logo img {
           width: 100px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            /* margin-top: 100px; */
        }

        .footer-links li {
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--primary-gradient);
            z-index: 9998;
            transition: width 0.1s ease;
        }

        /* Custom Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }


         @media (max-width: 568px) {
           .feature-card {
            width: 100%;
            }
            .footer-curve{ left: -21px;}
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .feature-card,
            .stat-card {
                padding: 30px 20px;
            }
            
            .product-card {
                padding: 30px 20px;
            }
        }

        /* Ripple Effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            transform: scale(0);
            animation: ripple-animation 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple-animation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Button Hover Glow */
        .btn-glow {
            position: relative;
            overflow: hidden;
        }

        .btn-glow::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }

        .btn-glow:hover::after {
            width: 200px;
            height: 200px;
        }



        /* New Stats Card Design */
           .stats-border{  border-radius: 16px;  background-color:#EFF1FC ; padding: 24px;}
        .stat-card-new {
            background: white;
            border-radius: 16px;
            padding: 27px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            height: 330px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .stat-card-new:hover {
            
            box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
        }

        .stat-card-content {
            flex: 1;
            z-index: 2;
            position: relative;
        }

        .stat-number-large {
            font-size: 74px;
            font-weight: 700;
            color: #ead7f0;
            margin-bottom: 20px;
            line-height: 1;
        }

        .stat-number-large.counting {
            animation: bounce 0.6s ease;
        }

        .stat-label-large {
            font-size: 22px;
            font-weight: 500;
            color:#000;
            line-height: 1.3;
        }

        .stat-description-large {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .stat-card-decoration {
       position: absolute;
       right: -113px;
       top: 50%;
       transform: translateY(-50%);
       width: 328px;
       height: 100%;
       z-index: 1;
       background-image: url(../images/mask.png);
       /* background-size: cover; */
       /* background-position: center; */
       background-repeat: no-repeat;
       }

       

        .stat-card-white {
            background: white;
        }
        .bg-update{ background-color: #FBEFFF !important;}
        .mt10p{ margin-top: 145px;}
        .f-b{ font-weight: 700;}
        .stat-icon-circle {
            position: absolute;
            top: 30px;
            left: 30px;
            width: 124px;
            height: 124px;
            background: #fff;
            border: 12px solid #FFEDF3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--accent-color);
            z-index: 2;
        }

        .stat-icon-circle::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid rgb(237 213 245);
            border-radius: 50%;
            animation: pulse-ring 2s ease-in-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .stat-card-new {
                height: auto;
                padding: 30px;
                flex-direction: column;
                text-align: center;
            }
            
            .stat-card-decoration {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin-top: 20px;
                width: 150px;
                height: 150px;
                align-self: center;
            }
            
            .stat-icon-circle {
                position: relative;
                top: auto;
                right: auto;
                margin-bottom: 20px;
                left: -9px;
            }
            
            .stat-number-large {
                font-size: 3.5rem;
            }
            
            .stat-label-large {
                font-size: 1.2rem;
            }
        }


        /* Horizontal Accordion Slider Styles */
.case-studies-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
}

.accordion-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.accordion-panels {
    display: flex;
    width: 100%;
    height: 100%;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-panel {
    position: relative;
    height: 100%;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    border-radius: 0;
}

.accordion-panel:first-child {
    border-radius: 25px 0 0 25px;
}

.accordion-panel:last-child {
    border-radius: 0 25px 25px 0;
}

.accordion-panel.collapsed {
    flex: 0 0 120px;
}

.accordion-panel.expanded {
    flex: 1;
}

.panel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.accordion-panel:hover .panel-background {
    transform: scale(1.05);
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: opacity 0.5s ease;
}

.accordion-panel.collapsed .panel-overlay {
    opacity: 0.8;
}

.accordion-panel.expanded .panel-overlay {
    opacity: 0.3;
}

.panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.accordion-panel.expanded .panel-content {
    transform: translateY(0);
}

.panel-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    transition: all 0.5s ease;
    z-index: 5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.accordion-panel.expanded .panel-title {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.8);
}

.company-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.panel-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.case-cta-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.case-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Accordion */
@media (max-width: 768px) {
    .accordion-slider {
        height: 400px;
    }
    
    .accordion-panel.collapsed {
        flex: 0 0 80px;
    }
    
    .panel-content {
        padding: 20px;
    }
    
    .panel-title {
        font-size: 1rem;
    }
    
    .company-logo {
        width: 80px;
    }
    
    .panel-description {
        font-size: 0.95rem;
    }
    
    .main-product-image {
        height: 300px;
    }
    
    .product-thumbnails {
        gap: 10px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .main-product-image::after {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}







        .horizontal-accordion {
            display: flex;
            gap: 1rem;
            height: 500px;
            margin-top: 2rem;
        }

        .accordion-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
            min-width: 80px;
        }

        .accordion-card.collapsed {
            flex: 0 0 80px;
        }

        .accordion-card.expanded {
            flex: 1;
        }

        .card-content {
            height: 100%;
            display: flex;
            position: relative;
            justify-content: end;
        }

        /* Left FAQ Area */
        .faq-area {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            transition: all 0.6s ease;
            overflow-y: auto;
             background: transparent;
        }

        .collapsed .faq-area {
            opacity: 0;
            transform: translateX(-20px);
            pointer-events: none;
        }

        .expanded .faq-area {
            opacity: 1;
            transform: translateX(0);
        }

        /* FAQ Styling */
        .faq-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 0.5rem;
        }

        .faq-question {
            width: 100%;
             background: transparent;
            border: none;
            padding: 1rem 0;
            text-align: left;
            font-size: 22px;
            font-weight: 600;
            color: #000;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: #A606DA;
        }

        .faq-question.active {
            color: #A606DA;
        }

        .fnt-14p{ font-size: 12px;}

        .faq-icon {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 0 0 1rem 0;
        }

        .faq-answer-content {
               color: #727272;
                line-height: 26px;
                font-size: 16px;
        }

        /* Right Image Area */
        .image-area {
            flex: 0 0 400px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s ease;
            background: transparent;
        }
        .see-how{ color: #000; font-size: 16px; margin-top:10px; line-height: 30px; text-decoration: underline;}

        

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .accordion-card:hover .card-image {
            transform: scale(1.05);
        }

        /* Collapsed State - Vertical Title */
        .vertical-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-90deg);
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            white-space: nowrap;
            transition: opacity 0.3s ease;
            z-index: 10;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            background: transparent;
        }

        .expanded .vertical-title {
            opacity: 0;
            pointer-events: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .horizontal-accordion {
                flex-direction: column;
                height: auto;
                gap: 1rem;
            }
            .prospecting-content {
                display: grid;
                grid-template-columns: none !important;
                 gap: 4rem;
                 align-items: center;
                margin-bottom: 0rem;
}
            .mt10p {
    margin-top: 0px;
}
.btn-demo{ padding: 8px 10px;}
            .container-shape {
                padding: 20px;
            }

            .accordion-card {
                height: auto;
                min-height: 120px;
                min-width: auto;
            }

            .accordion-card.collapsed,
            .accordion-card.expanded {
                flex: none;
                min-height: 120px;
            }

            .card-content {
                flex-direction: column;
            }

            .faq-area {
                padding: 1rem;
                order: 2;
            }

            .image-area {
                flex: 0 0 120px;
                order: 1;
            }

            .collapsed .image-area {
                flex: 0 0 120px;
            }

            .vertical-title {
                display: none;
            }

            .collapsed .faq-area {
                opacity: 1;
                transform: none;
                pointer-events: auto;
            }

            .faq-title {
                font-size: 1.2rem;
            }
        }

        /* Loading Animation */
        .accordion-card {
            animation: slideUp 0.6s ease forwards;
        }

        .accordion-card:nth-child(1) { animation-delay: 0.1s; }
        .accordion-card:nth-child(2) { animation-delay: 0.2s; }
        .accordion-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


.nav-var-header{
    display: block !important;
    flex: none;
}
.all-cta-btn{
    width: 25%;
    margin: 0 auto;
    margin-top: 30px;
}

#demoModal .modal-content {
        border-radius: 12px;
        border: none;
        background-color: #f5f5f5;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    #demoModal .modal-header {
        border-bottom: 1px solid #eee;
        padding: 1.5rem;
    }
    
    #demoModal .modal-title {
        font-weight: 600;
        color: #333;
    }
    
    #demoModal .modal-body {
        padding: 1.5rem;
    }
    
    #demoRequestForm .form-label {
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #555;
    }
    
    #demoRequestForm .form-control, 
    #demoRequestForm .form-select {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
    
    #demoRequestForm .form-control:focus, 
    #demoRequestForm .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    
    #demoRequestForm .btn-primary {
          background: linear-gradient(90deg, #9F00E8 0%, #FF4B30 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
        font-weight: 500;
       border: none;
        margin-top: 1rem;
    }
    
    #demoRequestForm .btn-primary:hover {
        background-color: #0b5ed7;
    }

    .ekit-wid-con .ekit-form form input:not([type=submit]):not([type=checkbox]):not([type=radio]), .ekit-wid-con .ekit-form form textarea {
    margin-bottom:10px !important;
}
.ekit-wid-con .ekit-form .wpcf7 .wpcf7-spinner {
    position: absolute;
    opacity: 1;
    background: transparent;
    right: 0;
    top: 0;
    left: 0;
    /* margin-right: -38px; */
    border: 2px solid var(--color-neutral-transparent);
    box-sizing: content-box;
    margin: 0 auto !important;
    text-align: center;
}



  /* AI Agent for Prospecting Section */
        .prospecting-section {
            padding: 60px 0 80px;
            color: white;
        }

        .prospecting-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 0rem;
        }

        .prospecting-text h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color:#a606da;
        }

        .prospecting-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color:#000;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-box-new {
            padding: 1.5rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
             border: 1px solid #E3E3E3;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
        }

        .feature-icon-new {
           
              width: 80px;
                height: 80px;
                background: #fff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                border: 8px solid #FFEDF3;
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
                overflow: hidden;
                margin-bottom: 30px;
                color:#000;
          
        }

        .feature-box-new h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-box-new p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin: 0;
        }

        .prospecting-image {
            position: relative;
           
        }

        .prospecting-image img {
            width: 100%;
            height: auto;
            border-radius: 16px;
        }

        .conversion-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: white;
            color: #333;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            min-width: 180px;
        }

        .conversion-badge h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #4F46E5;
            margin-bottom: 0.25rem;
        }

        .conversion-badge p {
            font-size: 0.8rem;
            color: #64748b;
            margin: 0;
        }

        .w-8 {
    width: 2rem;
}
.h-8 {
    height: 2rem;
}

.star-img{ width: 100%;}
.star-img img{ width: 100%;}




.stat-card-img-section{
            background: white;
            border-radius: 16px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            min-height: 330px;
            position: relative;
            overflow: hidden;
            justify-content: space-between;
        }

        .stat-card-img-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
        }

        .img-border {
    border-radius: 16px;
    background-color: #EFF1FC;
    padding: 15px;
display: flex;
    flex-direction: column;
    height: 100%;
}
.stat-card-img-content {
    flex: 1;
    z-index: 2;
    position: relative;
    padding: 15px;
   
}

.business-impact {
    background: #f9f1f0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #bc4687;
}

.stat-description-large-img {
    color:#000;
    font-size: 1rem;
    line-height: 1.6;
    min-height: 130px;
}

.border-bottom{ border: 10px solid #FBEFFF;}

.modal-backdrop{ z-index: 999 !important;}
.modelmargin{ margin-top: 200px;}

.modelmargin .modal-dialog{ z-index: 999 !important;}
.btn-close-new{ 
    position: absolute;
    z-index: 999999;
    right: 43px;
    top: 140px;
} 

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99 !important;
}

 @media (max-width: 768px) {
            .modelmargin{ margin-top: 100px;
           margin-left: 40px;
            }
            .btn-close-new {
   
    top: 40px;
}
 }