/* chatGPT 4o with canvas */

.owl-nav-centered .owl-nav button.owl-prev,
.owl-nav-centered .owl-nav button.owl-next {
    position: absolute;
    top: 45%;                     /* Align to vertical center */
    transform: translateY(-50%);  /* Offset by half the height to center perfectly */
    z-index: 10;                  /* Ensure they are above the images */
}

.owl-nav-centered .owl-nav button.owl-prev {
    left: -30px;                  /* Adjust this value to move the arrow to the left of the carousel */
}

.owl-nav-centered .owl-nav button.owl-next {
    right: -30px;                 /* Adjust this value to move the arrow to the right of the carousel */
}

/* Base styles for the banner */
#bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2147483647; /* Increase z-index to ensure the banner stays on top */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3); /* Add shadow for better separation */
}

#bottom-banner a {
    width: 50%;
}

/* Left Box Styles */
.left-box {
    flex: 1;
    background-color: #dc3545; /* Red background */
    color: #ffffff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Right Box Styles */
.right-box {
    flex: 1;
    background-color: #ffc107; /* Yellow background */
    color: #000000;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Prevent the banner from overlapping content */
body {
    margin-bottom: 40px; /* Adjust according to banner height */
}

/* PC Responsive Styles */
@media (min-width: 1025px) {
    .slider-caption {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
    }
    .slider-caption h2 {
        font-size: 8rem;
    }
    .slider-caption p {
        font-size: 3rem;
    }
  
    .section-title {
      font-size: 3rem;
    }

    .section-title span {
        font-size: 3.5rem;
    }

    .section-text {
        font-size: 1.2rem;
    }

    .card-title {
        font-size: 1.5rem;
    }
  
  #menucate .entry {
        width: 30%;
        margin-bottom: 20px;
    }

    #review {
        padding: 40px 20px;
    }
    #review .heading-block {
        margin-bottom: 30px;
    }
    h2 {
        font-size: 3rem;
    }
    p {
        font-size: 1.2rem;
    }
    .header, .primary-menu {
        background-color: #fff;
        padding: 30px;
    }
  }
  
  /* Tablet Responsive Styles */
  @media (max-width: 1024px) {

    #logo img {
        padding: 10px;
    }
   
    .slider-caption {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
    }
    .slider-caption h2 {
        font-size: 6rem;
    }
    .slider-caption p {
        font-size: 2rem;
    }
  
    .section-title {
        font-size: 2.5rem;
      }

      .section-title span {
        font-size: 3rem;
    }
  
    #menucate .entry {
        width: 100%;
        margin-bottom: 15px;
    }
    #review {
        padding: 20px 10px;
    }
    #review .heading-block {
        margin-bottom: 20px;
    }
    h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
  
    /* General Layout */
    #header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }
  }
  
  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    
    #wrapper, .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    #logo img {
        padding: 10px;
    }

    .slider-caption {
        text-align: center;
        margin-top: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
 
    .slider-caption h2 {
        font-size: 2.5rem;
    }
    .slider-caption p {
        font-size: 1.5rem;
    }
  
    .section-title {
        font-size: 1.8rem;
      }

    .section-title span {
        font-size: 2.2rem;
    }

    .section-text {
        font-size: 1rem;
    }
  
    #menucate .entry {
        width: 100%;
        margin-bottom: 10px;
    }

    #menucate .container, #review .container {
        padding: 20px;
    }

    .d-flex {
        flex-direction: column; /* Stack the images vertically on mobile */
        justify-content: center; /* Center the images vertically in the container */
        align-items: center; /* Center the images horizontally in the container */
        width: 100%; /* Ensure the container takes up the full width */
        overflow: hidden; /* Prevent overflow */
    }

    .d-flex img {
        max-width: 90%; /* Prevent images from exceeding the screen width */
        height: auto; /* Maintain aspect ratio */
        margin: 15px auto; /* Center align the images horizontally */
        display: block; /* Ensure the image is treated as a block element */
    }

    #review {
        padding: 15px 5px;
    }
    #review .heading-block {
        margin-bottom: 15px;
    }

    #story h2 {
        font-size: 1.5rem;
    }
    .page-section {
        margin: 40px 0;
    }
  }