@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  --black-color: #000000;
  --white-color: #ffffff;
  --main-color: #1ca1a8;
  --dark-color: #148b94;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --h1-font: "Quattrocento", serif;

  /**
   * typography
   */



  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}



/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";

}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
input,
label,
button,
ion-icon { display: block; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html, body {
  font-family: "Poppins";
  scroll-behavior: smooth;
  max-width: 100%;
}
body {
  overflow-y: auto; /* only one vertical scrollbar */
}

body { background: radial-gradient(circle at top right, #3772ff 10%, #007bff 20%, #ffffff 60%);

  background-image: url(Assets/bg.png);
  font-family: "Poppins";
}
/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  color: var(--white);
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background:#007bff;
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background:#fff;
  border-color:#000742;
  color: #000742;
  transition: all 0.5s ease-in;
}

.btn-secondary { border-color: var(--white); 
padding:10px 50px}

.btn-secondary:is(:hover, :focus) { background:#007bff;
transition: all 1s ease;
border: #fff 2px solid;}

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family:"Poppins";
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gunmetal); }

.h2 { font-size: 65px; 
color: #007bff;}


.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: 35px;
  font-family:"Poppins";
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px;
line-height: 1.1;
 width: 100%;        /* container uses full mobile width */
  max-width: 100%;    /* prevents overflow */
  padding: 0;    /* optional: small horizontal padding */
  box-sizing: border-box; }

.section-text {
  color:#000742;
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}
h2 span{
  width: 100%;
}

/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
 
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
  display: none;
  margin-top: 10px;

}

.header.active .header-top {
  position: fixed;
  background: #ffffff;
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);

}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background:#001e49;
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

.header-top .logo { margin-inline: auto; }

.header-top .logo img { max-width: 150px; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0px;
  color: #001e49;
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.search-btn { font-size: 20px; }

.header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
  background-color: #ffffff;
        box-shadow: 10px 8px 20px rgba(255, 255, 255, 0.06);


}
.header-bottom{
   box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.193);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color:#ffffff;
  padding: 8px;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}


.social-link:is(:hover, :focus) { background: hsl(246, 100%, 17%); }

.header .btn { --padding: 4px 20px; }

.header .btn:hover{
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}

.header .navbar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 1s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img { width: 150px; }

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { border-top: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 15px 20px;
  color: var(--jet);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) { color:#011af9;}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}

/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Optional: darken video for readability */
}

.hero-title {
  font-size: var(--fs-1);
  font-weight: var(--fw-800);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  color: var(--white);
  width: fit-content;
}

.hero-text {
  font-size: var(--fs-5);
  margin-bottom: 40px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}
.btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* optional for responsiveness */
  margin-top: 1rem;
}

/*-----------------------------------*\
 * #TOUR SEARCH
\*-----------------------------------*/

.tour-search {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.tour-search-form .input-label {
  color: var(--white);
  font-size: var(--fs-4);
  margin-left: 20px;
  margin-bottom: 10px;
}

.tour-search-form .input-field {
  background: var(--white);
  padding: 10px 15px;
  font-size: var(--fs-5);
  border-radius: 50px;
}

.tour-search-form .input-field::placeholder { color: var(--spanish-gray); }

.tour-search-form .input-field::-webkit-datetime-edit {
  color: var(--spanish-gray);

}

.tour-search-form .input-wrapper { margin-bottom: 15px; }

.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 35px;
}

/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/

.popular { padding-block: var(--section-padding); }

.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-25);
  height: 430px;
}

.popular-card .card-img { height: 100%; }

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

.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-25);
  padding: 20px;
}


.popular-card .card-rating {
  background: var(--bright-navy-blue);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.popular-card .card-subtitle {
  color: var(--blue-ncs);
  font-size: var(--fs-6);

  margin-bottom: 8px;
}

.popular-card .card-title { margin-bottom: 5px; }

.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

.popular .btn { margin-inline: auto; }

/*-----------------------------------*\
 * #PACKAGE
\*-----------------------------------*/

.package { padding-block: var(--section-padding); }

.package-list { margin-bottom: 40px; }

.package-list > li:not(:last-child) { margin-bottom: 30px; }

.package-card {
  background: var(--cultured);
  overflow: hidden;
  border-radius: 35px;
  box-shadow: 5px 0 10px hsla(246, 100%, 14%, 0.404);
  
}

.package-card .card-banner { height: 250px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-card .card-banner img:hover{
        transform: scale(1.08);
        transition: all 2s ease;
}

.package-card .card-content { padding: 30px 20px; }

.package-card .card-title { margin-bottom: 15px; }

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: var(--white);
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

.card-meta-item { position: relative; }

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--black-coral);
  font-size: var(--fs-8);
}

.meta-box > ion-icon {
  color:#007bff;
  font-size: 13px;
}

.package-card .card-price {
background: #47eded;
background: linear-gradient(0deg, rgba(71, 237, 237, 1) 0%, rgba(0, 123, 255, 1) 100%);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
  transition: all 3s;
}



.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews { font-size: var(--fs-5); }

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
  color: hsl(56, 100%, 50%); }

.package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 100%); }

.package-card .price {
  font-size: var(--fs-2);
  font-family:"poppins";
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.package-card .price span {
  font-size: var(--fs-7);
  font-weight: initial;
}

.package .btn { margin-inline: auto; }

/*-----------------------------------*\
 * #GALLERY
\*-----------------------------------*/

.counter, .plus {
  display: inline-block;
  font-size: 32px; /* match your number size */
  font-weight: bold;
  color: #007bff;
}


.gallery { padding-block: var(--section-padding); }

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-15);
  overflow: hidden;
}

.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

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

/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
background: #47eded;
background: linear-gradient(0deg,rgba(71, 237, 237, 1) 0%, rgba(0, 123, 255, 1) 100%);
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title) { color: #fff;
   text-shadow: 0 1px 10px hsla(239, 100%, 13%, 0.5);
 }

.cta .section-text { font-size: var(--fs-5);
color: #000000;
 text-shadow: 0 1px 10px hsla(0, 0%, 100%, 0.5); }

/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background:#000742;
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

.footer-brand { margin-bottom: 30px;
margin-right: 100px;
text-justify: auto; }

.footer-brand img { width: 280px; }

.footer-brand .logo { margin-bottom: 20px; }

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
}

.footer-contact { margin-bottom: 30px; }
.contact-title {
  position: relative;
  font-family:"poppins";
  font-weight:800;
  margin-bottom: 30px;
  margin-top: 30px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bright-navy-blue);
}

.contact-text {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  max-width: 200px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item ion-icon { --ionicon-stroke-width: 40px; }

.contact-link,
address {
  font-style: normal;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.contact-link:is(:hover, :focus) { color: var(--white); }

.form-text {
  font-size: var(--fs-5);
  margin-bottom: 20px;
}

.footer-form .input-field {
  background: var(--white);
  font-size: var(--fs-5);
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.footer-form .btn { width: 100%; }

.footer-bottom {

  background: #000742;
  padding-block: 20px;
  text-align: center;
  border-top: 1px solid #007bff;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.copyright a {
  color: inherit;
  display: inline-block;
}

.copyright a:is(:hover, :focus) { color: var(--white); }

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li { position: relative; }

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--white); }

/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--bright-navy-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) { opacity: 1; }

  .container-footer{
    justify-items: center;
  }




/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }

  .container-footer{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
padding: 1px 130px;
  justify-items: center;
}




  /**
   * HEADER
   */

   .header{
display: block;
   }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: unset; }

  .search-btn { font-size: 30px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 8px 20px;
    background-color: #00000000;
    color: #000742;
    border: 2px solid #000742;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }

  .tour-search-form .input-wrapper { margin-bottom: 0; }

  .tour-search-form .input-field { padding: 16px 20px; }

  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }



  /**
   * POPULAR
   */

  .popular-card .card-content { right: auto; }



  /**
   * FOOTER
   */

  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-form { grid-column: span 2; }

  .footer-bottom { text-align: left; }

  .copyright { margin-bottom: 0; }

  .footer-bottom-list { justify-content: flex-end; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-5: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 800px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }



  /**
   * POPULAR
   */

  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /**
   * PACKAGE
   */

  .package-list { margin-bottom: 50px; }

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { padding: 40px; }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }



  /**
   * GALLERY
   */

  .gallery { padding-bottom: calc(var(--section-padding * 2)); }

  .gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-image { border-radius: var(--radius-25); }



  /**
   * CTA
   */

  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content { width: calc(100% - 225px); }

  .cta .section-text { margin-inline: 0; }



  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-field { margin-bottom: 0; }

  .footer-form .btn { width: max-content; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1050px; }



  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; 
  background-color: #ffffff;}

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container { padding-block: 0; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: #000742;
    --fs-4: 16px;
    font-weight:500;

    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--onyx); }

  .header.active .navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay { display: none; }



  /**
   * HERO
   */

  .hero .container { max-width: 940px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form { grid-template-columns: repeat(5, 1fr); }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }



  /**
   * POPULAR
   */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * PACKAGE
   */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }



  /**
   * CTA 
   */

  .cta .section-title { max-width: 25ch; }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

  .footer-form { grid-column: unset; }

  .form-wrapper { flex-direction: column; }

  .footer-form .btn { width: 100%; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}

/** ourd services

*/

.theme-text {
  color: hsl(214, 56%, 58%);
}

.card-img-top {
  height: 200px;
  width: 100%;
  border-radius: 10px;
}
.card {
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 20px;
}
.card:hover {
  color: white;
}
.card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0%;
  background: hsl(214, 56%, 58%);
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
.card:hover::before {
  left: 0%;
  color: white;
}
.container-fluid {
  background-image: url("blob-scene-haikei.svg");
  background-position: center;
  background-size: cover;
}


@media (min-width: 768px) {
    .col-md-3 {
        flex: 1 0 auto;
        width: 25%;
        padding-top: 20px;
    }
}

/* card */

    h1 {
      text-align: center;
      margin-bottom: 40px;
      color: #333;
    }

    /* Services Layout */
    .services {
      display: flex;
      flex-wrap: wrap;
      gap: 70px;
      justify-content: center;
    }

    /* Card Styles */
    .service-card {
      background: #fff;
      border-radius: 40px;
      max-width: 310px;
      width: 100%;
      padding: 50px 30px;
      text-align: center;
      box-shadow: 10px 8px 20px rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: transform 0.5s ease;
      border: 1px solid rgba(0, 0, 0, .125);
      box-shadow: 0 .5rem 1rem rgba(24, 62, 231, 0.432) !important;
      
    }

    .service-card img {
    z-index: 2;
      position: relative;
      z-index: 2;
      margin-bottom: 20px;
      transition: filter 1s ease, transform 1s ease;
    }

    .service-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
      z-index: 2;
      position: relative;
    }

    .service-card p {
      font-size: 14px;
      margin-bottom: 20px;
      z-index: 2;
      position: relative;
    }

    .service-card button {

      padding: 10px 50px;
      border: solid 2px #ffffff;
      border-radius: 30px;
      background: #007bff;
      color: white;
      cursor: pointer;
      transition: 1s;
      z-index: 2;
      position: relative;
      display: inline-block;
    }

    /* Hover Overlay Effect */
    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
background: #47eded;
background: linear-gradient(0deg, rgba(71, 237, 237, 1) 0%, rgba(0, 123, 255, 1) 100%);
      z-index: 0;
      transition: all 1s ease-in-out;
    }

    .service-card:hover::before {
      left: 0;
    }

    .service-card:hover {
      color: #000742;
    }

    .service-card:hover img {
      transform: scale(1.1);
    }

    .service-card:hover h3,
    .service-card:hover p{
       color: #000742;
    }
    .service-card:hover button {
      color: #ffffff;
      background: #0d6efd;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .services {
        flex-direction: column;
        align-items: center;
      }
    }

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 3s ease-out;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Quattrocento:wght@400;700&display=swap');


/* Menu Icon Styles */

.menu-icon{
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Main Styles */

.main-container{
    display: flex;
    background-image: url(/assets/bg.png);
    background-size: cover; 
    background-position: center;
background: linear-gradient(to bottom, #0d6efd 0%, transparent 100%);
margin-top: 0%;
}

/* Left Section Styles */

.left-section{
    width: 50%;
    padding: 50px 100px;
word-wrap:break-word;
height: fit-content;
}

/* Content Section Styles */

.content h1{
  display: flex;
    font-size: 70px;
    margin-bottom: 3rem;
    color:hsl(239, 98%, 16%);
    margin-top: 7rem;
    font-weight: 2000;
    line-height: 70px;
    text-shadow: 0px 4px 8px rgba(255, 255, 255, 0.39);
    text-align: left;
    width: 100%;
  max-width: 100%;
  padding: 0 10px;       /* small horizontal padding */
  box-sizing: border-box; /* include padding in width */
  overflow-wrap: break-word; /* break long words if needed */
    
}

#bookingForm{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trip-type{
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.input-group{
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-wrapper{
    flex: 1;
}

#takeOff, #arrival, #departureDate, #returnDate{
    width: 100%;
    padding: 10px;
    border: 1px solid var(--black-color);
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.icon{
    font-size: 24px;
    color: var(--main-color);
}

button[type="submit"]{
    padding: 12px 20px;
    font-size: 18px;
    color: var(--white-color);
    background-color:#0d6efd;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

button[type="submit"]:hover{
    background-color:#000742;
    border-color: 2px solid #fff;
    color: #fff;
}
/* Slider Styles */

.slider{
    margin-top: 40px;
}

.slider-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 30px;
}

.slider-buttons{
    display: flex;
    gap: 5px;
}

.slider-header h2{
    font-size: 1.2rem;
    font-weight: bold;
}

.slider-btn{
    color: var(--main-color);
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.slider-btn:hover{
    color: var(--dark-color);
}

.slider-container{
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-images{
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
}

.slide{
    position: relative;
    width: 150px;
    height: 130px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

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

.info{
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: var(--black-color);
    font-size: 16px;
}

.location{
    font-weight: bold;
}

.sub-location{
    font-size: 14px;
    opacity: 0.9;
}

.price{
    font-size: 14px;
}

.slide-icon{
    margin-right: 4px;
}

#prev{
    left: 0;
}

#next{
    right: 0;
}
/* Right Section Styles */

.right-section{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-section img {
  margin-top: 80px;
  margin-right: 150px;
  width: 100%;
  border-radius: 10px;

  /* combine rotation + parallax */
  transform: rotate(13deg) translateY(var(--scrollY, 0px));
  transition: transform 0.3s ease-out;
}

/* Smooth left-right float */
@keyframes smoothFloat {
  0%   { transform: rotate(13deg) translateY(var(--scrollY, 0px)) translateX(0); }
  50%  { transform: rotate(13deg) translateY(var(--scrollY, 10px)) translateX(20px); }
  100% { transform: rotate(13deg) translateY(var(--scrollY, 0px)) translateX(0); }
}

.right-section img:hover {
  animation: smoothFloat 3s ease-in-out infinite;
}


.learnmore{
  padding: 12px 20px;
    font-size: 18px;
    color: #001e49;
    background-color: transparent;
    border: 2px solid #001e49;
    border-radius: 25px;
    cursor: pointer;
}
/* Default: Desktop first */
.plane1 {
  display: block;
}

.plane-mobile {
  display: none;
}



/* counter */

.stats-section {
  text-align: center;
  padding: 100px 20px;
}

.stats-header h2 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stats-header h2 span {
  color: #0d6efd; /* your blue color */
}

.stats-header p {
  color: #000000;
  margin-bottom: 40px;
  font-size: 16px;
}

.stats-container {
  font-family:"poppins";
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: stretch; /* center each item */
  align-items: center;
  max-width: 1000px;
  margin: 0 auto; /* center the grid */
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #0d6efd;
}

.stat-item p {
  margin-top: 10px;
  color: #000000;
  font-size: 21px;
}

.stat-item{
  background-color: #ffffff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(2, 86, 196, 0.475);
}

.stat-item:hover{
      transform: scale(1.05);
  transition: ease-in-out 1s;
}

/* Responsive Styles *//*  */

@media (max-width: 768px) {

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-right: 0%;
    }
    .stats-container {
        display: flex;
        color: #a81c1c;
        flex-direction: column;
        font-size:45px;
    }
    .stats-header h2 {
      font-size: 45px;
      justify-content: left;
      text-align: left;
          line-height: 1.1;
      
    }
    .stats-header p {
      color: #000000;
      margin-bottom: 40px;
      font-size: 16px;
      text-align: left;
    }

    .content h1{
      font-size: 50px;
      line-height: 3.1rem;
    }
    .section-title{
      font-size: 45px;
    }

    .menu-icon {
        display: block;
        font-size: 35px;
        cursor: pointer;
        position: absolute;
        right: 40px;
        top: 30px;
        color: var(--main-color);
        z-index: 10001; /* Ensures it’s on top of the navbar */
    }
    .header-top{
      background-color: #ffffff;
      display: block;
      margin-top: 0%;
     border: none;
    }
    .header-bottom{
      visibility: hidden;
    }

    .logo {
        font-size: 35px;
    }

    /* Main container adjustments */
    .main-container {
        flex-direction: column;
        position: relative;
        z-index: 1; /* Lower than navbar */
        overflow: hidden; /* Prevents overflow issues */
        background-image: url(/assets/bg1.png);
            background-size: cover; 
    background-position: center;
background: linear-gradient(to bottom, #0d6efd 0%, transparent 100%);
    }

    .right-section, .left-section {
        width: 100%;
        padding: 20px;
    }

    .right-section {
        order: -1;
        justify-content: center;
    }

    .right-section img {
        content: url(/assets/plane1.png);
        width: 100%;
        transform: none;
        align-items: center;
        margin-right: 0%;
    animation: none !important;
    transform: none !important;
        
    }

    .plane1 {
    display: none;
  }

  .plane-mobile {
    display: block;
    width: 100%; /* Optional: make image responsive */
  }
 

    /* Prevents form and slider from overflowing */
    form, .slider {
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .content h1{
      margin-top: 0;
      margin-bottom: 2rem;
    }


    

}


