
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.hb12-slider-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.hb12-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.hb12-slide {
  min-width: 100%;
  height: 300px;
}

.hb12-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb12-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hb12-indicator {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.hb12-indicator.active {
  background-color: #fff;
}

.destination-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.destination-card {
  flex: 1 1 calc(50% - 20px);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.destination-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-info {
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: bottom 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.destination-card:hover .destination-info {
  bottom: 0;
}

.destination-info h3 {
  font-size: 18px;
}

.destination-info p {
  font-size: 14px;
}

.destination-info a {
  color: #ffd700;
  text-decoration: none;
  font-size: 14px;
}

.destination-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .destination-section {
    gap: 15px;
  }

  .destination-card {
    flex: 1 1 calc(100% - 15px);
  }

  .hb12-slide {
    height: 200px;
  }

  .hb12-slide img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .destination-info h3 {
    font-size: 16px;
  }

  .destination-info p {
    font-size: 12px;
  }

  .destination-info a {
    font-size: 12px;
  }
}









/* csds12 */
.csds12-slider {
display: flex;
align-items: center;
justify-content: center;
background: rgb(242,243,248);
width: 100%;

height: 50vh;
overflow: hidden;
}

.bgt65tts {
    background: rgb(242,243,248);
   
    }


.csds12-btn {
min-width: 60px;
margin: auto 30px;
height: 60px;
border-radius: 20px;
background: #fff;
border: 0px;
outline: none;
cursor: pointer;
z-index: 9999;
box-shadow: 0px 0px 0px 0px rgba(0,0,0,.08);
transition: all .25s ease;
}

.csds12-btn:hover {
box-shadow: 0px 17px 35px 0px rgba(0,0,0,.07);
}

.csds12-btn i {
font-size: 1.2rem;
}

.csds12-card {
width: 300px;
min-width: 300px;
height: auto;
background: #fff;
border-radius: 30px;
position: relative;
z-index: 10;
margin: 25px;
min-height: 356px;
cursor: pointer;
transition: all .25s ease;
box-shadow: 0px 0px 0px 0px rgba(0,0,0,.08);
}

.csds12-card:hover {
transform: translate(0, -10px);
box-shadow: 0px 17px 35px 0px rgba(0,0,0,.07);
}

.csds12-card-img {
transform: translate(90px,-10px);
margin: 0 30px;
display: flex;
align-items: center;
justify-content: center;
transition: all .35s ease-out;
position: relative;
height: 100%;
width: 100%;
}

.csds12-card img {
height: 100%;
width: 100%;
object-fit: cover;
}

.csds12-card img.blur {
position: absolute;
filter: blur(15px);
z-index: -1;
opacity: .40;
transform: translate(-160px, 30px);
transition: all .35s ease-out;
}

.csds12-card:hover .csds12-card-img {
transform: translate(70px, -15px);
}

.csds12-card:hover .csds12-card-img img.blur {
transform: translate(-100px, 35px) scale(.85);
opacity: .25;
filter: blur(20px);
}

.csds12-card-content {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
overflow: auto;


scroll-behavior: smooth;
}

.csds12-card-content::-webkit-scrollbar {
height: 0px;
}

/* .csds12-card-content:after {
content: '';
display: block;
min-width: 20px;
height: 100px;
position: relative;
}

.csds12-slider:after, .csds12-slider:before {
content: '';
height: 90vh;
position: absolute;
width: 150px;
z-index: 100;
pointer-events: none;
} */

.csds12-slider:before {
right: 98px;
}

/* Responsive */
@media (max-width: 1200px) {
.csds12-card {
  width: 250px;
  margin: 20px;
}
}

@media (max-width: 992px) {
.csds12-slider {
  height: 80vh;
}

.csds12-card {
  width: 200px;
}
}

@media (max-width: 768px) {
.csds12-slider {
  flex-direction: column;
  height: auto;
}

.csds12-card-content {


}

.csds12-card {
  width:90%;
  margin: 15px 0;
}
}

@media (max-width: 480px) {
.csds12-card {
  width: 100%;
  margin: 10px 0;
}
}

 










    .chdg12-container {
        width: 100%;
        padding: 20px;
        background-color: #f8f8f8;
    }

    .chdg12-title {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
    }

    .chdg12-reviews {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .chdg12-review-card {
        background-color: #ffffff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        max-width: 400px;
        width: 100%;
        text-align: left;
    }

    .chdg12-review-card h3 {
        font-size: 18px;
        margin: 10px 0 5px;
      }

      .chdg12-review-card p {
          font-size: 14px;
          color: #555;
          line-height: 1.6;
      }

      .chdg12-review-card .chdg12-rating {
          color: #f39c12;
          margin-bottom: 10px;
      }

      @media (max-width: 768px) {
          .chdg12-review-card {
              max-width: 80%;
          }
      }
  






      /* cruiser */



      .cdcd1212-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 20px;
      }

      .cdcd1212-title {
          text-align: center;
          font-size: 28px;
          font-weight: bold;
          margin-bottom: 20px;
      }

      .cdcd1212-cards {
          display: flex;
          flex-wrap: wrap;
          gap: 20px;
          justify-content: center;
      }

      .cdcd1212-card {
          background: #ffffff;
          border: 1px solid #ddd;
          border-radius: 10px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          overflow: hidden;
          max-width: 350px;
          width: 100%;
      }

      .cdcd1212-card img {
          width: 100%;
          height: auto;
      }

      .cdcd1212-card-content {
          padding: 15px;
      }

      .cdcd1212-card-content h3 {
          font-size: 18px;
          font-weight: bold;
          margin: 10px 0;
      }

      .cdcd1212-card-content .cdcd1212-price {
          font-size: 16px;
          color: #28a745;
          font-weight: bold;
      }

      .cdcd1212-card-content .cdcd1212-departure {
          margin: 10px 0;
          font-size: 14px;
          color: #555;
      }

      .cdcd1212-card-content ul {
          list-style: none;
          padding: 0;
          margin: 10px 0;
      }

      .cdcd1212-card-content ul li {
          font-size: 14px;
          color: #666;
          margin: 5px 0;
          display: flex;
          align-items: center;
      }

      .cdcd1212-card-content ul li::before {
          content: '\2022';
          color: #007bff;
          font-weight: bold;
          display: inline-block;
          width: 1em;
          margin-right: 5px;
      }

      .cdcd1212-card-content .cdcd1212-button {
          display: block;
          width: 100%;
          padding: 10px 0;
          text-align: center;
          background-color: #007bff;
          color: #fff;
          font-size: 14px;
          font-weight: bold;
          border-radius: 5px;
          text-decoration: none;
          margin-top: 10px;
      }

      .cdcd1212-card-content .cdcd1212-button:hover {
          background-color: #0056b3;
      }
     

      @media (max-width: 768px) {
          .cdcd1212-cards {
              flex-direction: column;
              align-items: center;
          }
          .cdcd1212-title {
          text-align: center;
          font-size: 15px;
          font-weight: bold;
      
      }

      }
 
 

      .cdc12121212 {
          max-width: 1000px; /* Set maximum width */
          margin: 0 auto; /* Center the div horizontally */
          padding: 20px; /* Add padding for spacing */
          background-color: #ffffff; /* Optional background color */
          box-sizing: border-box; /* Ensures padding is inside the width */
      }

      .cdc12121212 h1 {
          text-align: center;
          font-size: 28px;
          font-weight: bold;
          margin-bottom: 20px;
      }

      .cdc12121212 p {
          font-size: 16px;
          line-height: 1.6;
          color: #555;
          text-align: justify; /* Justify text to make it look neat */
      }
      @media (max-width: 768px) {
          .cdc12121212 h1 {
          text-align: center;
          font-size: 15px;
          font-weight: bold;
        ;
      }
      }




      /* contcat */
    
    

      .c23-container {
          width: 100%;
          max-width: 1000px;
          margin: 0 auto;
          padding: 15px;
      }

      .c23-banner {
          background-image: url('img/contact1.jpg'); /* Replace with your image URL */
          background-size: cover;
          background-position: center;
          color: white;
          text-align: center;
          padding: 80px 20px;
          font-size: 1.8rem;
          font-weight: bold;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .c23-banner::after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
          z-index: 1;
      }

      .c23-banner span {
          position: relative;
          z-index: 2;
          width: 100%;
          max-width: 90%;
          word-wrap: break-word; /* Ensures text doesn't overflow */
      }

      .c23-map {
          width: 100%;
          height: 400px;
          margin-bottom: 20px;
          border: 0;
      }

      .c23-content {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px;
      }

      .c23-column {
          background-color: #fff;
          padding: 15px;
          border-radius: 5px;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .c23-column h3 {
          font-size: 1.2rem;
          margin-bottom: 10px;
      }

      .c23-column p {
          font-size: 0.9rem;
          line-height: 1.5;
          color: #555;
      }

      .c23-column a {
          color: #4caf50;
          text-decoration: none;
          font-weight: bold;
      }

      .c23-column a:hover {
          text-decoration: underline;
      }

      @media screen and (max-width: 768px) {
          .c23-banner {
              font-size: 1.5rem;
              padding: 60px 20px;
          }

          .c23-map {
              height: 300px;
          }
      }

      @media screen and (max-width: 480px) {
          .c23-banner {
              font-size: 1.2rem;
              padding: 40px 10px;
          }
      }

      @media screen and (max-width: 320px) {
          .c23-banner {
              font-size: 1rem;
              padding: 20px 5px;
          }

          .c23-banner span {
              max-width: 100%; /* Ensure text fits on very small screens */
          }
      }
  /* about */

    

  .cu12-container {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 15px;
  }

  .cu12-header {
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
  }

  .cu12-header h1 {
      font-size: 1.8rem;
      font-weight: bold;
  }

  .cu12-content {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .cu12-content img {
   width: 0px;
      border-radius: 8px;
      flex: 1;
  }

  .cu12-content .cu12-text {
      flex: 2;
      text-align: left;
  }

  .cu12-text p {
      line-height: 1.6;
      color: #555;
  }

  .cu12-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
  }

  .cu12-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      padding: 1rem;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .cu12-card i {
      font-size: 2.5rem;
      color: #4caf50;
      margin-bottom: 1rem;
  }

  .cu12-card-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin: 0.5rem 0;
  }

  .cu12-card-description {
      font-size: 0.9rem;
      color: #555;
  }

  .cu12-card-link {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.9rem;
      color: #4caf50;
      text-decoration: none;
      font-weight: bold;
  }

  .cu12-card-link:hover {
      text-decoration: underline;
  }

  /* Banner Section Styling */
  .cu12-banner {
      position: relative;
      text-align: center;
      overflow: hidden;
      height: 300px; /* Default height for large screens */
  }

  .cu12-banner-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(70%);
  }

  .cu12-banner-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      text-align: center;
  }

  .cu12-banner-text h1 {
      font-size: 3rem;
      font-weight: bold;
      margin: 0;
  }

  /* Responsive Styles */


  @media screen and (max-width: 768px) {
      .cu12-banner {
          height: 220px; /* Adjust height for smaller screens */
      }

      .cu12-banner-text h1 {
          font-size: 2rem;
      }
      .cu12-card {
        width: 170px;
      }
  }

  @media screen and (max-width: 480px) {
      .cu12-container {
      width: 80%;
 
    
  }
      .cu12-banner {
          height: 200px; /* Minimum height for very small screens */
      }

      .cu12-banner-text h1 {
          font-size: 1.5rem;
      }
      .cu12-content img {
      max-width: 80%;

  }
  .cu12-text p {
   font-size: 10px;
   width: 180px;
  }
  
  .cu12-header h1 {
      font-size: 1rem;
     
  }
  }
/* footer */



       

.asdfghjk1234-footer {
    background-color: #2d4f8c;
    padding: 30px;
    color: white;
}

.asdfghjk1234-footer .asdfghjk1234-newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.asdfghjk1234-newsletter h2 {
    font-size: 24px;
    margin: 0;
}

.asdfghjk1234-newsletter p {
    margin: 5px 0 0;
    font-size: 14px;
}

.asdfghjk1234-newsletter form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.asdfghjk1234-newsletter input[type="email"],
.asdfghjk1234-newsletter select {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.asdfghjk1234-newsletter button {
    background-color: #ff6900;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.asdfghjk1234-footer .asdfghjk1234-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.asdfghjk1234-links div {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

.asdfghjk1234-links h3 {
    color: orange;
    font-size: 16px;
    margin-bottom: 10px;
}

.asdfghjk1234-links a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
}

.asdfghjk1234-links a:hover {
    text-decoration: underline;
}

.asdfghjk1234-footer .asdfghjk1234-social {
    text-align: center;
    margin-bottom: 20px;
}

.asdfghjk1234-social a {
    margin: 0 10px;
    display: inline-block;
    font-size: 24px; /* Size of the icon */
    color: white;
}

.asdfghjk1234-footer .asdfghjk1234-disclaimer {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .asdfghjk1234-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .asdfghjk1234-newsletter form {
        flex-direction: column;
        align-items: flex-start;
    }

    .asdfghjk1234-newsletter input[type="email"],
    .asdfghjk1234-newsletter select,
    .asdfghjk1234-newsletter button {
        width: 100%;
        margin-right: 0;
    }

    .asdfghjk1234-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .asdfghjk1234-links div {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .asdfghjk1234-newsletter h2 {
        font-size: 20px;
    }

    .asdfghjk1234-newsletter p {
        font-size: 12px;
    }

    .asdfghjk1234-links h3 {
        font-size: 14px;
    }

    .asdfghjk1234-links a {
        font-size: 12px;
    }

    .asdfghjk1234-footer .asdfghjk1234-disclaimer {
        font-size: 10px;
    }
}





