 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      

        body {
            line-height: 1.6;
        }
    
        
        /* Hero Slider Styles */
        .hero {
            margin: 15px auto;
            max-width: 1200px;
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            width: 33.333%;
            height: 100%;
            position: relative;
        }
        
        .slide-content {
            position: absolute;
            bottom: 50px;
            left: 50px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
            max-width: 50%;
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .slide-content p {
            font-size: 1.2rem;
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 15px 10px;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }
        
        .nav-btn:hover {
            background: rgba(0,0,0,0.8);
        }
        
        .prev {
            left: 0;
            border-radius: 0 5px 5px 0;
        }
        
        .next {
            right: 0;
            border-radius: 5px 0 0 5px;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .indicators {
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .indicator.active {
            background: white;
        }
        
        .timer-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255,255,255,0.3);
        }
        
        .timer-progress {
            height: 100%;
            width: 33.333%;
            background: white;
            transition: transform 0.3s;
        }
        
        /* Slide backgrounds */
        .slide:nth-child(1) {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1607082350899-7e105aa886ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .slide:nth-child(2) {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .slide:nth-child(3) {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
        }