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

/* Navbar overlay */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
}
.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;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: white !important;
}

.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-size: 20px;
  border-radius: 20px;
  font-family: sans-serif;
}

#card-expbanner h2 {
  font-family: "Ephesis", cursive;
  padding-top: 10px;
  font-size: 80px;
}
#card-expbanner p {
  font-size: 18px;
}
#card-expbanner button {
  background-color: lawngreen;
  color: rgb(47, 47, 47);
  font-weight: 600;
}
#card-expbanner h3 {
  font-size: 35px;
  font-family: "oswald", sans-serif;
  color: white;
  font-weight: bold;
}
@media (max-width: 990px) {
  #card-expbanner h2 {
    font-family: "Ephesis", cursive;
    padding-top: 10px;
    font-size: 40px;
  }
  #card-expbanner p {
    font-size: 18px;
  }
  #card-expbanner button {
    background-color: lawngreen;
    color: rgb(47, 47, 47);
    font-weight: 600;
  }
  #card-expbanner h3 {
    font-size: 20px;
    font-family: "oswald", sans-serif;
    color: white;
    font-weight: bold;
  }
}
@media (max-width: 660px) {
  #card-expbanner h2 {
    font-family: "Ephesis", cursive;
    padding-top: 10px;
    font-size: 20px;
  }
  #card-expbanner p {
    font-size: 12px;
  }
  #card-expbanner button {
    background-color: lawngreen;
    color: rgb(47, 47, 47);
    font-weight: 600;
  }
  #card-expbanner h3 {
    font-size: 15px;
    font-family: "oswald", sans-serif;
    color: white;
    font-weight: bold;
  }
}
.overlay-text {
  z-index: 2;
  padding: 20px;
  padding-top: 100px;
}

.image-overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.navbar .nav-link {
  position: relative;
  overflow: hidden;
}

.navbar .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after {
  transform: translateX(-50%) scaleX(1);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
}

/* above-maincard */
#above-maincard {
  color: white;
}
#above-maincard h5 {
  font-family: "Ephesis", cursive;
  font-size: 50px;
}
#above-maincard h1 {
  font-family: "oswald", sans-serif;
  font-size: 70px;
}
#above-maincard p {
  font-family: sans-serif;
  font-size: 20px;
}
.btn-animated {
  font-weight: bold;
  color: white;
  background-color: #007604;
  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, #007604 0%, #92fe9d 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;
}
/* main-card */

.main-card {
  background-color: #ffffff;
  padding-top: 0;
  margin-top: 0;
}

#main-fullcard {
  max-width: 900px;
  margin: 0 auto;
}

.card.travel-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

@media (max-width: 768px) {
  #main-fullcard {
    width: 100%;
    padding: 0 1rem;
  }
}

#image-fullcard {
  width: 100%;
  height: auto;
}
#main-fullcard img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.bg-purple {
  background: #007604;
  color: white;
}

.object-cover {
  object-fit: cover;
  height: 100%;
}
@media (max-width: 576px) {
  .card-title {
    font-size: 1.25rem;
  }

  .btn-purple {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
  }

  #main-fullcard {
    padding: 0 0.5rem;
  }
}
/* 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-top: 2px solid white;
  border-bottom: 2px solid white;
  padding-bottom: 40px;
}

.footer-links h2 {
  padding-bottom: 30px;
  color: lawngreen;
  font-family: "oswald", sans-serif;
  font-size: 40px;
}

.footer-links h3 {
  color: lawngreen;
  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;
  }
}
