.about
  {
      background-color:cyan;
  }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .main-content {
        background-color: #0c1b2c;
        color: white;
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
    }

    .container {
        max-width: 1200px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px;
        position: relative;
        margin: auto;
    }

    .text-content {
        max-width: 50%;
    }

    .text-content h1 {
        font-size: 60px;
        font-weight: bold;
        line-height: 1.2;
    }

    .text-content h1 span {
        color: #ff6600;
        background: white;
        padding: 5px 10px;
        border-radius: 5px;
    }

    .text-content p {
        margin: 20px 0;
        font-size: 18px;
        color: #ddd;
    }

    .search-box {
        background: white;
        padding: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 500px;
        margin-top: 20px;
    }
   .fa-location-dot
   {
       color:black;
       font-size:18px;
   }
    .search-box input {
        border: none;
        outline: none;
        flex: 1;
        padding: 10px;
        font-size: 16px;
    }

    .search-box button {
        background: #ff6600;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        font-size: 16px;
    }

    .airplane {
        max-width: 45%;
        position: absolute;
        right: -5%;
        bottom: -10%;
        animation: fly 5s infinite ease-in-out;
    }

    @keyframes fly {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    @media (max-width: 1024px) {
        .container {
            flex-direction: column;
            text-align: center;
            align-items: center;
            padding: 30px;
        }

        .text-content {
            max-width: 100%;
        }
     .text-content h1 {
            font-size: 50px;
        }

        .search-box {
            width: 90%;
            flex-direction: column;
            gap: 15px;
        }
       
.fa-location-dot {
    position: absolute;
    left: 37px; /* Input ke bilkul left me lane ke liye */
    top: 44%;  /* Yahan se icon vertically center ho jayega */
    transform: translateY(-50%); /* Perfect center alignment */
    font-size: 20px; 
    color: black;
}

.search-box input[type="text"] {
    width: 90%;
    padding: 10px 10px 10px 40px; /* Left padding zyada rakho taaki icon overlap na kare */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
       
       input[type="date"]:before {
    color: gray;
    content: attr(placeholder);
     width: 100%;  
    min-width: 250px; 
}

       
       
        .airplane {
            max-width: 50%;
            position: relative;
            right: 0;
            bottom: 0;
            margin-top: 20px;
        }
    }

    @media (max-width: 768px) {
        .text-content h1 {
            font-size: 40px;
            
        }

        .search-box {
            width: 100%;
           
        }
       
        .airplane {
            max-width: 80%;
        }
    }
    /*this is about*/
       .about-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px 80px;
        background-color: #fff8e8;
        flex-wrap: wrap;
    }
    .about-content {
        width: 50%;
    }
    .highlight {
        color: #FF6A3D;
        font-weight: bold;
    }
    .about-content h2 {
        font-size: 36px;
        color: #000;
    }
    .about-content p {
        color: #555;
    }
    .about-contact {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .about-contact div {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #0e3d86;
        color: white;
        padding: 10px 15px;
        border-radius: 50px;
    }
    .about-contact div i {
        font-size: 20px;
    }
    .about-images {
        
        width: 50%;
        position: relative;
        text-align: center;
    }
    .about-main-image, .about-small-image {
        width: 50%;
        margin-top:15px;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
    }
    .about-main-image:hover, .about-small-image:hover {
        transform: scale(1.05);
    }
    .about-small-image {
        width: 40%;
        position: absolute;
        bottom: -30px;
        left: 30px;
    }
    .experience-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background:linear-gradient(94deg, rgb(255, 100, 35) 0%, rgb(239, 54, 33) 50%);
        color: white;
        padding: 20px;
        border-radius: 50%;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        width: 110px;
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn {
        display: inline-block;
        background: linear-gradient(94deg, rgb(255, 100, 35) 0%, rgb(239, 54, 33) 50%);
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        margin-top: 20px;
    }

 @media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .about-content, .about-images {
        
        width: 100%;
        
        text-align: center;
    }
    .about-images {
       
        position: relative;
    }
    .about-main-image {
       
        width: 80%;
    }
    .about-small-image {
        width: 60%;
        bottom: -20px;
        align-items:center;
        left:30%;
        top:50%;
        
        transform: translateX(-30%);
    }
    .about-contact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


    .testimonials-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

        .testimonial-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 320px;
            flex: 1;
        }
        .quote-icon {
            font-size: 30px;
            color: #1d4ed8;
        }
        .stars {
            color: #ffcc00;
            font-size: 18px;
            margin: 10px 0;
        }
        .testimonial-text {
            font-size: 14px;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        .user-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .user-img:hover {
    transform: scale(1.2); /* 1.2 means 20% bigger */
    transition: transform 0.3s ease-in-out;
}

        .user-info {
            text-align: left;
            padding-bottom:-15px;
        }
        .user-info h4 {
            margin: 0;
            font-size: 16px;
            font-weight: bold;
        }
        .user-info p {
            margin: 0;
            font-size: 12px;
            color: #666;
        }
        .testi
        {
            text-align:center;
        }
        @media (max-width: 768px) {
            .testimonials-container {
                flex-direction: column;
                align-items: center;
            }
        }
        
        
        .deal{
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f9f9;
      margin: 0;
      padding: 60px;
    }
        
    .deals-section {
      max-width: 1200px;
      margin: auto;
    }
    .he {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }
    .he h2 {
      font-size: 32px;
      margin: 0;
      color: #000;
    }
    .he span {
      color: #f26a2e;
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
      font-size: 20px;
    }
   .explore-btn {
  background: linear-gradient(94deg, rgb(255, 100, 35) 0%, rgb(239, 54, 33) 50%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
 .explore-btn a 
 {
  text-decoration: none;
  color:white;
 }
.deal-card {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out, background 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.deal-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(94deg, rgb(255, 100, 35) 0%, rgb(239, 54, 33) 50%);
  color: #fff;
}

.deal-card:hover h3,
.deal-card:hover p {
  color: #fff;
}

.deal-card:hover button {
  background: #fff;
  color: #f26a2e;
}


    .explore-btn:hover {
      background-color: #d9581f;
    }

    .deals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .deal-card {
      background-color: #fff;
      padding: 20px;
      text-align: center;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
    }

    .deal-card:hover {
      transform: translateY(-5px);
    }

    .deal-card img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .deal-card h3 {
      margin: 10px 0 5px;
      color: #000;
    }

    .deal-card p {
      margin: 0;
      color: #f26a2e;
      font-weight: bold;
    }

    .deal-card button {
      margin-top: 15px;
      padding: 10px 20px;
      color:white;
      border: none;
      background:linear-gradient(94deg, rgb(255, 100, 35) 0%, rgb(239, 54, 33) 50%);
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.2s;
    }
   
   .deal-card button a {
  text-decoration: none;
  color:#fff;
  
}

    .deal-card button:hover {
      background-color: #ddd;
      color:black;
    }
    .deal-card button a:hover
    {
        color:black;
    }
    
 @media (max-width: 768px) {
  .deal {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9f9;
  padding-top: 100px; /* 👈 Yeh andar ka gap deta hai */
  padding-right: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
}


  .he {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .he h2 {
    font-size: 24px;
  }

  .he span {
    font-size: 16px;
  }

  .explore-btn {
    padding: 8px 16px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .deals-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 15px;
  }

  .deal-card {
    padding: 15px;
  }

  .deal-card img {
    width: 120px;
    height: 120px;
  }

  .deal-card h3 {
    font-size: 18px;
  }

  .deal-card p {
    font-size: 14px;
  }

  .deal-card button {
    padding: 8px 16px;
    font-size: 14px;
    width: 100%;
     text-decoration: none;
  }
}
.main-contains {
    font-family: 'Poppins', sans-serif;
    background-image: url('../image/booking.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

.booking-container {
    background: white;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    text-align: left;
}

label {
    font-size: 14px;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    background: #f9f9f9;
    transition: 0.3s ease-in-out;
    box-sizing: border-box;
}

.full-width {
    grid-column: span 2;
}

button {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    border: none;
    padding: 14px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    grid-column: span 2;
    font-weight: 600;
}

.radio-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hidden {
    display: none;
}

.destination-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

form div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 768px) {
    .booking-container {
        width: 100%;
        padding: 20px;
    }

    form {
        grid-template-columns: 1fr;
    }

    .full-width, button {
        grid-column: span 1;
    }

    .radio-options {
        flex-direction: column;
        gap: 10px;
    }

    input, select {
        font-size: 14px;
        padding: 10px;
    }

    .destination-group {
        flex-direction: column;
        align-items: flex-start;
    }
}
    .contw {
      background: #fff;
      padding: 30px;
      display: flex;
      justify-content: center;
    }
    .conte {
      display: flex;
      align-items: center;
      max-width: 1100px;
    }
    .video-section {
      position: relative;
      width: 50%;
    }
    .video-section img {
      width: 100%;
      border-radius: 10px;
      animation: fadeIn 1.5s ease-in;
    }
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      animation: pulse 2s infinite;
      z-index: 2;
    }
    .play-button::before {
      content: '';
      border-style: solid;
      border-width: 10px 0 10px 18px;
      border-color: transparent transparent transparent red;
      margin-left: 5px;
    }

    .content {
      padding-left: 40px;
      width: 50%;
      animation: slideIn 1s ease-in-out;
    }
    .tag {
      color: orangered;
      font-weight: 600;
      margin-bottom: 10px;
    }
    h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }
    .desc {
      font-size: 14px;
      color: #555;
      margin-bottom: 25px;
    }
    .feature {
      background: #f9f9f9;
      padding: 15px;
      border-radius: 12px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .feature i {
      font-size: 20px;
      color: #ff3c1a;
      margin-top: 4px;
    }
    .feature:hover {
      transform: translateY(-5px);
    }
    .btn {
      margin-top: 20px;
      padding: 12px 20px;
      background-color: #ff3c1a;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .btn:hover {
      background-color: #e83515;
    }

    /* Video Popup Styles */
    .video-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      display: none;
    }
    .video-popup iframe {
      width: 80%;
      height: 80%;
    }
    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 30px;
      color: #fff;
      cursor: pointer;
      z-index: 10000;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes pulse {
      0% { transform: translate(-50%, -50%) scale(1); }
      50% { transform: translate(-50%, -50%) scale(1.1); }
      100% { transform: translate(-50%, -50%) scale(1); }
    }
    
    @media (max-width: 768px) {
  .conte {
    flex-direction: column;
  }

  .video-section {
    order: 1;
    width: 100%;
  }

  .content {
    order: 2;
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  h2 {
    font-size: 22px;
  }

  .desc {
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature i {
    margin-bottom: 10px;
  }

  .video-popup iframe {
    width: 90%;
    height: 55%;
  }
}
  .fd-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Inter', sans-serif;
  }

  .fd-subtitle {
    color: #ff6f00;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    text-align: start;
  }

  .fd-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: start;
  }

  .fd-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .fd-card {
    position: relative;
    background-color: #fff;
    border-radius: 9px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 350px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .fd-card:hover {
    transform: translateY(-8px);
  }

  .fd-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .fd-card:hover img {
    transform: scale(1.05);
  }

  .fd-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .fd-heart:hover {
    background: linear-gradient(94deg, #ff6423, #ef3621);
  }

  .fd-heart i {
    font-size: 16px;
    color: #999;
    transition: color 0.3s ease;
  }

  .fd-heart:hover i {
    color: white;
  }

  .fd-content {
    padding: 16px;
  }

  .fd-airline {
    color: #555;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .fd-price {
    float: right;
    color: #ff5722;
    font-weight: bold;
  }

  .fd-route {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .fd-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
  }

  .fd-tag {
    font-size: 13px;
    color: #888;
  }

  .fd-book-btn {
    background: linear-gradient(94deg, #ff6423, #ef3621);
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .fd-book-btn:hover {
    background-color: #333;
  }
  .fd-book-btn a
  {
      text-decoration: none;
      color:#fff;
      
  }
    

    .stats-container {
      background-color: #0d3c83;
      color: white;
      display: flex;
      justify-content: space-around;
      padding: 40px 0;
      border-radius: 8px;
      margin: 50px auto;
      width: 90%;
      max-width: 1100px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .stat-box {
      text-align: center;
      transition: transform 0.3s ease;
    }

    .stat-box:hover {
      transform: scale(1.05);
    }

    .stat-box i {
      font-size: 40px;
      margin-bottom: 10px;
      color: #9bbcf0;
      animation: zoomIn 1s ease;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.5);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .stat-number {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 5px;
      animation: slideUp 1.2s ease;
    }

    .stat-label {
      font-size: 14px;
      color: #dbe7ff;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
    }
/*payments*/
   .sect {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 10%;
      gap: 40px;
      flex-wrap: wrap;
    }
    .left {
        background-image: url('image/payment-shape.webp');
      flex: 1 1 500px;
    }
    .left p {
      color: #ff5c00;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .left h1 {
      font-size: 36px;
      margin: 10px 0;
      color: #111;
    }
    .left .desc {
      color: #555;
      margin-bottom: 30px;
      line-height: 1.6;
    }
    .payment-logos {
      display: flex;
      gap: 20px;
      padding: 20px;
      background: #fafafa;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      border-radius: 10px;
      max-width: 100%;
    }
    .payment-logos img {
      height: 35px;
      width: auto;
      
    }
    .right {
      flex: 1 1 400px;
    }
    .right img {
      width: 100%;
      border-radius: 10px;
    }
     @media screen and (max-width: 768px) {
      .sect {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
      }
      .left, .right {
        flex: 1 1 100%;
      }
      .payment-logos {
        justify-content: center;
        flex-wrap: wrap;
      }
    }
    