:root {
  --primary-color: #ff7a00;
  --primary-hover: #d46500;
  --accent-color: #b93200;
  --gradient: linear-gradient(90deg, #8b0d01, #c27300);
  --text-color: #333;
  --bg-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  background-image: url('assets/why us bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

a,
.nav-menu ul li a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar {
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu ul {
  display: flex;
  gap: 24px;
}

.nav-menu ul li a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: var(--accent-color);
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 10px 20px;
  }

  .nav-menu ul li {
    margin: 10px 0;
  }

  .nav-menu.show {
    display: block;
  }

  .nav-content {
    flex-wrap: wrap;
  }

  .nav-right {
    display: none;
  }
}

/* HERO SECTION */

.hero-section {
  position: relative;
  background: var(--bg-color);
  padding: 6rem 1rem;
  overflow: hidden; /* ✅ prevents overflow glitches */
  text-align: center;
}

.swirl {
  position: absolute;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.swirl-1 {
  top: -200px;
  left: -200px;
  width: 220px;
  opacity: 0.45;
}

.swirl-2 {
  top: 100px;
  left: 15%;
  width: 300px;
  opacity: 0.55;
}

.swirl-3 {
  bottom: -200px;
  left: 550px;
  width: 240px;
  opacity: 0.75;
}

.swirl-4 {
  position: absolute;
  top: 0;
  left: 0px;;
  width: 100%;
  max-width: 100%;
  z-index: 0;
  opacity: 1;
  height: auto;
}

.swirl-4 img {
  width: 50%;
  height: auto;
}

.swirl-5 {
  position: absolute;
  top: 0;
  left: 950px;
  width: 100%;
  z-index: 0;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 600px;
  margin-right: 30px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-explore {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: #fff;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.hero-image {
  flex: 1 1 400px;
  max-width: 700px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* WHY US */

.why-bg {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.why-choose {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 40px;
  color: #6c1c00;
  text-align: center;
}

.why-choose span {
  color: #d65b00;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(to bottom right, #1a1a1a, #444);
  opacity: 0.95;
  padding: 30px 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: white;
  transition: background 0.4s ease, transform 0.3s ease;
}

.card:hover {
  background: linear-gradient(to bottom right, #8b0d01, #c27300);
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #fff;
}

.card ul {
  padding: 0;
  color: white;
}

.card li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* ABOUT US */

.about-us-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.about-us-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text {
  flex: 1 1 500px;
  max-width: 600px;
  padding-right: 20px;
}

.about-text h4 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #7a1212;
}

.about-text p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

/* IMPACT SECTION */

.impact-section {
  padding: 60px 0;
  background-color: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
}

.impact-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #8b0d01;
  margin-bottom: 15px;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-text {
  font-size: 1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-row img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-row img:hover {
  transform: scale(1.5);
}

/* FOOTER */

.footer {
  background: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin: 0;
}

/* ANIMATIONS */

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .nav-menu ul {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-content,
  .about-us-content {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }

  .hero-text,
  .about-text {
    margin-right: 0;
    margin-bottom: 20px;
    padding: 0;
    max-width: 100%;
  }

  .hero-image img,
  .about-image img {
    width: 100%;
    height: auto;
  }

  /* Fix swirl images in mobile view */
.swirl-4,
.swirl-5 {
  left: 0;
  width: 100vw;
  overflow: hidden;
  z-index: 0;
}

.swirl-4 img,
.swirl-5 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  user-select: none;
}


  .swirl-2,
  .swirl-3 {
    display: none;
  }

  .why-bg,
  .about-us-section,
  .impact-section {
    padding: 30px 15px;
  }

  .impact-heading {
    font-size: 1.5rem;
  }

  .impact-text {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .logo-row {
    gap: 25px;
  }

  .logo-row img {
    height: 35px;
    max-width: 90px;
  }
}


.testimonial-section {
  padding: 60px 20px;
  background: url('assets/reviews.webp');
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  width: calc(50% - 30px); /* 2 cards per row with gap */
  max-width: 500px;
}

.testimonial-author {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #2c3e50;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Stack on small screens */
@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
  }
}


.swiper {
  max-width: 900px;
  margin: auto;
}

.swiper-wrapper {
  display: flex;
  gap: 20px; Adds space between the slides
}

.swiper-slide {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 30px 40px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 20px); /* Makes each slide take up 50% width of the container */
  box-sizing: border-box;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  bottom: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid #f4f4f4;
}

.swiper-slide:nth-child(odd)::after {
  left: 50px;
  border-left: 20px solid transparent;
}

.swiper-slide:nth-child(even)::after {
  right: 50px;
  border-right: 20px solid transparent;
}

.testimonial-author {
  font-weight: bold;
}

.testimonial-role {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}
.recruiter-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: transparent;
  gap: 2rem;
}

.recruiter-content {
  flex: 1 1 400px;
  max-width: 500px;
}

.recruiter-content h2 {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruiter-content p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


.recruiter-image {
  flex: 1 1 300px;
  text-align: center;
  z-index: 2;
}

.recruiter-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.popular-destinations {
  position: relative;
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.popular-destinations h2 {
  font-size: 2rem;
  color: #8b2c00;
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.popular-destinations p {
  margin: 5px 0 30px;
  font-size: 1rem;
  color: #333;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  /* display: flex; */
  flex-direction: column;
  /* align-items: center; */
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-track {
  display: flex;
  animation: scrollCarousel 10s linear infinite; /* default in case JS fails */
  will-change: transform;
}

.card {
  width: 300px;
  margin: 0 10px;
  border-radius: 16px;
  overflow: hidden;
  background: #333;
  color: white;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 1rem;
}

/* .carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-dots .dot.active {
  background-color: #8b2c00;
} */

