        .hero-content {
            max-width: 1200px;
            margin:auto;
        }
        /* Unique Container Setup */
        .slide-hero {
            position: relative;
            width: 100%;
            height: 700px;
            overflow: hidden;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
        }

        /* Slide Layers */
        .slide-hero .hero-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out; /* Slightly longer fade for smoothness */
            z-index: 1;
        }

        .slide-hero .hero-item.active {
            opacity: 1;
            z-index: 2;
        }

        /* FIXED Ken Burns Zoom Effect */
        .slide-hero .ken-burns-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1);
            /* Duration increased to 20s and set to 'alternate' to prevent jumping */
            animation: kenburns-zoom 20s ease-in-out infinite alternate;
        }

        @keyframes kenburns-zoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        /* Text & Button Overlay */
        .slide-hero .hero-overlay {
            position: relative;
            z-index: 3;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: rgba(0, 0, 0, 0.2);
        }

        .slide-hero .hero-content {
            width: 100%;
            padding: 0 20px;
            color: #FFFFFF;
            box-sizing: border-box;
        }

        .slide-hero h1 {
            font-size: 2.5rem;
            margin: 0 0 10px 0;
            width: 100%;
            color: #FFFFFF;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .slide-hero .sub-header {
            font-weight: 600;
            font-style: italic;
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #FF9046;
            width: 100%;
            display: block;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .slide-hero .hero-btn {
            display: inline-block;
            background-color: #FF9046;
            color: #FFFFFF;
            padding: 15px 35px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .slide-hero .hero-btn:hover {
            background-color: #e87e35;
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        /* Responsiveness */
        @media (max-width: 1024px) {
            .slide-hero { height: 500px; }
            .slide-hero h1 { font-size: 2rem; }
        }

        @media (max-width: 768px) {
            .slide-hero { height: 400px; }
            .slide-hero h1 { font-size: 1.8rem; }
            .slide-hero .sub-header { font-size: 1.1rem; }
        }
