/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 1200px) and (min-width: 992px) {
    .content-wrapper h1 {
        font-size: 4rem;
    }
    .content-wrapper h2 {
        font-size: 20px;
    }
    .container-aboutus .about-content h2 {
        font-size: 38px;
    }
    .container-gallery .img-wrapper{
        width: 25%;
    }  
}

@media only screen and (max-width: 991px) {
    .content-wrapper h1 {
        font-size: 4rem;
    }
    header .header-sticky-logo{
        width: 90px;
    }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 768px) {
    header.custom-header{
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid #ededed;
        /* background-color: #fff; */
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }
    .custom-header .navbar-dark .navbar-nav .nav-link,
    header.custom-header.sticky-header .navbar-dark .navbar-nav .nav-link {
        color: whitesmoke;
    }
    header .header-logo {
        display: none;
    }
    header .header-sticky-logo {
        display: block;
    }
    .content-wrapper h1 {
        font-size: 3rem;
    }
    header .header-sticky-logo,
    header.sticky-header .header-sticky-logo{
        width: 175px;
    }
    .container-aboutus .about-content h2,
    .container-contactus h2 {
        font-size: 36px;
    }
    .container-gallery h3  {
        font-size: 32px;
        font-weight: 600;
    }
    .container-aboutus,
    .container-contactus {
        padding: 60px 0px;
    }
    .top-toolbar {
        padding: 4px 20px;
        line-height: 22px;
    }
    .top-toolbar p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 600px) {
    header .header-sticky-logo, header.sticky-header .header-sticky-logo {
        width: 145px;
    }
    .content-wrapper h1 {
        font-size: 32px;
    }
    .content-wrapper h2 {
        font-size: 15px;
    }
    .btn-custom {
        font-size: 13px;
        padding: 2px 14px 4px;
        margin-top: 10px;
    }
    .slider-item {
        padding: 40% 0 35%;
        height: 80vh;
    }
    .top-strip {
        font-size: 12px;
        height: 30px;
        padding: 5px 8px 2px;
    }
    .carousel-indicators li{
        width: 20px;
        height: 2px;
    }
    .carousel-control-next-icon, .carousel-control-prev-icon {
        width: 14px;
        height: 15px;
    }
    .navbar-toggler{
        padding: 3px 8px;
    }
    .slider-content .content-wrapper {
        max-width: 80%;
    }
    .container-aboutus .about-content p{
        width: 100%;
    }
    .container-aboutus .about-content h2,
    .container-contactus h2 {
        font-size: 32px;
    }
    .container-gallery h3  {
        font-size: 28px;
    }
    .container-aboutus .about-content p {
        font-size: 14px;
    }
    .container-time .left-content{
        text-align: center;
    }
    .container-gallery .img-wrapper{
        width: 50%;
    }
    footer h3 {
        font-size: 18px;
    }
    .follow_us ul{
        float: left;
    }
    footer {
        padding: 40px 0 10px 0;
    }
}
@media only screen and (max-width: 480px) {
    .content-wrapper h1 {
        font-size: 30px;
    }
    .content-wrapper h2 {
        font-size: 13px;
    }
    .slider-item {
        padding: 40% 0 40%;
    }
    .container-gallery .img-wrapper{
        width: 100%;
    }
    .top-toolbar{
        display: none;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .container-gallery .img-wrapper{
        width: 25%;
    }
}

/* 1. Horizontal scroll for mobile screens (below 768px) */
@media screen and (max-width: 768px) {
    .carousel-and-offers {
      flex-direction: column;
      align-items: center;
    }
  
    .carousel {
      width: 100%;
    }
  
    .slider-container {
      width: 100%;
      height: auto;
      overflow-x: scroll;
      overflow-y: hidden;
      white-space: nowrap;
      display: flex;
      flex-direction: row;
      gap: 10px;
      padding: 10px;
      box-sizing: border-box;
      border: none;
    }
  
    .slider {
      display: flex;
      flex-direction: row;
      gap: 10px;
    }
  
    .slider img {
      width: 200px;
      height: auto;
      flex-shrink: 0;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      object-fit: cover;
    }
  }

  /* 2. Vertical but matched height (below 1024px and above 768px) */
  @media screen and (max-width: 4024px) and (min-width: 769px) {
    .carousel-and-offers {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      justify-content: space-between;
    }
  
    .carousel {
      width: 70%;
    }
  
    .slider-container {
      width: 30%;
      max-height: 100%;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 10px;
      box-sizing: border-box;
    }
  
    .slider {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    .slider img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
    }
  }

  @media screen and (max-width: 1024px) and (min-width: 769px) {
    .carousel-and-offers {
      display: flex;
      flex-direction: row;
      height: 100vh; 
      overflow: hidden;
    }
  
    .carousel {
      width: 70%;
      height: 100%;
    }
  
    .slider-container {
      width: 30%;
      height: 100%;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 10px;
      box-sizing: border-box;
      /* background: white;  */
    }
  
    .slider {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    .slider img {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  @media screen and (max-width: 9990px){
    .carousel{
        width: 100%;
    }

  }

  @media (max-width: 768px) {
    .map-container {
      margin-top: 20px; 
    }
  }
  
  /* footer social */

  @media (max-width: 9800px) {
    .footer-social {
        text-align: left; 
        padding-left: 35px;
    }

  
    .footer-social a {
        margin: 0%; 
    }
  }
  
 