/* Carousel Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: white;
			padding: 0px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
            display: none;
            animation: fadeIn 0.5s;
        }

        .carousel-item.active {
            display: block;
        }

        .carousel-item img {
			display: flex;
			align-items: center;			
			width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
        }

        .carousel-link {
            display: block;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .carousel-link:hover {
            transform: scale(1.02);
        }

        .carousel-caption {
            text-align: center;
            padding: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: #667eea;
            background: white;
            border-radius: 0 0 15px 15px;
        }

        .carousel-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            background: rgba(102, 126, 234, 0.8);
            color: white;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: rgba(102, 126, 234, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .carousel-dots {
            text-align: center;
            padding: 1rem 0;
            background: white;
            border-radius: 0 0 15px 15px;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover,
        .dot.active {
            background-color: #667eea;
            transform: scale(1.2);
        }