body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    padding: 0px;
    overflow-x: hidden;
}

h1,h2,h3{
    font-family: "Volkhov", serif;
}

h1{
    font-size: 45px;
}

p{
    font-family: "Poppins", sans-serif;   
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.nav-links a.active {
    border-bottom: 3px solid #f4a300;
}




header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    max-width: 1250px;
    margin: auto;
}
.logo img {
    height: 70px;
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links li {
    position: relative;
}
.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dropdown-icon img {
    width: 21px;
    height: 12px;
}
ul.dropdown-menu li {
padding-bottom: 7px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.nav-links li:hover .dropdown-menu {
    display: block;
}
.auth-buttons {
    display: flex;
    gap: 10px;
}
.login, .signup {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
}
.login {
    border: 1px solid black;
    background: white;
}
.signup {
    background: #f4a300;
    color: white;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* //////--Banner-css----//////// */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    /* background: #f8f9fa; */
    flex-wrap: wrap;
    max-width: 1250px;
    margin: auto;
}
.banner-content {
    max-width: 50%;
}
.banner-image {
width: 50%;
}
.banner-content h1 {
    font-size: 70px;
    color: #1a1a40;
    font-family: "Volkhov", serif;
    margin: 0px;
}
.banner-content h4 {
    text-transform: uppercase;
    color: #f4a300;
    margin: 0px;
    padding-bottom: 10px;
    font-size: 16px;
}

.banner-content h1 span {
    color: #f4a300;
}
.banner-content p {
    color: #555;
    font-size: 16px;
    margin: 20px 0;
}
.banner-form {
    display: flex;
    /* gap: 10px; */
    margin-top: 20px;
}
.banner-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    width: 320px;

}
.banner-form button {
    background: #f4a300;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
.banner-image img {
    max-width: 100%;
    height: auto;
}

/* /////--Banner-css--///// */


/* Services Section */
.services-section {
    text-align: center;
    padding: 50px 20px;
    background-image: url(../images/service-back.png);
}

.category {
    font-size: 14px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section h2 {
    font-size: 32px;
    color: #1e1e1e;
}

/*//////////--- Services section /////////////////////*/

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Service Box */
.service-box {
    width: 200px;
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    transition: background 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #1e1e1e;
}

.service-box p {
    font-size: 14px;
    color: #6b6b6b;
    padding: 0px 30px;
}

/* Hover Effect */
.service-box:hover {
    background-color: #f4c900;
    color: black;
}

.service-box:hover h3,
.service-box:hover p {
    color: black;
}
.services-section h2 {
    font-size: 42px;
    color: #1e1e1e;
    margin: 0;
    font-family: "Volkhov", serif;
}

/* ///////-Services-Section------/////////////// */



/* //////////---The-Destination-section---//////////// */


.destinations {
    padding: 50px 20px;
}

.sub-title {
    font-size: 14px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 42px;
    color: #1e1e1e;
    font-weight: bold;
    font-family: "Volkhov", serif;
}

/* Destinations Container */
.destinations-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Destination Card */
.destination-card {
    width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.destination-card:hover {
    transform: translateY(-10px);
}

/* Image Styling */
.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Destination Info */
.destination-info {
    padding: 15px;
    text-align: left;
}

.location-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-price h3 {
    font-size: 18px;
    margin: 0;
    color: #1e1e1e;
}

.location-price span {
    font-size: 16px;
    font-weight: bold;
    color: #444;
}

.trip-duration {
    font-size: 14px;
    color: #666 !important;
    margin-top: 5px;
}

.text-83{
    text-align: center;
}

.text-83 h2 {
    margin: 0px;
    font-family: "Volkhov", serif;
    font-size: 42px;
}
/* //////////----End-Destinstion-section----///////////// */


/*/////////--- Book Trip Section------////////////////////// */

.book-trip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    /* padding: 50px 20px; */
    margin: auto;
    max-width: 1250px;
    padding-top: 0px;
}

/* Left Content */
.content {
    max-width: 450px;
}

.sub-title {
    font-size: 14px;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 42px;
    font-weight: bold;
    color: #1e1e1e;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

/* Trip Card */
.trip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    max-width: 320px;
}

.trip-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.trip-info {
    padding: 15px;
}

.trip-info h3 {
    margin: 5px 0;
}

.people-going {
    font-size: 14px;
    color: #666;
}

/* Progress Card */
.progress-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    max-width: 190px;
    margin-top: 20px;
    position: relative;
    top: -110px;
    left: 50px;
}
.ong h4 {
    margin: 0px !important;
}
.ong p{
    margin: 0px !important;
    }
    .trip-image {
        padding: 20px;
    }
.ong {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.trip-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trip-progress img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.status {
    font-size: 14px;
    color: #FF5722;
}

.progress-text {
    font-size: 14px;
    color: #666;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    margin-top: 5px;
    position: relative;
}

.progress-fill {
    width: 40%;
    height: 100%;
    background: #03A9F4;
    border-radius: 5px;
}

.trip-image {
    padding: 20px;
    padding-bottom: 0px;
}
.text h3 {
    margin-bottom: 0px;
}
.text p {
    margin: 0px;
}
.icon img {
    width: 100%;
}

.content {
    max-width: 50%;
}
.main-sec {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/*/////////---End-Book Trip Section------////////////////////// */



/*---///////////--- Testimonial Section--/////////////////////////////////// */

/* ////////////////////////////////////////////// */

.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    padding-bottom: 0px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text h2 {
    font-size: 45px;
    font-weight: 700;
    color: #1d1b47;
    max-width: 60%;
    font-family: 'Volkhov';
}

.testimonial-text span {
    color: #ffc107;
}

.swiper-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.testimonial-card {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #888;
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #ffc107;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 25px !important;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 25px !important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 6px);
    right: auto;
    height: 26px !important;
    width: 16px !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 7px);
    left: auto;
    height: 26px !important;
    width: 16px !important;
}


.swiper-container {
    flex: 1;
    max-width: 500px;
    overflow: visible; /* make sure shadows can be seen */
    padding: 20px; /* add some spacing */
}

.swiper-slide {
    overflow: visible; /* ensures shadows are not clipped */
}

.testimonial-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    background: white;
    margin: 20px auto; /* adds space to avoid cut-off edges */
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, -5px) !important;
    top: var(--swiper-pagination-top, auto);
    left: 0;
}
/* ///////--End-testimonial---////////////////////////////// */


/* ////////--Brands-Boxes---////////// */
.air {
    padding: 40px 0px;
    background: #FFFDCF;
    margin-top: 40px;
}
.airline-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    margin: auto;
}

.airline-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.expedia {
    background: #ffd700;
    padding: 15px 25px;
    border-radius: 8px;
}

.airline-logo:hover {
    background: yellow;
}


/* /////--End-Brands-Boxes---///////// */


/* //////--Subscribe-section--///////////// */

.subscribe-container {
    background: #ffbf00;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 800px;
    position: relative;
    /* overflow: hidden; */
    margin: auto;
    border-top-left-radius: 70px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.subscribe-container h2 {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.subscribe-form input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 60%;
    max-width: 300px;
    font-size: 16px;
}

.subscribe-form button {
    background: #ff725e;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.subscribe-form button:hover {
    background: #e85a50;
}
.icon2 {
    position: absolute;
    top: -26px;
    right: -13px;
    /* background: #5c61ff; */
    color: white;
    padding: 0px;
    border-radius: 50%;
    font-size: 16px;
    z-index: 1;
    width: 60px;
}


/* ////////--Subscribe-Section------////////// */


/* //////---Footer-Section--//////////////////// */



.footer {
    background: #fdf9d9;
    padding: 32px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 7px;
}
.footer-column img {
    width: 100px;
}
footer {
    background: #fdf9d9;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p, .footer-column a {
    color: black;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    margin-top: 0;
}

.footer-column a:hover, .footer-column p:hover {
    color: #ffbf00;
}
.social-icons img {
    width: 40px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #ffbf00;
}

.footer-bottom {
    background: #ffbf00;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
.ft2 img {
    width: 20px;
}


/* /////////--End-Footer-section---------//////////////////// */



/* ///////////---Hotel-Section---////////////////////// */

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: #1f1f47;
  }

  .slider-container {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .slide {
    flex: 0 0 calc(33.333% - 2rem);
    margin: 0 1rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .slide:hover {
    transform: translateY(-5px);
  }

  .slide img {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }

  .slide-content {
    padding: 1rem;
  }

  .location {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f1f47;
  }

  .price {
    color: #555;
    margin-bottom: 0.5rem;
  }

  .trip-info1 {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
  }

  .trip-info1 span {
    margin-left: 0.5rem;
  }

  .controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .controls button {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    background: #1f1f47;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  .slide img {
    width: 100%;
    /* border-radius: 20px 20px 0 0; */
}

.trip-info1 img{
    width: 30px;
}
.main-con {
    background-image: url(../images/back32.png);
    padding: 40px 0px;
    background-size: 100% 100%;
}
div#slider {
    padding: 30px;
}

  @media (max-width: 768px) {
    .slide {
      flex: 0 0 calc(100% - 2rem);
    }
  }

/* ///////////////---End-Hotel-Section--/////////////////// */



/* ////////////////////----------About-Us-Page--------///////////////////////////////// */


.background {
background-image: url(../images/abbg.png);
background-size: 100% 100%;
}

.container{
    max-width: 1250px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    align-items: center;
    padding: 40px 40px;
    }

.lft-abt{
    width: 50%;
}

.lft-abt img {
    width: 500px;
}

.rgt-abt{
    width: 50%;
}

.bckwh{
    background-color: #FFFDD0;
}
.lfaa img{
    float: right;
}
.who{
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 253, 207, 1) 100%);
}

/* ////////////-----End-About-Us-Page---/////////////////////// */



/* ///////////------Contact-Us-Page---------///////////////////////// */

.outer{
    padding: 80px 80px;
}

.contact-section {
    padding: 50px 20px;
    background: #fff;
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    box-shadow: 0px 0px 20px 0px #0000001c;
}

  .contact-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .contact-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #777;
  }

  .contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }

  .contact-form {
    flex: 1 1 21%;
    padding-right: 40px;
}
  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #f6a800;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .contact-form button:hover {
    background-color: #d98c00;
  }

  .contact-info {
    flex: 1 1 38%;
  }

  .contact-info ul {
    list-style: none;
    padding: 0;
  }

  .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #444;
  }

  .contact-info .social-icons a {
    font-size: 18px;
    color: #444;
    margin-right: 10px;
    transition: 0.3s;
  }

  .contact-info .social-icons a:hover {
    color: #f6a800;
  }

  .contact-info iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .contact-box {
      flex-direction: column;
    }
  }


/* ///////////////--End-Contact-Us-Page------/////////////////////// */


/* /////////////////---Hotel-Page-------/////////////// */


.ht11{
    margin: auto;
    text-align: center;
}


.ht11 h1{
    color: white !important;
  }
  .ht11 p {
    color: white !important;
  }
  

.htbtn{
    margin: auto;
}

.background2 {
    background-image: url(../images/hotel-bg.png);
    padding:100px;
    background-size: 100% 100%;
    }
    .background77 {
        background-image: url(../images/pkbg.png);
    padding:100px;
    background-size: 100% 100%;
        }
    .background4 {
        background-image: url(../images/glrbk.png);
        padding:100px;
        background-size: 100% 100%;
        }

        .background5 {
            background-image: url(../images/loc.png);
            padding:100px;
            background-size: 100% 100%;
            }
            .background6 {
                background-image: url(../images/actbg.png);
                padding:100px;
                background-size: 100% 100%;
                }
    
    section.destinations {
        max-width: 1250px;
        margin: auto;
    }
    .destinations-container {
        gap: 50px;
    }

.background3{
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 253, 207, 1) 100%);
}


/* ////////////////--End-Hotel-page----//////////////////// */



/* /////////////////-----Gallery-Page--///////////////////// */

.destination-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .left-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .top-row,
  .bottom-row {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .top-row img,
  .bottom-row img {
    flex: 1;
    border-radius: 12px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .right-column {
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .right-column img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
  }
  .right-column img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .top-row img:hover,
  .bottom-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.gallery{
    text-align: center;
    max-width: 1250px;
    margin: auto;
    padding-bottom: 80px;
}
.gallery h1{
    text-align: center;
    padding-bottom: 40px;
}




.slide-unique {
    transform: scale(0.95);
  }
  
  .slide-unique.active {
    transform: scale(1.05);
  }
  
  
      .slider-container-unique {
    position: relative;
    width: 90%;
    margin: 0 auto;
    overflow: visible; /* Allow overflow */
    padding: 30px 0; /* Add padding for scale space */
  }
  
  .slider-unique-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    align-items: center; /* Keep center-aligned vertically */
  }
  
      .slide-unique {
        min-width: 33.33%;
        box-sizing: border-box;
        padding: 0 10px;
        opacity: 0.6;
        transform: scale(0.9);
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
  
      .slide-unique.active {
        transform: scale(1.1);
        opacity: 1;
        z-index: 2;
      }
  
      .slide-unique img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      }
  
      .arrow-unique {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border-radius: 50%;
        border: 1px solid #ccc;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 22px;
        z-index: 3;
      }
  
      .arrow-unique.left {
        left: 0;
      }
  
      .arrow-unique.right {
        right: 0;
      }

      .sld{
        padding: 60px;
      }

  @media (max-width: 900px) {
    .destination-container {
      flex-direction: column;
    }

    .right-column img {
      height: 300px;
    }
  }



/* ////////--End-Gallery-page-----///////////////// *


/* ////////////////////-----Avtivity-Page--////////////// */

.section-title2 {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title2 h2 {
    font-size: 2.5rem;
    color: #0a0a23;
  }

  .activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
  }

  .activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .activity-card:hover img {
    transform: scale(1.1);
  }

  .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
  }

  .activity-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  }

  .card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .card-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-right: 30px;
    padding-bottom: 12px;
  }

  .card-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    align-items: center;
  }

  .card-info span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .act-back {
    display: flex
;
    max-width: 1250px;
    margin: auto;
    gap: 20px;
    padding-bottom: 20px;
}
.act2{
    padding: 10px;
    padding-bottom: 40px;
    padding-top: 20px;
    
}

/* //////////--End-Activity-Page-------////////////////////// */


/* ////////////////--Packages---/////////////////////////////// */


.pkg-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
  }

  .pkg-title {
    font-size: 2.5rem;
    color: #101c3d;
    margin-bottom: 40px;
  }

  .pkg-cards-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .pkg-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    max-width: 300px;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }

  .pkg-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .pkg-card h3 {
    text-transform: uppercase;
    font-size: 1rem;
    margin: 15px;
    color: #333;
  }

  .pkg-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 15px 15px;
    height: 60px;
    overflow: hidden;
  }

  .pkg-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #eee;
  }

  .pkg-price {
    font-size: 0.9rem;
    color: #555;
  }

  .pkg-btn {
    background: #555;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .pkg-btn:hover {
    background: #000;
  }



/* ////////////// */

.container22 {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }

  .slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 20px;
  }

  .card {
    min-width: 300px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }

  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .card-body {
    padding: 15px;
  }

  .card-body strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
  }

  .card-body p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #444;
  }

  .view-btn {
    padding: 8px 14px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
  }

  .arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .arrow-btn {
    background: #ffd700;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
  }



/* /////////--Testimonial---//////////// */

.testimonial-container {
    max-width: 1250px;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: auto;
}

.testimonial-header {
    padding: 30px 40px 0;
}

.testimonial-header h2 {
    font-size: 28px;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
}

.testimonial-content {
    display: flex;
    padding: 0 40px 40px;
}

.client-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 40px;
    flex-shrink: 0;
    border: 5px solid #f0f0f0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

blockquote {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-right: 20px;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 40px;
    color: #e0e0e0;
    position: absolute;
}

blockquote::before {
    top: -20px;
    left: -10px;
}

blockquote::after {
    bottom: -40px;
    right: 10px;
}

.client-info {
    margin-top: 20px;
}

.client-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.client-title {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    padding: 20px 0 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    width: calc(100% - 80px);
    display: flex;
    justify-content: space-between;
    left: 40px;
    transform: translateY(-50%);
}

.slider-arrow {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background-color: #333;
    color: white;
}

.mainpk{
    padding-top: 40px;
}

/* /////////////----End-Packages---//////////////////////////// */




/* /////////--Single-Package----///////////////// */


.single {
    max-width: 1250px;
    margin: auto;
    display: flex   ;
    justify-content: space-between;
    padding: 70px 0px;
    align-items: center;
}
.left11 {
    width: 50%;
}
.left11 img{
    width: 100%;
}

.rgt22 {
    width: 47%;
}





/* //////--End-Single-Package--////////////////// */

.flx{
    display: flex;
    gap: 70px;
}


/* //////////////---Mobile-responsive---////////////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 768px) {

    .flx {
        display: flex
    ;
        gap: 20px;
        justify-content: center;
    }

    .left11 {
        width: 90%;
    }
    .rgt22 {
        width: 90%;
    }
    .single {
               padding: 10px 0px;
        align-items: center;
        flex-direction: column;
    }

    .testimonial-content {
        display: flex
    ;
        padding: 0 40px 40px;
        flex-direction: column;
    }
    .act-back {
        display: flex;
    flex-wrap: wrap;
        
    }
    .top-row, .bottom-row {
        display: flex;
        gap: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-wrap: wrap;
        padding: 10px;
    }
    .sld {
        padding: 0px;
        overflow-x: hidden;
    }
    .background6 {
        
        padding:10px;
        background-size: 100% 100%;
        }

        .background77 {
        
            padding:10px;
            background-size: 100% 100%;
            }

    .background4 {
        background-image: url(../images/glrbk.png);
        padding:10px;
        background-size: 100% 100%;
        }
    .background2 {
                padding:10px;
                background-size: 100% 100%;
        }
        .background5 {
            padding:10px;
            background-size: 100% 100%;
    }
    .outer {
        padding: 0px;
    }
    .banner-content h1 {
        font-size: 42px;
           }
    .banner-form input {
        width: 190px;
    }
    .services-section h2 {
        font-size: 31px;
            }
            .text-83 h2 {
                font-size: 32px;
            }
            .content {
                max-width: 95%;
            }
            .main-title {
                font-size: 32px;
                     }

 .progress-card {
  background: white;
 border-radius: 15px;
  padding: 15px;
 box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
 max-width: 190px;
  margin-top: 20px;
  position: relative;
 top: -20px;
 left: 0;
 }
 .testimonial-text h2 {
    max-width: 100%;

}
.testimonial-section {
    padding: 0px;
 
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -1px);
    left: auto;
    display: none !important;
}
.swiper-button-prev{
    display: none !important;
}
.footer-column {
    flex: 1;
    min-width: 100%;
    margin-bottom: 20px;
}
    .dropdown-menu {
        /* display: none; */
        position: relative;
        top: 100%;
        left: 0;
        background: white;
        list-style: none;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 89px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .subscribe-container { 
        padding: 20px;
    }
    .subscribe-form input {
        width: 100%;
    }


    .airline-container {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        width: 100%;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .banner-content {
        max-width: 100%;
    }
    .banner-form {
        justify-content: center;
    }



    .book-trip {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .steps {
        align-items: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .trip-card {
        margin-top: 30px;
    }

    .progress-card {
        margin-top: 15px;
    }


        .testimonials-section {
            flex-direction: column;
            text-align: center;
        }
    
        .testimonial-text {
            max-width: 100%;
            margin-bottom: 30px;
        }

       
            .testimonial-section {
                flex-direction: column;
                text-align: center;
            }
        
            .testimonial-text h2 {
                font-size: 2rem;
            }
        
            .swiper-container {
                width: 90%;
            }
  
            .destination-card {
                width: 250px;
                min-width: 250px;
              }
            
              .top-destinations h2 {
                font-size: 24px;
              }

              .container {
                max-width: 1250px;
                display: flex;
                flex-wrap: wrap;
                margin: auto;
                align-items: center;
                padding: 40px 40px;
                flex-direction: column;
            }

            .lft-abt {
                width: 100%;
            }

            .rgt-abt {
                width: 100%;
                padding-bottom: 20px;
            }
            .lft-abt img {
                width: 100%;
            }
            .rgt-abt p {
                text-align: center;
            }
            .rgt-abt h1 {
                text-align: center;
            }

/* //////// */
}
/* ////////////////////--End-Mobile-responsive------//////////// */



@media (min-width: 1200px) {
.main-sec {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* padding-top: 170px; */
}
.banner {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    /* background: #f8f9fa; */
    flex-wrap: wrap;
    max-width: 1250px;
    margin: auto;
    padding: 50px;
}

}

button.swiper-button-prev {
    display: none;
}
ul.nav-links.active {
    z-index: 9;
}



/* /////////////---Animations---////////////////// */

/* Animate only on home page */
.home-page .banner-content1,
.home-page .banner-image1,
.home-page .services-section,
.home-page .destinations,
.home-page .book-trip,
.home-page .airline-container {
  opacity:0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Show when visible */
.home-page .show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


.about-page .banner-content1,
.about-page .banner-image1,
.about-page .services-section,
.about-page .destinations,
.about-page .book-trip,
.about-page .airline-container {
  opacity: 1;
  transform: none;
}





/* //////////--_End-Animations---///////////////// */




