*{
  margin: 0%;
  padding: 0%;
  
  }
  html {
    margin: 0%;
    padding: 0%;
    scroll-behavior: smooth;
  }
  .fa-envelope, .fa-phone-alt{
  font-size: 22px !important;
  }
  .fa-home, .fa-ticket-alt, .fa-map-marker-alt, .fa-globe, .fa-passport, .fa-user-tie, .fa-phone {
    font-size: 16px !important; /* Adjusted icon size */
    margin-right: 4px !important; /* Increased spacing */
  }
  
  .nav-link {
      font-size: 15px !important;
      margin-left: 10px;
      transition: color 0.3s ease-in-out;
  }
  
  .fa-headset{
    color: #007bff !important;
  }
  .phoneicon,.emailicon{
    color: black !important;
  }
  
  .navbar-brand {
      font-size: 20px;
      letter-spacing: 1px;
  }
  .Brand-logo{
      height: 10vh;
      padding-right: 3vh;
  }
  .Brand-Name{
      height: 4vh;
  }
.navbar {
  background: linear-gradient(90deg, rgba(7, 21, 32, 1) 0%, rgba(13, 57, 86, 1) 35%, rgba(15, 27, 45, 1) 100%) !important;
  box-shadow: 2px 5px 9px 0px black;
  /* background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1)); */
}

.navbar-brand img {
    height: 50px;
}

.top-bar {
    background-color: rgb(29, 30, 31);
    /* background-color: rgb(14, 76, 124); */
    color: #fff;
    font-size: 0.9rem;
    padding: 5px 15px;
}

.nav-link {
color: #ffffff !important; /* White text color */
border-radius: 8px; /* Rounded corners */
padding: 0.5rem; /* Padding for clickable area */
transition: all 0.3s ease-out; /* Smooth transition for hover effects */
position: relative; /* For pseudo-element effects */
text-decoration: none; /* Remove underline */
}

/* Hover effect */
.nav-link:hover {
background-color: rgba(255, 255, 255, 0.1); /* Light background on hover */
transform: translateY(-2px); /* Slight lift effect */
}

/* Active link styling */
.nav-link.active {
background-color: rgba(255, 255, 255, 0.2); /* Slightly darker background for active link */
font-weight: bold; /* Bold text for active link */
}

/* Underline effect on hover */
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
background-color: #ffffff; /* White underline */
bottom: 0;
left: 50%;
transform: translateX(-50%);
transition: width 0.3s ease-out;
}

.nav-link:hover::after {
width: 100%; /* Full width underline on hover */
}
@media (max-width: 480px) {
    .welcome {
      font-size: 2.5rem;
    }
    .word {
      font-size: 1.2rem;
    }
  }
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .whatsapp-btn:hover {
    transform: scale(1.1);
  }

  .whatsapp-btn img {
    width: 30px;
    height: 30px;
  }
  body {
            
    cursor: default; /* Cursor remains visible */
    margin: 0%;
    padding: 0%;
}


.bgimage {
  position: relative;
  background-image: url('./pexels-pixabay-459402.jpg')!important;
  background-size: cover;
  background-attachment: fixed !important;
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1; /* Ensure content is above the overlay */
}

/* Black Transparent Layer */
.bgimage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Adjust transparency (0.6 = 60% black) */
  z-index: -1; /* Push the overlay behind the content */
}


.airline-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  min-height: 30px !important;
}

.airline-card img {
  width: 100%;
  height: auto;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 15px;
  transform: scale(1);
  object-fit: cover; 
 
}

.airline-card:hover {
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
  transform: translateY(-4px);
}

.airline-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1.1);
}

.book-now-btn {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-now-btn::after {
  content: '→';
  font-weight: 700;
  transition: transform 0.3s ease;
}

.airline-card:hover .book-now-btn {
  opacity: 1;
  top: 50%;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35);
  transform: translate(-50%, -50%) scale(1.05);
}

.book-now-btn:hover::after {
  transform: translateX(3px);
}


.airline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.airline-card:hover::before {
  opacity: 1;
}

.airline-card > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) { 
  .book-now-btn {
    white-space: nowrap;
    position: relative; 
    top: auto;
    left: auto;
    transform: none;
    display: inline-flex; 
    width: 100%; 
    text-align: center;
    justify-content: center;
    margin: 10px auto; 
    opacity: 1; 
    padding: 10px 20px;
  }
  .book-now-btn::after {
    display: none;
  }
  .airline-card {
    padding-bottom: 16px; 
  }
  
  .airline-card:hover .book-now-btn {
    top: auto;
    transform: none !important;
  }
}



.text-style{
  font-family:Georgia, 'Times New Roman', Times, serif ;
color: white;
  font-size:4rem;
  padding-inline-start: 127px;
  padding-top: 40px;

  
}

.fa-solid, .fas {
  font-weight: 900;
  color: white;
  font-size: xx-large;
 
}
.text{
  font-family: Arial, sans-serif;
  font-size:1.5rem;
  padding-left: 82px;
  color: white;
  
}
.footer-addresses {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #ffffff;
  padding-left: 130px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-addresses div {
  flex: 1;
  min-width: 250px;
}

.footer-addresses h4 {
  font-size: 1.2em;
  color: #f1c40f; 
}

.footer-addresses p {
  font-size: 0.95em;
  margin: 0;
}
.contact-info {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
padding-left: 125px;
  border-radius: 8px;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  font-size: 1.5em;
  color: #f1c40f;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact-info i {
  text-decoration: none;
  color: #3498db;
  font-weight: bold;
}

.contact-info i:hover {
  color: #2980b9;
  text-decoration: underline;
}
.bg-image {
  position: relative;
  background-image: url('./umerah.jpg')!important;
  background-size: cover;
  background-attachment: fixed !important;
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1; 
}

/* Black Transparent Layer */
.bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: -1; 
}


.p-top {
  column-count: 1; 
  column-gap: 40px; 
  text-align: justify; 
  line-height: 1.6; 
}

@media (max-width: 768px) {
 
  .airline-card img {
   
    object-fit: cover;
  }

  
  
  .p-top {
      column-count: 1; 
  }
  .contact-info {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
  padding-left: 40px !important;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .text{
    padding-left: 40px !important;
  }
  .footer-addresses {
   
    color: #ffffff;
    padding-left: 40px !important;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .text-style{
    font-size: 40px !important;
    }
   .navbar-brand{
    font-size: 10px !important;
   }
   .navbar{
    padding-left: 20px !important;
   }
   .footer-image{
    width: 20rem !important;
    height: auto;
    padding: 50px 0px 40px 80px;
    
     }
  .text-style{
  font-size: 40px !important;
  
    
  }
    .phone-font{
    padding-top: 8px;
    font-size: 10px;
  }
  .iframe{
    display: none !important;
  }
  .iframe-width{
 display: none;
  
  }
}

.contact-infoo {
  text-align: center; 
  font-family: Arial, sans-serif; 
  color: #333; 
  padding: 20px; 
  border-radius: 10px; 
  max-width: 300px; 
  margin: 0 auto; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.phone-icon {
  font-size: 2.5rem; 
  color: #ff9900 !important; 
  margin-right: 10px; 
}

/* Style the "Call Us Any Time!" text */
.call-text {
  font-size: 1.2rem;
  font-weight: bold; 
  color: #ff9900;
  display: inline-block; 
  margin-bottom: 10px;
}

/* Style the phone number */
.phone-number {
  font-size: 1.3rem; 
  font-family: 'Courier New', monospace; 
  color: white; 
  font-weight: bold;
}

.bgImage {
  position: relative;
  background-image: url('./madinah.jpg')!important;
  background-size: cover;
  background-attachment: fixed !important;
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 1; 
}

/* Black Transparent Layer */
.bgImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: -1; 
}
.card-count {
  margin-top: 50px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.counter-container {
  padding: 10px;

  border-radius: 10px;
  text-align: center;
  font-size: 2rem;
  color: #4CAF50;

}

.counter {
  font-weight: bold;
}



.footer-image{
  width: 30rem;
  height: auto;
  padding: 50px 0px 50px 120px;
  
   }
   