/* NaBar */
:root {
  --font-open-sans: "Open Sans", sans-serif;
  --font-poppins: "Poppins", sans-serif;

  /* Responsive Font Sizes using clamp(min, ideal, max) */
  --font15: clamp(13px, 1.1vw, 15px);
  --font16: clamp(14px, 1.2vw, 16px);
  --font18: clamp(15px, 1.4vw, 18px);
  --font20: clamp(16px, 1.6vw, 20px);
  --font22: clamp(18px, 1.7vw, 22px);
  --font24: clamp(18px, 1.8vw, 24px);
  --font28: clamp(20px, 2vw, 28px);
  --font30: clamp(22px, 2.2vw, 30px);
  --font32: clamp(24px, 2.3vw, 32px);
  --font36: clamp(26px, 2.5vw, 36px);
  --font38: clamp(28px, 2.7vw, 38px);
  --font40: clamp(30px, 2.8vw, 40px);
  --font44: clamp(32px, 3.2vw, 44px);
  --font48: clamp(32px, 3.2vw, 48px);
  --font56: clamp(32px, 4vw, 56px);
  --font64: clamp(42px, 4.5vw, 64px);
  --font72: clamp(48px, 5vw, 72px);

  --dark1c: #252525;
  --primary: #38bdf8;
  --gray57: #574d49;
  --white: #fff;

  --py100: clamp(54px, 5vw, 100px) 0;
  --py72: clamp(32px, 5vw, 72px) 0;
}

.hero-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-position: bottom;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #252525a1;
  /* Adjust alpha (0.5) for tint strength */
  z-index: 15;
  /* Between video (10) and content (20) */
  pointer-events: none;
  /* Ensures it doesn't block button clicks */
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 20;
  align-items: center;
  position: relative;
  padding: var(--py72);
  max-width: 1238px;
  margin: auto;
}

.hero-content h2 {
  font-family: var(--font-poppins);
  font-size: var(--font56);
  font-weight: 500;
  line-height: 64px;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
}

.hero-content p {
  font-family: var(--font-open-sans);
  font-size: var(--font22);
  font-weight: 600;
  line-height: 32px;
  color: var(--white);
  text-align: center;
}

.hero-content a {
  padding: 12px 32px;
  font-family: var(--font-open-sans);
  font-size: var(--font18);
  font-weight: 600;
  color: var(--white);
  border-radius: 50px;
  line-height: 28px;
  text-decoration: none;
  display: block;
  box-shadow: inset 0 0 0 1px var(--white);
  background-color: transparent;
  transition: all 0.3s linear;
  border: 1px solid transparent;
}

.hero-content a:hover {
  background-color: var(--white);
  color: var(--dark1c);
  cursor: pointer;
}

.service-card-shadow {
  position: relative;
  background: #3baffa33;
  border-radius: 12px;
  transform: rotate(-11deg);
  transition: transform 0.5s ease;
  /* Set explicit dimensions to prevent collapse */
  width: 90%;
  min-height: 220px;
  /* Add margin for spacing between cards */
  margin: 30px 0;
}

.service-card {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  border: 1px solid #3baffa33;
  box-shadow: 0px 0px 12px 0px #0000001f;
  border-radius: 12px;
  padding: 21px;
  /* Position the card */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(11deg);
  /* Rotate back to cancel parent rotation */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 2;
  /* Set width to prevent stretching */
  width: calc(100% - 10px);
  min-height: 240px;
}

.service-card-shadow:hover {
  transform: rotate(-8deg);
  background-color: var(--primary);
}

.service-card-shadow:hover .service-card {
  /* Counter the parent's hover rotation + add slight lift */
  transform: translate(-50%, -50%) rotate(8deg);
}

.service-card h3 {
  font-family: var(--font-poppins);
  font-size: var(--font22);
  font-weight: 600;
  text-align: center;
  color: var(--dark1c);
  margin: 0;
  line-height: 1.3;
}

.travel-categories {
  background: url("/images/travel-categories.png");
  padding: var(--py100);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.travel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.travel-header h2 {
  font-family: var(--font-poppins);
  font-size: var(--font44);
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 0;
  text-align: center;
  color: var(--white);
}

.travel-header p {
  font-family: var(--font-open-sans);
  font-size: var(--font20);
  text-align: center;
  position: relative;
  color: var(--white);
}

.individual-category {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff33;
  backdrop-filter: blur(6px);
  padding: 24px;
  margin: 12px 0;
  border-radius: 12px;
  align-items: center;
  border: 1px solid transparent;
  justify-content: center;
}

.individual-category:hover {
  border: 1px solid #ffffff;
  backdrop-filter: blur(24px);
}

.individual-category h3 {
  font-family: var(--font-open-sans);
  font-size: var(--font22);
  font-weight: 600;
  color: var(--white);
}

.testimonials {
  background-color: var(--white);
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 7px 29px 0px #64646f33;
  border-radius: 10px;
  transform: scale(0.8);
  transition: all 0.3s;
  opacity: 0.3;
}

.testimonial-upper-quote-img {
  position: absolute;
  top: -20px;
  z-index: 10;
  left: 30px;
}

.owl-item.active.center .testimonials {
  opacity: 1;
  transform: scale(1);
}

.testimonials-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.testimonials-rating img {
  width: 30% !important;
}

.testimonial-description p {
  font-family: var(--font-open-sans);
  font-size: var(--font20);
  font-weight: 400;
  text-align: center;
  color: var(--gray57);
  min-height: 300px;
}

.testimonial-description h2 {
  font-family: var(--font-poppins);
  font-size: var(--font24);
  font-weight: 500;
  margin-bottom: 0;
  color: var(--gray57);
  margin-bottom: 4px;
  text-align: center;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.fa-angle-left:before,
.fa-angle-right:before {
  color: var(--sky-blue);
}

.owl-nav .owl-prev {
  position: absolute;
  left: -55px;
  top: 50%;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: #ffffff10 !important;
  display: flex;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-nav .owl-next {
  position: absolute;
  top: 50%;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: #ffffff10 !important;
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px);
  justify-content: center;
  right: -55px;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.about-us {
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  background: url("/images/about-bg.png");
}

.about-heading {
  align-items: flex-start !important;
  background: #f5fbff;
  padding: 22px;
  justify-content: center;
  gap: 12px !important;
}

.about-heading p {
  text-align: left !important;
}

.destinations {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.image-container {
  position: relative;
  display: block;
}

.image-container img {
  height: 500px;
  aspect-ratio: 3/4;
  display: block;
  width: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 14px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #1c1c1cd0 100%);
  pointer-events: none;
  border-radius: 14px;
}

.destination-details {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: white;
}

.destination-details h2 {
  margin: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(20px);
  opacity: 1;
  margin-bottom: 0;
  background: #38bdf866;
  font-family: var(--font-poppins);
  font-size: var(--font18);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
}

.destination-details p {
  margin: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(20px);
  opacity: 1;
  font-family: var(--font-open-sans);
  font-size: var(--font20);
}

.destination-details h2 {
  margin-bottom: 8px;
  /* Add some space between h2 and p */
}

.destination-details p {
  max-height: 1.2em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.destinations:hover .destination-details h2,
.destinations:hover .destination-details p {
  transform: translateY(0);
}

.destinations:hover .destination-details p {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-height: none;
}

/* -------------- contact us --------------- */
.contact-us {
  position: relative;
}

.contact-us-padding {
  padding: var(--py100);
}

.contact-us-gradient {
  background: linear-gradient(96.83deg, #ffffff 33.05%, #c8e9fe 117.05%);
  height: 645px;
  position: absolute;
  top: 0;
  z-index: -30;
  left: 0;
  right: 0;
}

.contact-us-card {
  box-shadow: 1px 2px 12px 0px #00000040;
  border-radius: 22px;
  background-color: #fff;
  padding: 40px;
  display: flex;
  gap: 24px;
}

.connect-with-us {
  padding: 22px;
  background: linear-gradient(315.39deg, #3aaffa 9.62%, #0abb73 90.38%);
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.connect-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.connect-info h3 {
  font-size: var(--font32);
  font-family: var(--font-poppins);
  font-weight: 700;
  color: var(--white);
}

.connect-info p {
  font-size: var(--font20);
  font-family: var(--font-open-sans);
  color: var(--white);
}

.connect-info div {
  display: flex;
  gap: 6px;
  align-items: center;
}

.connect-info div div {
  font-size: var(--font16);
  font-family: var(--font-open-sans);
  font-weight: 400;
  text-decoration: none;
  color: var(--white);
}

.connect-with-us iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-height: 275px !important;
}

.connect-with-us-form {
  width: 100%;
  padding: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  color: var(--dark1c);
  font-size: var(--font18);
  font-family: var(--font-open-sans);
}

input,
textarea {
  padding: 12px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  font-weight: 600;
  font-size: var(--font18);
  font-family: var(--font-open-sans);
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
}

input.error,
textarea.error {
  border-color: #e74c3c;
}

input.success,
textarea.success {
  border-color: #27ae60;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: -4px;
  display: none;
}

.error-message.show {
  display: block;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  background: linear-gradient(270.33deg, #39affa 0.03%, #0abc73 99.97%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 160px;
  font-size: var(--font24);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.4s linear;
}

button[type="submit"]:hover {
  background: linear-gradient(90.33deg, #39affa 0.03%, #0abc73 99.97%);
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.iti {
  width: 100%;
}

.iti__flag-container,
.iti__selected-flag {
  border-radius: 12px;
}

#phone {
  padding-left: 52px;
  width: 100%;
}

.success-message {
  color: var(--dark1c);
  display: none;
  text-align: center;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-open-sans);
  font-size: var(--font24);
  animation: fadeIn 0.5s ease-in;
  min-height: 300px;
}

.success-message.show {
  display: flex;
}

.contact-form.hide {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------footer------------------- */

.footer {
  background: var(--primary);
  position: relative;

  padding: var(--py72);
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-logo img {
  max-height: 81px;
  width: auto;
  border-radius: 10px;
}

.footer .row {
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}

.footer-menu {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.footer-menu a {
  color: var(--white);
  font-family: var(--font-open-sans);
  font-size: var(--font18);
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  z-index: 100;
}

.bottom-footer-sec {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  color: var(--white);
  font-family: var(--font-open-sans);
  font-size: var(--font18);
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.left p {
  color: var(--white);
  font-family: var(--font-open-sans);
  font-size: var(--font20);
  font-weight: 500;
  max-width: 560px;
}

.right {
  display: flex;
  gap: 12px;
}

.right-address,
.individual-contact {
  display: flex;
  gap: 16px;
}

.right-address img,
.individual-contact img {
  height: 40px;
  width: auto;
}

.right-address p,
.individual-contact a {
  color: var(--white);
  font-family: var(--font-open-sans);
  font-size: var(--font20);
  font-weight: 400;
  margin-bottom: 0;
  text-decoration: none;
}

.right-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.right-content a:hover {
  text-decoration: underline;
  color: var(--white);
}

.footer-pdf {
  display: flex;
  gap: 8px;
  padding: 8px;
  width: 276px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  background: var(--primary);
}

.footer-pdf p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.floating-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}

@media (320px <=width <=800px) {
  .hero-section {
    min-height: 500px;
  }

  .navbar-brand img {
    max-height: 40px;
    width: auto;
  }

  .topbar-phone span,
  .topbar-email span {
    display: none;
  }

  .topbar-contact {
    gap: 20px;
  }

  /* footer */
  .footer-section {
    padding: 64px 0;
  }

  .bottom-footer {
    padding-top: 16px;
  }

  .footer-menu {
    padding: 16px 0;
  }

  .footer-section .footer-info br {
    display: none;
  }

  .side-nav ul li {
    padding-left: 0 !important;
  }

  .contact-form-main-details .form-items {
    width: 100%;
  }

  .right {
    gap: 16px;
    padding-top: 16px;
    flex-direction: column;
  }

  .right-content {
    gap: 16px;
  }

  .bottom-footer-sec {
    flex-direction: column-reverse;
  }

  .floating-icon img {
    height: 45px;
    width: 45px;
  }

  .margin-btm {
    margin-bottom: 12px !important;
  }

  .footer .row {
    padding-bottom: 24px;
  }

  .right-address,
  .individual-contact {
    align-items: center;
  }

  .butn:link,
  .butn:visited {
    margin-left: 0 !important;
  }

  .dropbtn {
    padding: 0;
    margin-top: 4px;
  }

  .navbar {
    padding: 12px;
  }

  .navbar .container {
    padding: 0 !important;
  }
  .contact-us-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .about-heading {
    padding: 8px;
  }
  .about-heading h2 {
    text-align: center;
    width: 100%;
  }
  .about-heading p {
    text-align: center !important;
  }

  .connect-with-us-form {
    padding: 0;
  }
  button[type="submit"] {
    padding: 11px;
  }
}
