.navbar-custom {
  background: linear-gradient(90deg, #004aad, #0088ff);
  transition: background 0.5s ease;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: white !important;
}

.navbar-custom .nav-link:hover {
  color: #ffd700 !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* CTA Button */
.btn-call {
  background-color: #ffd700;
  color: #003366;
  font-weight: bold;
  border-radius: 50px;
  padding: 6px 20px;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background-color: #ffc107;
  color: #002244;
}

/*Hero Section */
.hero-section h1 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-section ul li {
  transition: transform 0.2s ease;
}

.hero-section ul li:hover {
  transform: scale(1.05);
}

.btn-warning:hover {
  background-color: #ffb300;
  color: #fff;
}

/*Sub-heading Content*/
.widget-title {
  margin-bottom: 20px;

  color: #003a75;
}
/*Affordable Flight Deals*/
.deal-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.deal-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid #0e4d92;
  transition: transform 0.3s ease;
}
.deal-card:hover .deal-image {
  transform: scale(1.05);
}
/*Discover Gateways*/
:root {
  --primary-color: #0d6efd;
  --text-color: #333;
  --bg-color: #fff;
  --border-color: #e0e0e0;
  --hover-bg: #f8f9fa;
}

.destination-card {
  background: var(--bg-color);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.destination-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  background: var(--hover-bg);
}

.destination-card__image img {
  border-radius: 6px;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-card__image:hover img {
  transform: scale(1.03);
}

.destination-card__info {
  padding: 16px;
}

.destination-card__city {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-color);
}

.destination-card__details {
  font-size: 0.9rem;
  color: #666;
  margin-top: 4px;
}


/*Footer*/
.web-footer {
  background: #072142;
}

.footer-link {
  color: #ffffffcc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #00bfff;
  text-decoration: underline;
}

.web-footer ul li {
  transition: transform 0.2s ease;
}

.web-footer ul li:hover {
  transform: scale(1.05);
}
