.carousel-container {
            position: relative;
            width: 100%;
            height: 70vh;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            /* margin-top: 50px; */
        }
        
        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .carousel-slide .bg-image {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* filter: brightness(0.6); */
            animation: zoomIn 10s ease-out forwards;
        }

        .carousel-slide .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%); */
            z-index: 1;
        }

        .carousel-content {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 3;
            padding: 40px;
        }

        .animated h1 {
            font-size: 30px;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
            opacity: 0;
            animation: slideInDown 1s ease-out 0.3s forwards;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        

        .animated p {
            font-size: 16px;
            color: #e0e0e0;
            max-width: 600px;
            margin-bottom: 30px;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.5s forwards;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
            line-height: 1.6;
        }

        .animated .cta-button {
            padding: 0px 20px;
            font-size: 15px;
            background: #213f33;
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            animation: fadeInScale 1s ease-out 0.7s forwards;
            transition: all 0.3s ease;
            
        }

        .animated .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(252, 210, 42, 0.5);
        }

        @keyframes zoomIn {
            from {
                transform: scale(1.1);
            }
            to {
                transform: scale(1);
            }
        }

        @keyframes slideInDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeInScale {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .carousel-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 5;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: #ff6b6b;
            width: 30px;
            border-radius: 6px;
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        .carousel-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 4;
            pointer-events: none;
        }

        .carousel-btn {
            width: 25px;
            height: 25px;
            background: rgba(0, 0, 0, 0);
            border: 2px solid rgba(255, 255, 255, 0);
            color: white;
            font-size: 16px;
            cursor: pointer;
            border-radius: 30%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .carousel-btn:hover {
            background: rgba(255, 107, 107, 0.8);
            border-color: #ff6b6b;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .carousel-controls {
                bottom: 30px;
                gap: 12px;
            }

            .carousel-arrows {
                padding: 0 15px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .carousel-content {
                padding: 20px;
            }

            .animated .cta-button {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            .carousel-container {
                position: relative;
                width: 100%;
                height: 14vh;
                overflow: hidden;
                background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            
            }
        }

        @media (max-width: 480px) {
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .carousel-controls {
                bottom: 20px;
                gap: 10px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .dot.active {
                width: 25px;
            }
            .carousel-container {
                position: relative;
                width: 100%;
                height: 14vh;
                overflow: hidden;
                background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            
            }
        }