body {
  font-family: 'Poppins', sans-serif;
  padding: 10px;
  background: #f5f5f5;
}
h2, h5 { text-align: center; }
h2 { margin-top: 2rem; }
h5 { margin-bottom: 2rem; }

nav.navbar {
  background: linear-gradient(135deg, #0d6efd, #000);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
nav .navbar-brand,
nav .nav-link {
  color: #fff !important;
  transition: color 0.3s ease;
}
nav .nav-link:hover { color: #71a5f1 !important; }
.navbar-toggler { border-color: rgba(255, 255, 255, 0.5); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero {
  background: url('Images/airport-aircraft-airplane-aviation-transportation-travel.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh; /* یکم بزرگتر از قبل */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideIn 1.2s ease-out forwards, floatHero 4s ease-in-out infinite;
}
@keyframes fadeSlideIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.search-form .form-control {
  border-radius: 5px;
  padding: 10px;
}
.search-form input[type="date"] { cursor: pointer; }

.custom-blue-btn {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  transition: background 0.3s, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.custom-blue-btn:hover { background-color: #0b5ed7; color: white; }

.card {
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  perspective: 1000px;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  text-align: center;
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.footer {
  background: linear-gradient(135deg, #0d6efd, #000);
  color: #fff;
  border-radius: 8px;
  
}
.footer-link {
  color: #ddd;
  text-decoration: none;
  display:block;
  text-align: center;
  justify-content: center;
  margin: 5px 0;
  transition: color 0.3s ease;
}
.footer-link:hover { color: #5a8edd; }
.social-icon {
  width: 45px;
  height: 45px;
  background: #222;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: transform 0.3s ease, background 0.3s ease;}
.social-icon:hover {
  background: #0d6efd;
  transform: translateY(-5px);
}
.see-all-flight-of-us { text-align: center; margin: 2rem 0; }
#trust-skyfky{
    text-align: center;
    justify-content: center;
}