:root {
            --primary: #4f46e5;
            --primary-dark: #3730a3;
            --accent: #f59e0b;
            --bg-light: #f8fafc;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --white: #ffffff;
            --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            --card-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
            --shape-1: #e0e7ff;
            --shape-2: #fef3c7;
            --shape-3: #d1fae5;
            --shape-4: #fce7f3;
            --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        }

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

       

        /* ──────────────── Main Section Container ──────────────── */
        .modern-business-section {
            position: relative;
            width: 100%;
            max-width: 1170px;
            background: var(--white);
            border-radius: 28px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            padding: 20px 20px;
            transition: box-shadow var(--transition-smooth);
            z-index: 1;
        }

        .modern-business-section:hover {
            box-shadow: var(--card-shadow-hover);
        }

        /* ──────────────── Floating Background Shapes ──────────────── */
        .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.5;
            filter: blur(60px);
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }

        .shape-1 {
            width: 280px;
            height: 280px;
            background: var(--shape-1);
            top: -80px;
            left: -60px;
            animation: floatShape1 10s infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--shape-2);
            bottom: -50px;
            left: 25%;
            animation: floatShape2 12s infinite;
        }

        .shape-3 {
            width: 240px;
            height: 240px;
            background: var(--shape-3);
            top: 30%;
            right: -70px;
            animation: floatShape3 11s infinite;
        }

        .shape-4 {
            width: 160px;
            height: 160px;
            background: var(--shape-4);
            bottom: 15%;
            right: 15%;
            animation: floatShape4 9s infinite;
        }

        .shape-5 {
            width: 120px;
            height: 120px;
            background: #ede9fe;
            top: 10%;
            left: 45%;
            animation: floatShape1 8s infinite reverse;
        }

        @keyframes floatShape1 {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(30px, -25px) scale(1.08);
            }
            50% {
                transform: translate(-15px, 20px) scale(0.94);
            }
            75% {
                transform: translate(20px, 15px) scale(1.04);
            }
        }

        @keyframes floatShape2 {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(-25px, -20px) scale(1.1);
            }
            50% {
                transform: translate(20px, -10px) scale(0.9);
            }
            75% {
                transform: translate(-10px, 25px) scale(1.05);
            }
        }

        @keyframes floatShape3 {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(-30px, 25px) scale(1.07);
            }
            66% {
                transform: translate(15px, -20px) scale(0.93);
            }
        }

        @keyframes floatShape4 {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(25px, 30px) scale(1.12);
            }
        }

        /* Hover effect on section amplifies shape movement */
        .modern-business-section:hover .shape-1 {
            transform: translate(45px, -35px) scale(1.15);
            opacity: 0.65;
        }
        .modern-business-section:hover .shape-2 {
            transform: translate(-30px, -28px) scale(1.18);
            opacity: 0.6;
        }
        .modern-business-section:hover .shape-3 {
            transform: translate(-40px, 30px) scale(1.12);
            opacity: 0.6;
        }
        .modern-business-section:hover .shape-4 {
            transform: translate(35px, 40px) scale(1.2);
            opacity: 0.55;
        }
        .modern-business-section:hover .shape-5 {
            transform: translate(-20px, -30px) scale(1.1);
            opacity: 0.6;
        }

        /* ──────────────── Row & Columns ──────────────── */
        .section-row {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
        }

        .content-col {
            flex: 1 1 500px;
            min-width: 300px;
            animation: fadeInLeft 0.8s ease forwards;
        }

        .carousel-col {
            flex: 1 1 500px;
            min-width: 300px;
            animation: fadeInRight 0.8s ease forwards;
        }

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

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

        /* ──────────────── Left Content Styles ──────────────── */
        .content-col .badge {
            display: inline-block;
            background: #eef2ff;
            color: #0f263a;
            font-weight: 600;
            /*font-size: 0.85rem;*/
            padding: 7px 18px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            transition: all var(--transition-smooth);
            cursor: default;
        }

        .content-col .badge:hover {
            background: #0f263a;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
        }

        .content-col h2 {
            font-size: 2em;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 18px;
            transition: color var(--transition-smooth);
        }

        .content-col h2 .highlight {
            color: #fea435;
            position: relative;
            display: inline-block;
            transition: all var(--transition-smooth);
        }

        .content-col h2 .highlight::after {
            content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  opacity: 0.55;
  border-radius: 4px;
  z-index: -1;
  transition: all var(--transition-smooth);
        }

        .content-col:hover h2 .highlight::after {
            height: 5px;
            bottom: -2px;
            opacity: 0.5;
        }

        .content-col .description {
            /*font-size: 1.05rem;*/
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 28px;
            /*max-width: 480px;*/
            transition: color var(--transition-smooth);
        }

        .content-col .feature-list {
            list-style: none;
            margin-bottom: 30px;
            padding: 0;
        }

        .content-col .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 12px;
            padding: 10px 16px;
            border-radius: 12px;
            transition: all var(--transition-smooth);
            cursor: default;
            background: transparent;
        }

        .content-col .feature-list li:hover {
            background: #f8fafc;
            transform: translateX(8px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .content-col .feature-list li .icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #eef2ff;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
            transition: all var(--transition-bounce);
        }

        .content-col .feature-list li:hover .icon-circle {
            background: var(--primary);
            color: #fff;
            transform: scale(1.15) rotate(10deg);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #0f263a;
            color: #fff;
            font-weight: 600;
            /*font-size: 1rem;*/
            padding: 14px 30px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
            letter-spacing: 0.3px;
        }

        .cta-button:hover {
            background: #fea435;
            color: #fff;
            font-size: 14px;
            transform: translateY(-4px);
            box-shadow: 0 14px 35px rgba(79, 70, 229, 0.45);
            gap: 14px;
        }

        .cta-button .arrow {
            transition: transform var(--transition-smooth);
            font-size: 1.2rem;
        }
        .cta-button:hover .arrow {
            transform: translateX(5px);
        }

        /* ──────────────── Right Carousel Styles ──────────────── */
        .carousel-wrapper {
            position: relative;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all var(--transition-smooth);
            aspect-ratio: 4 / 3;
            background: #e2e8f0;
        }

        /*.carousel-wrapper:hover {*/
        /*    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);*/
        /*    transform: translateY(-5px);*/
        /*}*/

        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            /*transition: transform 0.6s ease;*/
        }

        /*.carousel-wrapper:hover .carousel-slide img {*/
        /*    transform: scale(1.04);*/
        /*}*/

        /* Carousel Navigation Arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 5;
            font-size: 1.2rem;
            color: var(--text-dark);
            display: none;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(6px);
            opacity: 0;
        }

        .carousel-wrapper:hover .carousel-arrow {
            opacity: 1;
        }

        .carousel-arrow:hover {
            background: #fff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-50%) scale(1.1);
        }
        .carousel-arrow:active {
            transform: translateY(-50%) scale(0.94);
        }
        .carousel-arrow.prev {
            left: 14px;
        }
        .carousel-arrow.next {
            right: 14px;
        }

        /* Dots Indicator */
        .carousel-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }

        .carousel-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.55);
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: 2px solid transparent;
        }

        .carousel-dots .dot.active {
            background: #fff;
            width: 30px;
            border-radius: 20px;
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .carousel-dots .dot:hover {
            background: rgba(255, 255, 255, 0.85);
            transform: scale(1.3);
        }

        /* ──────────────── Responsive Breakpoints ──────────────── */
        @media (max-width: 1024px) {
            .modern-business-section {
                padding: 45px 35px;
                border-radius: 22px;
            }
            .section-row {
                gap: 35px;
            }
            .content-col h2 {
                /*font-size: clamp(1.5rem, 3vw, 2rem);*/
            }
            .carousel-wrapper {
                aspect-ratio: 4 / 3;
            }
        }

        @media (max-width: 768px) {
            .modern-business-section {
                padding: 30px 22px;
                border-radius: 18px;
            }
            .section-row {
                flex-direction: column;
                gap: 30px;
            }
            .content-col {
                text-align: center;
                animation: fadeInUp 0.7s ease forwards;
            }
            .carousel-col {
                animation: fadeInUp 0.7s ease 0.15s forwards;
                opacity: 0;
            }
            
            .carousel-col {
                  flex: 1 1 0px;
                  min-width: 300px;
                  animation: fadeInRight 0.8s ease forwards;
                }
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            .content-col .description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .content-col .feature-list {
                display: inline-block;
                text-align: left;
            }
            .content-col .feature-list li:hover {
                transform: translateX(5px);
            }
            .carousel-wrapper {
                aspect-ratio: 16 / 10;
                max-width: 550px;
                margin: 0 auto;
            }
            .carousel-arrow {
                opacity: 1;
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .carousel-arrow.prev {
                left: 8px;
            }
            .carousel-arrow.next {
                right: 8px;
            }
            .shape-1 {
                width: 180px;
                height: 180px;
                top: -40px;
                left: -30px;
            }
            .shape-2 {
                width: 130px;
                height: 130px;
                bottom: -30px;
            }
            .shape-3 {
                width: 160px;
                height: 160px;
                right: -40px;
            }
            .shape-4 {
                width: 100px;
                height: 100px;
            }
            .shape-5 {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 480px) {
            .modern-business-section {
                padding: 22px 14px;
                border-radius: 14px;
            }
            .section-row {
                gap: 22px;
            }
            .content-col h2 {
                font-size: 22px;
            }
            .content-col .description {
                /*font-size: 0.9rem;*/
            }
            .content-col .feature-list li {
                font-size: 0.85rem;
                padding: 8px 12px;
                gap: 8px;
            }
            .cta-button {
                padding: 5px 15px;
                font-size: 14px;
            }
            .carousel-wrapper {
                aspect-ratio: 4 / 3;
            }
            .carousel-dots .dot {
                width: 8px;
                height: 8px;
            }
            .carousel-dots .dot.active {
                width: 24px;
            }
        }

        /* Reduced motion preference */
        @media (prefers-reduced-motion: reduce) {
            .shape {
                animation-duration: 20s !important;
            }
            .content-col,
            .carousel-col {
                animation: none !important;
                opacity: 1 !important;
            }
            .carousel-track {
                transition-duration: 0.2s !important;
            }
        }