
body {
  margin: 0;
  font-family: system-ui, sans-serif;
}

/* Navbar style */
.custom-navbar {
  background: #ffffff;
}


/* Logo */
.logo-box {
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Pills */
.nav-pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  color: #0d0d0d;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
}

.nav-pill:hover {
  background: #eaeaea;
  color: #000;
}

.nav-pill.active {
  background: #000;
  color: #fff;
}

/* Mobile Fix */
@media (max-width: 991px) {
  .nav-pill {
    width: 100%;
  }
}




/* Logo */
.logo-box {
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

/* Pills */
.nav-pill {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  color: #0d0d0d; 
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.nav-pill:hover {
  background: #eaeaea;
  color: #000;
}

/* Active (FAQ) */
.nav-pill.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .nav-pills-wrapper {
    margin-top: 10px;
    justify-content: center;
  }
}




/* Heading */
.hero-title {
  font-size: 32px;
  font-weight: 600;
}

.hero-sub {
  color: #777;
  font-size: 14px;
}

/* Input box */
.search-box {
  background: #eee;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #ddd;
}

.search-box textarea {
  width: 100%;
  border: none;
  resize: none;
  outline: none;
  background: transparent;
  font-size: 14px;
}

/* Buttons inside input */
.input-tools {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.tool-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
}

.send-btn {
  background: #aaa;
  border: none;
  color: #fff;
  border-radius: 10px;
  width: 34px;
  height: 34px;
}

/* Chips */
.chip {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}

.chip:hover {
  background: #eee;
}

/* Cards */
.topic-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e2e2e2;
  transition: 0.2s;
  height: 100%;
}

.topic-card:hover {
  transform: translateY(-3px);
}

.topic-title {
  font-weight: 600;
  font-size: 14px;
}

.topic-sub {
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 576px) {
  .hero-title {
    font-size: 24px;
  }
}



.footer {
  background: #f2f2f2;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: #777;
}

.footer a {
  color: #666;
  text-decoration: none;
  margin: 0 6px;
}

.footer a:hover {
  text-decoration: underline;
}



.chat-content {
  height: 70vh;
  overflow-y: auto;
  padding: 20px;
}

.user-msg {
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  text-align: right;
  width: fit-content;
  margin-left: auto;
}

.ai-msg {
  background: #eee;
  padding: 8px 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  width: fit-content;
}


  .left-panel {
  display: flex;
  flex-direction: column;
  height: 85vh;
}

.chat-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  margin-bottom: 10px;
}




/* FULL HEIGHT */
.chat-wrapper {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CHAT AREA */
.chat-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 10px 100px;
}

/* INPUT FIXED */
.chat-input-area {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 10px;
}

/* SEARCH BOX */
.search-box {
  position: relative;
  background: #f1f1f1;
  border-radius: 20px;
  /* padding: 12px 50px 12px 50px; */
}

/* TEXTAREA */
.search-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
}

/* LEFT ICONS */
.icons-left {
  position: absolute;
  left: 12px;
  bottom: 10px;
  display: flex;
  gap: 8px;
}

/* SEND BUTTON */
.send-btn {
  position: absolute;
  right: 10px;
  bottom: 8px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

/* MESSAGE STYLE */
.user-msg {
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  margin: 8px 0;
  width: fit-content;
  margin-left: auto;
  max-width: 75%;
}

.ai-msg {
  background: #f1f1f1;
  padding: 10px 14px;
  border-radius: 16px;
  margin: 8px 0;
  width: fit-content;
  max-width: 100%;
}

/* MOBILE */
@media (max-width: 576px) {
  .chat-wrapper {
    max-width: 100%;
  }

  .chat-content {
    padding: 15px 8px 100px;
  }
}




   

    .section-title {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .post-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      transition: 0.3s;
      background: #fff;
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .post-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .post-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .badge-custom {
      background: #111;
      color: #fff;
      font-size: 0.75rem;
      padding: 5px 10px;
      border-radius: 6px;
    }

    .post-date {
      font-size: 0.85rem;
      color: #777;
      margin-left: 10px;
      text-align: left;
    }

    .post-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-top: 10px;
      text-align: left;
    }

    .post-desc {
      font-size: 0.9rem;
      color: #666;
       text-align: left;
    }

    @media (max-width: 768px) {
      .section-title {
        text-align: center;
        font-size: 2rem;
      }
    }



    

    /* FULL SECTION BACKGROUND */
.featured-section {
  background: #ebfaf7;
  padding: 80px 0;
}

/* TITLE */
.section-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #111;
}

/* CARD */
.post-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.post-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BADGE */
.badge-custom {
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
}

/* DATE */
.post-date {
  font-size: 12px;
  color: #6b7280;
}

/* TITLE */
.post-title {
  font-weight: 600;
  margin-top: 8px;
}

/* DESC */
.post-desc {
  font-size: 14px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 576px) {
  .featured-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


/* top serach 1705839136.jpg */

 
.hero-bg {
  background: url('https://flighttravel.org/uploadimagelist/home-img-bg.png') no-repeat center center/cover;
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY for readability */
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* CONTENT ABOVE OVERLAY */
.hero-content {
  position: relative;
  z-index: 2;
  
}

/* TEXT VISIBILITY */
.hero-title {
  color: #fff !important;
}

.hero-sub {
  color: #ddd !important;
}

/* SEARCH BOX GLASS EFFECT */
.search-box {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}
   
/* top search */


/* 2nd seactin */



/* LABEL */
.topic-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: #9ca3af;
}

/* CARD */
.topic-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px 15px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.topic-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* TITLE */
.topic-title {
  font-weight: 600;
  font-size: 15px;
}

/* SUB */
.topic-sub {
  font-size: 12px;
  color: #6b7280;
}

/* HOVER EFFECT */
.topic-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: #fff;
}

/* MOBILE */
@media (max-width: 576px) {
  .topic-card {
    padding: 18px 10px;
  }
}



/* SECTION SPACING */
.topic-section {
  padding: 80px 0;   /* top & bottom spacing */
  margin-top: 60px;
}

/* TITLE */
.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #111;
}

/* CARD */
.topic-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.topic-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* TITLE */
.topic-title {
  font-weight: 600;
  font-size: 15px;
}

/* SUBTEXT */
.topic-sub {
  font-size: 13px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 576px) {
  .topic-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .topic-card {
    padding: 20px 10px;
  }
}




/* 2nd seaction last */



/* top destination */


/* SECTION */
.airline-section {
  background: #f3f0ec;
  
}

/* CARD */
.airline-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* HOVER */
.airline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* LOGO BOX */
.logo-box {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

/* LOGO */
.logo-box img {
  height: 28px;
  object-fit: contain;
}

/* NAME */
.airline-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* TAG */
.tag {
  font-size: 11px;
  background: #f1e7df;
  color: #8b6f5a;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* MOBILE */
@media (max-width: 576px) {
  .airline-section {
   
  }
}

/* SECTION */
.airline-section {
  background: #f3f0ec;
  padding: 100px 0;   /* more premium spacing */
  margin-top: 0px !important;
  
}

/* CARD */
.airline-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* HOVER */
.airline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* LOGO BOX */
.logo-box {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* LOGO */
.logo-box img {
  height: 32px;
}

/* NAME */
.airline-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

/* TAG */
.tag {
  font-size: 11px;
  background: #f1e7df;
  color: #8b6f5a;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 576px) {
  .airline-section {
    padding: 70px 0;
  }

  .airline-card {
    padding: 22px 10px;
  }
}



/* top destination */

/* faq */



    .faq-section {
      padding: 60px 0;
      text-align: center;
    }

    .faq-subtitle {
      color: #ff5a1f;
      font-size: 12px;
      letter-spacing: 3px;
      margin-bottom: 10px;
    }

    .faq-title {
      font-weight: 700;
      font-size: 42px;
    }

    .faq-title span {
      color: #ff5a1f;
    }

    .accordion-item {
      border: none;
      margin-bottom: 15px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .accordion-button {
      font-weight: 500;
      border-radius: 12px !important;
      padding: 18px 20px;
      background-color: #fff;
    }

    .accordion-button:not(.collapsed) {
      color: #000;
      background-color: #fff;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-body {
      text-align: left;
      color: #666;
      font-size: 14px;
      padding: 15px 20px;
    }

    @media (max-width: 768px) {
      .faq-title {
        font-size: 28px;
      }
    }



/* faq */