.navbar {
  background: linear-gradient(to right, #210340, #63362f);
  transition: background-color 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Navbar Styling */
body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  background-color: rgb(248 250 252);
}

.navbar-brand {
  color: var(--bs-danger-border-subtle) !important;
  font-weight: bold;
  font-size: 22px;
}

.navbar-nav {
  gap: 20px;
}

.navbar-toggler {
  background-color: white;
}

/* Icons spacing */
.navbar-nav .nav-link i {
  margin-right: 8px;
}

/* Hover & Active State */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #fff !important;
  /* background: #ff9800; */
  border-radius: 10px;
  padding: 5px 15px;
}

/* Navbar links styling */
.navbar-nav .nav-link {
  color: var(--bs-danger-border-subtle) !important;
  font-size: 16px;
  padding: 10px 15px;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Icons spacing */
.navbar-nav .nav-link i {
  margin-right: 8px;
}
/* Phone Number Styling */
.phone-number {
  font-weight: bold;
  font-size: 18px;

  color: white !important;
  padding: 8px 15px;
  border-radius: 10px;
  transition: background 0.3s ease-in-out;
}

.phone-number:hover {
  /* background: #e68900; */
  color: white !important;
}
/* Hero */
.hero {
  background: linear-gradient(to right, #1a1f36, #dc3545);
  color: white;
  padding: 120px 20px 100px;
  text-align: center;
}

.hero h1 {
  font-size: 109px;
}

.cta-btn {
  background-color: #fff;
  color: #1a1f36;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  margin-top: 20px;
}

.card {
  border: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}
/* Tagline badge */
.tagline {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #ef4444, #8b5cf6);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin: 2rem 0;
  font-size: 1rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tagline:hover {
  background: linear-gradient(to right, #2563eb, #ef4444);
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
/* Flight Search Section */

.flight-form {
  position: relative;
  top: -99px;
  background: white;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trip-type {
  display: flex;
  gap: 20px;
}

.trip-type input {
  accent-color: #ff9800;
}

.bg-light {
  background-color: #f8f9fa !important;
}
/*why trust with us*/
.step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.speed-icon {
  background-color: #210340;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speed-icon:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); */
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.security-icon {
  background-color: #6d28d9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.price-icon {
  background-color: #63362f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.support-icon {
  background: linear-gradient(to right, #dc2626, #ea580c);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.step-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
/*Exclusive Flash Deals*/
.exclusive-flash-deals {
  background: linear-gradient(to right, #dc3545, #d63384);
}

.flash-deals {
  background: linear-gradient(to right, #ef4444, #f97316);
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  margin: 2rem 0;
  font-size: 1rem;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Container Grid */
.flight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
}

@media (min-width: 640px) {
  .flight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .flight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .flight-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card Styling */
.flight-card {
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
  transition: background 0.4s ease, transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
}

/* Example Gradient Themes */
.blue-purple {
  background: linear-gradient(to bottom right, #2563eb, #7c3aed);
}

.blue-purple:hover {
  background: linear-gradient(to bottom right, #1e40af, #6b21a8);
}

.green-teal {
  background: linear-gradient(to bottom right, #059669, #0d9488);
}

.green-teal:hover {
  background: linear-gradient(to bottom right, #047857, #0f766e);
}

.purple-pink {
  background: linear-gradient(to bottom right, #9333ea, #db2777);
}

.purple-pink:hover {
  background: linear-gradient(to bottom right, #7e22ce, #be185d);
}

.yellow-red {
  background: linear-gradient(to bottom right, #f59e0b, #ef4444);
}

.yellow-red:hover {
  background: linear-gradient(to bottom right, #d97706, #dc2626);
}

/* Text Styling */
.flight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.flight-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Price */
.flight-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

/* Discount badge */
.discount-badge {
  background: #f97316;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-left: auto;
}

/* CTA Button */
.flight-card .cta {
  background: #fff;
  color: black;

  font-weight: 700;
  width: 100%;
  border: none;
  padding: 0.75rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-card .cta:hover {
  background: #f3f4f6;
}
/*Ready to travel*/
@keyframes bluePurpleBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.ready-to-travel {
  background: linear-gradient(
    270deg,
    #312e81,
    #4f46e5,
    #c562af,
    #312e81,
    #7e22ce,
    #be185d
  );
  background-size: 800% 800%;
  animation: bluePurpleBackground 15s ease infinite;
  padding: 60px 20px;
}
/*Contact us*/
.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 2px solid #0e4d92;
  border-radius: 0;
  background-color: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: none;
  border-bottom: 2px solid #00bfa6;
}

.contact-section {
  background: #f5f5f5;
  padding: 60px 0;
}

/*footer*/
.web-footer {
  background: linear-gradient(to right, #210340, #63362f);
}

.footer-link {
  color: #ffffffcc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #00bfff;
  text-decoration: underline;
}
