
    /* Slider */
    .slider-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 38.71%;
        /* Aspect ratio (720/1860 * 100) */
        overflow: hidden;
    }

    .banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .banner img.active {
        opacity: 1;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        cursor: pointer;
        color: black;
        background-color: rgba(255, 255, 255, 0);
        border: none;
        padding: 10px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    @media (max-width: 768px) {
        .slider-container {
            margin-top: 80px;
        }
    }

/* cars */

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.custom-button {
  background-color: #05141f;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}



/* Image container styling */
.tab-pane figure {
  height: 400px; /* Set a fixed height for the image container */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tab-pane img {
  max-height: 100%;
  width: auto;
}

/* Slider styles for mobile view */
@media (max-width: 991.98px) {
    
    
    .tab-pane figure {
  height: 169px; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
      


  .features .nav-tabs {
    display: none;
  }

  .features .nav-link {
    display: none;
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
  }

  .owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
  }

  .owl-carousel .owl-nav button {
    background: none;
    border: none;
    color: #333;
    transition: color 0.3s ease;
    font-size: 30px; /* Increase font size */
    pointer-events: auto;
  }

  .owl-carousel .owl-nav button:hover {
    color: #000;
  }

  .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 10px; /* Adjusted position for larger buttons */
  }

  .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 10px; /* Adjusted position for larger buttons */
  }
}

/* Smooth fade-in and fade-out effect */
.tab-pane {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.tab-pane.show {
  opacity: 1;
}


/* outlets */
    #our-outlets {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .outlets {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .outlet {
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgb(0 0 0 / 20%);


    }

    .outlet iframe {
        width: 100%;
        height: 200px;
        border: none;
    }

    .details {
        padding: 15px;
    }

    .details h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .details p {
        margin: 5px 0;
        font-size: 14px;
        color: #555;
    }

    .details .contact {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .details a {
        color: #007bff;
        text-decoration: none;
    }

    .details a:hover {
        text-decoration: none;
    }

    /* Media Queries for Tablet View */
    @media (max-width: 1024px) {
        .outlets {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Media Queries for Mobile View */
    @media (max-width: 768px) {
        .outlets {
            grid-template-columns: 1fr;
        }
    }
