/* Hero Carousel */
        .hero-carousel {
            height: 600px;
            position: relative;
        }

        .carousel-item {
            height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
        }

        .carousel-caption {
            bottom: 50%;
            transform: translateY(50%);
            animation: fadeInUp 1s;
        }

        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .carousel-caption p {
            font-size: 1.5rem;
            margin: 20px 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(70%);
            }
            to {
                opacity: 1;
                transform: translateY(50%);
            }
        }

        .hero-btn {
            background:#00FF33;
            color: #5174C3;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            color: var(--primary);
        }
