/* homepage.css */

#a5{
  background-color: #f5f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#a7 {
  max-width: 1350px;
}

.deal-card {
  display: flex;
  align-items: stretch;
  width: 90%;
  height: 160px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.deal-image {
  position: relative;
  flex: 0 0 110px;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.countdown {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #e6f4ff;
  color: #000;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown i {
  color: #0C2140;
  font-size: 0.8rem;
}

.deal-content {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.deal-info {
  font-size: 0.85rem;
  color: #000;
  margin-bottom: 3px;
}

.deal-info i {
  margin-right: 6px;
  color: #000;
}

.price {
  font-size: 0.85rem;
  text-align: right;
  color: #555;
  margin-top: 4px;
}

.price span {
  color: #0C2140;
  font-weight: 700;
  font-size: 1rem;
}

.row {
  justify-content: center;
}

@media (max-width: 992px) {
  .deal-card {
    width: 90%;
  }
}

/*<<<<<<<<<<<<<<<<< Section A5 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* === Custom Card Styling === */
.destination-box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
  height: 90px;
  color: #000;
}

.destination-box:hover {
  transform: translateY(-3px);
}

.destination-img {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.destination-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.destination-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .destination-box {
    flex-direction: column;
    height: auto;
  }

  .destination-img {
    width: 100%;
    height: 150px;
  }

  .destination-content {
    padding: 10px;
  }

  .destination-content h5 {
    font-size: 1rem;
  }
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<< Section a6 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* Unique CSS */
.hmn-section {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
}

.hmn-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.hmn-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hmn-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hmn-card:hover img {
  filter: brightness(0.6);
  transform: scale(1.05);
}

.hmn-overlay {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hmn-card img {
    height: 200px;
  }
  .hmn-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .hmn-card img {
    height: 180px;
  }
}

/*<<<<<<<<<<<<<<<<<<< A7 >>>>>>>>>>>>>>>>>>>>*/
/* Unique CSS class names to avoid conflicts */
.travel-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.travel-faq-title {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
}

.travel-faq-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  margin: 10px auto;
  border-radius: 2px;
}

.travel-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.travel-faq-item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.travel-faq-question {
  padding: 15px 20px;
  background:#0C2140;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.travel-faq-question:after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.travel-faq-item.active .travel-faq-question:after {
  transform: rotate(45deg);
  content: '-';
}

.travel-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: #555;
  line-height: 1.5;
  font-size: 0.9rem;
}

.travel-faq-item.active .travel-faq-answer {
  padding: 15px 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .travel-faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .travel-faq-title {
    font-size: 1.7rem;
  }

  .travel-faq-question {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .travel-faq-answer {
    padding: 0 15px;
  }

  .travel-faq-item.active .travel-faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .travel-faq-container {
    padding: 20px 15px;
  }

  .travel-faq-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .travel-faq-question {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .travel-faq-answer {
    padding: 0 12px;
    font-size: 0.85rem;
  }

  .travel-faq-item.active .travel-faq-answer {
    padding: 10px 12px;
  }
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<,*/
/* -------------------- Container -------------------- */
#b8 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight:bold;
  padding: 60px 15px;
  /* background: ; */
  min-height: 50vh;
}

  .form-container {
            background-color:#0C2140;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .form-title {
            color: white;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.5rem;
            align-items: center;
            justify-content: center;
            display: flex;
        }
        
        .form-subtitle {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 20px;
            font-size: 0.9rem;
              align-items: center;
            justify-content: center;
            display: flex;
        }
        
        .input-group {
            position: relative;
            margin-bottom: 5px;
        }
        
        .form-control {
            background-color: #f8f9fa;
            border: 1px solid #e1e5e9;
            border-radius: 6px;
            padding: 10px 40px 10px 12px;
            color: #333;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        
        .form-control:focus {
            background-color: white;
            box-shadow: 0 0 0 3px rgba(44, 96, 109, 0.2);
            border-color: #2C606D;
        }
        
        .input-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #2C606D;
            font-size: 0.9rem;
        }
        
        .form-label {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 6px;
        }
        
        .btn-submit {
            background-color: #9aafb4;
            color: white;
            border: none;
            border-radius: 6px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1rem;
            width: 100%;
            max-width: 200px;
            margin-top: 20px;
        }
        
        .btn-submit:hover {
            background-color: #1a3c45;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .form-footer {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.8rem;
            margin-top: 15px;
        }
        
        .form-footer i {
            color: #4CAF50;
            margin-right: 5px;
        }
        
        .terms-container {
            padding: 15px;
            border-radius: 8px;
            height: 100%;
        }
        
        .form-check-label {
            color: white;
            font-size: 0.9rem;
        }
        
        .form-check-input:checked {
            background-color: #2C606D;
            border-color: #2C606D;
        }
        
        .terms-link {
            color: #4CAF50;
            text-decoration: none;
        }
        
        .terms-link:hover {
            text-decoration: underline;
        }
        
        .final-section {
            margin-top: 20px;
        }
        
        .captcha-container {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            border-radius: 8px;
            height: 100%;
        }
        
        .captcha-question {
            color: white;
            font-weight: 600;
            white-space: nowrap;
        }
        
        #captcha {
            max-width: 200px;
        }
        
        .button-container {
            display: flex;
            justify-content: center;
            width: 100%;
        }
        
        .three-in-row {
            display: flex;
            gap: 15px;
            align-items: stretch;
        }
        
        .three-in-row > div {
            flex: 1;
        }
        
      @media (max-width: 768px) {
    .three-in-row {
        flex-direction: column;
         gap: 2px;
       
    }
    
    .captcha-container {
        flex-direction: column; /* row se column kar diya */
        align-items: flex-start; /* left align */
         gap: 2px; 
    }
    
    #captcha {
        width: 105%; /* input field poora width le */
        max-width: 220%;
    }
 .form-check {
        margin-bottom: 2px; /* checkbox ke neeche thoda space */
    }
    
    .btn-submit {
        max-width: 100%;
    }
}


/* blogs section */
 .pro-wrapper {
      background: #f5f7fa;
      min-height: 100vh;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
    }

    /* Main Container with scroll */
    .pro-container {
      max-width:1200px;
      background: #ffffff;
      padding: 45px;
      border-radius: 10px;
      border: 1px solid #e6e6e6;
      max-height: 80vh; /* Container height restriction */
      overflow-y: auto; /* Vertical scroll */
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    /* Custom scrollbar styling */
    .pro-container::-webkit-scrollbar {
      width: 8px;
    }

    .pro-container::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    .pro-container::-webkit-scrollbar-thumb {
      background: #c1c1c1;
      border-radius: 10px;
    }

    .pro-container::-webkit-scrollbar-thumb:hover {
      background: #a8a8a8;
    }

    /* Header */
    .pro-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .pro-title {
      font-size: 2.3rem;
      font-weight: 700;
      color: #0C213F;
    }

    .pro-subtitle {
      font-size: 1.1rem;
      color: #666;
      margin-top: 8px;
    }

    /* Sections */
    .pro-section {
      margin-bottom: 45px;
    }

    .pro-heading {
      font-size: 1.6rem;
      font-weight: 600;
      color: #0C213F;
      margin-bottom: 12px;
      padding-bottom: 6px;
      border-bottom: 2px solid #d8dce2;
    }

    .pro-text {
      color: #444;
      line-height: 1.75;
      font-size: 1.05rem;
      margin-bottom: 14px;
    }

    /* List */
    .pro-list {
      margin-top: 15px;
      padding-left: 18px;
      line-height: 1.7;
    }

    .pro-list li {
      margin-bottom: 10px;
      color: #333;
      padding-left: 5px;
    }

    /* Additional content for demonstration */
    .pro-extra-content {
      margin-top: 30px;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      border-left: 4px solid #0C213F;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .pro-container {
        padding: 25px;
        max-height: 85vh; /* Slightly taller on mobile */
      }

      .pro-title {
        font-size: 1.8rem;
      }

      .pro-heading {
        font-size: 1.3rem;
      }

      .pro-text {
        font-size: 1rem;
      }
    }
 /* 🌴 Wrapper */
    .hh-slider-wrapper {
      max-width: 1300px;
      margin: 60px auto;
      padding: 0 15px;
      position: relative;
    }

    .hh-title {
      font-size: 2rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 5px;
    }

    .hh-subtitle {
      color: #777;
      margin-bottom: 25px;
    }






    .hh-slider-container {
  position: relative;
  overflow: hidden;
}

.hh-slider {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}

.hh-slider a {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 13.33px);
}

.hh-destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hh-destination-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.hh-destination-card:hover {
  transform: scale(1.03);
}

.hh-card-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.hh-price-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color:#0C2140;
  color: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hh-arrows {
  position: absolute;
  bottom: 0;
  right: 25px;
  display: flex;
  gap: 15px;
  z-index: 100;
  margin-top: 15px;
}

.hh-arrow-btn {
  background: black;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hh-arrow-btn:hover {
  background: #0C2140;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hh-slider a {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .hh-slider a {
    flex: 0 0 100%;
  }
  .hh-title, .hh-subtitle { text-align: center; }
  .hh-arrows { bottom: 5px; right: 10px; }
}







/* blog section  */
.blogs-wrapper {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.blogs-container {
  max-width: 1200px;
  width: 100%;
}

.blogs-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* ==== Grid ==== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
  gap: 30px;
}


@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .blogs-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}


/* ==== Blog Item ==== */
.blog-item {
  position: relative;
  height: 370px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.blog-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease;
  filter: brightness(0.85);
}

.blog-item:hover .blog-bg {
  transform: scale(1.1);
  filter: brightness(0.65);
}

/* ==== Blog Content ==== */
.blog-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 25px 25px 30px;
  background: linear-gradient(transparent 10%, rgba(0, 0, 0, 0.8));
  transition: all 0.4s ease;
}

.blog-title {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.blog-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 15px;
}

.blog-item:hover .blog-summary {
  opacity: 1;
  max-height: 100px;
}

.blog-link {
  display: inline-block;
  color: #00b4d8;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.blog-item:hover .blog-link {
  opacity: 1;
  transform: translateY(0);
}

.blog-link:hover {
  border-bottom: 2px solid #00b4d8;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .blog-item {
    height: 300px;
  }
  .blogs-heading {
    font-size: 2rem;
  }
}