
/*-----------------------------------*\
 * custome property
\*-----------------------------------*/

:root {

    /**
     colors
    **/

    --united-nations-blue: hsl(214, 56%, 58%);
    --bright-navy-blue: hsl(214, 57%, 51%);
    --yale-blue: hsl(214, 72%, 33%);
    --blue-ncs: hsl(197, 100%, 36%);
    --gunmetal: hsl(206, 34%, 20%);
    --gainsboro: hsl(0, 0%, 88%);
    --white: #ffffff;
    --black: #000;
    --onyx: hsl(0, 0%, 25%);
    --jet: hsl(0, 0%, 20%);
    --crimson: #DC143C;
    --darkred: #be202e;
    --brightred: #ec2027;
    --darkblue: #283b90;

    /**
     typography styles for the theme colors *
    **/

    --ff-poppins: "Poppins", sans-serif;
    --ff-montserrat: "Montserrat", sans-serif;

    --fs-1: calc(20px + 3.5vw);
    --fs-2: calc(18px + 1.6vw);
    --fs-3: calc(16px + 0.45vw);
    --fs-4: 15px;
    --fs-5: 14px;
    --fs-6: 13px;
    --fs-7: 12px;
    --fs-8: 11px;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /**
        - transition: all linear infinite 
    ?*/

    --transition: 0.25s ease-in-out;

    /**
        - spacing 
    ?*/
    --section-padding: 60px;

    /**
        - border radius 
    ?*/
    --radius-15: 15px;
    --radius-25: 25px;
}

*,
*::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: white;
}

/*-----------------------------------*\
styling
\*-----------------------------------*/

.container {
    padding-inline: 10px;
}

.btn {
    color: var(--white);
    border-color: antiquewhite;
    text-transform: uppercase;
    font-size: var(--fs-5);
    height: 40px;
    width: 130px;
    border-radius: 25px;
    padding: 0px;
    border-width: 2px solid transparent;
    transition: var(--transition);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.btn a{
    color: white;
    font-family: var(--ff-poppins);
}

.btn-primary {
    background: blue;
    border-color: blue;
}

.btn-primary:is(:hover, :focus) {
    background: rgb(0, 215, 0);
    border-color: #23242a;
}

.btn-secondary {
    background: red;
    border-color: maroon;
}

.btn-secondary:is(:hover, :focus) {
    background: rgb(60, 255, 0);
}


.btn-explore {
    display: inline-block;
    margin-top: 1rem;
    background: orange;
    color: white;
    padding: .8rem 3rem;
    border: .2rem solid orange;
    cursor: pointer;
    font-size: 1.4rem;
}

.btn-explore:is(:hover, :focus) {
    background: black;
}

.h1,
.h2,
.h3 {
    font-weight: var(--fw-800);
    font-family: var(--ff-montserrat);
    /* text-transform: uppercase; */
    color: white;
}

.h1 {
    font-family: serif;
    color: white;
    font-size: var(--fs-1);
}

.h2,
.h3 {
    color: #181818;
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: 1.1em;
    font-weight: 700;
}



.section-subtitle {
    color: #696969;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-title {
    margin-bottom: 10px;
}

.section-text {
    color: black;
    margin-bottom: 20px;
}



.card-text {
    color: black;
    font-size: var(--fs-5);
    font-family: var(--ff-montserrat);
}


/*-----------------------------------*\
 * #header.css
\*-----------------------------------*/

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding-top: 61px;
    z-index: 4;
}

.header-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
    padding-block: 12px;
    z-index: 1;
    background-color: #2c3e509c;
}

.header-active .header-top {
    position: fixed;
    background-color: #34495e;
}

.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 {
    font-size: 25px;
    background: blue;
    padding: 6px;
    border-radius: 30%;
    color: white;
}

.helpline-box .icon-box ion-icon {
    --ionicon-stroke-width: 50px;
}

.header-top .logo {
    margin-inline: auto;
}

.header-top .logo img {
    max-width: 200px;
}

.header-btn-group {
    justify-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.search-btn,
.nav-open-btn {
    font-size: 35px;
    color: inherit;
}

.search-btn {
    font-size: 35px;
}

.header-bottom {
    background-color: #2c3e509c;
}

.header-bottom .container {
    display: flex;
    border-bottom: #23242a;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-link {
    color: white;
    padding: 8px;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    font-size: 25px;
    transition: var(--transition);
}

.social-link:is(:hover, :focus) {
    background: rgb(60, 255, 0);
}

.header .btn {
    padding: 4px;
}

.header .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 100%;
    max-width: 280px;
    font-size: 0.8em;
    height: 100%;
    background: white;
    visibility: hidden;
    pointer-events: none;
    transition: 0.01s ease-in;
    z-index: 3;
}

.navbar.active {
    background-color: #181818;
    right: 0;
    visibility: visible;
    pointer-events: all;
    transition: 0.2s ease-out;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.navbar-top .logo img {
    width: 200px;
}

.nav-close-btn {
    font-size: 25px;
    color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon {
    --ionicon-stroke-width: 80px;
}

.navbar-list {
    border-top: 1px solid #323338;
}

.navbar-list li {
    border-bottom: 1px solid #323338;
}

.navbar-link {
    padding: 15px 20px;
    color: white;
    font-weight: 500;
    font-size: 1.0em;
    transition: var(--transition);
    text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) {
    color: crimson;
}

.overlay {
    position: fixed;
    inset: 0;
    background: #23242a;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
}

.overlay.active {
    opacity: 0.6;
    pointer-events: all;

}

.review {
    align-items: center;
}

.heading {
    align-items: center;
    display: flex;
    padding: 2.5rem;
}

.heading span {
    letter-spacing: normal;
    font-size: 1.5em;
    align-items: var(--section-padding);
    color: orange;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 1rem;
}

/* Dropdown Menu Styles */
.header-bottom .dropdown {
    position: relative;
    display: inline-block;
}

.header-bottom .dropdown-content {
    border-radius: 8px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.header-bottom .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.header-bottom .dropdown-content a:hover {
    background-color: #cbcbcb;
    border-radius: 8px;
}

.header-bottom .dropdown:hover .dropdown-content {
    display: block;
}

.header-bottom .dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
/*-----------------------------------*\
 * #hero.css
\*-----------------------------------*/

/* Hero Carousel Styles */
.hero-carousel {
     position: relative;
    overflow: hidden;
    max-height: 600px;
    display: grid;
    place-items: center;
    text-align: center;
    z-index: 1; /* Ensure this is above the header */
    
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%; /* Ensure each slide takes up 100% of the container width */
    max-width: 100%;
    transition: opacity 0.5s ease-in-out;
    background: rgba(0, 0, 0, 0.8);
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 2em;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-content {
     position: absolute;
    text-align: center;
    font-size: 20px;
    /*background-color: rgba(102, 102, 102, 0.7);*/
    color: #f0f0f0;
    text-shadow: 0px 4px 10px #000;
    padding: 40px;
    z-index: 2;
}

.carousel-overlay {
    position: relative;
    inset: 0;
    z-index: 5;
}

/*-----------------------------------*\
 * #tour search
\*-----------------------------------*/

.tour-search {
    display: grid;
    background: #23242a;
    border-bottom: none;
    padding-block: var(--section-padding);
}

.tour-search-form .input-label {
    color: whitesmoke;
    font-size: 1em;
    margin-left: 20px;
    margin-bottom: 10px;
}

.tour-search-form .input-field {
    background: whitesmoke;
    padding: 10px 1px;
    font-size: 1em;
    border-radius: 10px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.tour-search-form .input-field::placeholder {
    text-align: center;
    color: #A9A9A9;
}

.tour-search-form .input-field::-webkit-datetime-edit {
    color: #A9A9A9;
    text-transform: uppercase;
}

.tour-search-form .input-wrapper {
    margin-bottom: 15px;
}

.tour-search .input-wrapper .btn-secondary {
    width: 150px;
    font-size: 1.2em;

}
    


/* Comapny Overview */

#company-overview {
    padding: 2rem;
    background: #282828;
    margin: 1rem auto;
    max-width: 950px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.639);
    transition: transform 0.3s ease-in-out;
}

#company-overview:hover {
    transform: translateY(-5px);
}

#company-overview h2 {
    color: #ffffff;
    border-bottom: 2px solid #696464;
    padding-bottom: 0.5rem;
    text-align: center;
}

#company-overview p {
    color: white;
    margin-top: 10px;
    text-align: justify;
}

/*visa section*/

.why-choose {
    padding: 20px;
}

.tabs {
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background: rgba(255, 242, 0, 0.613);
    color: #23242a;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active {
    background: var(--secondary-color);
    border: 1px solid var(--black);
    border-radius: 5px;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-box {
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    width: 250px;
    position: relative;
}

.service-box img {
    max-width: 100%;
    height: auto;
}

.service-box:hover {
    border: 1px solid var(--black);
    background: lightslategray;
    color: var(--white);
    transform: scale(1.05);
}

.service-boxes h3{
    margin-top: 10px;
}


.service-box .know-more {
    background: orange;
    margin-top: 20px;
    color: #23242a;
    border: 1px solid #23242a;
    padding: 10px;
    cursor: pointer;
    position: relative;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.service-box .know-more:hover {
    background: lightgray;
}

.service-box button {
font-weight: 300;
}

/*-----------------------------------*\
 * destinations
\*-----------------------------------*/
.popular {
    align-items: center;
    border-bottom: 1px solid #23242a;
    padding-block: var(--section-padding);
    padding: 10px;
    background-color: #f9f9f9;
}

.popular .section-subtitle, .popular .h2.section-title, .popular .section-text {
    text-align: center;
    margin-bottom: 20px;
}

.popular .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
}

.popular .box-container .box {
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
    border-radius: 10px;
    flex: 1 1 100%;
    max-width: 250px;
    height: 400px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.popular .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popular .box-container .box .content {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    transition: top 0.3s ease-in-out;
}

.popular .box-container .box:hover .content {
    top: 0;
}

.popular .box-container .box .content h3 {
    font-size: 1.5rem;
    color: orange;
}

.popular .box-container .box .content p {
    font-size: 1rem;
    color: white;
    padding: .5rem 0;
}

.popular .btn-primary {
    display: block;
    width: 182px;
    margin: 25px auto;
    padding: 10px 0;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

.popular .btn-primary a {
    color: #ffffff;
    text-decoration: none;
}
.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review {
    width: 90%;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #007bff;
}
.swiper-pagination-bullet-active {
    background: #ff6f61;
}

/* continent section */
.continent-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}
.carousel-continent {
    position: relative;
    max-width: 85%;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-continent .carousel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-continent .carousel-item {
    min-width: 100%;
    height: 500px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-content-continent {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
}

.carousel-content-continent h2 {
    margin: 0;
    font-size: 24px;
}

.carousel-content-continent h1 {
    margin: 5px 0;
    font-size: 36px;
}

.carousel-content-continent p {
    margin: 5px 0;
    font-size: 18px;
}

.carousel-content-continent a button {
    padding: 10px 20px;
    background-color: #ffd700;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    z-index: 1000;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}
/*-----------------------------------*\
 * packages section
\*-----------------------------------*/
.package {
    border-bottom: 1px solid #23242a;
    margin-bottom: 50px;
    padding-block: var(--section-padding);
}

.package-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;

}

.package .container .section-text{
    text-align: justify;
}

.package-list > li {
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 25px;
}
.package-list > li:first-child{
    height:900px;
}

.package-card {
    background: #C0C0C0;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.package-card .card-banner {
    height: auto;
    overflow: hidden;
}

.package-card .card-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .card-banner img {
    transform: scale(1.1);
}

.package-card .card-content {
    padding: 20px;
    flex-grow: 1;
}

.package-card .card-content .h3 {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.package-card .card-text {
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-meta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.card-meta-item {
    flex: 1;
    display: flex;
    align-items: center;
}

.meta-box {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #23242a;
    font-size: 0.9em;
}

.meta-box > ion-icon {
    color: rgb(48, 0, 12);
    font-size: 1em;
}

.package-card .card-price {
    background: #23242a;
    color: white;
    padding: 20px;
    text-align: center;
}

.package-card .card-price .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.package-card .card-price .review {
    font-weight: 500;
    font-size: 1.1em;
}

.package-card .card-rating {
    display: flex;
    gap: 2px;
    font-size: 1em;
    color: gold;
}

.package-card .price {
    font-size: 1.5em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0.03rem;
    margin-bottom: 20px;
}

.package-card .price span {
    font-size: 0.8em;
    font-weight: initial;
}

.package .btn {
    width: 50%;
    height: 55px;
    font-size: 1.1em;
    margin-inline: auto;
    font-weight: 350;
}

.package .btn-primary {
    width: 220px;
    margin-inline: auto;
}

.package .btn-primary a {
    color: white;
    text-decoration: none;
}
/*-----------------------------------*\
  Services section
\*-----------------------------------*/

.container-services .section-title {
    margin-bottom: 0;
    text-align: center;
    font-size: 2em;
}

.services {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.639);
}

.tabs {
    display: flex;
    background-color: #69696961;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    overflow-x: auto;
    color: white;
    border: 1px solid #23242a
}

.tab-button {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s, color 0.3s;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-button ion-icon {
    font-size: 18px;
}

.tab-button:hover,
.tab-button.active {
    background: #007bff;
    color: #fff;
    border-bottom: 2px solid #0056b3;
}

.tab-content {
    display: none;
    padding: 20px;
    border-top: 1px solid #eee;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/*-----------------------------------*\
  review section
\*-----------------------------------*/

.review-section {
    background: #f9f9f9;
    padding: 50px 20px;
}

.review-section h2{
    text-align: center;
    margin: 20px 0;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reviews {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    max-width: 90%;
}

.reviews:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.review-content {
    padding: 20px;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.author {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
}

/*-----------------------------------*\
  gallery section
\*-----------------------------------*/

.gallery {
    margin-top: 40px;
    border-top: 1px solid #23242a;
    padding-block: var(--section-padding);
}

.gallery-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item:nth-child(3) {
    grid-area: 2 / 2 / 2;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .btn-secondary {
    width: 230px;
    font-size: 1.1em;
    margin-top: 35px;
    margin-inline: auto;
}

/*-----------------------------------*\
  CTA Contact Section
\*-----------------------------------*/

.cta {
    padding-block: var(--section-padding);
    background: #23242a;
}

.cta :is(.section-subtitle, .section-title, .section-text) {
    color: white;
}


.cta .section-text {
    font-size: 0.9em;
}

.cta .btn-secondary {
    width: 150px;
    font-size: 1.2em;

}

/*-----------------------------------*\
  Footer
\*-----------------------------------*/

.footer-top {
    padding-block: var(--section-padding);
    background: #eaece5;
    color: #23242a;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand img {
    width: 200px;
}

.footer-brand .logo {
    margin-bottom: 23px;
}

.footer-text {
    font-size: 1.1em;
    line-height: 1.5;
}

.footer-contact {
    margin-bottom: 30px;
}

.contact-title {
    position: relative;
    font-family: var(--ff-montserrat);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 92px;
    height: 2px;
    background: #23242a;
}

.contact-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    max-width: 180px;
}

.contact-item {
    font: 1em;
    letter-spacing: 0.02rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.contact-item ion-icon {
    stroke-width: 50px !important;
}

.contact-link,
address {
    font-style: var(--ff-montserrat);
    color: #0040ff;
    font-size: 1.2em;
}

.contact-link:is(:hover, :focus) {
    color: crimson;
}

.form-text {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.footer-form .input-field {
    color: white;
    background: #23242a;
    font-size: 1.2em;
    padding: 17px 23px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.footer-form .btn {
    width: 100%;
    font-size: 1.1em;
    font-weight: 350;
    margin-top: 10px;
}

.footer-bottom {
    background: #dadbd7;
    padding-block: 25px;
    text-align: center;
    font-size: 0.8em;
}

.copyright {
    color: #23242a;
    font-size: 1.2em;
    margin-top: 8px;
    margin-bottom: 8px;
}

.copyright a {
    color: #23242a;
    display: block;
}

.copyright a:is(:hover, :focus) {
    color: crimson;
}

.footer-top .form-wrapper .input-field::placeholder {
    color: white;
}

.footer-bottom-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-bottom-list>li {
    font-size: 1em;
    Position: relative;
}

.footer-bottom-list>li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -7px;
    bottom: 4px;
    width: 1px;
    background: #23242a;
}

.footer-bottom-link {
    color: #0040ff;
    font-size: 1em;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) {
    color: crimson;
}

/*-----------------------------------*\
  Top Fetching Button
\*-----------------------------------*/

.top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: red;
    color: antiquewhite;
    display: grid;
    place-items: center;
    font-size: 1rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0 0.8px 2.99px hsla(0, 0%, 0%, 0.2);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}


.top.active {
    opacity: 0.999;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    visibility: visible;
}

.top:is(:hover, :focus) {
    color: #23242a;
}

/*map section*/

.map-container {
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/*-----------------------------------*\
  top queries
\*-----------------------------------*/

@media (max-width: 600px) {
    .tabs {
        flex-direction: column;
    }

    .tab-button {
        text-align: left;
        border-top: 1px solid #eee;
        border-left: 4px solid transparent;
    }

    .tab-button.active {
        border-left: 4px solid #007bff;
    }

    .tab-button:first-child {
        border-top: none;
    }
}
/* for 480px */
@media (max-width: 480px) {
   
    
    .popular {
        padding: 10px;
    }

    .popular .section-subtitle, .popular .h2.section-title, .popular .section-text {
        margin-bottom: 15px;
    }

    .popular .box-container .box {
        max-width: 100%;
        height: 300px;
    }

    .popular .box-container .box .content h3 {
        font-size: 1rem;
    }

    .popular .box-container .box .content p {
        font-size: 0.8rem;
    }

    .popular .btn-primary {
        width: 150px;
        padding: 8px 0;
    }
}
/* for 580px */
@media (min-width: 580px) {
    .container {
        max-width: 580px;
        margin-inline: auto;
    }

    /*.about-section {*/
    /*    position: relative;*/
    /*    width: 100%;*/
    /*    max-height: fit-content;*/
    /*    padding: 100px 100px;*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*}*/

    .btn {
        --fs-5: 16px;
    }

    section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
        text-align: center;
    }

    .section-text {
        margin-bottom: 40px;
    }

    .card-text {
        --fs-5: 15px;
    }

    .header {
        padding-top: 80px;
    }

    .helpline-box .icon-box {
        padding: 15px;
    }

    .header-top .logo {
        max-width: unset;
    }

    .search-btn {
        font-size: 32px;
    }

    .nav-open-btn {
        font-size: 42px;
    }

    .header .btn {
        --fs-5: 15px;
    }

    /*.hero {*/
    /*    min-height: 800px;*/
    /*    padding-top: 85px;*/
    /*}*/

    /*.hero-text {*/
    /*    --fs-5: 15px;*/
    /*}*/

    /*.btn-group {*/
    /*    gap: 20px;*/
    /*}*/

    /* tour search section */

    .tour-search-form {
        display: grid;
        grid-template-columns: 2fr 2fr;
        align-items: flex-end;
        gap: 18px;
    }

    .tour-search-form .input-wrapper {
        margin-bottom: 0;
    }

    .tour-search-form .input-field {
        padding: 15px 22px;
    }

    .tour-search .btn {
        grid-column: span 2;
        margin-top: 5px;
    }

    /* footer section */

    .footer .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-form {
        grid-column: span 2;
    }

    .footer-bottom {
        text-align: center;
    }

    .copyright {
        margin-bottom: 0;
    }

    .footer-bottom-list {
        justify-content: flex-end;
    }

}
/* for 768px */
@media (min-width: 768px) {

    :root {
        --fs-5: 15px;
    }

    .image_section {
        width: 70%;
    }

    .about_img {
        height: 60vh;
    }

    .content_section {
        width: 60%;
        padding: 30px 30px 30px 50px;
    }

    .about_title {
        font-size: 1.4rem;
    }

    .about_desc {
        font-size: 0.890rem;
        line-height: 1.1rem;
        margin-bottom: 1.0rem;
    }

    .about_btn {
        margin-bottom: 0.2rem;
    }


    .container {
        max-width: 800px;
    }

    .section-text {
        max-width: 60ch;
        margin-inline: auto;
    }

    /* header section */

    .helpline-box {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
    }

    .helpline-box .wrapper {
        display: block;
        color: white;
        font-size: var(--fs-6);
    }

    .social-list {
        gap: 12px;
    }
    
    /*Hero section*/
   

    /* Gallery Section */

    .gallery {
        padding-bottom: calc(var(--section-padding) * 2);
    }

    .gallery-list {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 17px;
    }

    .gallery-image {
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    /* cta section */

    .cta .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cta-content {
        width: calc(100% - 210px);
    }

    .cta .section-text {
        margin-inline: 0;
    }


    /* footer section */

    .form-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
    }

    .footer-form .input-field {
        margin-bottom: 0;
    }

    .footer-form .btn {
        margin-bottom: 8px;
        width: 400px;
        height: 60px;
    }

}
/* for 995px */
@media (min-width: 995px) {
    .container {
        max-width: 98%;
    }

    .header.active .header-top {
        position: unset;
        background: unset;
    }

    .nav-open-btn,
    .navbar-top {
        display: none;
    }

    .header-bottom {
        border-bottom: none;
    }

    .header.active .header-bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        color: #ffffff;
        box-shadow: hsla(0, 0%, 0%, 0.08);
        transition: var(--transition);
        -webkit-transition: var(--transition);
        -moz-transition: var(--transition);
        -ms-transition: var(--transition);
        -o-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: whitesmoke;
        --fs-4: 15px;
        font-weight: unset;
        text-transform: uppercase;
        padding: 25px 19px;
    }

    .header.active .navbar-link {
        color: #23242a;
    }

    .header.active .navbar-link.top:is(:hover, :focus) {
        color: #DC143C;
    }

    .header.active .social-link {
        color: #23242a;
        border-color: hsl(206, 34%, 20%);
    }

    .overlay {
        display: none;
    }

    /* hero section */
    

    /*.hero .container {*/
    /*    max-width: 740px;*/
    /*}*/

    /* tour search section */

    .tour-search-form {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .tour-search .btn {
        padding: 15px;
        grid-column: unset;
        margin-top: 0;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        width: calc(100% - 55px);
    }

    /* package section */

    .meta-box {
        align-items: center;
        --fs-8: 13px;
    }

    .meta-box>ion-icon {
        align-items: center;
        font-size: 15px;
    }

    /* cta */

    .cta .section-title {
        max-width: 25ch;
    }

    /* footer section */

    .footer-top .container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px;
    }

    .footer-form {
        grid-column: unset;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .footer-form .btn {
        margin-top: 0;
        width: 100%;
    }

    .footer-bottom .copyright {
        align-items: flex-start;
        padding: 0;
    }
}
@media (max-width: 768px) {
         .hero-carousel {
        max-height: 500px;
    }
     
    .carousel-slide img {
        max-height: 500px; /* Adjust based on the height of your mobile screen */
    }

    .carousel-content {
        font-size: 16px;
        padding: 20px;
    }

    .carousel-prev, .carousel-next {
        font-size: 1.5em;
    }


    .carousel-content-continent h2 {
        font-size: 18px;
    }

    .carousel-content-continent h1 {
        font-size: 24px;
    }

    .carousel-content-continent p {
        font-size: 14px;
    }

    .carousel-content-continent button {
        font-size: 14px;
    }

    .carousel-control {
        padding: 5px;
        font-size: 16px;
    }
    
    .popular .box-container {
        gap: 1rem;
        padding: 0;
    }

    .popular .box-container .box {
        flex: 1 1 100%;
        height: 350px;
    }

    .popular .box-container .box .content h3 {
        font-size: 1.2rem;
    }

    .popular .box-container .box .content p {
        font-size: 0.9rem;
    }
    .carousel-container {
        flex-direction: column;
        align-items: center;
    }
    .continent-box {
        width: 80%;
        margin: 10px 0;
    }
    .package-list > li {
        flex: 1 1 100%;
    }

    .package-card .card-banner {
        height: auto;
    }

    .package-card .card-content {
        padding: 15px;
    }

    .package-card .card-content .h3 {
        font-size: 1em;
    }

    .card-meta-list {
        flex-direction: column;
        gap: 5px;
    }

    .meta-box {
        font-size: 0.8em;
    }

    .package-card .card-price {
        padding: 15px;
    }

    .package-card .price {
        font-size: 1.2em;
    }

    .package .btn {
        width: 90%;
        margin-top: 20px;
    }

    .package .btn-primary {
        width: 100%;
    }
}