* {
  margin: 0;
  padding: 0;
}

.video-bg video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content-overlay {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.content-overlay .container {
  flex: 1;
}

#video-tittle h1 span {
  display: block;
  font-weight: bold;
  font-size: 3rem;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}

.dropdown-item {
  color: rgb(0, 0, 0);
  background-color: white;
}

.nav-item a {
  font-family: sans-serif;
  font-size: 20px;
  border-radius: 20px;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
}

.navbar-nav .nav-link {
  position: relative;
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

.navbar {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 30px;
}

/* input-section */

.form-control,
.form-select {
  font-family: sans-serif;
  background-color: transparent;
  border: 1px solid #3a3f51;
  color: white;
}

#user-forminput h4 {
  font-family: sans-serif;
}

.form-control::placeholder {
  font-family: sans-serif;
  color: #999;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: #777;
}

.btn-animated {
  font-weight: bold;
  color: rgb(255, 255, 255);
  background-color: rgb(67, 134, 0);
  padding: 12px 20px;
  border: none;
  border-radius: 0.6rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  height: 100%;
}

.btn-animated span:not(.text) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  background: linear-gradient(90deg, #6b6b6b 0%, #ffffff 100%);
  border-radius: 50%;
  transition: 0.6s ease;
  z-index: 1;
}

.btn-animated .text {
  position: relative;
  z-index: 2;
}

.btn-animated span:nth-child(1) {
  transform: translate(-3.3em, -4em);
}

.btn-animated span:nth-child(2) {
  transform: translate(-6em, 1.3em);
}

.btn-animated span:nth-child(3) {
  transform: translate(-0.2em, 1.8em);
}

.btn-animated span:nth-child(4) {
  transform: translate(3.5em, 1.4em);
}

.btn-animated span:nth-child(5) {
  transform: translate(3.5em, -3.8em);
}

.btn-animated:hover span:not(.text) {
  transform: translate(-50%, -50%) scale(4);
  transition: 1.5s ease;
}

.form-select option {
  background-color: #222;
  color: #fff;
}

/* left-right */
#full-main {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

#right img {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  width: 100%;
}

#left {
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#nat-callin {
  color: rgb(41, 39, 39);
  font-family: "Ephesis", cursive;
  font-weight: 500;
  font-size: 60px;
}

#left h1 {
  color: #000000;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 80px;
}

#left h2 {
  font-size: 40px;
  font-family: "Ephesis", cursive;
}

#left a {
  font-family: "Oswald", sans-serif;
  color: #004572;
  border: solid 2px #003050;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 20px;
  background-color: #ebebeb;
}

/* card carousel */
.card {
  position: relative;
  width: 300px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #121212;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.card::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  transform: scale(0.95);
  filter: blur(20px);
}

.img-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}

.img-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.card:hover .content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.card:hover .img-content {
  scale: 2.2;
  rotate: 20deg;
  filter: blur(6px);
}

.content .heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.scrolling-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scrolling-wrapper .card {
  flex: 0 0 calc(100% / 4 - 1rem);
  scroll-snap-align: start;
  min-width: 300px;
  max-width: 300px;
  height: 350px;
}

.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.writting-content h2 {
  color: #282424;
  font-family: "Ephesis", cursive;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
}

/* footer */
#footer-full {
  background-color: #282626;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: sans-serif;
  color: #ffffff;
  gap: 20px;
  border-bottom: 2px solid white;
  padding-bottom: 40px;
}

.footer-links h2 {
  padding-bottom: 30px;
  color: rgb(245, 147, 0);
  font-family: "oswald", sans-serif;
  font-size: 40px;
}

.footer-links h3 {
  color: rgb(245, 147, 0);
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 27px;
}

.footer-links p {
  line-height: 1.4;
  font-size: 20px;
}

.footer-links h6 {
  text-align: start;
  width: 90%;
  margin-bottom: 10px;
}

.footer-links ul,
a {
  color: white;
  line-height: 2;
  font-family: sans-serif;
  display: flex;
  text-align: start;
  flex-direction: column;
  list-style: none;
  cursor: pointer;
  padding-left: 0;
  margin: 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
}

.footer-bottom {
  text-align: center;
  font-weight: bold;
  color: white;
  padding-top: 20px;
}



/* Tablets */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-links h2 {
    font-size: 32px;
  }

  .footer-links h3 {
    font-size: 22px;
  }
  
  .footer-links p,
  .footer-links h6 {
    font-size: 16px;
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .footer-links h2 {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .footer-links h3 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  
  .footer-links p,
  .footer-links h6 {
    font-size: 14px;
    width: 100%;
  }
  
  .footer-links ul,
  a {
    line-height: 1.6;
  }
  
  .footer-bottom {
    padding: 15px 10px;
    font-size: 14px;
  }
}

/* who we are */

.full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 80px;
  align-items: center;
}

.left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.left h3 {
  font-family: "Ephesis", cursive;
  font-size: 40px;
}

.left h1 {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  margin-bottom: 20px;
}

.right h4 {
  font-family: "Oswald", sans-serif;
  font-size: 50px;
}

.left p,
.right p {
  font-family: sans-serif;
  color: #555;
}

.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}

button {
  margin-top: 30px;
  padding: 10px 25px;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  background-color: rgb(245, 147, 0);
  color: white;
  border: none;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* full left-right card (above 1400px) */
@media (min-width: 1400px) {
  .full {
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    padding: 80px 100px;
  }

  .left h1 {
    font-size: 100px;
  }

  .left h3 {
    font-size: 50px;
  }

  .left p,
  .right p {
    font-size: 22px;
  }

  button {
    font-size: 20px;
    padding: 16px 40px;
  }
}

/* full left-right card (768px–1199px) */
@media (max-width: 1199px) {
  .full {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 40px;
  }

  .left h1 {
    font-size: 60px;
  }

  .left h3 {
    font-size: 32px;
  }

  .left p,
  .right p {
    font-size: 18px;
  }

  button {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Small device */
@media (max-width: 767px) {
  .full {
    padding: 30px 20px;
    gap: 30px;
  }

  .left h1 {
    font-size: 40px;
  }

  .left h3 {
    font-size: 26px;
  }

  .left p,
  .right p {
    font-size: 16px;
  }

  button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* collage */
#collage-content h2 {
  font-family: "Ephesis", cursive;
  font-size: 60px;
  text-align: center;
}

@media (max-width:768px) {
  #collage-content h2 {
    font-family: "Ephesis", cursive;
    font-size: 30px;
    text-align: center;
  }

  #collage-content p {
    font-family: sans-serif;
    font-size: 10px;
    text-align: center;
  }
}

#collage-content p {
  font-family: sans-serif;
  font-size: 20px;
  text-align: center;
}

.collage-btn {
  display: flex;
  justify-content: center;
}

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 10px;
  padding: 20px;
}

.destination {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.destination span {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
}

.new {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #ffd700;
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
}


.africa {
  grid-column: 1 / span 2;
  grid-row: 1 / 2;
}

.india {
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
}

.thailand {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.china {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

@media (max-width: 768px) {
  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .africa,
  .india,
  .thailand,
  .china {
    grid-column: span 1 ;
    grid-row: span 1 ;
    height: 200px;
  }
}

/* second collage */
#first-second-third {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

#first-second-third img {
  width: 100%;
  padding: 10px;
  object-fit: cover;
}

.first {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first-item h3 {
  font-family: "Ephesis", cursive;
  font-size: 50px;
}

.first-item h6 {
  font-size: 18px;
  border: 2px solid rgb(245, 147, 0);
  padding: 10px;
  color: rgb(245, 147, 0);
  text-align: center;
  border-radius: 20px;
}
.find-pkg-btn a{
  text-decoration: none;
}
.find-pkg-btn button {
  padding: 10px 20px;
  background-color: rgb(245, 147, 0);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.find-pkg-btn button:hover {
  background-color: rgb(220, 130, 0);
}

@media (max-width: 991px) {
  #first-second-third {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .first-item h3 {
    font-size: 30px;
  }

  .first-item h6 {
    font-size: 16px;
    border-radius: 13px;
  }
}

@media (max-width: 768px) {
  #first-second-third {
    grid-template-columns: 1fr;
  }

  .first, .second, .third {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .first-item, .second-item, .third-item {
    width: 100%;
    text-align: center;
  }

  .first-item h3 {
    font-size: 26px;
  }

  .first-item h6 {
    font-size: 14px;
  }

  .find-pkg-btn button {
    width: 100%;
  }
}


