/* Base styles for the tabs container */
.tabs-container {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Tabs list styles */
.tabs-list {
  list-style-type: none; /* Remove default bullet points */
  padding: 0;
  margin: 0;
  display: flex; /* Make the list items align horizontally */
  overflow: hidden; /* Prevent horizontal and vertical scrolling */
  white-space: nowrap; /* Prevent wrapping of list items */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for touch devices */
  height: 10vh; /* Set the body height to fill the viewport */
  align-items: center; /* Vertically center list items */
  flex-grow: 1; /* Allow list to stretch inside the container */
  scroll-behavior: smooth; /* Smooth scrolling for buttons */
}

/* Tabs list item styles */
.tabs-list li {
  flex: 0 0 auto; /* Prevent items from shrinking or growing */
  margin: 0 10px; /* Add horizontal spacing between items */
}

/* Tabs links styles */
.tabs-list li a {
  text-decoration: none; /* Remove underline from links */
  padding: 10px 20px;
  display: inline-block; /* Ensure clickable area */
  color: #333; /* Default text color */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

/* Button styles */
button {
  color: white;
  background-color: #007bff; /* Default background color */
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3; /* Background color on hover */
}

button:disabled {
  background-color: #cccccc; /* Background color when disabled */
  cursor: not-allowed; /* Change cursor to indicate it's disabled */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .tabs-container {
      overflow-x: auto; /* Enable horizontal scrolling for the container */
      -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
  }

  .tabs-list {
      overflow-x: auto; /* Enable horizontal scrolling for the list */
      padding: 0 10px; /* Add padding to allow smooth scrolling */
      height: auto; /* Adjust height dynamically */
  }

  .tabs-list li {
      margin: 0 5px; /* Reduce margin between items for smaller screens */
  }

  .tabs-list li a {
      padding: 8px 15px; /* Reduce padding for better fit on small screens */
      font-size: 14px; /* Adjust font size for better readability on mobile */
  }

  button {
      font-size: 16px; /* Slightly smaller font size for mobile */
      padding: 8px 12px; /* Adjust button padding for smaller screens */
  }
}





.logo-image {
    width: 150px; /* Set the desired width */
    height: auto; /* Maintains aspect ratio */
  }




  .owl-carousel .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 400px; /* Adjust height for equal size */
    padding: 10px;
    box-sizing: border-box;
  }
  
  .owl-carousel .item img {
    max-width: 100%;
    height: 2225px;
    object-fit: cover;
  }
  
  .down-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .text-button-pay, .text-button-free {
    margin-top: 10px;
  }

  .text-button-pay a, .text-button-free a {
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    padding: 10px 10px;
    border-radius: 5px;
  }

  .text-button-pay a:hover, .text-button-free a:hover {
    background-color: #0056b3;
  }



  