  /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }
        
        /* Slider Container */
        .custom-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        /* Slides */
        .custom-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
        }
        
        .custom-slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .slide-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }
        
        .slide-content {
            position: relative;
            z-index: 3;
            color: #fff;
            max-width: 800px;
            padding: 30px;
            margin-left: 50px;
        }
        
        /* Text Styling */
        .bold-title {
            font-size: 24px;
            color: #d9932f;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            opacity: 0;
            transform: translatey(50px);
            transition: all 0.5s ease;
        }
        
        .light-title {
            font-size: 35px;
            color: #fff;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 10px 0;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease 0.2s;
        }
        
        .shop-btn {
            display: inline-block;
            color: #fff;
            font-weight: 400;
            letter-spacing: 0.5px;
            font-size: 14px;
            line-height: 20px;
            border: 1px solid #fff;
            padding: 10px 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease 0.4s;
            background-color: transparent !important;
        }
        
        .shop-btn:hover {
            background: rgba(255,255,255,0.2);
        }
        
        /* Active Slide Animations */
        /* .custom-slide.active .bold-title,
        .custom-slide.active .light-title,
        .custom-slide.active .shop-btn {
            opacity: 1;
            transform: translateX(0);
        } */
        
        /* Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 4;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: #d9932f;
            transform: scale(1.2);
        }
        
        /* Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 4;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background: rgba(255,255,255,0.4);
        }
        
        .slider-arrow.prev {
            left: 20px;
        }
        
        .slider-arrow.next {
            right: 20px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .light-title {
                font-size: 40px;
            }
            
            .bold-title {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .custom-slider {
                height: 80vh;
                min-height: 500px;
            }
            
            .light-title {
                font-size: 30px;
            }
            
            .slide-content {
                margin-left: 20px;
                text-align: center;
                width: calc(100% - 40px);
            }
            
            .bold-title, .light-title, .shop-btn {
                transform: translatex(50px);
            }
            
            .custom-slide.active .bold-title,
            .custom-slide.active .light-title,
            .custom-slide.active .shop-btn {
                transform: translateY(0);
            }









@media (max-width: 600px) {
  .custom-slider {
    height: 55vh;
    min-height: 220px;
  }
  .slide-content {
    width: 100%;
    max-width: 98vw;
    padding: 7vw 2vw;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .bold-title {
    font-size: 14px;
    margin-bottom: 6px;
    letter-spacing: 1px;
    opacity: 1 !important;
    transform: none !important;
  }
  .light-title {
    font-size: 18px;
    opacity: 1 !important;
    transform: none !important;
    text-shadow: none;
    padding: 2px 0;
  }
  .shop-btn {
    font-size: 12px;
    padding: 8px 8px;
    width: 90%;
    margin-top: 8px;
    opacity: 1 !important;
    transform: none !important;
    box-sizing: border-box;
  }
  .slide-bg {
    object-fit: cover;
    width: 100vw;
    min-height: 100%;
    height: 100%;
  }
  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 20px;
    top: auto;
    bottom: 36%;
    left: 7px !important;
    right: 7px !important;
    transform: none;
  }
  .slider-arrow.prev { left: 7px; right: auto; }
  .slider-arrow.next { right: 7px; left: auto; }
  .slider-nav { bottom: 8px; }
}
@media (max-width: 370px) {
  .bold-title { font-size: 10px; }
  .light-title { font-size: 11px; }
  .shop-btn { font-size: 9px; }
}









            
            
        }