* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.bar {
  background-color: #003E47;
  height: 30px;
  color: white;
  padding-top: 5px;
  text-align: right;
  padding-right: 30px;
}

header {
  background: #ffffff;
  color: rgb(6, 2, 63);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: rgb(6, 2, 63);
  transition: 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive: hide links and show menu icon on small screens */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links a {
    margin: 0.5rem 0;
  }
}


.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
  height:fit-content
}

/* Container holding slides */
.carousel-container {
  display: flex;
  transition: transform 0.6s ease;
}

/* Each slide */
.slide {
  min-width: 100%;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Dots (indicators) */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ffffff;
}
 
.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 8px;
}

.carousel-text p {
  font-size: 7.1rem;
  line-height: 1.5;
}

.hero {
  
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 6rem 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-overlay {
  position: absolute;
  top: 10%;            /* center vertically */
  right: 0%;           /* center horizontally */
  transform: translate(-50%, -50%);
  color: white;        /* text color */
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 5px black; /* makes text readable */
}


.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: 0.3s;
  position: relative;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destinations {
  padding: 4rem 2rem;
  text-align: center;
}

.reviews-wrapper {
  position: relative;
  text-align: center;
  padding: 2rem 0;
  background: #f9f9f9;
}

.reviews-wrapper h2 {
  margin-bottom: 1.5rem;
}

/* Scrollable Row */
.reviews-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
  scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* Review Card */
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: white;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  text-align: center; /* Center name + stars */
}

.stars {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.name {
  font-weight: bold;
  margin-bottom: .5rem;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  padding: 5px 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

.arrow:hover {
  background: #eee;
}

.more-reviews-section {
  text-align: center;
  margin-top: 2rem;
}

.more-reviews-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.review-links a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.review-links a:hover {
  color: #007bff;
}
.review-links a img {
  width: 40px;    /* adjust width */
  height: 40px;   /* adjust height */
  object-fit: contain; /* keeps logo proportions */
}

footer {
  background: #003E47;
  color: white;
  padding: 3rem 1rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 2px solid #ff6600;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.footer-column p,
.footer-column ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #ff6600;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 1rem;
}