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

        .banner-showcase {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .showcase-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .showcase-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .showcase-slide.active {
            opacity: 1;
        }

        .showcase-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .showcase-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

      .banner-content {
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}
     .banner-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Upright', serif;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

        .banner-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }

        .banner-cta {
            display: inline-flex;
            gap: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1.1s forwards;
        }

        .cta-button {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .cta-primary {
           background: linear-gradient(135deg, #128c7e 0%, rgb(202, 148, 31) 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(93, 212, 139, 0.4);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(241, 198, 7, 0.822);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-secondary:hover {
            background: white;
            color: #333;
        }

        .showcase-navigation {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 4;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .showcase-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            font-weight: 200;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 4;
            font-family: Arial, sans-serif;
        }

        .showcase-arrows:hover {
            color: rgba(255, 255, 255, 0.7);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-prev {
            left: 30px;
        }

        .arrow-next {
            right: 30px;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .showcase-arrows {
                display: none;
            }
            
            .banner-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 200px;
                text-align: center;
            }
        }