.define {
            position: relative;
            width: 100%;
            height: 75vh;
            overflow: hidden;
            background: #000;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 900px;
        }

        .slide-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(50px);
            font-family: 'Arial', sans-serif;
            letter-spacing: 2px;
            color: #fff;
            text-transform: uppercase;
            /* text-shadow: 2px 2px 10px rgba(0,0,0,0.7); */
        }

        .carousel-slide.active .slide-title {
            animation: slideUp 1s ease-out 0.3s forwards;
        }

        .slide-description {
            font-size: 1.3rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(30px);
            font-family: 'Arial', sans-serif;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
        }

        .carousel-slide.active .slide-description {
            animation: slideUp 1s ease-out 0.6s forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .carousel-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: #fff;
            transform: scale(1.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            font-size: 2rem;
            padding: 20px 25px;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .carousel-arrow.left {
            left: 20px;
        }

        .carousel-arrow.right {
            right: 20px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .define {
                height: 70vh;
            }

            .slide-title {
                font-size: 2rem;
                margin-bottom: 1rem;
                letter-spacing: 1px;
            }

            .slide-description {
                font-size: 1rem;
                line-height: 1.5;
            }

            .carousel-arrow {
                font-size: 1.5rem;
                padding: 15px 20px;
            }

            .carousel-arrow.left {
                left: 10px;
            }

            .carousel-arrow.right {
                right: 10px;
            }

            .carousel-dots {
                bottom: 20px;
                gap: 10px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .define {
                height: 30vh;
            }

            .slide-title {
                font-size: 1.5rem;
            }

            .slide-description {
                font-size: 0.9rem;
            }

            .carousel-arrow {
                font-size: 1.2rem;
                padding: 10px 15px;
            }
        }