.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: Space Grotesk Light;

  background-color: rgb(248 250 252);
}


.navbar-brand {
  color: white !important;
  font-weight: bold;
  font-size: 22px;
}

.navbar-nav {
  gap: 20px;
}

.navbar-toggler {
  background-color: white;
}

/* Navbar links styling */
.navbar-nav .nav-link {
  color: white !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;
}

/* 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 Styling */
body {
  font-family: Space Grotesk Light;

  background-color: rgb(248 250 252);
}


.navbar-brand {
  color: white !important;
  font-weight: bold;
  font-size: 22px;
}

.navbar-nav {
  gap: 20px;
}

.navbar-toggler {
  background-color: white;
}

/* Navbar links styling */
.navbar-nav .nav-link {
  color: white !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;
}
/* 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;
}

/* Base section styling */
.stats-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
}

/* Header text */
.stats-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.stats-header p {
  font-size: 1.2rem;
  color: #6b7280;
}

/* Tagline badge */
.tagline {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #3b82f6, #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, #7c3aed);
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Button group layout */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Begin Adventure */
.btn.start {
  background: linear-gradient(to right, #2563eb, #7c3aed);
}

.btn.start:hover {
  background: linear-gradient(to right, #1d4ed8, #6d28d9);
}

/* Call Now */
.btn.call {
  background: linear-gradient(to right, #ef4444, #f97316);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn.call:hover {
  background: linear-gradient(to right, #dc2626, #ea580c);
  border-color: rgba(255, 255, 255, 0.3);
}

/* step-card why book with us*/
.step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  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);
}

.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, #1d4ed8, #6d28d9);
}

.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;
}

/* About us page*/
.about-us-title {
  background-color: #072e64;
}

/*Contact Us Section*/
.contact-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 30px;
  font-weight: 600;
  color: #333;
}



.btn-custom {
  background: linear-gradient(to right, #210340, #F58735);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
  transition: 0.4s;
}

.btn-custom:hover {
  background: #0E4D92;
  color: #fff;
}

.contact-info {
  margin-top: 30px;
}

.contact-info h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 0;
  color: #555;
}

/*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;
}