
        .hero-carousel {
            position: relative;
        }

        .carousel-item {
            height: 90vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .carousel-caption {
            position: absolute;
            width: 80%;
            right: 0;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 1;
        }

        
        
       /* Hero Section */
       .hero {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            height: 100vh;
            padding: 2rem;
            color: white;
            text-align: left;
            overflow: hidden;
        }

        /* Background Animation */
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: url('/assets/images/cloud-1.png') no-repeat center center/cover;
            /* filter: brightness(50%); */
            z-index: -1;
            animation: cloudMove 30s linear infinite;
        }

        /* Keyframes for background movement */
        @keyframes cloudMove {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Hero Content */
        .hero-content {
            padding: 2rem;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: #050505;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }

        /* Floating Image Animation */
        .hero-image img {
            width: 100%;
            border-radius: 10px;
            animation: floatImage 3s ease-in-out infinite alternate;
        }

        /* Keyframes for floating effect */
        @keyframes floatImage {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-20px);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                padding: 1rem;
            }

            .hero-image {
                margin-top: 1rem;
            }
        }
