body {
	font-family: 'Segoe UI', sans-serif;
}

.top-header {
	font-size: 14px;
	border-bottom: 1px solid #eee;
	padding: 5px 0;
}

.top-header a {
	color: #333;
	text-decoration: none;
	margin-right: 20px;
}

.navbar-brand img {
	height: 45px;
}

.main-nav .nav-link {
	font-weight: 500;
	color: #000;
	display: flex;
	align-items: center;
	gap: 5px;
}

.main-nav .nav-link:hover {
	color: #007bff;
}

.login-btn {
	background: #ff7b39;
	color: #fff !important;
	border-radius: 20px;
	padding: 5px 16px;
	font-weight: 500;
}

/* Flight Search Section */
.flight-search-section {
	background: linear-gradient(90deg, #46c1f6, #ff7b39);
	padding: 30px 0;
	color: #000;
}

.trip-type-tabs .btn {
	margin-right: 10px;
	font-weight: 500;
	border-radius: 50px;
}

.trip-type-tabs .active {
	background-color: #ff7b39;
	color: #fff;
}

.search-card {
	border-radius: 12px;
	overflow: hidden;
}

.search-card h4 {
	font-size: 1.25rem;
}

.search-card small {
	font-size: 0.85rem;
}

.special-fares label {
	font-size: 0.9rem;
	color: #fff;
	margin-right: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.search-card .row {
		flex-direction: column;
	}

	.search-card .col-md {
		border-right: none !important;
		border-bottom: 1px solid #eee;
	}

	.search-card .col-md-auto {
		text-align: center;
	}
}

/* Mobile Menu */
@media (max-width: 991px) {
	.top-header {
		display: none;
	}

	.main-nav .nav-link {
		padding: 10px 0;
		border-bottom: 1px solid #f1f1f1;
	}
}

/* Banner */
.banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #e6f7e6;
	padding: 20px;
	border-radius: 12px;
	margin: 20px;
}

.banner h2 {
	font-size: 22px;
}

.banner h2 span {
	color: green;
}

.banner p {
	margin: 10px 0;
	font-size: 14px;
	color: #555;
}

.banner-img img {
	max-width: 120px;
}

.donate-btn {
	background: #ff5722;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	cursor: pointer;
}

/* Deals */
.deals {
	text-align: center;
	margin: 40px 20px;
}

.deals h2 {
	font-size: 26px;
	margin-bottom: 20px;
}

.deals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.deal-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: transform 0.3s;
}

.deal-card:hover {
	transform: scale(1.05);
}

.deal-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.deal-info {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px;
	text-align: left;
}

.deal-info h3 {
	margin: 0;
	font-size: 18px;
}

.deal-info p {
	margin: 2px 0 0;
	font-size: 14px;
}

.b2b-alt {
	padding: 70px 10%;
	background: linear-gradient(135deg, #f9f9f9, #fff);
	font-family: Arial, sans-serif;
}

.b2b-alt-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.b2b-alt-image {
	flex: 1;
	text-align: center;
	min-width: 320px;
}

.b2b-alt-image img {
	max-width: 100%;
	border-radius: 20px;
	box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.b2b-alt-image img:hover {
	transform: scale(1.05);
}

.b2b-alt-content {
	flex: 1;
	min-width: 320px;
}

.b2b-alt-content h2 {
	font-size: 30px;
	margin-bottom: 20px;
	color: #222;
}

.b2b-alt-content p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 40px;
}

.b2b-alt-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.alt-feature {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: all 0.3s ease;
}

.alt-feature:hover {
	transform: translateY(-5px);
	box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
}

.alt-feature i {
	font-size: 28px;
	color: #f26522;
	margin-bottom: 10px;
}

.alt-feature h4 {
	font-size: 18px;
	margin: 5px 0;
	color: #222;
}

.alt-feature p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
	.b2b-alt-container {
		flex-direction: column-reverse;
		text-align: center;
	}

	.b2b-alt-features {
		grid-template-columns: 1fr;
	}
}

/* ===== Register As Section Style ===== */
.register-section {
	text-align: center;
	padding: 60px 20px;
	background: #0dcaf0;
}

.register-section h2 {
	text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.register-section .subtitle {
	color: #777;
	font-size: 14px;
	margin-bottom: 40px;
}

.register-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: auto;
}

.register-container .card {
	background: #fff;
	padding: 30px 20px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	flex: 1;
	min-width: 280px;
	max-width: 320px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.register-container .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.register-container .card i {
	font-size: 40px;
	color: #ff6600;
	margin-bottom: 15px;
}

.register-container .card h3 {
	font-size: 20px;
	margin: 10px 0;
	color: #222;
}

.register-container .card p {
	font-size: 14px;
	color: #555;
	margin-bottom: 15px;
}

.register-container .card a {
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	color: #ff6600;
	transition: 0.3s;
}

.register-container .card a:hover {
	color: #cc5200;
}

/* ===== Flyon 24 Advantages Section ===== */
.advantages-section {
	padding: 70px 20px;
	background: #f8f9fc;
	text-align: center;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 50px;
	color: #222;
}

.advantages-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: auto;
}

.advantage-card {
	background: #fff;
	padding: 30px 20px;
	border-radius: 14px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.advantage-card .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6600, #ff944d);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
}

.advantage-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 15px 0 10px;
	color: #333;
}

.advantage-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

/* ===== Footer Section ===== */
.footer {
	background: #1e1e2f;
	color: #ddd;
	padding: 60px 20px 20px;
	font-family: 'Segoe UI', sans-serif;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: auto;
}

.footer-logo {
	font-size: 24px;
	font-weight: 700;
	color: #ff6600;
	margin-bottom: 15px;
}

.footer-col h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fff;
}

.footer-col p,
.footer-col ul li {
	font-size: 14px;
	line-height: 1.6;
	color: #ccc;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li i {
	margin-right: 8px;
	color: #ff6600;
}

.footer-col a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col a:hover {
	color: #ff6600;
}

.social-icons a {
	display: inline-block;
	margin-right: 12px;
	font-size: 16px;
	color: #fff;
	background: #ff6600;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	text-align: center;
	transition: background 0.3s ease;
}

.social-icons a:hover {
	background: #ff944d;
}

.footer-bottom {
	border-top: 1px solid #333;
	text-align: center;
	margin-top: 30px;
	padding-top: 15px;
}

.footer-bottom p {
	font-size: 13px;
	color: #999;
}
.flight-routes-section {
  padding: 60px 20px;
  background: #f9fbff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.route-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.route-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 16px;
}

.route-info .route-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.route-info .route-code {
  font-size: 16px;
  color: #0d6efd;
  font-weight: 500;
  margin-top: 4px;
}

.route-info .route-code span {
  margin: 0 6px;
  color: #333;
}

.cta-modern-section {
  background: linear-gradient(to right, #f0f4ff, #eef6ff);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card {
  background-color: #fff;
  flex: 1 1 300px;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.cta-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #111;
}

.cta-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.cta-modern-btn {
  display: inline-block;
  background-color: #0d6efd;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta-modern-btn:hover {
  background-color: #084ccf;
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4);
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }
}

/* ===== User Dropdown ===== */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.user-btn:hover {
  background: #f5f5f5;
}

.user-btn img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 8px;
}

.username {
  font-size: 14px;
  font-weight: 600;
  margin-right: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #f0f0f0;
  color: #ff6600;
}

.dropdown-content a i {
  width: 18px;
  color: #ff6600;
}

/* Show dropdown on hover */
.user-dropdown:hover .dropdown-content {
  display: block;
}
/* ===== Login Form Style ===== */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.login-container form {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-input {
  padding: 6px 15px;
  border: 1px solid #ddd;
  border-radius: 50px;
  outline: none;
  font-size: 14px;
  width: 180px;
  transition: border 0.3s;
}

.login-input:focus {
  border-color: #ff6600;
}

.login-btn:hover {
  background: #e65c00;
}
