*{
    margin: 0%;
    padding: 0%;
}
.top-bar {
  background-color: #0f62a0;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 5px 20px;
  align-items: center;
  font-size: 15px;
  flex-wrap: wrap;
}

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}

.contact-info i {
  margin-right: 5px;
  justify-content: center;
}
.contact-info a{
  color: white;
}

.social-icons a {
  vertical-align: middle;
}
.contact-info a:hover{
  color: red;
}
  
.logo img {
      width: 100px;
      height: auto;
    }
/* Mobile view ke liye */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;   /* items ek ke neeche ek */
    align-items: flex-start;  /* left align ho jayega */
    font-size: 14px;
    padding: 10px;
  }

  .contact-info {
    margin-bottom: 8px;       /* contact aur social icons ke beech gap */
  }

  .contact-info span {
    display: block;           /* har info (mail, call, location) ek line me */
    margin-bottom: 6px;
  }

  .social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* icons left side */
    gap: 10px;
  }
}
    
    nav {
      display: flex;
      align-items: center;
      padding: 10px 30px;
      background-color: white;
      margin-top: -5px;
    }

    .logo {
      width: 350px;
    }

    .logo img {
      width: 65%;
    }

    .menu {
      flex: 1;
      display: flex;
      justify-content: center;
      font-size: 18px;
      margin-top: 25px;
    }

    .menu ul {
      list-style: none;
      display: flex;
      gap: 15px;
      margin: 0;
      padding: 0;
    }

    .menu ul li a {
      text-decoration: none;
      color: rgb(37, 34, 35);
    }

    .menu ul li a:hover {
      color: rgb(229, 15, 15);
      text-decoration: underline;
    }

    /* Mobile view (screen ≤ 768px) */
@media (max-width: 768px) {
  nav {
    flex-direction: column;     /* logo aur menu neeche aa jayenge */
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo {
    width: 100%;               /* logo full width le */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    width: 120px;              /* mobile ke liye chhota logo */
  }

  .menu {
    width: 100%;
    justify-content: flex-start;
    margin-top: 15px;
  }

  .menu ul {
    flex-direction: column;    /* menu vertical */
    gap: 10px;
    width: 100%;
  }

  .menu ul li {
    margin: 5px 0;
  }

  .menu ul li a {
    font-size: 16px;           /* text thoda chhota */
  }
}

  


   .slider {
  position: relative;
  width: 100%;
  max-height: 550px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 200%; 
  animation: slide 7s infinite;
}

.slide {
  width: 50%;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 600px;
  display: block;
}

.slide .text {
  position: absolute;
  top: 35%;
  left: 7%;
  color: white;
  font-family: 'Brush Script MT';
}

.slide .text h2 {
  font-size: 50px;
  font-family: 'Dancing Script';
}

.slide .text h1 {
  font-size: 35px;
  font-weight: bold;
   font-family: 'Poppins', sans-serif;
}

.slide .text p {
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
}

@keyframes slide {
  0%   { margin-left: 0%; }
  45%  { margin-left: 0%; }
  50%  { margin-left: -100%; }
  95%  { margin-left: -100%; }
  100% { margin-left: 0%; }
}
.trust-section {
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

.trust-section h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 30px;
}

.trust-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.card {
  max-width: 180px;
}

.card i {
  font-size: 36px;
  color: #0d65ae;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.card p {
  font-size: 16px;
  color: #555;
}


.tour-section {
  text-align: center;
  padding: 30px 10px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.tour-section h4 {
  font-size: 46px;
  margin: 20px;
  color: #555;
}

.tour-section p {
  margin-bottom: 50px;
  color: #1e3d4f;
}

.card-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  transform: rotate(-3deg);
}

.card h1 {
  margin: 10px 0 0;
  font-size: 20px;
  color: #0a2a3e;
}

.card p {
  margin: 5px 0 20px;
  font-size: 14px;
  color: #666;
}
.card-container {
  display: flex;
  flex-wrap: nowrap; 
  overflow-x: auto;  
    gap: 20px;          
  padding: 20px;
  justify-content: center; 
}

.card {
  flex: 0 0 auto;
  width: 160px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: #fff;
  padding: 10px;
}

.card img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}





.popular-tour {
  text-align: center;
  padding: 55px 25px;
  background: #0d65ae;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.popular-tour h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.popular-tour p {
  font-size: 16px;
  margin-bottom: 30px;
}

.popular-tour input[type="radio"] {
  display: none;
}

.popular-tour-slides {
  max-width: 1200px;
  margin: auto;
  position: relative;
  height: 250px;
}

.tour-slide {
  display: none;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

#tour-slide1:checked ~ .popular-tour-slides #ts1,
#tour-slide2:checked ~ .popular-tour-slides #ts2 {
  display: flex;
}

.tour-card {
  flex: 0 0 19%;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.tour-card:hover {
  transform: scale(1.05);
}

.tour-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.tour-card h3 {
  font-size: 18px;
  margin: 8px 0 5px;
}

.tour-card h1 {
  font-size: 13.5px;
  margin: 10px 0;
}

.tour-card a {
  margin-top: 50px;
  background: #0d65ae;
  color: #fff;
  border: none;
  padding: 5px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tour-card a:hover {
  background: #d8dfe5;
  transform: scale(1.05);
}

.tour-card a:active {
  transform: scale(0.97);
}


.tour-dots {
  margin-top: 35px;
}

.tour-dots label {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

#tour-slide1:checked ~ .tour-dots label[for="tour-slide1"],
#tour-slide2:checked ~ .tour-dots label[for="tour-slide2"] {
  background: white;
}

/* ========== Responsive (Tablet) ========== */
@media (max-width: 992px) {
  .popular-tour { padding: 40px 18px; }
  .popular-tour h2 { font-size: 28px; }
  .popular-tour p { font-size: 14px; }

  .popular-tour-slides { height: auto; }

  .tour-slide { justify-content: space-evenly; }
  .tour-card {
    flex: 0 0 45%;   /* 2 cards per row */
    margin-bottom: 15px;
  }
  .tour-card img { height: 140px; }
}

/* ========== Responsive (Mobile) ========== */
@media (max-width: 600px) {
  .popular-tour { padding: 30px 14px; }
  .popular-tour h2 { font-size: 22px; }
  .popular-tour p { font-size: 13px; margin-bottom: 18px; }

  .popular-tour-slides { height: auto; }
  .tour-slide { gap: 12px; }

  .tour-card {
    flex: 0 0 100%;  /* 1 card per row */
    margin-bottom: 12px;
  }
  .tour-card img { height: 160px; }
  .tour-card h3 { font-size: 16px; }
  .tour-card h1 { font-size: 13px; }
  .tour-card a { font-size: 13px; padding: 6px 12px; margin-top: 10px; }

  .tour-dots { margin-top: 20px; }
  .tour-dots label { width: 9px; height: 9px; }
}





.b2b-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 60px 10%;
  background-color: #f5faff;
  flex-wrap: wrap;
}

.b2b-images {
  display: flex;
  gap: 20px;
  align-items: center;
}

.left-img .tall-img {
  width: 230px;
  height: 400px;
  object-fit: fill;
  border-radius: 130px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.right-imgs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.circle-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: fill;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.b2b-text {
  max-width: 600px;
}

.b2b-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.b2b-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}



.testimonial-slider {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  position: relative;
}

.testimonial-slider input[type="radio"] {
  display: none;
}

.slider-track {
  overflow: hidden;
}

.testimonial-group {
  display: flex;
  width: 300%;
  transition: transform 0.7s ease-in-out;
}

.testimonial-section {
  background: #f9fcff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-section h2 {
  font-size: 32px;
  color: #001f3f;
  margin-bottom: 40px;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
  background-color: rgb(13, 101, 174);
}

.testimonial-slider {
  display: flex;
  width: 300%;
  animation: scrollGroup 60s infinite;
}

.testimonial-group {
  display: flex;
  justify-content: space-between;
  flex: 0 0 100%;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 32%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.7s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
}

.testimonial-card h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid #00aaff;
}

.client span {
  font-weight: bold;
  color: #001f3f;
}

.testimonial-dots {
  margin-top: 20px;
}

.testimonial-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  animation: blinkDot 15s infinite;
}

.testimonial-dots span:nth-child(1) { animation-delay: 0s; }
.testimonial-dots span:nth-child(2) { animation-delay: 10s; }
.testimonial-dots span:nth-child(3) { animation-delay: 20s; }

@keyframes scrollGroup {
  0% { transform: translateX(0%); }
  33.333% { transform: translateX(-100%); }
  66.666% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

@keyframes blinkDot {
  0%, 100% { background: #00aaff; }
  33% { background: #ccc; }
}



.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('img/Cruise\ &\ Yachts.jpg') no-repeat center center/cover;
  height: 65vh;
  display: flex;
  align-items: center;
  padding: 0 15%;
  color: white;
}

.hero-content {
  max-width: 700px;
}

.hero-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  background-color: #004aad;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #d6d9de;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .hero-section {
    padding: 50px 10%;
    height: auto;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


.footer {
  background-color: #0b66a3;
  color: white;
  margin-top: 80px;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}


.footer-section {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-section h3 {
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 25px;
}

.footer-section p,
.footer-section li {
  margin-bottom: 10px;
  display: flex;
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 2px;
}

.footer-section a {
  text-decoration: none;
  color: white;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #9b0b0b;
}

.social-icons {
  margin-top: 13px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 10px;
}
