    body{
        background-color: #ffffff;
    }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(to right, #f5f3ff, #fff, #fff4e6);
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo .highlight {
  color: orange;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.signup-btn {
  border: 1px solid #333;
  padding: 5px 10px;
  border-radius: 5px;
}
.signup-btn:hover{
     border: 1px solid #333;
     color: rgb(255, 255, 255);
     background-color: #000;
}
/* Hamburger menu styles */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 30px;
    display: none;
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }
}


    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 40px 20px;
      background: linear-gradient(to right, #f7f5fc, #ffe9cd);
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      padding: 20px;
       text-align: left;
         
   
    }

    .hero-text small {
      color: #ff5e57;
      font-weight: bold;
      letter-spacing: 1px;
      font-family: 'Times New Roman', Times, serif;
        margin-left: 100px;
    }

    .hero-text h1 {
      font-size: 3em;
      margin: 15px 0;
      color: #1b1b3a;
      font-family: 'Times New Roman', Times, serif;
      text-align: left;
      margin-left: 100px;
      font-weight: bolder;
    }

    .hero-text h1 span {
      color: #ff5e57;
    }

    .hero-text p {
      margin: 20px 0;
      color: #666;
           margin-left: 100px;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
    }

    .btn-yellow {
      background: #f7b801;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
           margin-left: 100px;
    }

    .btn-demo {
             margin-left: 100px;
      display: flex;
      align-items: center;
      gap: 10px;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: bold;
      color: #333;
    }

    .btn-demo::before {
      content: '►';
      display: inline-block;
      width: 24px;
      height: 24px;
      background: #ff5e57;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 24px;
    }

    .hero-image {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column-reverse;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 2em;
      }

      .hero-buttons {
        justify-content: center;
      }
    } body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      margin: 0;
      padding: 0;
    }

    .services-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #f9f9f9;
    }

    .services-section h4 {
      color: #5e6282;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .services-section h2 {
      font-size: 32px;
      font-weight: bold;
      color: #14183e;
      margin-bottom: 40px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-box {
      background: #fff;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .service-box img {
      height: 50px;
      margin-bottom: 20px;
    }

    .service-box h3 {
      font-size: 18px;
      color: #14183e;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 14px;
      color: #5e6282;
      line-height: 1.5;
    }

    /* Highlight one */
    .highlight {
      background: #fff;
      border: 1px solid #eee;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .highlight::before {
      content: '';
      position: absolute;
      left: -10px;
      bottom: -10px;
      width: 50px;
      height: 50px;
      background-color: #f15a2c;
      border-radius: 20px 0 0 0;
      z-index: -1;
    }

    @media (max-width: 500px) {
      .services-section h2 {
        font-size: 24px;
      }
    }

       body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      margin: 0;
      padding: 0;
    }

    .services-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #f9f9f9;
    }

    .services-section h4 {
      color: #5e6282;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .services-section h2 {
      font-size: 32px;
      font-weight: bold;
      color: #14183e;
      margin-bottom: 40px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .service-box {
      background: #fff;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .service-box img {
      height: 50px;
      margin-bottom: 20px;
    }

    .service-box h3 {
      font-size: 18px;
      color: #14183e;
      margin-bottom: 10px;
    }

    .service-box p {
      font-size: 14px;
      color: #5e6282;
      line-height: 1.5;
    }

    /* Highlight one */
    .highlight {
      background: #fff;
      border: 1px solid #eee;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .highlight::before {
      content: '';
      position: absolute;
      left: -10px;
      bottom: -10px;
      width: 50px;
      height: 50px;
      background-color: #f15a2c;
      border-radius: 20px 0 0 0;
      z-index: -1;
    }

    @media (max-width: 500px) {
      .services-section h2 {
        font-size: 24px;
      }
    }

         body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f9f9f9;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-title {
            font-size: 1.5em;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .destinations {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .destination-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            width: 250px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s;
        }
        .destination-card:hover {
            transform: scale(1.05);
        }
        .destination-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .destination-info {
            padding: 15px;
        }
        .destination-info h3 {
            margin: 0;
            font-size: 1.1em;
            color: #333;
        }
        .destination-info p {
            margin: 5px 0;
            color: #666;
            font-size: 0.9em;
        }
        .price {
            font-weight: bold;
            color: #1a1a1a;
        }
        @media (max-width: 768px) {
            .destination-card {
                width: 100%;
                max-width: 300px;
                margin: 0 auto 20px;
            }
        }
            * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background: #f8f9fd;
      padding: 20px;
      text-align: center;
    }

    h2 {
      color: #222;
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    p.subtitle {
      color: #666;
      margin-bottom: 30px;
    }

    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
    }

    .card-content h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #333;
    }

    .card-content .price {
      font-weight: bold;
      color: #444;
      margin-bottom: 10px;
    }

    .card-content .duration {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      font-size: 0.9rem;
    }

    .card-content .duration i {
      margin-right: 5px;
    }

    /* Simple airplane icon replacement */
    .card-content .duration::before {
      content: "✈️";
      margin-right: 6px;
    }

    @media (max-width: 480px) {
      h2 {
        font-size: 1.5rem;
      }

      .card-content h3 {
        font-size: 1rem;
      }
    }




    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background: #f9fafc;
      padding: 30px 20px;
    }

    .section {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .left {
      flex: 1 1 300px;
    }

    .left h4 {
      color: #888;
      margin-bottom: 10px;
      font-weight: 500;
      font-family: 'Times New Roman', Times, serif;
      font-weight: bo;
    }

    .left h2 {
      font-size: 2.5rem;
      color: #1d1d4e;
      margin-bottom: 30px;
            font-family: 'Times New Roman', Times, serif;
            font-weight: bo;
    }

    .step {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
    }

    .step-icon {
      width: 40px;
      height: 40px;
      background-color: #ffc107;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .step-icons{
      background-color: #ff5722;
         width: 40px;
      height: 40px;
         border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .step-icones{
      background-color: #009688;
         width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .step-text {
      text-align: left;
    }

    .step-text strong {
      display: block;
      margin-bottom: 5px;
      color: #1d1d4e;
    }

    .step-text p {
      color: #666;
      font-size: 0.95rem;
    }

    .right {
      flex: 1 1 300px;
      position: relative;
    }

    .trip-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      max-width: 360px;
      margin: auto;
    }

    .trip-card img {
      width: 89%;
      height: 180px;
      object-fit: cover;
      margin-top: 20px;
       border-radius: 20px;
    }

    .trip-content {
      padding: 20px;
      text-align: left;
    }

    .trip-title {
      font-weight: 600;
      font-size: 1.1rem;
      color: #1d1d4e;
      margin-bottom: 8px;
    }

    .trip-meta {
      color: #888;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .trip-icons {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .trip-icons span {
      background: #f1f1f1;
      padding: 6px 10px;
      border-radius: 8px;
      font-size: 0.8rem;
    }

    .people-going {
      color: #555;
      font-size: 0.9rem;
    }

    .ongoing-card {
      position: absolute;
      bottom: -40px;
      right: -20px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 15px 20px;
      width: 200px;
    }

    .ongoing-card h4 {
      margin-bottom: 5px;
      font-size: 0.95rem;
      color: #1d1d4e;
    }

    .ongoing-card p {
      font-size: 0.8rem;
      color: #999;
    }

    .progress-bar {
      margin-top: 10px;
      background: #eee;
      border-radius: 10px;
      height: 8px;
      width: 100%;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background-color: #6a5acd;
      width: 40%;
    }

    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        align-items: flex-start;
      }

      .right {
        width: 100%;
        position: static;
      }

      .ongoing-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
      }
    }

        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background-color: #f8f9fb;
      padding: 40px 20px;
    }

    .testimonial-section {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .testimonial-text {
      flex: 1 1 300px;
    }

    .testimonial-text h5 {
      text-transform: uppercase;
      color: #888;
      margin-bottom: 10px;
      letter-spacing: 1px;
      font-weight: 500;
    }

    .testimonial-text h2 {
      font-size: 2.5rem;
      color: #1d1d4e;
    }

    .testimonial-dots {
      margin-top: 30px;
      display: flex;
      gap: 8px;
    }

   

    .dot.active {
      background: #333;
    }

    .testimonial-card-container {
      flex: 1 1 400px;
      position: relative;
    }

    .testimonial-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.07);
      padding: 25px 30px;
      position: relative;
      z-index: 2;
    }

    /* .testimonial-card::before {
      content: '';
      position: absolute;
      bottom: -25px;
      right: 0;
      left: 0;
      margin: auto;
      width: 80%;
      height: 70px;
      background: #f4f4f4;
      border-radius: 15px;
      z-index: -1;
    } */

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }

    .testimonial-user img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

    .testimonial-content {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 15px;
    }

    .testimonial-name {
      font-weight: bold;
      color: #1d1d4e;
    }

    .testimonial-location {
      font-size: 0.9rem;
      color: #777;
    }

    @media (max-width: 768px) {
      .testimonial-section {
        flex-direction: column;
        text-align: center;
      }

      .testimonial-text {
        text-align: center;
      }

      .testimonial-card {
        margin-top: 20px;
      }

      .testimonial-card::before {
        display: none;
      }
    }

      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background: #fff;
      color: #333;
    }

    .subscribe-section {
      background: #f3f1ff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .subscribe-section::before,
    .subscribe-section::after {
      content: '';
      position: absolute;
      background: url('https://www.transparenttextures.com/patterns/connected.png');
      opacity: 0.1;
    }

    .subscribe-section h2 {
      font-size: 1.5rem;
      max-width: 700px;
      margin: 0 auto 30px;
      color: #484848;
    }

    .subscribe-form {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .subscribe-form input[type="email"] {
      padding: 15px 20px;
      border: none;
      border-radius: 8px;
      width: 300px;
      max-width: 100%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .subscribe-form button {
      background: #ff6f4f;
      color: white;
      padding: 15px 25px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    footer {
      background: #fff;
      padding: 60px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      border-bottom: 1px solid #eee;
      padding-bottom: 40px;
    }

    .footer-brand {
      flex: 1 1 220px;
    }

    .footer-brand h1 {
      font-size: 2rem;
      color: #1d1d4e;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: #666;
      margin-top: 10px;
      text-align: left;
    }

    .footer-column {
      flex: 1 1 150px;
      text-align: left;
      margin-left: 100px;
    }

    .footer-column h4 {
      font-size: 1rem;
      margin-bottom: 15px;
      color: #1d1d4e;
      text-align: left;
      margin-left: 32px;
    }

    .footer-column ul {
      list-style: none;
      text-align: left;
    }

    .footer-column ul li {
      margin-bottom: 10px;
      font-size: 0.9rem;
      color: #666;
      cursor: pointer;
      text-align: left;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 35px;
      height: 35px;
      display: inline-block;
      background: #eee;
      border-radius: 50%;
      text-align: center;
      line-height: 35px;
      color: #333;
      font-size: 16px;
      transition: 0.3s;
    }

    .footer-social a:hover {
      background: #1d1d4e;
      color: white;
    }

    .app-buttons {
      margin-top: 15px;
    }

    .app-buttons img {
      height: 40px;
      margin-right: 10px;
    }

    .footer-bottom {
      text-align: center;
      font-size: 0.8rem;
      color: #aaa;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-brand,
      .footer-column {
        flex: 1 1 100%;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-form input,
      .subscribe-form button {
        width: 100%;
        max-width: 90%;
      }
    }

        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
    }

    .airline-section {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px 20px;
      background: white;
    }

    .airline-logo {
      filter: grayscale(100%);
      opacity: 0.8;
      transition: 0.3s ease-in-out;
      max-height: 40px;
    }

    .airline-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.05);
    }

    .expedia-logo {
      background: white;
      padding: 10px 20px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    @media (max-width: 600px) {
      .airline-section {
        gap: 20px;
      }
      .airline-logo {
        max-height: 30px;
      }
    }

    /* Basic reset */
@media screen and (max-width:500px) {
  
.abgh{
    padding: 0px 20px;
}

    
}


/* Basic reset */

/* Reset and base styles */

