*{
  max-width: 100%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
}

body {
    margin: 0;
    padding: 0;
   font-family: "Nunito Sans", sans-serif;
   overflow-x: hidden; 
}
/*.row.PaddingTop10.ng-scope .col-xs-12 md-checkbox.ng-pristine.ng-untouched.ng-valid.ng-not-empty {
    display: inline-block !important;
}*/

.footer-bottom p {
    margin: 0;
}


         .ultimate-travel-hero {
            background: linear-gradient(135deg, #174285 0%, #0f2a52 100%);
            min-height: 65vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 50px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .flying-planes-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .plane-element {
            position: absolute;
            font-size: 40px;
            opacity: 0.15;
            animation: fly-across 15s infinite linear;
        }

        .plane-element:nth-child(1) {
            top: 15%;
            animation-delay: 0s;
        }

        .plane-element:nth-child(2) {
            top: 45%;
            animation-delay: 5s;
        }

        .plane-element:nth-child(3) {
            top: 75%;
            animation-delay: 10s;
        }

        @keyframes fly-across {
            0% {
                left: -100px;
                transform: rotate(-15deg);
            }
            100% {
                left: 110%;
                transform: rotate(-15deg);
            }
        }

        /* Floating Circles */
        .floating-orbs {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .orb-item {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
            animation: float-up 20s infinite ease-in-out;
        }

        .orb-item:nth-child(1) {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb-item:nth-child(2) {
            width: 300px;
            height: 300px;
            bottom: -150px;
            right: -150px;
            animation-delay: 7s;
        }

        .orb-item:nth-child(3) {
            width: 250px;
            height: 250px;
            top: 30%;
            right: 5%;
            animation-delay: 14s;
        }

        @keyframes float-up {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.2;
            }
            50% {
                transform: translateY(-50px) scale(1.1);
                opacity: 0.3;
            }
        }

        /* Main Content Card */
        .travel-master-card {
            background: linear-gradient(135deg, rgba(247, 248, 250, 0.99) 0%, rgba(241, 243, 247, 0.98) 100%);
            backdrop-filter: blur(8px);
            border-radius: 18px;
            padding: 32px 36px;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 8px 24px rgba(23, 66, 133, 0.06);
            position: relative;
            z-index: 2;
            animation: zoom-in 0.8s ease-out;
            border: 1px solid rgba(253, 177, 6, 0.15);
            margin-bottom: 12px;
        }

        @keyframes zoom-in {
            0% {
                opacity: 0;
                transform: scale(0.95);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Top Badge */
        .elite-badge {
          background: linear-gradient(135deg, #fdb106 0%, #f89e00 100%);
          color: white;
          padding: 7px 15px;
          border-radius: 50px;
          display: inline-block;
          font-weight: 700;
          font-size: 10px;
          letter-spacing: 0.9px;
          text-transform: uppercase;
          box-shadow: 0 3px 10px rgba(253, 177, 6, 0.25);
          animation: pulse-badge 3s infinite;
          margin-bottom: 14px;
      }

        @keyframes pulse-badge {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(23, 66, 133, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 25px rgba(23, 66, 133, 0.5);
            }
        }

        .travel-hero-title {
            font-size: 40px;
            font-weight: 800;
            color: #174285;
            margin-bottom: 12px;
            line-height: 1.2;
            text-align: center;
            animation: slide-down 0.8s ease-out;
            letter-spacing: -0.5px;
        }

    .travel-hero-title-ash {
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

        @keyframes slide-down {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .travel-hero-subtitle {
            font-size: 15px;
            color: #5a6c7d;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 500;
            line-height: 1.6;
        }

        /* Animated Icons Row */
        .travel-icons-showcase {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .showcase-icon-box {
            background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            box-shadow: 0 8px 25px rgba(23, 66, 133, 0.1);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: pop-in 0.6s ease-out backwards;
            border: 2px solid rgba(253, 177, 6, 0.1);
        }

        .showcase-icon-box:nth-child(1) { animation-delay: 0.1s; }
        .showcase-icon-box:nth-child(2) { animation-delay: 0.2s; }
        .showcase-icon-box:nth-child(3) { animation-delay: 0.3s; }
        .showcase-icon-box:nth-child(4) { animation-delay: 0.4s; }
        .showcase-icon-box:nth-child(5) { animation-delay: 0.5s; }

        @keyframes pop-in {
            0% {
                opacity: 0;
                transform: scale(0) rotate(-180deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .showcase-icon-box:hover {
            transform: translateY(-10px) rotate(5deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(23, 66, 133, 0.3);
            border-color: #174285;
        }

        /* Benefits Grid */
        .benefits-power-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .benefit-power-card {
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 35px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .benefit-power-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(23, 66, 133, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .benefit-power-card:hover::before {
            left: 100%;
        }

        .benefit-power-card:hover {
            transform: translateY(-8px) scale(1.03);
            border-color: #174285;
            box-shadow: 0 15px 40px rgba(23, 66, 133, 0.25);
        }

        .benefit-icon-large {
            font-size: 30px;
            margin-bottom: 10px;
            display: inline-block;
            animation: rotate-icon 3s infinite ease-in-out;
        }

        @keyframes rotate-icon {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        .benefit-title-text {
            font-size: 18px;
            font-weight: 700;
            color: #174285;
            margin-bottom: 6px;
        }

        .benefit-desc-text {
            font-size: 14px;
            color: #718096;
            line-height: 1.5;
        }

        /* CTA Button Section */
        .cta-master-wrapper {
            text-align: center;
            padding: 8px 0;
        }

        .cta-mega-button {
            background: linear-gradient(135deg, #fdb106 0%, #f89e00 100%);
            color: white;
            border: none;
            padding: 13px 28px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 6px 16px rgba(253, 177, 6, 0.3);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
            font-weight: 700;
        }

        .cta-mega-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-mega-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-mega-button:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 10px 25px rgba(253, 177, 6, 0.45);
        }

        .cta-mega-button:active {
            transform: translateY(-1px) scale(1.02);
        }

        .button-icon-phone {
            font-size: 18px;
            animation: shake-phone 2s infinite;
            z-index: 1;
        }

        @keyframes shake-phone {
            0%, 100% { transform: rotate(0deg); }
            10%, 30% { transform: rotate(-20deg); }
            20%, 40% { transform: rotate(20deg); }
            50% { transform: rotate(0deg); }
        }

        .button-text-span {
            z-index: 1;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 38px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            color: #2d3748;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            color: #fdb106;
            transform: translateY(-1px);
        }

        .trust-icon {
            font-size: 20px;
            display: inline-block;
        }

.slider_body_div {
    height: 480px;
    position: relative;
    margin-top: -15px;
}

.slider_body_div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 10;
    pointer-events: none;
}


.header-bottom {
    padding: 8px 0px;
}

.nav-wrapper1 nav#main-nav1 a {
    font-size: 16px !important;
    vertical-align: text-bottom;
    padding: 2px 0 0 0;
    color: #fff;
}

.conter-sw {
    box-sizing: border-box;
    padding: 0px 60px;
/*    margin-bottom: -120px;*/
    z-index: 99999;
    position: relative;
}

.top-bar {
    background-color: #ffffff;
}

img.marquee-img-2 {
    margin-right: 14px;
}

.flight-bg:hover img {
    transform: scale(1.2);
    transition: all 0.9s;
}

img.plane-img {
    transition: all 0.9s;
}

.top-bar-text-but-f {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
}

.logo img {
    width: 150px;
    height: auto;
}

h2.top-bar-heading {
    color: #0f6cb5;
    font-size: 16px;
    font-weight: 600;
}

a.top-bar-button {
    background-color: #0f6cb5;
    margin-left: 12px;
    padding: 2px 18px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.4s;
}

.nav-links {
    display: flex;
    align-items: center;
}

.header-filter-div {
    margin-bottom: 45px;
    margin-top: 165px;
}

.col-xs-12.PaddingRight0 {
    text-align: center;
}


.nav-packages {
  position: relative;
}

.submenu-packages {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fdb106;
    padding: 4px 10px;
    border-radius: 0px 0px 6px 6px;
    min-width: 136px;
    z-index: 99999999;
}

.submenu-item {
  display: block;
  color: white;
  padding: 8px;
  text-decoration: none;
}

.submenu.submenu-packages a:hover {
    color: #ffffff !important;
}

a:hover, a:focus {
    color: #fdb106 !important;
}

.footer-column p a {
    color: #ffffff !important;
}

.nav-packages:hover .submenu-packages {
  display: block;
}

.conter-sw-footer-slider-min-div {
    padding: 0px 60px;
}

a.top-bar-button:hover {
    border-radius: 20px;
    transition: 0.4s;
}

.nav-wrapper1 {
    color: #fff;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 12px;
}

    .menu-toggle1 {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      transition: transform 0.3s ease;
      z-index: 99999;
  }
    .menu-toggle1 span {
      height: 3px;
      width: 25px;
      background: #ffffff;
      border-radius: 2px;
      transition: all 0.3s ease;
  }

    .main-nav1 {
        display: flex;
        gap: 25px;
        align-items: center;
        animation: fadeInDown 0.5s ease;
        margin-right: 20px;
        z-index: 99999;
    }

    .nav-item1 {
      color: #ffffff;
      text-decoration: none !important;
      font-weight: 600;
      font-size: 19px;
      position: relative;
      transition: color 0.3s ease;
  }

  .slide-text p {
      font-size: 18px;
  }

  .slide-btns a {
      display: inline-block;
  }

  .slide-title h2 {
        font-size: 50px;
    }

    .nav-item1:hover {
      color: #fdb106;
    }

    .nav-item1:active {
      color: #fdb106;
    }

    .nav-item1:hover::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fdb106;
        bottom: -6px;
        left: 0;
        animation: slideIn 0.3s forwards;
    }

    .nav-item1:active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fdb106;
    bottom: -6px;
    left: 0;
    animation: slideIn 0.3s forwards;
}

    @keyframes slideIn {
      from { width: 0; }
      to { width: 100%; }
    }

    .nav-item1 i {
      margin-right: 6px;
      transition: transform 0.3s ease;
    }

    .nav-item1:hover i {
      transform: scale(1.1);
    }

    .menu-item1 {
      position: relative;
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: -298px;
      background: white;
      color: black;
      padding: 30px 60px;
      display: none;
      width: 100vw;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      z-index: 1000;
      animation: fadeInUp 0.4s ease forwards;
      opacity: 0;
      border-radius: 50px;
      max-width: 90vw;
  }

    .menu-item1:hover .mega-menu {
      display: block;
      opacity: 1;
    }

    @keyframes fadeInUp {
      from { transform: translateY(10px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

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

    .mega-box {
      flex: 1 1 250px;
      margin: 10px;
      animation: fadeIn 0.4s ease forwards;
    }

    .mega-box img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mega-box img:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    }

    .mega-box h3 {
      margin-bottom: 10px;
      font-size: 18px;
      color: #fdb106;
  }

  .mega-box h3 {
      font-size: 24px;
  }

    .mega-box a {
      display: block;
      margin-bottom: 6px;
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
      font-size: 18px;
      font-weight: 500;
      margin-top: 10px;
  }

    .mega-box a:hover {
      color: #fdb106;
      transform: translateX(5px);
    }

    div#mobile-nav1 img {
        width: 60%;
    }

  .mobile-nav1 {
      position: fixed;
      top: 0;
      left: -100%;
      background-color: #ffffff;
      height: 100vh;
      width: 300px;
      display: flex;
      flex-direction: column;
      padding: 30px 20px;
      transition: left 0.4s ease;
      z-index: 999999;
      animation: slideRight 0.5s ease;
      box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  }

    @keyframes slideRight {
      from { right: -100%; }
      to { right: 0; }
    }

    .mobile-nav1.active {
      left: 0;
    }

    .feature:hover img {
        transform: scale3d(1.5, 1.5, 1.5);
        transition: 0.6s;
    }

    .feature img {
        transition: 0.6s;
    }

    .mobile-nav1 .close-btn1 {
      align-self: flex-end;
      font-size: 26px;
      color: #0a3b82;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .mobile-nav1 .close-btn1:hover {
      transform: rotate(90deg);
    }

    .mobile-nav1 a {
        color: #0a3b82;
        text-decoration: none;
        font-size: 18px;
        margin: 6px 0;
        transition: color 0.3s ease;
    }

    .mobile-nav1 a:hover {
      color: #fdb106;
    }

    .flight-header {
        background-color: #fff;
        color: white;
        font-family: Arial, sans-serif;
        /*position: fixed;
        z-index: 99;*/
    }

.header-top {
    display: flex;
    padding: 14px 60px;
    justify-content: space-between;
}

div#DEACombinedSearchPanel {
    background-color: #0e0e0f70 !important;
    padding: 8px 10px 30px 10px;
}

.BorderGrey {
    border: none !important;
}

.container {
 margin: 0 !important;
 padding: 0 !important;
 margin-left: 92px !important;
}

.flight-fomr-home {
    margin: 10px 0px;
    display: flex;
    justify-content: center;
}

ul.nav.nav-pills.searchPanelType {
    border-radius: 40px !important;
}

.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
  border-radius: 40px !important;
}

.divDEACombinedSearchPanel .div_greybox {
    color: #174285 !important;
    font-size: 16px !important;
}

.form-control {
    height: 38px  !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    border: none !important;
}

.btn-danger {
    color: #fff;
    background-color: #fdb106;
    border-color: #fdb106;
    border-radius: 30px;
}

.divDEACombinedSearchPanel .div_greybox .md-datepicker-input {
    color: #000000 !important;
}

.logo {
  display: flex;
  align-items: center;
}

.flight-fomr-home > .container.ng-scope {
    width: 96% !important;
}

span.phone {
    font-size: 19px;
    font-weight: 600;
    color: #dfa400;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.nav-links a, .nav-links span {
    margin-left: 6px;
    color: #174285;
    text-decoration: none;
}

 .ash-button-as {
    font-size: 16px;
    background-color: #fdb106;
    color: white !important;
    border-color: #fdb106;
    border-radius: 50px;
    font-weight: 400;
    border: none;
    align-items: center;
    display: inline-block !important;
    padding: 6px 16px;
}

a {
  text-decoration: none !important;
}

.header-bottom {
    padding: 32px 0 6px 0px;
    background-color: #174285;
    color: #333;
    margin-top: -6px;
    box-shadow: rgb(0 0 0 / 4%) 0px 4px 12px;
    border-radius: 26px;
}

.main-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
}

.nav-item.active {
    color: #fdb106;
    border-bottom: 2px solid #fdb106;
    padding-bottom: 6px;
}

.nav-item:hover {
    color: #fdb106;
    transition: 0.6s;
}

/*.nav-item:hover i {
    transform: rotate(360deg);
}
*/
.nav-item i {
    transition: transform 0.6s ease;
    margin-right: 6px;
}

.search-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 26px;
    justify-content: center;
}


.search-bar select, .search-bar input, .search-bar button {
  padding: 10px;
  border: 1px solid #ccc;
  width: 140px;
  border-radius: 40px;
  background-color: #f5f5f5;
}

.search-bar button {
    background-color: #fdb106;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
}

.search-bar button:hover {
  background-color: #0056b3;
}

.multi-city {
    color: #fdb106;
    text-decoration: none;
}

/* Icon hover rotation */
.nav-item i {
  transition: transform 0.4s ease;
}

/*.nav-item:hover i {
  transform: rotate(360deg);
}*/

/* Hamburger icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-i
  ndex: 1001;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #174285;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
}

div#close-btn {
    display: none;
}

.trending-deals {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.header h2 {
  font-size: 28px;
}
.deal-count {
  background: #fdb106;
  color: #fff;
  border-radius: 50%;
  padding: 5px 12px;
  font-size: 16px;
  margin-left: 10px;
}
.see-more {
  background: #174285;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.swiper {
  padding: 20px 0;
}
.deal-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  width: 300px;
}
.card-image {
  position: relative;
}
.card-image img {
  width: 100%;
  display: block;
}
.tag-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tag {
  font-size: 12px;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
}
.orange { background: #fdb106; }
.blue { background: #174285; }
.image-overlay {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.card-content {
  padding: 15px;
}
.card-content h3 {
  font-size: 16px;
  font-weight: 600;
}
.card-content .location {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}
.card-content .info {
  font-size: 13px;
  margin-bottom: 10px;
}
.purple-text {
  color: #6b21a8;
}
.card-content .price {
  font-size: 16px;
  font-weight: bold;
}
.note {
  font-size: 12px;
  color: #777;
}

.explore-btn {
  background: #4b0082;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  margin-top: 10px;
  cursor: pointer;
}

.explore-btn:hover {
  background: #380061;
}

.qt-flex {
    display: flex;
    justify-content: space-around;
}

/* Swiper Arrows */
.swiper-button-next, .swiper-button-prev {
  color: #174285;
}

.container {
    margin-left: 80px;
}

a.theme-btn-s2 {
    background-color: #174285;
}

    /* HERO SLIDER */
    .hero-slider .swiper-container {
      width: 100%;
      height: 80vh;
    }

    .slide-bg-image {
      background-size: cover;
      background-position: center;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .slide-title h2,
    .slide-text p {
      color: #fff;
      margin: 0;
      padding: 0.2em 0;
    }

    .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
      background-size: 22px;
    }

    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
        background-size: 22px;
    }

    .slide-btns {
        margin-top: 20px;
    }

    .theme-btn-s2,
    .theme-btn-s3 {
      background: #fdb106;
      color: #fff;
      padding: 10px 20px;
      margin-right: 10px;
      border-radius: 5px;
      text-decoration: none;
    }

    /* TRENDING DEALS SECTION */
    .qs {
      padding: 2rem 1rem;
    }

    .qh {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .qh a {
      font-size: 1rem;
      color: #fdb106;
      text-decoration: none;
    }

    .trending-swiper {
      padding-bottom: 2rem;
    }

    .trending-swiper .swiper-slide {
      width: 300px;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      margin-right: 20px;
    }

    .trending-swiper img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .qt {
      background: rgb(249 85 57);
      color: #fff;
      padding: 5px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 2;
  }

    .deal-right img {
      height: 600px;
  }

    .qt.sub {
      top: 35px;
      background: rgba(25, 66, 132, 0.9);
    }

    .qb {
      padding: 1rem;
    }

    .ql {
      font-size: 0.85rem;
      color: #888;
    }

    .qb h3 {
      margin: 0.5rem 0;
      font-size: 1.1rem;
    }

    .qb p {
      font-size: 0.85rem;
      margin: 0.5rem 0;
      color: #555;
    }

    .price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #174285;
    }

    .qbtn {
        display: inline-block;
        margin-top: 1rem;
        background: #174285;
        color: #fff;
        padding: 8px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .trending-swiper .swiper-slide {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-right: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.trending-swiper .swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trending-swiper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trending-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.qt, .qt.sub {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #fdb106;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  transition: top 0.4s ease;
  opacity: 0;
}

.qt.sub {
  background: #174285;
  top: -20px;
}

.trending-swiper .swiper-slide:hover .qt {
  top: 10px;
  opacity: 1;
}

.trending-swiper .swiper-slide:hover .qt.sub {
  top: 40px;
  opacity: 1;
}

.qbtn {
    margin-top: 1rem;
    background: #fdb106;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.qbtn:hover {
  background: #174285;
}

    .flight-section {
      padding: 1rem 1rem;
      max-width: 1200px;
      margin: auto;
    }

    .travel-text h2 {
        margin-bottom: 30px;
    }

    .flight-section h2 {
      text-align: center;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .city-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 2rem;
    }

    .city-tabs button {
      background: #f4f4f4;
      border: 1px solid #ccc;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s;
      font-weight: 500;
    }

    .city-tabs button:hover,
    .city-tabs button.active {
      background: #174285;
      color: #fff;
      border-color: #174285;
    }

    .flight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .flight-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .flight-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .flight-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      position: relative;
    }

    .flight-info {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .flight-info h3 {
        margin: 0;
        font-size: 18px;
        color: #174285;
        line-height: 1.4;
        font-weight: 600;
    }

    .flight-info span {
        font-size: 12px;
        color: #888;
        margin-top: 4px;
    }

    .flight-card:hover .price-tag {
        background: linear-gradient(135deg, #fdb106, #f89e00);
        transform: scale(1.05);
    }

    .price-tag {
        position: absolute;
        top: 12px;
        right: 12px;
        background: linear-gradient(135deg, #174285, #0f2a52);
        color: #fff;
        font-weight: 700;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(23, 66, 133, 0.2);
    }

    .price-tag strong {
      font-size: 16px;
      display: block;
    }

    .price-tag small {
      font-size: 11px;
      font-weight: 400;
      opacity: 0.9;
    }

    @media (max-width: 600px) {
      .flight-card img {
        height: 160px;
      }

      .flight-info {
        padding: 1rem;
      }

      .flight-info h3 {
        font-size: 16px;
      }

      .price-tag {
        font-size: 12px;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
      }

      .price-tag strong {
        font-size: 14px;
      }
    }

    .flight-card.hidden {
      display: none;
    }

    .deal-countdown-section {
      max-width: 1200px;
      margin: 70px auto;
      padding: 30px;
      border-radius: 40px;
      background: #fbe5b5;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
  }

    .deal-left {
      flex: 1 1 300px;
      padding: 20px;
    }

    .deal-left h5 {
      color: #fdb106;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .deal-left h2 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .deal-left p {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .countdown {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
    }

    .countdown div {
      text-align: center;
      font-size: 20px;
      font-weight: 600;
      color: #4a3aff;
    }

    .countdown span {
        display: block;
        font-size: 18px;
        color: #000000;
        font-weight: 600;
        text-align: left;
    }

    .destination-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .destination-item {
      background: #fff;
      border-radius: 12px;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
    }

    .destination-item:hover {
      transform: translateX(5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .destination-item .price-container {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .destination-item:hover .price-container {
      opacity: 1;
    }

    .price {
      color: #fdb106;
      font-size: 14px;
    }

    .old-price {
      text-decoration: line-through;
      color: #888;
      font-size: 12px;
      margin-left: 5px;
    }

    .deal-right {
      flex: 1 1 300px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .deal-right img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      transition: transform 0.4s ease;
    }

    .deal-right img:hover {
      transform: rotate(-2deg) scale(1.05);
    }

    /* Hero Section with Dynamic Effects */
    .travel-hero-section {
        background: linear-gradient(to right, #003087, #005b9e);
        color: white;
        text-align: center;
        padding: 80px 20px;
        position: relative;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        animation: fadeIn 1.5s ease-in-out;
    }

    .travel-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
        opacity: 0.2;
        z-index: 0;
        transform: scale(1);
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .travel-hero-section:hover::before {
        transform: scale(1.05);
        opacity: 0.25;
    }

    .travel-hero-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
        text-transform: uppercase;
        letter-spacing: 1px;
        animation: slideUp 1s ease-out;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .travel-hero-text {
        font-size: 1.3em;
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        line-height: 1.8;
        animation: slideUp 1.2s ease-out 0.2s;
        animation-fill-mode: backwards;
    }

    /* Features Section with Pop-Up Effects */
    .travel-features {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 70px 20px;
        background-color: #fff;
    }

    .travel-feature-card {
        background: #f5f6f5;
        margin: 15px;
        padding: 25px;
        width: 280px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        text-align: center;
        position: relative;
        transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
        overflow: hidden;
    }

    .travel-feature-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        background: #ffffff;
    }

    .travel-feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgb(253 177 6 / 27%), transparent);
        transition: left 0.5s ease;
    }

    .travel-feature-card:hover::after {
        left: 100%;
    }

    .travel-feature-card i {
        font-size: 2.5em;
        color: #dfa400;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .travel-feature-card:hover i {
        transform: rotate(360deg);
    }

    .travel-feature-title {
        font-size: 16px;
        color: #003087;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .travel-feature-desc {
        font-size: 0.85em;
        color: #333;
        line-height: 1.4;
    }

    /* Contact Section with Glow Button */
    .travel-contact {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(to right, #b78005, #fdb106);
        color: white;
        position: relative;
    }

    .travel-contact h2 {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        text-transform: uppercase;
        animation: fadeIn 1s ease-in-out;
    }

    .travel-contact p {
        font-size: 1.2em;
        margin-bottom: 25px;
    }

    .travel-contact-btn {
        background: #005299;
        color: white;
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgb(19 43 82 / 42%);
    }

    .travel-contact-btn:hover {
        background: #132b52;
        transform: translateY(-3px);
        box-shadow: 0 0 10px rgb(23 66 133);
        color: #ffffff !important;
    }

    .travel-contact-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
    }

    .travel-contact-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .travel-contact-btn i {
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .travel-contact-btn:hover i {
        transform: rotate(360deg);
    }

    /* Keyframe Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideUp {
        from { transform: translateY(50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    } 

    .footer-logo img {
        width: 170px;
    }

    .footer-top {
        background: #125da2;
        color: white;
        text-align: center;
        padding: 20px;
/*        margin-top: 100px;*/
    }

    .footer-top h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .footer-subscribe-form {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-subscribe-input {
        padding: 8px 12px;
        border: none;
        border-radius: 20px 0 0 20px;
        width: 200px;
        font-size: 0.9em;
    }

    .footer-subscribe-btn {
        background: #fdb106;
        color: white;
        padding: 8px 15px;
        border: none;
        border-radius: 0 20px 20px 0;
        font-size: 0.9em;
        cursor: pointer;
    }

    .footer-top small {
        font-size: 0.9em;
        margin-top: 13px;
        display: block;
    }

    .footer-middle {
        background: #226eb5;
        padding: 30px 20px;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        color: white;
        font-size: 0.9em;
    }

    .footer-column {
        margin: 10px;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 5px;
    }

    .footer-column ul li a {
        color: white;
        text-decoration: none;
    }

    .footer-column ul li a:hover {
        color: #fdb106;
    }

    .footer-column p {
        line-height: 1.5;
    }

    .footer-bottom {
        background: #072d50;
        text-align: center;
        padding: 10px 20px;
        color: white;
        font-size: 0.8em;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-social a {
        color: white;
        margin: 0 5px;
        font-size: 1.7em;
    }

    .footer-social a:hover {
        color: #fdb106;
    }

    .footer-payment img {
        height: 20px;
        margin: 0 5px;
    }

    .flight-bg {
        padding: 20px 20px;
        text-align: center;
        position: relative;
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
    }

    .flight-bg::before {
        content: "";
        background-image: url('../img/world-map.png');
        background-size: contain;
        background-position: center;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        background-color: #bbbbbb;
        z-index: -1;
        background-repeat: no-repeat;
    }

    .plane-img {
        max-width: 44%;
        margin-bottom: 6px;
    }

    .title {
        font-size: 30px;
        font-weight: 800;
        text-transform: uppercase;
        z-index: 9;
        position: relative;
        margin: 0;
    }

   .subtitle {
      font-size: 15px;
      color: #818080;
      margin-top: 8px;
      font-weight: 400;
  }

    .booking-panel {
        margin: 30px auto;
        max-width: 1200px;
        background: white;
        border-radius: 16px;
        padding: 24px 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }

    .booking-panel select,
    .booking-panel input {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 10px;
      min-width: 140px;
      flex: 1;
    }
 
    .booking-panel button {
        padding: 14px 50px;
        background: #174285;
        color: #fff;
        border: none;
        border-radius: 48px;
        cursor: pointer;
        font-weight: bold;
        box-shadow: rgb(23 66 133 / 35%) 0px 4px 12px;
        transition: all 0.9s;
    }

    .booking-panel button:hover {
        background-color: #081e40;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        transform: scale(1.1);
    }

    .options {
      text-align: center;
      font-size: 14px;
      margin-top: 10px;
      color: #555;
    }

    .why-choose {
        text-align: center;
        padding: 0px 20px;
        margin-top: 60px !important;
    }

    .why-choose h2 {
        font-size: 30px;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .why-choose p {
      font-size: 14px;
      color: #777;
      margin-bottom: 30px;
    }

    .features {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }

    .feature {
      text-align: center;
      max-width: 200px;
    }

    .feature img {
        width: 60px;
        margin-bottom: 10px;
    }

    .feature h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .feature p {
      font-size: 13px;
      color: #666;
    }

    .travel-section {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
    }

      .travel-text {
        text-align: center;
      }

      .travel-text h2 {
            display: inline-block;
            margin-top: 50px;
            margin-bottom: 0px;
            font-size: 30px;
            font-weight: 800;
        }

        .travel-card {
            position: relative;
            width: 330px;
            height: 330px   ;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .travel-card:hover {
            transform: scale(1.05);
        }

        .travel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.flight-route-section {
    text-align: center;
}

        .travel-basic-info .travel-location {
            font-size: 14px;
            opacity: 1;
        }

        .travel-basic-info .travel-title {
            font-size: 20px;
            font-weight: bold;
            margin-top: 5px;
        }

        .travel-details {
          position: absolute;
          bottom: -10%;
          left: 0;
          width: 100%;
          padding: 20px;
          background: linear-gradient(to top, rgb(0 0 0 / 70%), rgba(0, 0, 0, 0));
          color: #fff;
          transition: bottom 0.8s ease;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          z-index: 9999;
      }

        .travel-card:hover .travel-details {
            bottom: 0;
        }

        .travel-details .heading {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .travel-details .description {
            font-size: 14px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .travel-details .rating {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .travel-details .rating span {
            color: #FFD700;
            margin-right: 5px;
        }

        .travel-details .price-days {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .travel-details .tags-travel {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }

        .travel-details .tag-travel {
            border: 1px solid #fff;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
        }

        .tag-travel:hover {
          background-color: #fff;
          color: #000;
          transition: all 0.6s;
      }

        .travel-basic-info {
            margin-bottom: 15px;
            border-bottom: 1px solid #fff;
            padding-bottom: 10px;
        }

        .travel-details .book-btn {
            background: #fff;
            color: #000;
            padding: 12px;
            text-align: center;
            border-radius: 30px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .travel-details .book-btn:hover {
            background: #ddd;
        }



/*------------------------------------flight booking--------------------------------------*/

/*.flight-fomr-home .row.PaddingTop10 .col-xs-12.col-sm-6 .col-xs-12.col-sm-4:nth-child(1){

   display: none !important;
}

.flight-fomr-home .row.PaddingTop10 .col-xs-12.col-sm-6 .col-xs-12.col-sm-4:nth-child(2){

   display: none !important;
}

.flight-fomr-home .row.PaddingTop10 .col-xs-12.col-sm-6 .col-xs-12.col-sm-4:nth-child(3){

   display: none !important;
}

.md-label{

  display: none !important;

}
md-checkbox:last-of-type {
    margin-left: 0;
    margin-right: 0;
    display: none !important;
}*/









/* Responsive Design */

@media(max-width: 1000px) {
    .travel-card {
        width: 45%;
        height: 400px;
    }
}

@media(max-width: 600px) {
    .travel-card {
        width: 100%;
        height: 350px;
    }

    .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}

@media (max-width: 768px) {

  .booking-panel button:hover {
        background-color: #081e40;
        transform: scale(1.05);
    }

    button.ash-button-as {
        display: none !important;
    }

    .hour-week {
        display: none;
    }

    .nav-item {
        padding: 0px 6px;
    }

    .logo {
      justify-content: center;
    }

    .travel-basic-info {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .travel-card {
          width: 94%;
      }

    .travel-details {
      bottom: -99%;
    }

    .deal-countdown-section {
     border-radius: 16px;
    }

    .deal-left {
        padding: 0px;
        margin-bottom: 30px;
    }

    .container {
        margin-left: 40px !important;
    }

    .deal-right {
      padding: 0px;
    }

    .slide-title h2 {
        font-size: 28px !important;
    }

   .booking-panel {
      flex-direction: column;
      align-items: stretch;
    }

   .travel-hero-title {
        font-size: 2em;
    }
    .travel-hero-text {
        font-size: 1.1em;
    }
    .travel-feature-card {
        width: 100%;
        max-width: 300px;
    }
    .travel-contact h2 {
        font-size: 1.6em;
    }
    .travel-contact-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }

  .deal-countdown-section {
        flex-direction: column;
        padding: 20px;
      }

      .deal-right, .deal-left {
        flex: 1 1 100%;
        text-align: center;
      }

      .countdown {
        justify-content: center;
      }
      
      .destination-item {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
      }

  .top-bar-text-but-f {
      padding: 4px 20px;
      justify-content: space-between;
  }

  .trending-swiper .swiper-slide {
        width: 80% !important;
      }

  .deal-card {
    width: 260px;
  }

  h2.top-bar-heading {
      font-size: 12px;
  }

  a.top-bar-button {
    padding: 0 14px;
  }
  .header-top {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
      margin-top: 10px;
      justify-content: center;
  }
  .main-nav, .search-bar {
    flex-direction: column;
    text-align: center;
  }
  .search-bar select, .search-bar input, .search-bar button {
    width: 100%;
    margin-bottom: 10px;
  }

  .main-nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 260px;
    background: #fff;
    padding: 60px 20px 20px;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .main-nav.show {
    left: 0;
    text-align: left;
  }

  .menu-toggle {
    display: flex;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1002;
  }

  .nav-item.active {
    padding-bottom: 6px;
  }

  .nav-item:hover {
    padding-bottom: 6px;
  }

  div#close-btn {
    display: block;
  }

  .conter-sw {
    padding: 0px 20px;
  }

  .header-top {
      padding: 14px 20px;
  }

  .footer-subscribe-form {
        flex-direction: column;
        max-width: 100%;
    }
  .footer-subscribe-input {
      border-radius: 20px;
      margin-bottom: 10px;
      width: 80%;
  }
  .footer-subscribe-btn {
      border-radius: 20px;
      width: 150px;
  }
  .footer-middle {
      flex-direction: column;
      text-align: center;
  }
  .footer-column {
      width: 100%;
      margin: 10px 0;
  }
  .footer-bottom {
      flex-direction: column;
      gap: 10px;
  }

   .main-nav1 {
        display: none;
      }
      .menu-toggle1 {
        display: flex;
      }

      .travel-text h2 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 20px;
    }

}

 @media (max-width: 768px) {
            .travel-master-card {
                padding: 50px 30px;
                border-radius: 30px;
            }

            .travel-hero-title {
                font-size: 40px;
            }

            .travel-hero-subtitle {
                font-size: 18px;
            }

            .travel-icons-showcase {
                gap: 20px;
            }

            .showcase-icon-box {
                width: 70px;
                height: 70px;
                font-size: 35px;
            }

            .benefits-power-grid {
                grid-template-columns: 1fr;
            }

            .cta-mega-button {
                padding: 18px 40px;
                font-size: 18px;
            }

            .trust-indicators {
                gap: 20px;
                font-size: 14px;
            }
        }

        /* Mobile Responsive - Hero Section */
        @media (max-width: 768px) {
            .ultimate-travel-hero {
                min-height: auto;
                padding: 30px 20px;
            }

            .travel-master-card {
                padding: 25px 20px;
                margin-bottom: 20px;
            }

            .travel-hero-title {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .travel-hero-subtitle {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .elite-badge {
                font-size: 14px;
                padding: 8px 16px;
            }

            /* Flight cards grid - 1 column on mobile */
            [style*="grid-template-columns: repeat(auto-fit"]  {
                grid-template-columns: 1fr !important;
            }
        }

        /* Extra small phones (480px and below) */
        @media (max-width: 480px) {
            .ultimate-travel-hero {
                min-height: auto;
                padding: 20px 15px;
            }

            .travel-master-card {
                padding: 20px 15px;
                border-radius: 12px;
                margin-bottom: 15px;
            }

            .travel-hero-title {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .travel-hero-subtitle {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .elite-badge {
                font-size: 12px;
                padding: 6px 12px;
            }

            .cta-mega-button {
                padding: 12px 20px;
                font-size: 14px;
                width: 100%;
            }

            .button-text-span {
                display: inline;
            }

            .button-icon-phone {
                margin-right: 5px;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 10px;
                font-size: 12px;
            }

            .trust-item {
                text-align: center;
            }

            /* Ensure flight cards are responsive */
            [style*="background: rgba(255,255,255,0.9)"] {
                padding: 12px !important;
            }

            [style*="font-size: 16px;"] {
                font-size: 14px !important;
            }

            [style*="font-size: 13px;"] {
                font-size: 12px !important;
            }
        }


.travel-card:hover .travel-details {
    padding: 0px;
}
.travel-card:hover .travel-basic-info {
    visibility: hidden !important;
    opacity: 0;
}

body{
    background-color: #fff !important;
}

/* ============ AGGRESSIVE MOBILE - FIX SLIDER AND LARGE HEIGHTS ============ */
@media (max-width: 768px) {
    /* Override all large min-heights */
    .ultimate-travel-hero {
        min-height: auto !important;
        height: auto !important;
    }

    /* Fix slider body massive height */
    .slider_body_div {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    /* Reduce large height containers */
    [style*="height: 80vh"] {
        height: auto !important;
    }

    [style*="min-height: 65vh"] {
        min-height: auto !important;
    }

    [style*="height: 70vh"],
    [style*="height: 60vh"],
    [style*="min-height: 60vh"] {
        height: auto !important;
        min-height: auto !important;
    }

    /* Fix specific section heights */
    .flying-planes-container {
        display: none !important;
    }

    /* Hide header filter on mobile */
    .header-filter-div {
        margin-bottom: 0;
        margin-top: 0;
        display: none;
    }

    /* Reduce carousel/slider items */
    .swiper-container {
        height: auto !important;
        min-height: auto !important;
    }

    .swiper-slide {
        height: auto !important;
        min-height: auto !important;
    }

    /* Fix item heights in carousel */
    .item {
        height: 200px !important;
        width: 120px !important;
    }

    /* Remove excessive margins */
    .slider_main_div {
        height: auto !important;
        min-height: auto !important;
    }

    /* Compact hero titles */
    .travel-hero-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .travel-hero-subtitle {
        font-size: 12px !important;
    }

    /* Reduce all section heights */
    section[style*="height"],
    div[style*="min-height"] {
        height: auto !important;
        min-height: auto !important;
    }

    /* Fix position:absolute items causing layout issues */
    [style*="position: absolute"] {
        position: static !important;
    }

    /* Reduce transform translateY issues */
    [style*="transform: translateY"] {
        transform: none !important;
    }

    /* Compact all grids on mobile */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Remove overflow hidden that causes whitespace */
    .slider_body_div,
    .slider_main_div {
        overflow: visible !important;
    }

    /* Reduce heading spacing */
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 5px !important;
    }

    /* Compact nav on mobile */
    .nav {
        bottom: 0.5rem !important;
    }

    /* Remove excess spacing from content containers */
    [role="main"],
    main,
    article {
        padding: 10px !important;
        margin: 0 !important;
    }
}

/* ============ MOBILE - REDUCE WHITESPACE FROM TOP AND BOTTOM ============ */
@media (max-width: 768px) {
    /* Reduce padding on hero section */
    .ultimate-travel-hero {
        padding: 20px 15px !important;
        min-height: auto;
    }

    /* Reduce padding on contact section */
    .travel-contact {
        padding: 20px 15px !important;
    }

    /* Reduce padding on footer middle */
    .footer-middle {
        padding: 15px 10px !important;
    }

    /* Reduce padding on main sections */
    .main-section {
        padding: 15px 10px !important;
    }

    /* Reduce container margins and padding */
    .container {
        margin-left: 10px !important;
        margin-right: 10px !important;
        padding: 10px !important;
    }

    /* Reduce padding on travel cards */
    .travel-card {
        margin: 10px 5px;
    }

    /* Reduce navbar padding */
    .main-nav {
        padding: 40px 15px 15px !important;
    }

    /* Reduce header padding */
    .header-top {
        padding: 10px 15px !important;
    }

    /* Reduce padding on sections with large default padding */
    section {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    /* Reduce div padding */
    .conter-sw {
        padding: 10px !important;
    }

    /* Reduce all divs with large padding */
    div[style*="padding: 60px"],
    div[style*="padding: 50px"],
    div[style*="padding: 30px"] {
        padding: 15px 10px !important;
    }

    /* Reduce flight form padding */
    .flight-fomr-home {
        margin: 5px 0px !important;
    }

    /* Reduce booking panel padding */
    .booking-panel {
        padding: 10px !important;
    }

    /* Reduce footer-bottom padding */
    .footer-bottom {
        padding: 10px !important;
    }

    /* Reduce margin on sections */
    .travel-master-card {
        margin-bottom: 10px !important;
    }

    /* Compact feature sections */
    .feature-section {
        padding: 15px 10px !important;
    }

    /* Reduce row and column spacing */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Reduce padding on destination cards */
    .destination-travel-section {
        padding: 10px !important;
    }
}