
        .hidden { display: none; }
        .active { color: #facc15; }
        
        /* Carousel Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 10px;
            top: -10px;
        }
        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .carousel-slide.active {
            opacity: 1;
        }
        .dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
        }
        .dot {
            width: 8px;
            height: 8px;
            background: gray;
            border-radius: 50%;
            cursor: pointer;
        }
        .dot.active {
            background: white;
        }

        /* Bottom Navigation */
        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #1f2937;
            display: flex;
            justify-content: center;
            gap: 40px; /* Adjust spacing between buttons */
            padding: 12px;
            border-radius: 20px 20px 0 0;
        }
        .nav-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
            font-size: 14px;
        }
        .nav-btn.active {
            color: #facc15;
        }