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

/**
 * copyright 2024
 */

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

:root {
    /**
     * colors
     */
  
    --united-nations-blue: hsl(214, 56%, 58%);
    --bright-navy-blue: hsl(214, 57%, 51%);
    --spanish-gray: hsl(0, 0%, 60%);
    --black-coral: hsl(225, 8%, 42%);
    --oxford-blue: hwb(207 0% 76%);
    --yale-blue: hsl(214, 72%, 33%);
    --blue-ncs: hsl(197, 100%, 36%);
    --gunmetal: hsl(206, 34%, 20%);
    --gainsboro: hsl(0, 0%, 88%);
    --cultured: hsl(0, 0%, 98%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --onyx: hsl(0, 0%, 25%);
    --jet: hsl(0, 0%, 20%);
  
    /**
     * typography
     */
  
    --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
     */
  
    --transition: 0.25s ease-in-out;
  
    /**
     * spacing
     */
  
    --section-padding: 60px;
  
    /**
     * border-radius
     */
  
    --radius-15: 15px;
    --radius-25: 25px;
  }
 
  /* Coming Soon Section */
  .coming-soon {
    position: relative;
    padding-bottom: 0; /* tighter gap above next section */
    margin-bottom: 0;
    padding-top: 0;
  }

  /* Move Let's Connect section down */
  .contact {
    margin-top: -400px !important;
    padding-top: 0 !important;
  }

  /* Move Blogs section down to create proper gap */
  .coming-soon {
    margin-top: 50px;
    padding-top: 0;
  }

  .coming-soon-wrapper {
    width: 100%;
    
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .coming-soon-card {
    width: min(900px, 92%);
    height: 250px;
    border-radius: 16px;
    background: #000;
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }

  .coming-soon-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 400px at -10% -20%, hsla(0,0%,100%,0.18), transparent 60%),
                radial-gradient(800px 300px at 120% 120%, hsla(0,0%,100%,0.12), transparent 60%);
    pointer-events: none;
  }

  .coming-soon-text {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(28px, 6vw, 56px);
  }

  @media (min-width: 768px) {
    .coming-soon-card {
      border-radius: 20px;
    }
  }

  /*-----------------------------------*\
     * #RESET
    \*-----------------------------------*/
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  a,
  img,
  span,
  input,
  label,
  button,
  ion-icon {
    display: block;
  }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  input {
    width: 100%;
  }
  
  ion-icon {
    pointer-events: none;
  }
  
  html {
    font-family: var(--ff-poppins);
    scroll-behavior: smooth;
  }
  
  body {
    background: var(--white);
    overflow-x: hidden;
  }
  
  /*-----------------------------------*\
     * #REUSED STYLE
    \*-----------------------------------*/
  
  .container {
    padding-inline: 15px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .btn {
    color: var(--white);
    text-transform: uppercase;
    font-size: var(--fs-5);
    border-radius: 100px;
    padding: var(--padding, 8px 18px);
    border: var(--border-width, 2px) solid transparent;
    transition: var(--transition);
  }
  
  .btn-primary {
    background: var(--bright-navy-blue);
    border-color: var(--bright-navy-blue);
  }
  
  .btn-primary:is(:hover, :focus) {
    background: var(--yale-blue);
    border-color: var(--yale-blue);
  }
  
  .btn-secondary {
    border-color: var(--white);
  }
  
  .btn-secondary:is(:hover, :focus) {
    background: hsla(0, 0%, 100%, 0.1);
  }
  
  .h1,
  .h2,
  .h3 {
    font-weight: var(--fw-800);
    font-family: var(--ff-montserrat);
    text-transform: uppercase;
  }
  
  .h1 {
    color: var(--white);
    font-size: var(--fs-1);
  }
  
  .h2,
  .h3 {
    color: var(--gunmetal);
  }
  
  .h2 {
    font-size: var(--fs-2);
  }
  
  .h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-700);
  }
  
  .section-subtitle {
    color: var(--bright-navy-blue);
    font-size: var(--fs-5);
    text-transform: uppercase;
    font-family: var(--ff-montserrat);
    margin-bottom: 8px;
  }
  
  .section-title {
    margin-bottom: 15px;
  }
  
  .section-text {
    color: var(--black-coral);
    margin-bottom: 30px;
  }
  
  .card-text {
    color: var(--black-coral);
    font-size: var(--fs-5);
  }
  
  /*-----------------------------------*\
     * #HEADER
    \*-----------------------------------*/
  
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 30px;
    z-index: 4;
  }
  
  .header-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    padding-block: 15px;
    z-index: 1;
  }
  
  .header.active .header-top {
    position: fixed;
    background: var(--gunmetal);
  }
  
  .header-top .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: flex-start;
    align-items: center;
  }
  
  .helpline-box .wrapper {
    display: none;
  }
  
  .helpline-box .icon-box {
    background: var(--bright-navy-blue);
    padding: 6px;
    border-radius: 50%;
    color: var(--white);
  }
  
  .helpline-box .icon-box ion-icon {
    --ionicon-stroke-width: 40px;
  }
  
  .header-top .logo {
    margin-inline: auto;
  }
  
  .header-top .logo img {
    max-width: 100px;
  }
  
  .header-btn-group {
    justify-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
  }
  
  .search-btn,
  .nav-open-btn {
    font-size: 30px;
    color: inherit;
  }
  
  .search-btn {
    font-size: 20px;
  }
  .Loga img {
    justify-content: center !important;
    align-items: center !important;
  }
  .header-bottom {
  }
  
  .header-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 15px;
  }
  
  .container-fluid {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #CD853F 50%, #D2691E 75%, #B8860B 100%); */
    position: relative;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
  }
  
  .social-list {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .social-link {
    color: var(--white);
    padding: 8px;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    border-radius: 50%;
    font-size: 15px;
    transition: var(--transition);
  }
  
  .social-link:is(:hover, :focus) {
    background: hsla(0, 0%, 100%, 0.2);
  }

  /* Social media icon colors */
  .social-link ion-icon[name="logo-facebook"] {
    color: #1877f2 !important; /* Facebook blue */
  }

  .social-link ion-icon[name="logo-youtube"] {
    color: #ff0000 !important; /* YouTube red */
  }

  /* Reviews Slider Section */
  .reviews-slider-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
  }

  .reviews-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .reviews-slider-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }

  .reviews-slider-section .section-subtitle {
    color: var(--bright-navy-blue);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
  }

  .reviews-slider-section .section-title {
    color: #ffd700;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
  }

  .reviews-slider-section .section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-navy-blue), var(--gold));
    margin: 0 auto;
    border-radius: 2px;
  }

  .reviews-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }

  .reviews-wrapper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
  }

  .reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .review-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .review-card:hover::before {
    opacity: 1;
  }

  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }

  .stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }

  .stars i {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }

  .review-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    quotes: '"' '"' "'" "'";
  }

  .review-text::before {
    content: none;
  }

  .reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
  }

  .reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bright-navy-blue);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
  }

  .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reviewer-info {
    text-align: left;
  }

  .reviewer-name {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .reviewer-title {
    color: var(--bright-navy-blue);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .nav-btn:hover {
    background: var(--bright-navy-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
  }

  .prev-btn {
    left: -25px;
  }

  .next-btn {
    right: -25px;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: var(--bright-navy-blue);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  }

  .dot:hover {
    background: var(--bright-navy-blue);
    transform: scale(1.1);
  }

  /* Footer contact text spacing */
  .contact-title {
    margin-bottom: 0 !important;
  }

  .contact-text {
    margin-top: -8px !important;
    margin-bottom: 20px !important;
    margin-left: 8px !important;
  }

  /* Responsive Design for Reviews Slider */
  @media (max-width: 768px) {
    .reviews-slider-section {
      padding: 60px 0;
    }

    .reviews-slider-section .section-header {
      margin-bottom: 40px;
    }

    .reviews-slider-section .section-title {
      font-size: 28px;
    }

    .review-card {
      padding: 30px 20px;
    }

    .review-text {
      font-size: 16px;
    }

    .nav-btn {
      width: 40px;
      height: 40px;
      font-size: 14px;
    }

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

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

    .reviewer {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }

    .reviewer-info {
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .reviews-slider-section {
      padding: 40px 0;
    }

    .review-card {
      padding: 25px 15px;
    }

    .review-text {
      font-size: 15px;
    }

    .nav-btn {
      width: 35px;
      height: 35px;
      font-size: 12px;
    }

    .prev-btn {
      left: -15px;
    }

    .next-btn {
      right: -15px;
    }
  }

  
  .header .btn {
    --padding: 4px 20px;
  }
  
  .header .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: var(--white);
    visibility: hidden;
    pointer-events: none;
    transition: 0.15s ease-in;
    z-index: 3;
  }
  
  .navbar.active {
    right: 0;
    visibility: visible;
    pointer-events: all;
    transition: 0.25s ease-out;
  }
  
  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 15px;
  }
  
  .navbar-top .logo img {
    width: 150px;
  }
  
  .nav-close-btn {
    font-size: 20px;
    color: var(--bright-navy-blue);
  }
  
  .nav-close-btn ion-icon {
    --ionicon-stroke-width: 80px;
  }
  
  .navbar-list {
    border-top: 1px solid hsla(0, 0%, 0%, 0.1);
  }
  
  .navbar-list li {
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
  }
  
  .navbar-link {
    padding: 15px 20px;
    color: var(--jet);
    font-weight: var(--fw-500);
    font-size: var(--fs-4);
    transition: var(--transition);
    text-transform: capitalize;
  }
  
  .navbar-link:is(:hover, :focus) {
    color: var(--bright-navy-blue);
  }
  
  .overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: var(--transition);
  }
  
  .overlay.active {
    opacity: 0.7;
    pointer-events: all;
  }
  
  /*-----------------------------------*\
     * #HERO
    \*-----------------------------------*/
  
  body {
    font-family: "Poppins", sans-serif;
    /* background: #161813; */
    overflow-x: hidden;
  }
  
  .hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .hero-section-title {
    font-family: "Roboto Slab", serif;
    font-weight: 300;
    font-size: 80px;
    text-align: center;
    text-transform: capitalize;
  }
  
  .hero-section-sub-heading {
    text-align: center;
    text-transform: capitalize;
    margin: 20px 0;
    font-size: 20px;
  }
  
  .scroll-down-icon {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    animation: down ease 1s infinite;
  }
  
  @keyframes down {
    from {
      bottom: 10%;
    }
  
    to {
      bottom: 8%;
    }
  }
  
  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  
  .background::before,
  .background::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
  }
  
  .background::before {
    top: 0;
    left: 0;
    background: var(--gradient-top);
  }
  
  .background::after {
    bottom: 0;
    background: var(--gradient-bottom);
  }
  
  .grid-slider {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  
  .grid-item {
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 1;
    transition: .5s;
  }
  
  .grid-item.hide {
    opacity: 0;
  }
  
  .explore-section {
    position: relative;
    width: 100%;
    padding: 80px 10vw;
    color: #fff;
  }
  
  .section-title {
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    text-transform: capitalize;
  }
  
  .section-para {
    width: 50%;
    min-width: 300px;
    display: block;
    margin: 30px auto;
    text-align: center;
    line-height: 25px;
    opacity: 0.6;
  }
  
  .tours-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px;
    margin-top: 100px;
  }
  
  .tour-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    box-shadow: 0;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: end;
  }
  
  .tour-card:nth-child(2) {
    grid-row: span 2;
  }
  
  .tour-card:last-child {
    grid-column: span 2;
  }
  
  .tour-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    z-index: -1;
  }
  
  .tour-card:hover .tour-img {
    opacity: 0.8;
    transform: scale(1.1);
  }
  
  .tour-name {
    font-weight: 300;
  }
  
  .tour-action {
    margin-left: 20px;
    font-size: 14px;
    position: relative;
  }
  
  .tour-action::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 2px;
    background: url("img/pin.png");
    width: 15px;
    height: 15px;
    background-size: contain;
  }
  
  .services-section {
    color: #fff;
    padding: 80px 10vw;
  }
  
  .serives-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
  
  .service-card {
    margin-top: 100px;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    border: 1px solid #2d2d2d;
    background: #161813;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .card-icon {
    text-align: center;
    font-size: 60px;
    z-index: 1;
  }
  
  .service-text {
    text-align: center;
    padding: 0 20px;
    z-index: 1;
  }
  
  .circle {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 100% 100%);
    transition: .5s;
  }
  
  .service-card:nth-child(1) .circle {
    background: url(../images/card-5.JPG);
    object-fit: cover !important;
    background-repeat: no-repeat !important;
    background-size: cover;
  }
  
  .service-card:nth-child(2) .circle {
    background: url(../images/card-2.jpg);
    background-size: cover;
  }
  
  .service-card:nth-child(3) .circle {
    background: url(../images/card-3.jpg);
    background-size: cover;
  }
  
  .service-card:nth-child(4) .circle {
    background: url(../images/Card-4.png);
    background-size: cover;
  }
  
  .service-card:hover .circle {
    clip-path: circle(141.4% at 100% 100%);
  }
  
  .travel-grid {
    width: 100%;
    columns: 3;
    column-gap: 20px;
    margin-top: 200px;
  }
  
  .travel-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .bg-circle {
    z-index: -1;
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--sphere-gradient-one);
    right: -250px;
  }
  
  .book-section {
    position: relative;
    display: flex;
    padding: 0 10vw;
    align-items: center;
    width: 100%;
    height: 100vh;
    gap: 30px;
  }
  
  .book-now-img {
    position: absolute;
    width: 50%;
    right: 0;
  }
  
  .book-content {
    width: 50%;
    color: #fff;
  }
  
  .book-now-title {
    font-size: 50px;
    font-weight: 300;
    width: 300px;
  }
  
  .book-now-text {
    width: 300px;
    opacity: 0.5;
    line-height: 25px;
    margin: 30px 0;
  }
  
  .book-now {
    position: relative;
    padding: 10px 20px;
    outline: none;
    border: none;
    background: #000;
    text-transform: capitalize;
    color: #fff;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
  }
  
  .book-now::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -30px;
    width: 20px;
    height: 200%;
    background: #fff;
    opacity: 0.2;
    transform: rotate(5deg);
    transition: .5s;
  }
  
  .book-now:hover::before {
    left: 100%;
  }
  
  .bg-circle-2 {
    z-index: -1;
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--sphere-gradient-two);
    left: -125px;
    bottom: -100px;
  }
  
  .copyright-line {
    width: 100%;
    background: #000;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 0;
  }
  
  @media screen and (max-width: 996px) {
    .link-item {
      margin: 0 10px;
    }
  
    .hero-section-title {
      font-size: 60px;
    }
  
    .tours-container {
      height: 900px;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
    }
  
    .tour-card:last-child {
      grid-column: span 1;
    }
  
    .tour-card:nth-child(3) {
      grid-row: span 2;
    }
  
    .serives-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
      margin-top: 0;
    }
  
    .travel-grid {
      columns: 2;
    }
  
    .book-now-img {
      width: 40%;
    }
  
    .footer-logo {
      width: 70px;
    }
  
    .footer-text {
      font-size: 16px;
    }
  }
  
  /* much smaller device */
  
  @media screen and (max-width: 798px) {
    .navbar {
      height: auto;
    }
  
    .link-item {
      margin-top: 80px;
      text-align: center;
    }
  
    .link-item:nth-child(3) {
      margin: -50px -30px 0 -30px;
    }
  
    .link-item a {
      padding: 10px;
      margin: auto;
      display: block;
    }
  
    .section-title {
      font-size: 50px;
    }
  
    .grid-slider {
      grid-template-rows: repeat(3, 1fr);
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-section-sub-heading {
      font-size: 16px;
    }
  
    .section-para {
      width: 100%;
    }
  
    .tours-container {
      height: 1200px;
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(6, 1fr);
    }
  
    .tour-card:nth-child(2) {
      grid-row: auto;
    }
  
    .tour-card:last-child {
      grid-column: span 1;
    }
  
    .tour-card:nth-child(3) {
      grid-row: span 1;
    }
  
    .serives-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .service-card:nth-child(2) {
      margin-top: 0;
    }
  
    .travel-grid {
      columns: 1;
    }
  
    .book-section {
      height: auto;
      padding: 80px 10vw;
    }
  
    .bg-circle {
      display: none;
    }
  
    .bg-circle-2 {
      z-index: 2;
    }
  
    .book-now-img {
      width: 100%;
      opacity: 0.3 !important;
    }
  
    .book-content {
      width: 100%;
      z-index: 2;
      text-align: center;
    }
  
    .book-now-title,
    .book-now-text {
      width: 100%;
    }
  }
  
  /* .hero {
      background-image: url("../images/hero-banner.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-color: hsla(0, 0%, 0%, 0.7);
      background-blend-mode: overlay;
      display: grid;
      place-items: center;
      min-height: 600px;
      text-align: center;
      padding-top: 125px;
    }
    
    .hero-title { margin-bottom: 20px; }
    
    .hero-text {
      color: var(--white);
      font-size: var(--fs-5);
      margin-bottom: 40px;
    } */
  
  .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  /*-----------------------------------*\
     * #TOUR SEARCH
    \*-----------------------------------*/
  
  .tour-search {
    background: var(--bright-navy-blue);
    padding-block: var(--section-padding);
  }
  
  .tour-search-form .input-label {
    color: var(--white);
    font-size: var(--fs-4);
    margin-left: 20px;
    margin-bottom: 10px;
  }
  
  .tour-search-form .input-field {
    background: var(--white);
    padding: 10px 15px;
    font-size: var(--fs-5);
    border-radius: 50px;
  }
  
  .tour-search-form .input-field::placeholder {
    color: var(--spanish-gray);
  }
  
  .tour-search-form .input-field::-webkit-datetime-edit {
    color: var(--spanish-gray);
    text-transform: uppercase;
  }
  
  .tour-search-form .input-wrapper {
    margin-bottom: 15px;
  }
  
  .tour-search .btn {
    width: 100%;
    --border-width: 1px;
    font-weight: var(--fw-600);
    margin-top: 35px;
  }
  
  /*-----------------------------------*\
     * #POPULAR
    \*-----------------------------------*/
  
  .popular {
    padding-block: var(--section-padding);
  }
  
  .popular-list,
  .popular-list > li:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .popular-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-25);
    height: 430px;
  }
  
  .popular-card .card-img {
    height: 100%;
  }
  
  .popular-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .popular-card .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-25);
    padding: 20px;
  }
  
  .popular-card .card-rating {
    background: var(--bright-navy-blue);
    color: var(--white);
    position: absolute;
    top: 0;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 1px;
    transform: translateY(-50%);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
  }
  
  .popular-card .card-subtitle {
    color: var(--blue-ncs);
    font-size: var(--fs-6);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .popular-card .card-title {
    margin-bottom: 5px;
  }
  
  .popular-card :is(.card-subtitle, .card-title) > a {
    color: inherit;
  }
  
  .popular .btn {
    margin-inline: auto;
  }
  
  /*-----------------------------------*\
     * #PACKAGE
    \*-----------------------------------*/
  
  .package {
    padding-block: var(--section-padding);
  }
  
  .package-list {
    margin-bottom: 40px;
  }
  
  .package-list > li:not(:last-child) {
    margin-bottom: 30px;
  }
  
  .package-card {
    background: var(--cultured);
    overflow: hidden;
    border-radius: 15px;
  }
  
  .package-card .card-banner {
    height: 250px;
  }
  
  .package-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .package-card .card-content {
    padding: 30px 20px;
  }
  
  .package-card .card-title {
    margin-bottom: 15px;
  }
  
  .package-card .card-text {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .card-meta-list {
    background: var(--white);
    max-width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
    border-radius: 50px;
  }
  
  .card-meta-item {
    position: relative;
  }
  
  .card-meta-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -1px;
    bottom: 4px;
    width: 1px;
    background: hsla(0, 0%, 0%, 0.3);
  }
  
  .meta-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-inline: 9px;
    color: var(--black-coral);
    font-size: var(--fs-8);
  }
  
  .meta-box > ion-icon {
    color: var(--bright-navy-blue);
    font-size: 13px;
  }
  
  .package-card .card-price {
    background: var(--united-nations-blue);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
  }
  
  .package-card .card-price .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 15px;
    margin-bottom: 10px;
  }
  
  .package-card .card-price .reviews {
    font-size: var(--fs-5);
  }
  
  .package-card .card-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    font-size: 14px;
  }
  
  .package-card .card-rating ion-icon:last-child {
    color: hsl(0, 0%, 80%);
  }
  
  .package-card .price {
    font-size: var(--fs-2);
    font-family: var(--ff-montserrat);
    font-weight: var(--fw-800);
    margin-bottom: 20px;
  }
  
  .package-card .price span {
    font-size: var(--fs-7);
    font-weight: initial;
  }
  
  .package .btn {
    margin-inline: auto;
  }
  
  /*-----------------------------------*\
     * #GALLERY
    \*-----------------------------------*/
  
  .gallery {
    padding-block: var(--section-padding);
  }
  
  .gallery-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-15);
    overflow: hidden;
  }
  
  .gallery-item:nth-child(3) {
    grid-area: 1 / 2 / 3 / 3;
  }
  
  .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /*-----------------------------------*\
     * #CTA
    \*-----------------------------------*/
  
  .cta {
    background: var(--bright-navy-blue);
    padding-block: var(--section-padding);
  }
  
  .cta :is(.section-subtitle, .section-title, .section-text) {
    color: var(--white);
  }
  
  .cta .section-text {
    font-size: var(--fs-5);
  }
  
  /*-----------------------------------*\
     * #FOOTER
    \*-----------------------------------*/
  
  .footer-top {
    /* background: var(--gunmetal); */
    background-color: black;
    padding-block: var(--section-padding);
    color: var(--gainsboro);
  }
  
  .footer-brand {
    margin-bottom: 30px;
  }
  
  .footer-brand img {
    width: 180px;
  }
  
  .footer-brand .logo {
    margin-bottom: 20px;
  }
  
  .footer-text {
    font-size: var(--fs-5);
    line-height: 1.7;
  }
  
  .footer-contrast {
    margin-bottom: 30px;
  }
  
  .contrast-title {
    position: relative;
    font-family: var(--ff-montserrat);
    font-weight: var(--fw-500);
    margin-bottom: 30px;
  }
  
  .contrast-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--bright-navy-blue);
  }
  
  .contrast-text {
    font-size: var(--fs-5);
    margin-bottom: 15px;
    max-width: 200px;
  }
  
  .contrast-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .contrast-item ion-icon {
    --ionicon-stroke-width: 40px;
  }
  
  .contrast-link,
  address {
    font-style: normal;
    color: var(--gainsboro);
    font-size: var(--fs-5);
  }
  
  .contrast-link:is(:hover, :focus) {
    color: var(--white);
  }
  
  .form-text {
    font-size: var(--fs-5);
    margin-bottom: 20px;
  }
  
  .footer-form .input-field {
    background: var(--white);
    font-size: var(--fs-5);
    padding: 15px 20px;
    border-radius: 100px;
    margin-bottom: 10px;
  }
  
  .footer-form .btn {
    width: 100%;
  }
  
  .footer-bottom {
    --gunmetal: hsl(205, 36%, 17%);
    background: var(--gunmetal);
    padding-block: 20px;
    text-align: center;
  }
  
  .copyright {
    color: var(--gainsboro);
    font-size: var(--fs-5);
    margin-bottom: 10px;
  }
  
  .copyright a {
    color: inherit;
    display: inline-block;
  }
  
  .copyright a:is(:hover, :focus) {
    color: var(--white);
  }
  
  .footer-bottom-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
  }
  
  .footer-bottom-list > li {
    position: relative;
  }
  
  .footer-bottom-list > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -10px;
    bottom: 3px;
    width: 1px;
    background: hsla(0, 0%, 100%, 0.2);
  }
  
  .footer-bottom-link {
    color: var(--gainsboro);
    font-size: var(--fs-7);
    transition: var(--transition);
  }
  
  .footer-bottom-link:is(:hover, :focus) {
    color: var(--white);
  }
  
  /*-----------------------------------*\
     * #GO TO TOP
    \*-----------------------------------*/
  
  .go-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--bright-navy-blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: var(--transition);
  }
  
  .go-top.active {
    opacity: 0.8;
    transform: translateY(0);
    visibility: visible;
  }
  
  .go-top:is(:hover, :focus) {
    opacity: 1;
  }
  
  /*-----------------------------------*\
     * #MEDIA QUERIES
    \*-----------------------------------*/
  
  /**
   * responsive for larger than 580px screen
   */
  
  @media (min-width: 580px) {
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 580px;
      margin-inline: auto;
    }
  
    .btn {
      --fs-5: 16px;
      --padding: 12px 30px;
    }
  
    section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
      text-align: center;
    }
  
    .section-text {
      margin-bottom: 40px;
    }
  
    .card-text {
      --fs-5: 15px;
    }
  
    /**
     * HEADER
     */
  
    .header {
    }
  
    .helpline-box .icon-box {
      padding: 14px;
    }
  
    .header-top .logo img {
      max-width: unset;
    }
  
    .search-btn {
      font-size: 30px;
    }
  
    .nav-open-btn {
      font-size: 40px;
    }
  
    .header .btn {
      --fs-5: 14px;
      --padding: 6px 20px;
    }
  
    /**
     * HERO
     */
  
    .hero {
      min-height: 800px;
      padding-top: 85px;
    }
  
    .hero-text {
      --fs-5: 15px;
    }
  
    .btn-group {
      gap: 20px;
    }
  
    /**
     * TOUR SEARCH
     */
  
    .tour-search-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: flex-end;
      gap: 15px;
    }
  
    .tour-search-form .input-wrapper {
      margin-bottom: 0;
    }
  
    .tour-search-form .input-field {
      padding: 16px 20px;
    }
  
    .tour-search .btn {
      grid-column: span 2;
      margin-top: 20px;
    }
  
    /**
     * POPULAR
     */
  
    .popular-card .card-content {
      right: auto;
    }
  
    /**
     * FOOTER
     */
  
    .footer .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  
    .footer-form {
      grid-column: span 2;
    }
  
    .footer-bottom {
      text-align: left;
    }
  
    .copyright {
      margin-bottom: 0;
    }
  
    .footer-bottom-list {
      justify-content: flex-end;
    }
  }
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
      /**
       * typography
       */
  
      --fs-5: 15px;
    }
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 800px;
    }
  
    .section-text {
      max-width: 60ch;
      margin-inline: auto;
    }
  
    /**
     * HEADER
     */
  
    .helpline-box {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 10px;
    }
  
    .helpline-box .wrapper {
      display: block;
      color: var(--white);
      font-size: var(--fs-6);
    }
  
    .social-list {
      gap: 10px;
    }
  
    /**
     * POPULAR
     */
  
    .popular-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }
  
    .popular-list > li:not(:last-child) {
      margin-bottom: 0;
    }
  
    .popular-card .card-content {
      right: 20px;
    }
  
    /**
     * PACKAGE
     */
  
    .package-list {
      margin-bottom: 50px;
    }
  
    .package-list > li:not(:last-child) {
      margin-bottom: 40px;
    }
  
    .package-card {
      display: grid;
      grid-template-columns: 1.3fr 1.5fr 1fr;
    }
  
    .package-card .card-banner {
      height: 100%;
    }
  
    .package-card .card-content {
      padding: 40px;
    }
  
    .package-card .card-price {
      display: grid;
      place-content: center;
    }
  
    .package-card .card-price .wrapper {
      margin-bottom: 15px;
    }
  
    /**
     * GALLERY
     */
  
    .gallery {
      padding-bottom: calc(var(--section-padding * 2));
    }
  
    .gallery-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  
    .gallery-image {
      border-radius: var(--radius-25);
    }
  
    /**
     * CTA
     */
  
    .cta .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    .cta-content {
      width: calc(100% - 225px);
    }
  
    .cta .section-text {
      margin-inline: 0;
    }
  
    /**
     * FOOTER
     */
  
    .form-wrapper {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 20px;
    }
  
    .footer-form .input-field {
      margin-bottom: 0;
    }
  
    .footer-form .btn {
      width: max-content;
    }
  }
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 1050px;
    }
  
    /**
     * HEADER
     */
  
    .header.active .header-top {
      position: unset;
      background: unset;
    }
  
    .nav-open-btn,
    .navbar-top {
      display: none;
    }
  
    .header-bottom {
      border-bottom: none;
    }
  
    .header.active .header-bottom {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: var(--white);
      color: var(--onyx);
      box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
      transition: var(--transition);
    }
  
    .header-bottom .container {
      padding-block: 0;
    }
  
    .header .navbar {
      all: unset;
    }
  
    .navbar-list {
      border-top: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .navbar-list li {
      border-bottom: none;
    }
  
    .navbar-link {
      color: var(--white);
      --fs-4: 16px;
      font-weight: unset;
      text-transform: uppercase;
      padding: 20px 15px;
    }
  
    .header.active .navbar-link {
      color: var(--onyx);
    }
  
    .header.active .navbar-link:is(:hover, :focus) {
      color: var(--bright-navy-blue);
    }
  
    .header.active .social-link {
      color: var(--onyx);
      border-color: hsla(0, 0%, 0%, 0.15);
    }
  
    .overlay {
      display: none;
    }
  
    /**
     * HERO
     */
  
    .hero .container {
      max-width: 740px;
    }
  
    /**
     * TOUR SEARCH
     */
  
    .tour-search-form {
      grid-template-columns: repeat(5, 1fr);
    }
  
    .tour-search .btn {
      --padding: 15px;
      grid-column: unset;
      margin-top: 0;
    }
  
    /**
     * POPULAR
     */
  
    .popular-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    /**
     * PACKAGE
     */
  
    .meta-box {
      --fs-8: 13px;
    }
  
    .meta-box > ion-icon {
      font-size: 15px;
    }
  
    /**
     * CTA
     */
  
    .cta .section-title {
      max-width: 25ch;
    }
  
    /**
     * FOOTER
     */
  
    .footer-top .container {
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
    }
  
    .footer-form {
      grid-column: unset;
    }
  
    .form-wrapper {
      flex-direction: column;
    }
  
    .footer-form .btn {
      width: 100%;
    }
  }
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
      /**
       * spacing
       */
  
      --section-padding: 100px;
    }
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 1180px;
    }
  }
  
  /* Added comprehensive responsive design for all screen sizes */
  
  /* Enhanced comprehensive responsive design for all devices */
  
  /* Mobile First Responsive Design - Extra Small Devices (320px and up) */
  @media (max-width: 480px) {
    /* Root variables for mobile */
    :root {
      --fs-1: 32px;
      --fs-2: 24px;
      --fs-3: 18px;
      --fs-4: 16px;
      --fs-5: 14px;
      --section-padding: 40px;
    }
  
    /* Header fully responsive for mobile */
    .header {
    }
  
    .header-top .container {
      grid-template-columns: 1fr auto;
      gap: 10px;
      padding: 0 15px;
    }
  
    .header-top .logo {
      margin-inline: 0;
      justify-self: start;
    }
  
    .header-top .logo img {
      max-width: 60px;
      height: auto;
    }
  
    .helpline-box {
      display: none;
    }
  
    .header-btn-group {
      gap: 8px;
    }
  
    .search-btn,
    .nav-open-btn {
      font-size: 20px;
      padding: 8px;
      min-width: 40px;
      min-height: 40px;
    }
  
    .navbar {
      padding: 20px 15px;
    }
  
    .navbar-top .logo img {
      width: 100px;
    }
  
    .navbar-list {
      margin-top: 30px;
    }
  
    .navbar-link {
      font-size: 16px;
      padding: 12px 0;
    }
  
    /* Hero section optimized for mobile */
    .hero {
      min-height: 100vh;
      padding: 80px 15px 40px;
      display: flex;
      align-items: center;
    }
  
    .hero .container {
      text-align: center;
    }
  
    .hero-title {
      font-size: 36px;
      line-height: 1.2;
      margin-bottom: 20px;
    }
  
    .hero-text {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .btn-group {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
  
    .btn {
      min-width: 200px;
      padding: 15px 30px;
      font-size: 16px;
      border-radius: 25px;
    }
  
    /* Container and section spacing for mobile */
    .container {
      max-width: 100%;
      padding: 0 15px;
    }
  
    .section {
      padding: 40px 0;
    }
  
    .section-title {
      font-size: 28px;
      line-height: 1.3;
      margin-bottom: 15px;
    }
  
    .section-text {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }
  
    /* Tour search form mobile optimization */
    .tour-search-form {
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 20px 15px;
    }
  
    .input-wrapper {
      margin-bottom: 0;
    }
  
    .input-field {
      padding: 15px;
      font-size: 16px;
      border-radius: 8px;
    }
  
    .tour-search .btn {
      grid-column: span 1;
      margin-top: 10px;
      width: 100%;
    }
  
    /* Popular cards mobile responsive */
    .popular-list {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .popular-card {
      height: 300px;
      border-radius: 15px;
    }
  
    .popular-card .card-content {
      padding: 20px 15px;
    }
  
    .card-title {
      font-size: 18px;
      margin-bottom: 10px;
    }
  
    .card-text {
      font-size: 14px;
      line-height: 1.5;
    }
  
    /* Package cards mobile responsive */
    .package-list {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .package-card .card-content {
      padding: 25px 20px;
    }
  
    .package-card .card-title {
      font-size: 20px;
    }
  
    .package-card .card-text {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .card-meta-list {
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .card-meta-item {
      font-size: 13px;
    }
  
    /* Gallery mobile responsive */
    .gallery-list {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .gallery-item {
      height: 250px;
    }
  
    /* CTA section mobile responsive */
    .cta {
      padding: 60px 0;
    }
  
    .cta .container {
      text-align: center;
    }
  
    .cta-title {
      font-size: 32px;
      margin-bottom: 20px;
    }
  
    .cta-text {
      font-size: 16px;
      margin-bottom: 30px;
    }
  
    /* Footer mobile responsive */
    .footer {
      padding: 40px 0 20px;
    }
  
    .footer .container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
  
    .footer-brand .logo img {
      width: 120px;
    }
  
    .footer-text {
      font-size: 15px;
      margin: 20px 0;
    }
  
    .footer-list-title {
      font-size: 18px;
      margin-bottom: 15px;
    }
  
    .footer-link {
      font-size: 15px;
      padding: 8px 0;
    }
  
    .footer-form {
      grid-column: span 1;
    }
  
    .footer-form .input-field {
      padding: 15px;
      font-size: 16px;
      margin-bottom: 15px;
    }
  
    .footer-bottom {
      padding-top: 20px;
      text-align: center;
    }
  
    .copyright {
      font-size: 14px;
      margin-bottom: 15px;
    }
  
    .footer-bottom-list {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
  }
  
  /* Small Devices (481px to 767px) - Large phones and small tablets */
  @media (min-width: 481px) and (max-width: 767px) {
    :root {
      --fs-1: 40px;
      --fs-2: 28px;
      --fs-3: 20px;
      --section-padding: 50px;
    }
  
    .header-top .logo img {
      max-width: 70px;
    }
  
    .hero-title {
      font-size: 42px;
    }
  
    .hero-text {
      font-size: 17px;
      max-width: 80%;
    }
  
    .btn-group {
      flex-direction: row;
      justify-content: center;
    }
  
    .popular-list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .package-list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gallery-list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer .container {
      grid-template-columns: repeat(2, 1fr);
      text-align: left;
    }
  
    .footer-form {
      grid-column: span 2;
    }
  }
  
  /* Medium Devices (768px to 991px) - Tablets */
  @media (min-width: 768px) and (max-width: 991px) {
    :root {
      --fs-1: 48px;
      --fs-2: 32px;
      --fs-3: 22px;
      --section-padding: 60px;
    }
  
    .container {
      max-width: 750px;
    }
  
    .hero-title {
      font-size: 52px;
    }
  
    .popular-list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .package-list {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .gallery-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .footer .container {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .footer-form {
      grid-column: span 3;
    }
  }
  
  /* Large Devices (992px to 1199px) - Small desktops */
  @media (min-width: 992px) and (max-width: 1199px) {
    .container {
      max-width: 970px;
    }
  
    .popular-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .package-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .footer .container {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .footer-form {
      grid-column: span 2;
    }
  }
  
  /* Extra Large Devices (1200px and up) - Large desktops */
  @media (min-width: 1200px) {
    .container {
      max-width: 1170px;
    }
  
    .popular-list {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .package-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Touch device optimizations */
  @media (hover: none) and (pointer: coarse) {
    .btn,
    .navbar-link,
    .footer-link {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .search-btn,
    .nav-open-btn,
    .nav-close-btn {
      min-width: 44px;
      min-height: 44px;
    }
  }
  
  /* Landscape orientation for mobile devices */
  @media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
    .hero {
      min-height: 100vh;
      padding: 60px 15px 20px;
    }
  
    .hero-title {
      font-size: 32px;
    }
  
    .hero-text {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .btn-group {
      gap: 10px;
    }
  
    .btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  }
  
  /* Added comprehensive responsive design for all screen sizes */
  
  /* .................... */
  
  /* Add styles for the new content */
  #destination-description {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  #destination-text {
    font-weight: bold;
    color: #333;
  }
  
  #value-breakdown {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  #value-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #value-list li {
    margin-bottom: 10px;
  }
  
  #value-list li:before {
    content: "•";
    margin-right: 10px;
    color: #333;
  }
  
  /* Responsive design */
  @media only screen and (max-width: 768px) {
    main {
      flex-direction: column;
    }
  
    .hero {
      height: 200px;
    }
  
    .hero-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
  
    .company-info {
      padding: 20px;
    }
  
    .output {
      padding: 20px;
    }
  
    .company-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }
  }
  
  /* aboutss/////////////// */
  
  @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
  
  * {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }
  
  :root {
    --color-primary: #6c63ff;
    --color-success: #00bf8e;
    --color-warning: #f7c94b;
    --color-danger: #f75842;
    --color-danger-variant: rgba(247, 88, 66, 0.4);
    --color-white: #fff;
    --color-light: rgba(255, 255, 255, 0.7);
    --color-black: #000;
    --color-bg: #1f2641;
    --color-bg1: #2e3267;
    --color-bg2: #424890;
  
    --container-width-lg: 80%;
    --container-width-md: 90%;
    --container-width-sm: 94%;
  
    --transition: all 400ms ease;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    color: var(--color-white);
    background: var(--color-bg);
  }
  
  .container {
    width: var(--container-width-lg);
    margin: 0 auto;
  }
  
  section {
    padding: 6rem 0;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5 {
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  h4 {
    font-size: 1.3rem;
  }
  
  a {
    color: var(--color-white);
  }
  
  img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  
  .btn {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-black);
    padding: 1rem 2rem;
    border: 1px solid transparent;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .btn:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
  }
  
  .btn-primary {
    background: #1f2641;
    color: var(--color-white);
  }
  
  /* =========================navbar sec start======================= */
  nav {
    background: transparent;
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    z-index: 11;
  }
  
  /* ===================== Change Navbar Style on scroll website============================ */
  .window-scroll {
    background: var(--color-primary);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  }
  
  .nav_container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav button {
    display: none;
  }
  
  .nav_menu {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .nav_menu a {
    font-size: 0.9rem;
    transition: var(--transition);
  }
  
  .nav_menu a:hover {
    color: var(--color-bg2);
  }
  
  /* =========================navbar sec End======================= */
  
  /* =========================Header sec Start======================= */
  
  header {
    position: relative;
    top: 5rem;
    overflow: hidden;
    height: 70vh;
    margin-bottom: 5rem;
  }
  
  .header_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    height: 100%;
  }
  
  .header_left p {
    margin: 1.2rem 0 2.4rem;
  }
  
  /* =========================Header sec Start======================= */
  
  /* <!-- ==============================Categories sec start============================ --> */
  
  .categories {
    background: var(--color-bg1);
    height: 33rem;
  }
  
  .categories h1 {
    line-height: 1;
    margin-bottom: 3rem;
  }
  
  .categories_container {
    display: grid;
    grid-template-columns: 40% 60%;
    /* gap: 4rem; */
  }
  
  .categories_left {
    margin-right: 4rem;
  }
  
  .categories_left p {
    margin: 1rem 0 3rem;
  }
  
  .categories_right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  
  .category {
    background: var(--color-bg2);
    padding: 1.7rem;
    border-radius: 2rem;
    transition: var(--transition);
  }
  
  .category:hover {
    box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .category:nth-child(2) .category_icon {
    background: var(--color-danger);
  }
  
  .category:nth-child(3) .category_icon {
    background: var(--color-success);
  }
  
  .category:nth-child(4) .category_icon {
    background: var(--color-warning);
  }
  
  .category:nth-child(5) .category_icon {
    background: var(--color-success);
  }
  
  .category_icon {
    background: var(--color-primary);
    padding: 0.7rem;
    border-radius: 0.9rem;
  }
  
  .category h5 {
    margin: 2rem 0 1rem;
  }
  
  .category p {
    font-size: 0.85rem;
  }
  
  /* <!-- ==============================Categories sec end============================ --> */
  
  /* ==============================Courses sec start=========================== */
  
  .courses {
    margin-top: 10rem;
  }
  
  .courses_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .course {
    background: var(--color-bg1);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
  }
  
  .course:hover {
    background: transparent;
    background-color: var(--color-primary);
  }
  
  .course_info {
    padding: 2rem;
  }
  
  .course_info p {
    margin: 1.2rem 0 2rem;
    font-size: 0.9rem;
  }
  
  /* =============================Courses sec end=========================== */
  
  /* ==============================Faqs sec start=========================== */
  
  .faqs {
    background: var(--color-bg1);
    box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.6);
  }
  
  .faqs__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .faq {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: fit-content;
    background: var(--color-primary);
    cursor: pointer;
  }
  
  .faq h4 {
    font-size: 1rem;
    line-height: 2.2rem;
  }
  
  .faq_icon {
    align-self: flex-start;
    font-size: 1.2rem;
  }
  
  .faq p {
    margin-top: 0.8rem;
    display: none;
  }
  
  .faq.open p {
    display: block;
  }
  
  /* ==============================Faqs sec end=========================== */
  
  /* ==============================testimonials sec start=========================== */
  
  .testimonials_container {
    overflow-x: hidden;
    position: relative;
    margin-bottom: 5rem;
  }
  
  .testimonials {
    padding-top: 2rem;
  }
  
  .avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 1rem solid var(--color-bg1);
  }
  
  .testimonials_info {
    text-align: center;
  }
  
  .testimonials_body {
    background: var(--color-primary);
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
  }
  
  .testimonials_body::before {
    content: "";
    display: block;
    background: linear-gradient(135deg, transparent, var(--color-primary), var(--color-primary), var(--color-primary));
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 50%;
    top: -1.5rem;
    transform: rotate(45deg);
  }
  
  /* ==============================testimonials sec end=========================== */
  
  /* ==============================Footer sec start=========================== */
  
  footer {
    background: var(--color-bg1);
    padding-top: 5rem;
    font-size: 0.9rem;
  }
  
  .footer_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
  }
  
  .footer_container > div h4 {
    margin-bottom: 1.2rem;
  }
  
  .footer_1 p {
    margin: 0 0 2rem;
  }
  
  footer ul li {
    margin-bottom: 0.7rem;
  }
  
  /* footer ul li a{
      font-size: 0.8rem;
  } */
  footer ul li a:hover {
    text-decoration: underline;
  }
  
  .footer_socials {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  
  .footer_copyright {
    text-align: center;
    margin-top: 3rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--color-bg2);
  }
  
  /* ==============================Footer sec end=========================== */
  
  /* =================================Media Queries For (Tablet)=========================   */
  
  @media screen and (max-width: 1024px) {
    .container {
      width: var(--container-width-md);
    }
  
    h1 {
      font-size: 2.2rem;
    }
  
    h2 {
      font-size: 1.7rem;
    }
  
    h3 {
      font-size: 1.4rem;
    }
  
    h4 {
      font-size: 1.2rem;
    }
  
    /* ==========================Navbar======================== */
    nav button {
      display: inline-block;
      background: transparent;
      font-size: 1.8rem;
      color: var(--color-white);
      cursor: pointer;
    }
  
    nav button#close-menu-btn {
      display: none;
    }
  
    .nav_menu {
      position: fixed;
      top: 5rem;
      right: 5%;
      height: fit-content;
      width: 18rem;
      flex-direction: column;
      gap: 0;
      display: none;
    }
  
    .nav_menu li {
      width: 100%;
      height: 5.8rem;
      animation: animateNavItems 400ms linear forwards;
      transform-origin: top right;
      opacity: 0;
    }
  
    .nav_menu li:nth-child(2) {
      animation-delay: 200ms;
    }
  
    .nav_menu li:nth-child(3) {
      animation-delay: 400ms;
    }
  
    .nav_menu li:nth-child(4) {
      animation-delay: 600ms;
    }
  
    @keyframes animateNavItems {
      0% {
        transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
      }
  
      100% {
        transform: rotateZ(0) rotateX(0) scale(1);
        opacity: 1;
      }
    }
  
    .nav_menu li a {
      background: var(--color-primary);
      box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
    }
  
    .nav_menu li a:hover {
      background: var(--color-bg2);
      color: var(--color-white);
    }
  
    /* ==========================Header======================== */
  
    header {
      height: 52vh;
      margin-bottom: 4rem;
    }
  
    .header_container {
      gap: 0;
      padding-bottom: 3rem;
    }
  
    /* ==========================categories======================== */
  
    .categories {
      height: auto;
    }
  
    .categories_container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .categories_left {
      margin-right: 0;
    }
  
    /* ==========================courses======================== */
  
    .courses {
      margin-top: 0;
    }
  
    .courses_container {
      grid-template-columns: 1fr 1fr;
    }
  
    /* ==========================faqs======================== */
  
    .faqs__container {
      grid-template-columns: 1fr;
    }
  
    .faq {
      padding: 1.5rem;
    }
  
    /* ==========================footer======================== */
  
    .footer_container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* =================================Media Queries For (Mobile/Phones)=========================   */
  
  @media screen and (max-width: 600px) {
    .container {
      width: var(--container-width-sm);
    }
  
    /* ==========================Navbar sec======================== */
    .nav_menu {
      right: 3%;
    }
  
    /* ==========================Header sec======================== */
    header {
      height: 100vh;
    }
  
    .header_container {
      grid-template-columns: 1fr;
      text-align: center;
      margin-top: 0;
    }
  
    .header_left p {
      margin-bottom: 1.3rem;
    }
  
    /* ==========================Categories sec======================== */
  
    .categories_right {
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem;
    }
  
    .category {
      padding: 1rem;
      border-radius: 1rem;
    }
  
    .category_icon {
      margin-top: 4px;
      display: inline-block;
    }
  
    /* ==========================Courses sec======================== */
  
    .courses_container {
      grid-template-columns: 1fr;
    }
  
    /* ==========================testimonials sec======================== */
  
    .testimonials_body {
      padding: 1.2rem;
    }
  
    /* ==========================Footer sec======================== */
  
    .footer_container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
  
    .footer_1 p {
      margin: 1rem auto;
    }
  
    .footer_socials {
      justify-content: center;
    }
  }
  