.container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .carousel-section {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            padding: 50px 30px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .carousel-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .tabs-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 15px 35px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--secondary);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .tab-btn:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
        }

        .tab-btn.active {
            background:#d21352 !important;
            color: white;
            border-color: var(--primary);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
        }

        .tab-btn i {
            font-size: 1.3rem;
        }

        .content-container {
            display: flex;
            gap: 40px;
            align-items: center;
            padding: 20px;
        }

        .image-container {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            height: 450px;
            position: relative;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .image-container:hover img {
            transform: scale(1.03);
        }

        .card-content {
            flex: 1;
            padding: 30px;
        }

        .card-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .card-content p {
            font-size: 1.15rem;
            color: var(--secondary);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .feature-list li i {
            color: #10b981;
            font-size: 1.3rem;
            margin-top: 5px;
            flex-shrink: 0;
        }

        .cta-btn {
            display: inline-block;
            padding: 14px 35px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
        }

        .cta-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--secondary);
        }

        .nav-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .indicator-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* Animation classes */
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease forwards;
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { 
                opacity: 0;
                transform: translateX(-30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from { 
                opacity: 0;
                transform: translateX(30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .content-container {
                flex-direction: column;
            }
            
            .image-container {
                width: 100%;
                max-width: 600px;
                height: 350px;
            }
            
            .card-content {
                width: 100%;
                text-align: center;
            }
            
            .feature-list li {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            
             .carousel-section .card-content{
                display:none;
            }
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .tabs-container {
                flex-direction:row;
                align-items: center;
            }
            
            .tab-btn {
                width: 30%;
                max-width: 300px;
                justify-content: center;
                display:flex;
                border-radius:19px;
                  font-size:9px;
            }
            
            .image-container {
                height: 280px;
            }
            
            .card-content h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            
            .tab-btn {
                width: 30%;
                max-width: 300px;
                justify-content: center;
                display:flex;
                font-size:9px;
                border-radius:19px;
            }
            .carousel-section .card-content{
                display:none;
            }
            .carousel-section {
                padding: 30px 15px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .image-container {
                height: 220px;
            }
        }