.navbar.navbar-expand-lg {
background: linear-gradient(90deg, #432167, #ffffff);

}

.navbar .nav-link {
  color: #000000;
  margin-left: 10px;
  transition: 0.3s ease;
  font-size: 20px;
}

.navbar .nav-link:hover {
  color: #157ea4;
}

.navbar .nav-link.active {
  background-color: rgb(153, 72, 194);
  border-radius: 5px;
  padding: 5px 12px;
}

.navbar-brand {
  font-size: 1.5rem;; 
  display: flex ;
  align-items: center ;
  gap: 10px ;
}

    .hero {
  display: flex;
  background:#aca5bd;
  color: #000000;  
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
}

    .hero-left, .hero-right {
      flex: 1;
      padding: 20px;
    }

    .hero-left p {
        font-size: 25px;
    }

    .hero-left h1 {
      margin: 10px 0;
      font-size: 30px;
    }
    .hero-left .btn {
      display: inline-block;
      background: rgb(153, 72, 194);
      color: #000;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      font-size: 17px;
    }
    .hero-right {
      display: flex;
      gap: 15px;
      align-items: flex-end; 
    }
    .hero-right img:first-child {
      width: 150px;   
      height: 100px;
      border-radius: 6px;
      object-fit: cover;
    }
    .hero-right img:last-child {
      width: 280px;   
      height: 180px;  
      border-radius: 6px;
      object-fit: cover;
    }

    .about {
      background: #371b55;
      color: #333;
      padding: 60px 40px;
      text-align: center;
      border-top: 3px solid #eee;
    }
    .about h2 {
      font-size: 30px;
      margin-bottom: 20px;
      color: #FFFFFF;
    }
    .about p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 18px;
        color: #ddd;
    }

        .tours {
      background: #aca5bd;
      padding: 60px 40px;
      text-align: center;
    }
    .tours h2 {
      font-size: 30px;
      margin-bottom: 15px;
      color: #0a3c8e;
    }
    .tours p {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 18px;
      color: #555;
    }
    .tour-cards {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 250px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .card h3 {
      margin: 17px;
      font-size: 18px;
      color: #0a3c8e;
    }
    .card p {
      margin: 0 15px 20px;
      font-size: 15px;
      color: #555;
    }
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

.destinations {
  background: #ffffff;
  padding: 60px 40px;
  text-align: center;
}

.destinations h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #060606;
}

.destinations p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #d2d2d2;
}

.destination-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.destination-cards .card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 280px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-cards .card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

.destination-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.testimonials h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.testimonials p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

.carousel-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 1s ease forwards;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6a0dad; 
  margin-bottom: 15px;
}


.carousel-slide p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
  font-size: 18px;
}

.carousel-slide h4 {
  color: #6a0dad; 
  font-weight: bold;
}

.carousel-dots {
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #6a0dad;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer {
      background: linear-gradient(90deg, #432167, #ffffff);
      color: #212020;
      padding: 50px 0 30px 0;
      font-size: 18px;
    }

    .footer h5 {
      font-weight: bold;
      margin-bottom: 20px;
      font-size: 25px;
      color: #000000;

    }

    .footer a {
      color: #151515;
      text-decoration: none;
      transition: color 0.2s ease;
      font-size: 19px;
    }

    .footer a:hover {
      color: #ffd700;
    }

    .follow-us {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      text-align: center;
      margin-top: 20px;
    }

    .follow-us .social-icons {
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .follow-us .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .follow-us .social-icons i {
      font-size: 18px;
    }

    .follow-us .social-icons a:hover {
      transform: scale(1.12);
      background: #ffd700;
      color: #000;
    }

    .copyright {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  margin-top: 0;
}