/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee.wrapper--12
 */



/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   #2e80ec
   #2a77dc
   
   #f1d7bc
   rgb(184 105 20)
   */

  --united-nations-blue: #a02d2b;
  --bright-navy-blue: #00408a;
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: #2463b7;
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: #001d25;
  --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%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-outfit: "Outfit", sans-serif;

  --fs-1: calc(20px + 1.4vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-31: calc(12px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 18px;
  --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;

}


.slick-prev {
    left: 15px !important;
}


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

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
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 {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  overflow-x: hidden;
}





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.btn a {
    color: var(--white);
    font-family: var(--ff-outfit);
}

.btn{
  color: var(--white);
  font-family: 'Poppins';
  text-transform: uppercase;
  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: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
  font-family: var(--ff-outfit);
}

.btn-primary:is(:hover, :focus) {
  background: var(--united-nations-blue);
  border-color: var(--united-nations-blue);
  box-shadow: 0 0 12px var(--united-nations-blue);
  transform: scale(1.1);
}

.btn-secondary {
  border-color: var(--white);
  font-family: var(--ff-outfit);

}

.btn-secondary:is(:hover, :focus) {
  background: rgb(255 255 255 / 20%);
  backdrop-filter: blur(5px);
  transform:scale(1.05);
}

.h1,
.h2,
.h3 {
  font-weight: var(--fw-500);
  font-family: var(--ff-outfit);
  text-transform: uppercase;
}

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

.hero .dancing-font {
  font-family: "Dancing Script", cursive !important;
  font-size: 32px !important;
  display: inline;
  font-weight: 700;
  color: #ffff84;
}

.h2,
.h3 {
  color: var(--gunmetal);
  font-family: var(--ff-outfit);
}

.h2 {
  font-size: var(--fs-2);
}

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

.section-subtitle {
  color: var(--united-nations-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-outfit);
  margin-bottom: 8px;
  position: relative;
}

.section-title {
  margin-bottom: 32px;
}

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}

.product-image {
    height: 120px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.product-image p {
    display: flex;
    gap: 5px;
    color: #f1a000;
}

.product-image p span {
    color: #000;
    font-family: var(--ff-outfit);
}




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

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 33px;
  z-index: 999999;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsl(0deg 3.07% 57.56% / 23%);
  padding-block: 8px;
  z-index: 1;
  background-color: #00408a;
  backdrop-filter: blur(8px);
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.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: var(--bright-navy-blue);*/
  border-radius: 50%;
  font-size: 20px;
  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: 100px; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

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

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

.header-bottom { 
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); 
    /*background-color: #ffffffc7 !important;*/
}

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

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

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

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 9px 22px; }

.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.15s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s 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 {
  margin: 18px 21px;
  color: var(--jet);
  font-weight: var(--fw-500);
  font-size: 15px;
  transition: var(--transition);
  text-transform: capitalize;
}

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

.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 {
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
}

.hero-title {
  margin-bottom: 5px;
}

.hero-text {
    color: var(--white);
    font-size: var(--fs-31);
    margin-bottom: 30px;
    font-family: var(--ff-outfit);
    margin-top: 12px;
    line-height: 30px;
}

    .dropdown-link {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 200px;
      top: 24px;
      right: -201px;
      z-index: 999;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      border-radius: 4px;
    }

    .dropdown-content a.--second01 {
      padding: 12px 16px 12px 32px;
      position: relative;
      background-color: white;
      overflow: hidden;
      border-radius: 0;
    }

    /* Address icon on left before text */
    .dropdown-content a.--second01::before {
      content: "\f3c5"; /* Font Awesome address icon */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: -25px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: #dc3545;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .dropdown-content a.--second01:hover::before {
      left: 12px;
      opacity: 1;
    }

    .dropdown-content a.--second01:hover {
      background-color: #f0f0f0;
    }

    .dropdown-menu li:hover .dropdown-content {
      display: block !important;
    }

    .--second01:hover {
      color: #ffcc00;
    }

/*.offer-valid {*/
/*    color: var(--white);*/
/*    font-size: var(--fs-3);*/
/*    margin-bottom: 40px;*/
/*    font-family: var(--ff-outfit);*/
/*    margin-top: 12px;*/
/*    display: inline;*/
/*}*/

/*.offer-valid span {*/
/*    font-weight: 700;*/
/*    font-size: 40px;*/
/*    color: var(--white);*/
/*}*/

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}





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

.tour-search {
  background: var(--bright-navy-blue);
  padding: 18px 0px 18px 0px;
}

.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);
  text-transform: uppercase;
}

.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,
.bg-image {
  padding-block: var(--section-padding);
  position: relative;
}

.bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  background-image: url(../images/mapji.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  height: 35%;
  z-index: -1;
}

.bg-images {
  position: relative;
}

.bg-images::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/svg-file.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 43%;
  height: 64%;
  z-index: -1;
}

.bg-images112121 {
  position: relative;
}

.bg-images112121::after {
    content: "";
    position: absolute;
    top: -95px;
    right: 40px;
    background-image: url(../images/khuftgvb.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    width: 12%;
    height: 64%;
    z-index: -1;
}


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

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  height: 100%;
  transition: 0.3s;
}

.popular-card:hover {
    border-radius: 100px;
}

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


.popular-card:hover .bg-color {
    transition: 0.3s;
    background: linear-gradient(0deg, rgb(8 8 8 / 80%) 0%, rgb(255 255 255 / 0%) 100%);
}
.popular-card .card-img {
  height: 100%;
}

.popular-card .card-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  overflow: hidden;
  transition: 0.3s;
}

.popular-card .card-content {
  position: absolute;
  z-index: 3;
  bottom: 0px;
  left: 0;
  right: 0;
  border-radius: var(--radius-15);
  padding: 12px;
  text-align: center;
}

/*.card-content .card-text {*/
/*    display: none;*/
/*}*/

/*.popular-card:hover .card-content .card-text {*/
/*  display: block;*/
/*}*/

.card-content h3 {
  color: var(--white);
}

.bg-color {
  background: linear-gradient(0deg, rgb(8 8 8 / 49%) 0%, rgb(255 255 255 / 0%) 100%);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.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(--gainsboro);
  font-size: var(--fs-6);
  text-transform: uppercase;
  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: 15px;
  transition: 0.3s;
}

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

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.package-card:hover img {
    transform: scale(1.08);
}

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

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

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--ff-outfit);
}
.package-card p {
  line-height: 1.6;
  /*margin-bottom: 20px;*/
  font-family: var(--ff-outfit);
  color: var(--black-coral);
font-size: var(--fs-5);
}

.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);
  font-family: var(--ff-outfit);
}

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

.package-card .card-price {
  background: var(--bright-navy-blue);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.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;
}

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

.package-card .price {
  font-size: var(--fs-3);
  font-family: var(--ff-outfit);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
  color: #fefefe;
}

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

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





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

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






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

.cta {
  background: var(--bright-navy-blue);
  padding: 35px 0px;
}

.cta :is(.section-subtitle, .section-title, .section-text) {
  color: var(--white);
}

.cta .section-text {
  font-size: var(--fs-5);
}





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


.footer {
    background-image: url(../images/bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: relative;
}
.footer-top {
  background: var(--gunmetal);
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

.footer-brand {
}

.footer-brand img {
  max-width: 110px;
  background: white;
}

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

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 28px;
  font-family: var(--ff-outfit);
}

.footer-contact {
  margin-bottom: 30px;
  display: flex;
}

.contact-title {
  position: relative;
  font-family: var(--ff-outfit);
  font-weight: var(--fw-500);
  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;
  font-family: var(--ff-outfit);
}

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

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

.contact-link:is(:hover, :focus) {
  color: var(--bright-navy-blue);
  letter-spacing: 2px;
  transition: 0.2s ease;
}

.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: var(--gunmetal);
  padding-block: 20px;
  text-align: center;
  border-top: 1px dotted white;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-6);
  margin-bottom: 10px;
  font-family: var(--ff-outfit);
}

.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: 10px;
}

.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);
  z-index: 99999;
}

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

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





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

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

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */
   
   .navbar-link {
         display: flex;
         align-items: center;
         justify-content: center; 
   }
   
   .logo2 {
      display: none;
  }

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

  .btn {
    --fs-5: 16px;
    --padding: 9px 22px;
  }

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

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



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



  /**
   * HEADER
   */

  .header {
    padding-top: 33px;
  }

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

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

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

  .header .btn {
    --fs-5: 14px;
    --padding: 9px 22px;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 530px;
  }

  .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: 10px 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: 1.2fr 0.8fr;
    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;
    font-family: var(--ff-outfit);
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-5);
    font-family: var(--ff-outfit);
  }

  .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;
  }

  .slick-prev:before,
  .slick-next:before {
    color: #f1f1f1;
    font-size: 30px;
  }

  .slick-slide {
    margin: 0px 15px;
  }
  
  .partner-gallery-slider .slick-slide {
      margin: 0 8px;
  }
  
  .testimonial-slider .slick-slide {
      margin: 0 10px;
  }

  .slick-slider .slick-next,
  .slick-slider .slick-prev {
    z-index: 10;
    right: 15px;
    background: #00408a;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    /* font-size: 28px; */
    box-shadow: 0px 0px 17px white;
  }

  .slick-slider .slick-prev:hover,
  .slick-slider .slick-prev:focus,
  .slick-slider .slick-next:hover,
  .slick-slider .slick-next:focus {
    color: white;
    outline: none;
    background: #a02d2b;
  }

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



  /**
   * 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%;
    width: 340px;
    max-width: auto;
  }

  .package-card .card-content {
    padding: 40px;
    width: 600px;
    max-width: auto;
  }

  .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));
  }



  /**
   * 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;
    padding-top: 0px;
    background-color: #fff !important;
    backdrop-filter: blur(8px);
    padding: 12px 0;
  }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fffc !important;
    backdrop-filter: blur(12px);
    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: var(--black);
    --fs-4: 15px;
    font-weight: unset;
    text-transform: uppercase;
    margin: 18px 21px;
    font-family: var(--ff-outfit);
  }

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

  .header.active .navbar-link:is(:hover, :focus) {
    color: var(--bright-navy-blue);
  }
  
  .navbar-link .dropdown-link:hover {
      color: var(--bright-navy-blue);
  }
  
  .navbar .navbar-link {
      position:relative; 
  }  
  .navbar .navbar-link::before{
      content:"";
      position:absolute; 
      left: 50%;
      bottom: 0;
      width: 0;
      height: 2px; 
      background-color: var(--bright-navy-blue);
      border-radius: 2px;
      transform: translateX(-50%); 
      transition:all .2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .navbar .navbar-link:hover::before {
      width: 100%;
  }

  .header.active .social-link {
    color: var(--white);
    border-color: hsla(0, 0%, 100%, 0.252);
  }

  .overlay {
    display: none;
  }



  /**
   * HERO
   */

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



  /**
   * TOUR SEARCH
   */

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

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



  /**
   * POPULAR
   */

  .popular-list {
    grid-template-columns: repeat(4, 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(3, 1fr);
    gap: 50px;
  }

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

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

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

}

.footer-half {
    width: 50%;
}





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

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 40px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1180px;
  }

}

.main-animations {
  padding-block: var(--section-padding);
  position: relative;
  /*background-color: #DCF7FF;*/
  /* Solid fallback color */
  /* z-index: -2; */
}

/*.main-animations::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: url(../images/bg-images.png) center/cover no-repeat;*/
/*  opacity: 0.03;*/
  /* Adjust image transparency */
  /* z-index: -1; */
/*}*/

.main-animations h2 {
  margin-bottom: 35px;
  text-align: center;
  font-weight: var(--fw-800);
  font-family: var(--ff-outfit);
  text-transform: uppercase;
  font-size: var(--fs-2);
  color: var(--gunmetal);
  position: relative;
}

.main-animations .box-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.main-animations .box {
  background: #fff0e1;
  padding: 20px 20px;
  width: 220px;
  border-radius: 12px;
  animation: swingIn 1s ease forwards;
  opacity: 0;
}

.main-animations .box:hover {
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}

.main-animations .box h3 {
  font-size: 36px;
  margin: 2px 0;
  color: var(--bright-navy-blue);
  font-family: var(--ff-outfit);
}

.main-animations .box p {
  font-size: 16px;
  margin: 0;
  font-family: var(--ff-outfit);
}

@keyframes swingIn {
  0% {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -70deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .box {
    width: 90%;
  }
  .partner-gallery-image img {
    width: 100px;
    height: 100px;
  }
}

.team-members {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.member {
  width: 25%;
  text-align: center;
}

/* Tablet view: 2 members per row */
@media (max-width: 768px) {
  .member {
    width: 45%;
  }
}

/* Mobile view: 1 member per row */
@media (max-width: 480px) {
    .header-top {
        background: white;
    }
    .header.active .header-top {
        background: white;
    }
    .social-list {
        margin-bottom: 30px;
    }
    .partner-gallery-slider .slick-active {
        transform: perspective(500px) rotateY(0deg) !important;
        transition: 0.7s;
        opacity: 1 !important;
    }
    .section-subtitle {
        text-align: center;
    }
    .section-title {
        text-align: center;
    }
    .cta {
        display: none;
    }
  .member {
    width: 50%;
    margin-bottom: 40px;
  }

  .bg-images::after {
    display: none;
  }
  
  .helpline-box {
      display: none;
  }
  
  .header-bottom {
    visibility: hidden;
  }
  
  .logo2 {
      display: block;
  }
}

.member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
  margin: 0 auto 18px auto;
}

.member-name {
  margin-top: 15px;
  font-weight: bold;
  font-size: 20px;
  color: #222;
}

.member-role {
  font-size: 12px;
  color: #666;
}

.logo-slider {
  width: 100%;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.hinji .logo-slider img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
  padding: 30px;
  text-align: center;
  padding: 30px 30px 10px 30px;
}

.cta-content h2 {
  margin-bottom: 20px !important;
}

/* Base Styles */
.new-design {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(rgb(13 58 72 / 79%), rgb(13 58 72 / 80%)), url(../images/options.avif) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Typography */
.design-heading {
  margin-bottom: 50px;
  max-width: 800px;
}

.design-heading p {
  font-size: 18px;
  color: #f8f8f8;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.design-heading h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.design-heading h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ff6b6b;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.design-heading h3 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.9;
}

/* Speciality Boxes */
.design-speclity {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1000px;
}

.design-speclity-box {
  width: 150px;
  transition: all 0.3s ease;
}

.design-speclity-box:hover {
  transform: translateY(-5px);
}

.design-speclity-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.design-speclity-image img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.design-speclity-heading p {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-outfit);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-text p {
  font-family: var(--ff-outfit);
}

/* Button Section */
.design-btoc {
  margin-top: 30px;
}

.design-buttonc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* .design-buttonc button {
  --padding: 6px 20px;
  background: var(--bright-navy-blue);
  color: white;
  border: none;
  border-radius: 50px;
  --fs-5: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
} */

/* .design-buttonc button:hover {
  background: hsl(214, 57%, 51%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px hsla(214, 57%, 51%, 0.49);
} */

.design-buttonc p {
  margin: 0;
  opacity: 0.7;
}

.design-buttonc a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
}

.design-buttonc .call-icon {
  margin-right: 4px;
  color: #3b79c9;
}

/* .design-buttonc a:hover {
  color: hsl(214, 57%, 51%);
} */

/* Responsive Design */
@media (max-width: 768px) {
  .new-design {
    padding: 60px 0;
  }

  .design-heading h2 {
    font-size: 32px;
  }

  .design-heading h3 {
    font-size: 16px;
  }

  .design-speclity {
    gap: 30px;
  }

  .design-speclity-box {
    width: 120px;
  }
}

@media (max-width: 576px) {
    
    .member-img {
        width: 140px;
        height: 140px;
    }
    :root {
        --section-padding: 30px;
    }
  .design-speclity {
    gap: 35px;
  }

  .design-speclity-box {
    width: 100px;
  }

  .design-buttonc {
    flex-direction: column;
    gap: 15px;
  }

  .design-buttonc p {
    display: none;
  }
}

.tour-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left,
.right {
  width: 100%;
  max-width: 48%;
}

.sub-heading {
  color: var(--bright-navy-blue);
  font-size: var(--fs-6);
  text-transform: uppercase;
  font-family: var(--ff-outfit);
  margin-bottom: 8px;
}

.main-heading {
  font-size: 41px;
  font-family: var(--ff-outfit);
  color: #0d3a48;
  margin: 10px 0;
  line-height: 52px;
}

.left p {
  font-size: 17px;
  font-family: var(--ff-outfit);
  line-height: 1.5;
  color: #555;
  max-width: 574px;
  margin-top: 14px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 18px 0;
  scrollbar-width: none;
  /* Firefox */
}

.slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* .slide-box {
  min-width: 150px;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  flex-shrink: 0;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.slide-box h3 {
  font-size: 24px;
  color: #e91e63;
}

.slide-box p {
  font-size: 14px;
  color: #333;
} */

.slide-box {
  padding: 0px 10px;
  transition: 0.3s;
}

/* .tour-content .slide-box:hover {
    transform: translateY(-5px);
  } */

.slide-box h3 {
  color: #0d3a48;
  font-size: 44px;
  font-family: var(--ff-outfit);
  margin-bottom: 10px;
  font-weight: 600;
}

.slide-box p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  font-family: var(--ff-outfit);
}

.tour-content .slick-slide {
  padding: 0;
  margin: 0;
}


.book-btn {
  padding: 10px 20px;
  background-color: #ff5722;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
}

.map-img {
  width: 100%;
  max-width: 520px;
  margin-top: 60px;
}

.plane-wrapper {
  position: relative;
  margin-top: 40px;
}

.plane {
  width: 100px;
  position: relative;
  z-index: 2;
}

.rotating-circle {
  width: 140px;
  height: 140px;
  background-image: url(../images/rotate.svg);
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  animation: spin 7s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {

  .left,
  .right {
    max-width: 100%;
  }

  .main-heading {
    font-size: 26px;
  }

  .map-img {
    max-width: 100%;
  }

  .plane-wrapper {
    margin-left: 115px;
    margin-top: 60px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-slider {
  margin: 0 -15px;
}

.testimonial-card {
  background: #f3f3f3;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 0 15px;
  height: 100%;
  transition: 0.2s;
  border: 1px solid #f3f3f3;
}

.testimonial-card:hover {
  border: 1px solid #fdb534;
  background: #fdb534;
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.user-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #f8f8f8;
}

.user-details {
  flex: 1;
}

.user-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
  font-family: var(--ff-outfit);
}

.user-location {
  font-size: 14px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  font-family: var(--ff-outfit);
}

.user-location i {
  margin-right: 5px;
  color: #3b79c9;
}

.google-logo {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  border-radius: 30%;
}

.rating {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.stars {
  color: #ffc631;
  font-size: 16px;
  margin-right: 10px;
}

.certified {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  font-family: var(--ff-outfit);
}

.certified i {
  color: #4285F4;
  margin-right: 5px;
}

.testimonial-text {
  color: #555;
}

.testimonial-text.expanded {
  max-height: none;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .slick-prev {
    left: -20px;
  }

  .slick-next {
    right: -20px;
  }
}


.hero {
  position: relative;
  /*height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0 0 0 / 60%); /* Adjust opacity as needed */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 20px;
}

.hero-content .hero-title {
  font-size: 46px;
  border-bottom: 3px solid #fff;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content .hero-title {
    font-size: 22px;
    border-bottom: 2px solid #fff;
    font-weight: 700;
}
  
  .hero-text {
    font-size: .9rem;
  }
  
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}

/* Your original CSS */
.partner-gallery-section {
  margin: 10px 0px;
  background-color: #fff;
  width: 100%;
}

.partner-gallery-slider-wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.partner-gallery-image {
  overflow-y: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  position: relative;
  transition: 0.2s;
}

.partner-gallery-image:hover {
  box-shadow: 0 0 10px #000;
}

.partner-gallery-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/*.partner-gallery-image .bg-remover {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.partner-gallery-image .bg-remover:hover:after {*/
/*    transition: 0.4s;*/
/*    background: #000000a8;*/
/*}*/

/*.partner-gallery-image .bg-remover:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: 10;*/
/*    background: transparent;*/
/*}*/

.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bright-navy-blue);
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 50%;
}

.custom-arrow:hover {
    background: var(--united-nations-blue);
}

.custom-prev {
  left: -37px;
}

.custom-next {
  right: -37px;
}

@media (max-width: 568px) {
  .footer-bottom-list {
    display: none;
  }
  .wrapper--12 {
    justify-content: center;
}
}

/* Popup Modal CSS */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 99999999;
}

.popup-content {
  display: block;
  max-width: 90%;
  max-height: 70vh;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 999999;
}

.popup-close:hover {
  color: #bbb;
}

  .call-btn img {
    height: 45px;
    width: 45px;
    position: fixed;
    /* left: 30px; */
    right: 12px;
    /* bottom: 150px; */
    bottom: 60px;
    z-index: 9999;
}

.whatsapp-link img {
  height: 45px;
  width: 45px;
  position: fixed;
  /* left: 30px; */
  left: 12px;
  /* bottom: 100px; */
  bottom: 60px;
  z-index: 9999;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  position: absolute;
  top: 55px;
  left: 0;
  background-color: #fff;
  border: 1px solid #fff;
  display: none;
  flex-direction: column;
  min-width: 200px;
  z-index: 1000;
  padding: 0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Dropdown links */
.dropdown-menu li {
  list-style: none;
}

.dropdown-link {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 8px;
  font-family: var(--ff-outfit);
}

/*.dropdown-link:hover {*/
/*  background-color: #f0f0f0;*/
/*  color: #007BFF;*/
/*}*/

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

/* Facebook */
.facebook-image {
  background: linear-gradient(135deg, #1877F2, #0F5CDE);
}
.facebook-image:is(:hover, :focus) {
  background: linear-gradient(135deg, #1452c7, #0e4bc1);
}

/* Twitter */
.twitter-image {
  background: #000;
}
.twitter-image:is(:hover, :focus) {
  background: #000;
}

/* WhatsApp */
.whatsapp-image {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.whatsapp-image:is(:hover, :focus) {
  background: linear-gradient(135deg, #1ea654, #0d6f5f);
}

/* Instagram */
.instagram-image {
  background: linear-gradient(135deg, #feda75, #d62976, #962fbf, #4f5bd5);
}
.instagram-image:is(:hover, :focus) {
  background: linear-gradient(135deg, #e1306c, #833ab4, #405de6);
}

.partner-gallery-slider .slick-active {
    transform: perspective(500px) rotateY(18deg) scale(0.9);
    transition: 0.7s;
    opacity: 0.8;
}
.partner-gallery-slider .slick-active + .slick-active {
    transform: perspective(500px) rotateY(0deg);
    transition: 0.7s;
    opacity: 1;
}
.partner-gallery-slider .slick-active + .slick-active + .slick-active {
    transform: perspective(500px) rotateY(-18deg) scale(0.9);
    transition: 0.7s;
    opacity: 0.8;
}

/*this is contact css*/

    /* Reset and Base Styles */
    .contact-page * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .contact-page body {
        font-family: var(--ff-outfit);
        line-height: 1.6;
        color: #333;
    }

    .contact-page img {
        max-width: 100%;
        height: auto;
    }

    .contact-page .container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    @media (min-width: 576px) {
        .contact-page .container {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .contact-page .container {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .contact-page .container {
            max-width: 960px;
        }
    }

    @media (min-width: 1200px) {
        .contact-page .container {
            max-width: 1140px;
        }
    }

    .contact-page .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .contact-page .col-xl-12,
    .contact-page .col-lg-8,
    .contact-page .col-lg-4,
    .contact-page .col-md-6,
    .contact-page .col-sm-6,
    .contact-page .col-12 {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    @media (min-width: 576px) {
        .contact-page .col-sm-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (min-width: 768px) {
        .contact-page .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (min-width: 992px) {
        .contact-page .col-lg-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
        .contact-page .col-lg-8 {
            flex: 0 0 66.666667%;
            max-width: 66.666667%;
        }
    }

    @media (min-width: 1200px) {
        .contact-page .col-xl-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    /* Hero Section */
    .contact-page .hero1 {
        position: relative;
        padding: 180px 0 100px;
        overflow: hidden;
    }

    .contact-page .hero1.-min-2 {
        min-height: 400px;
    }

    .contact-page .hero__bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

    .contact-page .hero__bg img:first-child {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.4);
    }

    .contact-page .hero__bg img:last-child {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .contact-page .hero__content {
        text-align: center;
        color: #fff;
    }

    .contact-page .hero__title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .contact-page .hero__text {
        font-size: 14px;
        max-width: 700px;
        margin: 0 auto;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    /* Contact Info Section */
    .contact-page .layout-pt-lg {
        padding-top: 80px;
    }

    .contact-page .px-30 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-page .text-center {
        text-align: center;
    }

    .contact-page .text-30 {
        font-size: 30px;
    }

    .contact-page .md\:text-24 {
        font-size: 20px;
    }

    .contact-page .fw-700 {
        font-weight: 700;
    }

    .contact-page .mt-20 {
        margin-top: 20px;
    }

    .contact-page .md\:mt-10 {
        margin-top: 10px;
    }

    .contact-page .items-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-page .text-16 {
        font-size: 16px;
    }

    .contact-page .mr-10 {
        margin-right: 10px;
    }

    .contact-page a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s;
    }

    .contact-page a:hover {
        color: #f36e20;
    }

    /* Contact Form Section */
    .contact-page .justify-center {
        justify-content: center;
    }

    .contact-page .mb-20 {
        margin-bottom: 20px;
    }

    .contact-page .contactForm input,
    .contact-page .contactForm textarea {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 15px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .contact-page .contactForm input:focus,
    .contact-page .contactForm textarea:focus {
        border-color: #f36e20;
        outline: none;
    }

    .contact-page .contactForm textarea {
        min-height: 150px;
        resize: vertical;
    }

    .contact-page .button {
        display: inline-block;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .contact-page .button:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

    .contact-page .-md {
        padding: 12px 25px;
    }

    .contact-page .-dark-1 {
        background-color: #333;
        color: white;
    }

    .contact-page .bg-accent-1 {
        background-color: #f36e20;
    }

    .contact-page .text-white {
        color: white;
    }

    /* Map Section */
    .contact-page .map {
        position: relative;
        margin-top: 20px;
    }

    .contact-page .map__content {
        height: 450px;
        background: #f5f5f5;
    }

    .contact-page .map__shape iframe {
        width: 100%;
        height: 450px;
        border: none;
    }

    .contact-page .rounded-12 {
        border-radius: 12px;
    }

    .contact-page .md\:rounded-0 {
        border-radius: 0;
    }

    .contact-page .md\:ml-0 {
        margin-left: 0;
    }

    .contact-page .md\:mr-0 {
        margin-right: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .contact-page .hero {
            padding: 120px 0 80px;
        }
        
        .contact-page .hero__title {
            font-size: 28px;
        }
        
        .contact-page .hero__text {
            font-size: 12px;
        }
    }

    @media (max-width: 768px) {
        .contact-page .hero {
            padding: 100px 0 60px;
            min-height: 350px;
        }
        
        .contact-page .hero__title {
            font-size: 28px;
        }
        
        .contact-page .px-30 {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .contact-page .layout-pt-lg {
            padding-top: 60px;
        }
    }

    @media (max-width: 576px) {
        .contact-page .hero {
            padding: 80px 0 40px;
        }
        
        .contact-page .hero__title {
            font-size: 28px;
        }
        
        .contact-page .text-30 {
            font-size: 24px;
        }
        
        .contact-page .col-sm-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .mb-class {
            margin-bottom: 20px;
        }
    }
    
   
   /*this is gallery popup and css*/

.page-gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.page-gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-gallery .gallery-card img {
  width: 100%;
  height: 250px;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
}

.page-gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

.page-gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

  .footer-brand .social-icons img {
    width: 17px !important;
    height: 17px !important;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

/* Overlay Text */
.page-gallery .gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.page-gallery .gallery-overlay p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Popup */
.page-gallery .popup {
  display: none;
  position: fixed;
  z-index: 1000;
  padding: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.page-gallery .popup-img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.page-gallery .close {
  position: absolute;
  top: 70px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.page-gallery .arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  user-select: none;
  text-align: center;
}

.page-gallery .left {
  left: 20px;
}

.page-gallery .right {
  right: 20px;
}

.bg-image .margi1 {
    margin-bottom: 45px;
}

.left p {
    
}

.timeline-details p{
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    font-family: var(--ff-poppins);
}

/* Parent Class Styles */
        .ft-2235 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .ft-2235 .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        .ft-2235 img {
            max-width: 100%;
            height: auto;
        }
        
        .ft-2235 .button {
            display: inline-block;
            padding: 12px 25px;
            background: #f36e20;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .ft-2235 .button:hover {
            background: #e05d1a;
            transform: translateY(-2px);
        }
        
        .ft-2235 .text-30 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .ft-2235 .text-30:after {
            content: "";
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #2e80ec;
        }
        
        /* Main Content Layout */
        .ft-2235 .main-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .ft-2235 .tour-content1 {
            width: 100%;
        }
        
        .ft-2235 .inquiry-form-container {
            width: calc(30% - 30px);
            position: sticky;
            top: 20px;
            height: fit-content;
        }
        
        /* Hero Section */
        .ft-2235 .hero.-type-1 {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.funtripmanali.com/img/himalayan-treks.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            width: 100%;
        }
        
        .ft-2235 .hero__title {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .ft-2235 .hero__text {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Filters Section */
        .ft-2235 .filters-section {
            background: #f5f5f5;
            padding: 30px 0;
            width: 100%;
        }
        
        .ft-2235 .filter-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .ft-2235 .filter-group select {
            padding: 12px 8px;
            border-radius: 25px;
            border: 1px solid #ddd;
            min-width: 200px;
        }
        
        /* Tour Listings */
        .ft-2235 .layout-pt-lg {
            padding: 60px 0;
        }
        
        .ft-2235 .row.y-gap-30 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ft-2235 .tour-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .ft-2235 .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .ft-2235 .tour-image {
            height: 220px;
            overflow: hidden;
        }
        
        .ft-2235 .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            object-position: bottom;
        }
        
        .object-right {
            object-position: center !important;
        }
        
        .ft-2235 .tour-card:hover .tour-image img {
            transform: scale(1.02);
        }
        
        .ft-2235 .tour-details {
            padding: 20px;
        }
        
        .ft-2235 .tour-details h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .ft-2235 .tour-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .ft-2235 .tour-meta i {
            margin-right: 5px;
            color: #2e80ec;
        }
        
        .ft-2235 .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        
        .ft-2235 .price {
            font-size: 20px;
            font-weight: 700;
            color: #2e80ec;
        }
        
        /* EXACT Inquiry Form Design From Yesterday */
        .ft-2235 .contactForm {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .ft-2235 .contactForm h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333333;
            text-align: center;
        }
        
        .ft-2235 .contactForm input,
        .ft-2235 .contactForm textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 15px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .ft-2235 .contactForm input:focus,
        .ft-2235 .contactForm textarea:focus {
            border-color: #f36e20;
            outline: none;
        }
        
        .ft-2235 .contactForm textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .ft-2235 .contactForm .error {
            color: red;
            display: none;
            font-size: 14px;
            margin-top: -10px;
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .ft-2235 .why-choose-us {
            background: #f9f9f9;
            padding: 60px 0;
            width: 100%;
        }
        
        .ft-2235 .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ft-2235 .feature {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .ft-2235 .feature i {
            font-size: 40px;
            color: #2e80ec;
            margin-bottom: 20px;
        }
        
        .ft-2235 .feature h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .ft-2235 .faq-section {
            background: #f5f5f5;
            padding: 60px 0;
            width: 100%;
        }
        
        .ft-2235 .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ft-2235 .faq-item {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .ft-2235 .faq-question {
            width: 100%;
            padding: 10px 20px;
            text-align: left;
            background: white;
            border: none;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .ft-2235 .faq-question:after {
            content: '+';
            font-size: 20px;
        }
        
        .ft-2235 .faq-question.active:after {
            content: '-';
        }
        
        .ft-2235 .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: white;
        }
        
        .ft-2235 .faq-answer p {
            padding: 15px 0;
        }
        
        /* CTA Section */
        .ft-2235 .cta-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://www.funtripmanali.com/img/cta-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            width: 100%;
        }
        
        .ft-2235 .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .ft-2235 .cta-section p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .ft-2235 .text-30 {
                font-size: 28px;
            }
            
            .ft-2235 .hero__title {
                font-size: 36px;
            }
            
            .ft-2235 .hero__text {
                font-size: 18px;
            }
            
            .ft-2235 .tour-content1,
            .ft-2235 .inquiry-form-container {
                width: 100%;
            }
            
            .ft-2235 .inquiry-form-container {
                position: static;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .ft-2235 .hero.-type-1 {
                padding: 80px 0;
            }
            
            .ft-2235 .row.y-gap-30 {
                grid-template-columns: 1fr;
            }
            
            .ft-2235 .filter-group {
                flex-direction: column;
                align-items: stretch;
            }
            
            .ft-2235 .filter-group select {
                width: 100%;
            }
            
            .ft-2235 .cta-section h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .ft-2235 .hero__title {
                font-size: 28px;
            }
            
            .ft-2235 .text-30 {
                font-size: 24px;
            }
            
            .ft-2235 .tour-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .ft-2235 .button {
                width: 100%;
            }
        }
        
        /*this is package css*/
        
        .tour-section--12 {
    background: ;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
  }
  .wrapper--12 {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .heading-main--12 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .highlighted--12 {
    color: #e63946;
  }
  .tour-card--12 {
    margin-top: 30px;
    background: #fff;
    width: 100%;
    max-width: 285px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  .tour-card--12:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .image-wrapper--12 {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  .image-wrapper--12 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease;
  }
  
  .parent--12:hover img {
      transform: scale(1.05);
  }
  .discount-badge--12 {
    position: absolute;
    top: 10px;
    left: 0px;
    background: #ff4d4f;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 0 5px 5px 0;
    z-index: 1;
  }
  .image-overlay--12 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
  }
  .tour-content--12 {
    padding: 16px;
  }
  .rating-days--12 {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
    margin-top: 6px;
    align-items: center;
  }
  .rating--12 i {
    color: #FFD700;
    margin-right: 1px;
  }
  .location--12 {
    font-size: 0.8rem;
    color: #1d3557;
    margin-bottom: 5px;
    margin-top: 12px;
  }
  .title--12 {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0 10px;
    color: #333;
  }
  .meta-info--12 {
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
    margin: 10px 0 25px 0;
    color: #444;
  }
  .price-box--12 {
    font-size: 1rem;
    margin: 10px 0;
    display: flex;
  }
  .label--12 {
    font-size: 0.8rem;
    color: #000;
  }
  .current--12 {
    color: #2a9d8f;
    font-weight: bold;
    font-size: 14px;
    margin-left: 4px;
  }
  .old--12 {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 5px;
    font-size: 12px;
    margin-top: 2px;
  }
  .days--12 i {
    margin-right: 6px;
    margin-top: 2px;
    color: #25d366;
  }
  .action-buttons--12 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .action-buttons--12 a {
      color: white;
      font-size: 12px;
  }
  
  .action-buttons--12 a i {
      font-size: 10px;
  }
  
  .action-buttons--12:hover a {
      color: white;
  }
  .btn-main--12, .btn-whatsapp--12 {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    flex: 1;
    text-align: center;
  }
  .btn-main--12 {
    background: #264653;
    transition: 0.3s ease;
  }
  
  .btn-main--12:hover {
    background: #26647c;
    color: white !important;
  }
  
  .btn-whatsapp--12 {
    background: linear-gradient(135deg, #25D366, #128C7E);
    transition: 0.3s ease;
  }
  
  .btn-whatsapp--12:hover {
    background: linear-gradient(135deg, #1ea654, #0d6f5f);
    color: white !important;
  }
  
  .parent--12 {
      width: 100%;
      margin-bottom: 5px;
      transition: 0.3s ease;
  }
  
  .parent--12:hover .title--12 {
      color: var(--bright-navy-blue);
  }
  
  .days--12 {
      display: flex;
      
  }
  @media (max-width: 768px) {
    .meta-info--12 {
      flex-direction: column;
      gap: 5px;
    }
    .action-buttons--12 {
      flex-direction: column;
    }
  }
  
  
   /* Popup container (overlay) */
.india-popup-container {
  display: none; /* by default hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

/* Popup box */
.india-popup-content {
  background: #fff;
    width: 450px;
    max-width: 95%;
    padding: 20px 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

/* Heading */
.india-popup-content h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
  color: var(--gunmetal);
}

/* Close button */
.india-btn-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.india-btn-close:hover {
  color: red;
}

/* Form groups */
.india-form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.india-form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-family: var(--ff-outfit);
}

.india-form-group input,
.india-form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  border-radius: 5px;
  font-family: var(--ff-outfit);
  transition: border 0.3s, box-shadow 0.3s;
}

.india-form-group input:focus,
.india-form-group textarea:focus {
  border-color: var(--bright-navy-blue);
  box-shadow: 0 0 5px rgba(11, 197, 204, 0.4);
}

/* Center button */
.button-center1 {
  text-align: center;
}

.button-center1 button {
    padding: 10px 30px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .india-popup-content {
    padding: 20px;
  }
  .india-popup-content h2 {
    font-size: 18px;
  }
}

  /*form form book end now ke - detail page*/
   
   .page-gallery .gallery-card.--trans-1:hover img { transform: scale(1.1) rotate(1deg); }
   .page-gallery .gallery-card.--trans-2:hover img { transform: scale(1.1) translateY(-5px); }
   .page-gallery .gallery-card.--trans-3:hover img { transform: scale(1.05) rotate(-2deg); }
   .page-gallery .gallery-card.--trans-4:hover img { transform: scale(1.15); }
   .page-gallery .gallery-card.--trans-5:hover img { transform: scale(1.05) skewY(2deg); }
   .page-gallery .gallery-card.--trans-6:hover img { transform: scale(1.2) rotate(2deg); }
   .page-gallery .gallery-card.--trans-7:hover img { transform: scale(1.1) translateX(-5px); }
   .page-gallery .gallery-card.--trans-8:hover img { transform: scale(1.05) skewX(3deg); }
   .page-gallery .gallery-card.--trans-9:hover img { transform: scale(1.1) rotate(1deg); }
   .page-gallery .gallery-card.--trans-10:hover img { transform: scale(1.1) translateY(-5px); }
   .page-gallery .gallery-card.--trans-11:hover img { transform: scale(1.05) rotate(-2deg); }
   .page-gallery .gallery-card.--trans-12:hover img { transform: scale(1.15); }
   .page-gallery .gallery-card.--trans-13:hover img { transform: scale(1.05) skewY(2deg); }