
/*-----------------------------------*\
 * 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: 0;
    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 {
    /* margin-top: 110px; Adjust based on the height of your header */
    position: relative;
    overflow: hidden;
    max-height: 600px;
    display: grid;
    place-items: center;
    text-align: center;
    z-index: -1;
    
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    background: rgba(0, 0, 0, 0.8);
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: rgba(0, 0, 0, 0.8);
    
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: transparent;
    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;
    color: white;
    font-size: 1.7em;
    background-color: #666666;
    background-clip: text;
    color: #f0f0f0;
    text-shadow: 0px 4px 10px #000;
    padding: 40px;
}

.carousel-overlay {
    position: relative;
    inset: 0;
    z-index: 5;
}


/* branch section */

.branch-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.branch-image {
    flex: 1 1 40%;
    max-width: 40%;
}

.branch-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.branch-content {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branch-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.branch-content p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

@media (max-width: 600px) {
    .branch-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .branch-image {
        order: -1;
        flex: 1 1 auto;
        max-width: 100%;
    }

    .branch-content {
        flex: 1 1 auto;
        max-width: 100%;
    }
}

/* Banner section */

.banner {
    position: relative;
    background-image: url('../landPageImg/sentosa.png'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-color: #23242a;
    color: white;
    padding: 70px;
    margin: 30px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0px 0px 15px;
  }

  .banner h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .banner p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .banner button {
    background-color: yellow;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
  }

  .banner .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: yellow;
    color: black;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
  }

  .features {
    text-align: center;
    padding: 50px 30px;
  }

  .features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }

  .features p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }

  .feature-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .feature-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f1f1;
    padding: 10px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
  }

  .feature-card p {
    font-size: 0.9rem;
    color: #666;
  }

  @media (max-width: 768px) {
    .features h2 {
      font-size: 1.5rem;
    }

    .features p {
      font-size: 0.9rem;
    }

    .feature-card {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
  }

  @media (max-width: 768px) {
    .banner h1 {
      font-size: 1.5rem;
    }

    .banner p {
      font-size: 0.9rem;
    }

    .banner button {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  }


/* packages */
.container-pack {
    padding: 20px;
    text-align: center;
  }

  .header1 {
    margin-bottom: 20px;
  }

  .header1 h1 {
    font-size: 24px;
    margin: 0;
  }

  .header1 p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
  }

  .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 20px;
    gap: 30px;
  }

  .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s;
    width: 105%;
    height: 100%;
    margin: 20px auto;
  }

  .card:hover {
    transform: scale(1.05);
  }

  .card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .card-content {
    padding: 15px;
  }

  .card-content h3 {
    font-size: 18px;
    color: #007bff;
    margin: 0 0 10px;
  }

  .card-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
  }

  .card-content .price {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }

  @media (max-width: 768px) {
    .card img {
      height: 410px;
    }

    .card-content h3 {
      font-size: 16px;
    }
  }

  /* review section */

  .reviews-section {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
  }

  .reviews-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }

  .reviews-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
  }

  .reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
  }

  .review-card {
    flex: 0 0 300px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
  }

  .review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .review-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
  }

  .review-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
  }

  .review-card .rating {
    color: #ffc107;
    margin-bottom: 10px;
  }

  .carousel-buttons {
    margin-top: 20px;
  }

  .carousel-buttons button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
  }

  .carousel-buttons button:hover {
    background-color: #555;
  }

  @media (max-width: 768px) {
    .review-card {
      flex: 0 0 90%;
    }
  }

  /* Blog Section Styles */
.blog {
    padding: var(--section-padding);
    background-color: var(--gainsboro);
}

.blog-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gunmetal);
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-link {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: var(--bright-navy-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.tab-link.active {
    background-color: var(--blue-ncs);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-post {
    background-color: var(--white);
    border-radius: var(--radius-15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
}

.blog-post-image {
    width: 100%;
    height: auto;
}

.blog-post-title {
    font-size: var(--fs-3);
    margin: 20px;
    color: var(--yale-blue);
}

.blog-post-content {
    font-size: var(--fs-5);
    margin: 0 20px 20px;
    color: var(--onyx);
}

.more-text {
    display: none;
}

.read-more-btn {
    align-self: flex-start;
    margin: 0 20px 20px;
    padding: 10px 20px;
    background-color: var(--bright-navy-blue);
    color: var(--white);
    border-radius: var(--radius-15);
    cursor: pointer;
    transition: var(--transition);
}

.read-more-btn:hover {
    background-color: var(--blue-ncs);
}

@media (max-width: 768px) {

    .country-boxes {
        flex-direction: column;
        align-items: center;
    }

    .blog-posts {
        flex-direction: column;
    }

    .blog-post {
        flex: 1 1 100%;
    }
}

  /* container section */
  .container-content {
    padding: 20px;
}

.title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.description {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #007BFF;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1em;
    display: block;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .title {
        font-size: 1.2em;
    }

    .description {
        font-size: 0.9em;
    }

    .read-more {
        font-size: 0.9em;
    }
}

/* official page link */
/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated button */
.animated-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background-color: #0c6291;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7e1946;
    border-radius: 5px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

/* Hover animation */
.animated-button:hover {
    color: #fff;
    background-color: #0c6291;
}

.animated-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile view responsiveness */
@media screen and (max-width: 600px) {
    .animated-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* form section */

.container-form {
    max-width: 600px;
    max-height: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.646);
    border-radius: 8px;
}

.container-form h1 {
    text-align: center;
    color: #333;
}

.container-form .form-group {
    margin-bottom: 15px;
}

.container-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.container-form input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.container-form button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.container-form button:hover {
    background-color: #0056b3;
}


/*-----------------------------------*\
  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: 15px;
    }

    /* 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;
    }

    /* 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-prev, .carousel-next {
        font-size: 1.5em;
        padding: 5px;
    }
    
    .carousel-content h2 {
        font-size: 1.5em;
    }

    .carousel-content p {
        font-size: 1em;
    }

    .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%;
    }
}