html {
  height: 100%;

  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif;
  height: 100%;
}

h1, h2, h3, h4, h5, h6, .call-btn {
  font-family: 'Noto Sans', sans-serif;
}

   
/* Header */
.header {
    background: #002244;
    color: #fff;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    margin-right: 8px;
    color: #00aaff;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.toggle-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Booking Form Section */
.booking-form-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://threatshield.online/images/logo/banner.webp') no-repeat center/cover;
    padding: 40px 0;
}

.booking-form {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    width: 85%;
    margin: auto;
    color: white;
}

.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

input, select {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.search-btn {
    background: #00aaff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-btn:hover {
    background: #008ecc;
}

/* Responsive */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        flex-direction: column;
        background: #002244;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    .nav ul.active {
        display: flex;
        z-index: 1;
    }

    .toggle-btn {
        display: block;
    }

    .form-group {
        flex-direction: column;
    }
}

.booking-form-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://threatshield.online/images/logo/banner.webp') no-repeat center/cover;
    padding: 60px 0; /* Taller banner */
    min-height: 450px;
    display: flex;
    align-items: center;
}

.booking-form {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    color: white;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.trip-type {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.trip-type input {
    margin-right: 5px;
}

.form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: none;
    border-radius: 6px;
    outline: none;
}

.btn-wrap {
    display: flex;
    /*align-items: flex-end;*/
}

.search-btn {
    background: #00aaff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    background: #008ecc;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}


.why-choose {
    background: #f9fcff;
    padding: 60px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e3d7b;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #ff6b35;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.milestone {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.milestone .content {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.milestone.left {
    left: 0;
}

.milestone.right {
    left: 50%;
}

.milestone::before {
    content: " ";
    position: absolute;
    top: 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ff6b35;
    border: 4px solid white;
    z-index: 1;
}

.milestone.left::before {
    right: -13px;
}

.milestone.right::before {
    left: -13px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .milestone {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .milestone.right {
        left: 0%;
    }

    .milestone.left::before,
    .milestone.right::before {
        left: 18px;
    }
}


/* Airline Reservation Section */
.airline-reservation {
  background: #fff; /* light background */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.airline-reservation .container {
  max-width: 1100px;
  margin: auto;
}

.airline-reservation h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #003366;
  position: relative;
}

.airline-reservation h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0078ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.airline-reservation p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.airline-reservation ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.airline-reservation ul li {
  background: #ffffff;
  padding: 15px 20px;
  border-left: 4px solid #0078ff;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airline-reservation ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}
/* Section 1 Styles */
.travel-action {
  background: #ffffff;
  padding: 30px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  max-width: 1080px;
}

.travel-action h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111;
}

.travel-action p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Section 2 Styles */
.flight-reservation {
  /*background: #f9f9f9;*/
  padding: 30px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  max-width: 1080px;
}

.flight-reservation h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111;
}

.flight-reservation p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
}
/* Section 3 Styles */
.airline-info {
  background: #fff;
  padding: 30px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  max-width: 1080px;
}

.airline-info h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #111;
}

.airline-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}


  section.testimonials {
      max-width: 1200px;
      margin: auto;
      padding: 50px 20px;
      text-align: center;
    }

    section.testimonials h2 {
      font-size: 26px;
      margin-bottom: 30px;
      font-weight: bold;
      color: #0a1a44;
    }

    .slider-container {
      position: relative;
      overflow: hidden;
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin: 0 10px;
      padding: 20px;
      flex: 0 0 300px;
      text-align: center;
    }

    .testimonial img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    .testimonial h3 {
      margin: 10px 0 5px;
      font-size: 18px;
      font-weight: bold;
    }

    .stars {
      color: #FFD700;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .testimonial p {
      font-size: 14px;
      color: #555;
    }

    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #3c2dbd;
      color: #fff;
      border: none;
      border-radius: 50%;

      font-size: 18px;
      cursor: pointer;
      z-index: 10;
    }

    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }

.cta-section {
  background: linear-gradient(135deg, #1a73e8, #0f3460);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1100px;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  background: #ff4b5c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #ff2e44;
  transform: translateY(-3px);
}
/*
.site-footer {
  background: #000;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-disclaimer h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff6b35;
}

.footer-disclaimer p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 25px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-links a {
  display: inline-block;
  margin: 0 12px;
  color:#ff6b35;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}*/

    footer {
      background: #0b0f1a;
      color: #fff;
      padding: 50px 0px 0px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-logo img {
      width: 70px;
      margin-bottom: 10px;
    }

    .footer-logo h3 {
      margin: 20px 0px;
      font-size: 20px;
      font-weight: bold;
    }

    .footer-logo p {
      font-size: 16px;
      line-height: 1.6;
      color: #bbb;
    }

    .footer-logo .cards img {
      height: 40px;
      margin-right: 10px;
      margin-top: 15px;
    }

    .footer-col h4 {
      font-size: 16px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #bbb;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      background: #fff;
      color: #000;
      font-size: 14px;
      text-align: center;
      padding: 10px;
      margin-top: 30px;
    }

    .footer-bottom span {
      float: right;
    }

    .footer-bottom span a {
      color: #007bff;
      text-decoration: none;
    }

    .footer-bottom span a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-bottom span {
        float: none;
        display: block;
        margin-top: 8px;
      }
    }
.about-section {
  background: #f7f9fc;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns by default */
  gap: 30px;
}

.about-block {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-block:hover {
  transform: translateY(-5px);
}

.about-block h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0f3460;
}

.about-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Tablets */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr; /* Force single column */
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .about-section {
    padding: 40px 15px;
  }
  .about-container {
    grid-template-columns: 1fr !important; /* Force single column */
  }
  .about-block {
    padding: 20px;
  }
  .about-block h2 {
    font-size: 20px;
  }
  .about-block p {
    font-size: 14px;
  }
}
.contact-section {
  background: #eef3f8;
  padding: 70px 20px;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns by default */
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-size: 26px;
  color: #0f3460;
  margin-bottom: 15px;
}

.contact-info p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.contact-form form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

button {
  background: #0f3460;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #162d52;
  color: #fff;
}

/* Responsive Styles */

/* Tablets */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-info p,
  .contact-info ul li {
    font-size: 14px;
  }

  .contact-form form {
    padding: 20px;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .contact-info p,
  .contact-info ul li {
    font-size: 13px;
  }

  .contact-form form {
    padding: 15px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 13px;
  }

  button {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.faq-section {
  padding: 60px 20px;
  background: #f8f9fc;
  font-family: Arial, sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-container h2 {
  font-size: 28px;
  color: #0f3460;
  margin-bottom: 10px;
}

.faq-container p {
  color: #444;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  color: #0f3460;
  outline: none;
}

.faq-answer {
  display: none;
  padding: 20px 15px 15px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.faq-question.active {
  /*color: #fff;*/
  color: #fff;
  background: #0f3460;

}

.travel-platforms {
  padding: 50px 20px;
  background: #f9fbfd;
}
.travel-platforms .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}
.travel-platforms .intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}
.platform {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.platform-logo {
  width: 90px;
  margin-right: 20px;
}
.platform-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #003366;
}
.platform-info p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
 /* Container to prevent full width */
 
    /* Breadcrumb */
    .breadcrumb {
      font-size: 14px;
      margin-bottom: 15px;
      margin-top: 30px;
    }

    .breadcrumb a {
      color: #4a3aff;
      text-decoration: none;
    }

    .breadcrumb span {
      color: #555;
      margin: 0 5px;
    }

    /* Card Section */
    .card {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      margin-top:50px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .card h3{
      padding: 10px 0px 20px;
      font-weight: bold;
    }

    .card h1 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #0a0a0a;
      line-height: 1.4;
    }

    /* Tag Link */
    .tag {
      display: inline-block;
      padding: 6px 12px;
      background: #f0edff;
      color: #4a3aff;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .tag:hover {
      background: #e0dcff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .card h1 {
        font-size: 20px;
      }
      .sidebar {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .card {
        padding: 15px;
      }
      .card h1 {
        font-size: 18px;
      }
      .breadcrumb {
        font-size: 12px;
      }
    }

    .content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.main-content {
  flex: 3;
}

.sidebar {
  flex: 1;
  position: sticky;
  top: 20px;   /* keeps it fixed when scrolling */
}

.sidebar h3 {
  background: #6a0fff;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: #4a3aff;
  text-decoration: none;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}
