  .banner-container {
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            overflow: hidden;}
        
        .banner-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;}
        
        .banner-slide {
            min-width: 100vw;
            position: relative;}
        
        .banner-slide img {
            width: 100vw;
           /* height: auto; */
           height: 500px;
  
            display: block;
            object-fit: cover;}
        
        .slide-content {
            position: absolute;
            bottom: 20%;
            left: 10%;
            color: white;
            max-width: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 5px;}
        
        .slide-content h2 {
            font-size: 2rem;
            margin-bottom: 10px;}
        
        .slide-content p {
            font-size: 1rem;
            margin-bottom: 15px;}
        
        .slide-content button {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;}
        
        .slide-content button:hover {
            background-color: #ff5252;}
        
        .banner-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;}
        
        .banner-controls button {
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #333;
            margin: 0 10px;
            transition: all 0.3s;}
        
        .banner-controls button:hover {
            background-color: rgba(255, 255, 255, 0.8);}
        
        .banner-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;}
        
        .banner-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;}
        
        .banner-indicator.active {
            background-color: white;}
        
        @media (max-width: 768px) {
            .slide-content {
                max-width: 80%;
                bottom: 10%;
                left: 5%;}
            .banner-slide img {           
              height: auto;    
              }
            .slide-content h2 {
                font-size: 1.5rem;}
            
            .slide-content p {
                font-size: 0.9rem;}
        }
        
        @media (max-width: 480px) {
            .slide-content {
                position: static;
                max-width: 100%;
                background-color: rgba(0, 0, 0, 0.7);
                padding: 10px;}
             .banner-slide img {           
              height: auto;    
              }
            .banner-controls button {
                width: 30px;
                height: 30px;
                font-size: 1rem;}
        }