* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.header {
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  /* Adjust logo size */
  margin-right: 10px;
}

.logo span {
  font-size: 1.5em;
  font-weight: bold;
}

.nav {
  display: flex;
}

.nav a {
  color: #555;
  text-decoration: none;
  margin-left: 20px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav a:hover {
  background-color: #ef5a07;
}

.nav i {
  margin-right: 5px;
}

.contact-number {
  font-weight: bold;
  color: #007bff;
}

.hamburger-menu {
  display: none;
  /* Hidden by default on larger screens */
  font-size: 1.5em;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 60px;
  /* Adjust based on header height */
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.mobile-nav a {
  color: #555;
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav i {
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav {
    display: none;
    /* Hide the full navigation on smaller screens */
  }

  .contact-number {
    display: none;
    /* Optionally hide contact number on smaller screens */
  }

  .hamburger-menu {
    display: block;
    /* Show the hamburger menu */
  }
}

/* JavaScript to toggle the mobile navigation */
.mobile-nav.open {
  display: flex;
}

.contact-number {
  color: #ff5c00;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .contact-number {
    display: none;

  }
}

.contact-call {
  background-color: #ff8c00;
  /* Orange background */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: none;
}

.contact-call h3 {
  margin-bottom: 5px;
  font-size: 1em;
  text-align: center;

}

.contact-call p {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

/* Show the contact bar when screen width is 1024px or less */
@media (max-width: 1024px) {
  .contact-call {
    display: block;
  }
}

/* ==========================================header end====================================== */
/* Hero Section */
.hero {
  background: url('images/hero.jpg') center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 1200px;
  width: 90%;
  color: #fff;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}

.search-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  color: #333;
}

.trip-type {
  display: flex;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #888;
}

.trip-type input[type="radio"] {
  margin-right: 6px;
  accent-color: #007aff;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
  min-width: 150px;
}

.input-group label {
  font-size: 0.75rem;
  color: #888;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background-color: #f9f9f9;
}

.input-box i {
  margin-right: 8px;
  color: #555;
}

.input-box input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 1rem;
}

.search-btn {
  background-color: #f26522;
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-end;
  margin-top: 24px;
}

.search-btn:hover {
  background-color: #d8551c;
}

/* Feature Cards */
.feature-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 60px;
  background-color: #fff;
  z-index: 1000;
}

.feature-card {
  background-color: #e9f0f4;
  padding: 15px 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 40%;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 30px;
  color: #0a2a4d;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-card h3 {
  color: #1c3b57;
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* Responsive Fixes */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .feature-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;

  }

  .hero {
    height: auto;
    padding: 40px 0;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .search-box {
    padding: 20px;
  }
}


/* =========================================Today's Top Destinations============================= */
.top-destinations {
  text-align: center;
  padding: 40px 60px;
  background-color: #f9f9f9;
}

.top-destinations h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.destinations-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  justify-items: center;
}

.destination-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 320px;
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 16px;
  text-align: left;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.card-content p {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #333;
}
@media (max-width: 768px) {
  .top-destinations {
    padding: 20px;
  }
  

}

/* =========================================INTERNATIONAL VACATION PACKAGES============================= */
.vacation-packages {
  background-color: #ffefe8;
  padding: 60px 60px;
  text-align: center;
  
}

.vacation-packages h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #f15a07;
  margin-bottom: 40px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 100%;
  transition: transform 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.package-details {
  padding: 16px;
  text-align: left;
}

.package-details h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #003b5b;
  margin-bottom: 8px;
}

.package-details p {
  margin: 4px 0;
  font-size: 1rem;
  color: #333;
}

.package-details p span {
  color: #f15a07;
  font-weight: 600;
}

.package-details .note {
  color: #333;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .vacation-packages {
    padding: 20px;
    width: 100%;
  }
  .vacation-packages h2{
    font-size: 1rem;
    font-weight: 700;
    color: #f15a07;
    margin-bottom: 30px;
  }
 .package-card  {
  width: 90%;

}
  

}

/* =========================================About VACATION PACKAGES============================= */

.icon_size {
  width: 30px;
  height: 30px;

}

.about-section {
  background-color: #ffffff;
  padding: 20px 60px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  padding: 20px 20px;
}

.about-section .container {
  max-width: 900px;
  margin: auto;
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #f15a07;
  margin-bottom: 20px;
}

.about-section h2 span {
  color: #000;
}

.about-section .subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}

.about-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003b5b;
  margin-top: 30px;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.8;
}

.about-section ul li strong {
  color: #000;
}
@media (max-width: 768px) {
  .about-section {
    padding: 20px;
  }

}
  




/* ===================================================footer=================================== */

footer {
  background-color: #2c3e50;
  /* Dark background color */
  color: #fff;
  padding: 40px 60px;
}


.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid #444;
}
.quick-links,
.contact-info,
.payment-methods,p {
  flex: 1;
  margin-right: 20px;
  text-align: start;

}

.quick-links:last-child,
.contact-info:last-child,
.payment-methods:last-child {
  margin-right: 0;
}

h3 {
  color: #eee;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: start;
}

ul {
  list-style: none;
  text-align: start;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 8px;
  
}

a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #000;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info i {
  margin-right: 5px;
}

/* .payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icons img {
  height: 24px;
 
} */
.payment-icons {
  display: flex;
  gap: 10px;
  align-items: start;
}

.payment-icons img {
  height: 24px; /* Adjust as needed */
}

@media (max-width: 640px) {
  .payment-icons {
    display: grid;
    grid-template-columns: repeat(3, auto); 
    justify-content: flex-start; 
  }
}

/* For screens 768px and above (larger screens) */
@media (min-width: 641px) {
  .payment-icons {
    display: grid;
    grid-template-columns: repeat(6, auto); /* Creates 6 columns with automatic width */
    justify-content: flex-start; /* Adjust as needed */
  }
}
.disclaimer {
  padding: 20px 0;
  font-size: 0.8em;
  color: #bbb;
  line-height: 1.5;
}

.disclaimer strong {
  color: #ddd;
}

.copyright {
  text-align: center;
  padding-top: 15px;
  font-size: 0.9em;
  color: #999;
}

.disclaimer-para {
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* Two columns on tablets */
  }
  h3,ul,.contact-info p{
    padding: 0px 20px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .quick-links,
  .contact-info,
  .payment-methods {
    width: 80%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  footer{
  padding: 20px;

  }
  .payment-icons {
    justify-content: center;
  }
}

.payment-method-logo {
  height: 50px;
  /* Adjust as needed */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: auto;
  /* Let the width adjust based on content */
}

/* @media (max-width: 480px) {
  .quick-links, .contact-info {
      width: 95%;

  }
}

@media (max-width: 600px) {
  .payment-methods {
      gap: 10px;
  }

  .payment-method-logo {
      height: 40px;
  }
}

@media (max-width: 580px) {
  .payment-methods {
      width: 95%;
      justify-content: space-around; /* Distribute logos evenly */
}

.payment-method-logo {
  width: calc(33.33% - 10px);
  /* Roughly one-third width with some margin */
  height: auto;
  /* Adjust height proportionally */
  margin-bottom: 10px;
  /* Add some vertical spacing */
}
}

/* ======================================about and contact page css=============================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 00px;
}

/* Contact Banner */
.contact-banner {
  background-image: url('/images/aboutimg.jpg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.contact-banner .container h1 {
  margin-bottom: 10px;
  font-size: 2.5em;
}

.contact-banner .container p a {
  color: #ddd;
  text-decoration: none;
}

.contact-banner .container p a:hover {
  text-decoration: underline;
}

/* Contact Details Section */
.contact-details {
  padding: 40px 60px;
  background-color: #f9f9f9;
}

.contact-details .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-details .contact-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  min-width: 200px;
  /* Minimum width for each item */
  flex-grow: 1;
  /* Allow items to grow and fill available space */
}

.contact-details .icon-wrapper {
  background-color: #e0f7fa;
  /* Light teal background */
  color: #00acc1;
  /* Teal icon color */
  border-radius: 50%;
  padding: 15px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.2em;
}

.contact-details .icon-wrapper i {
  font-size: 1.5em;
}

.contact-details .text-wrapper h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #333;
  font-size: 1.1em;
}

.contact-details .text-wrapper p {
  color: #555;
  margin-bottom: 0;
  font-size: 0.95em;
}

.contact-details .text-wrapper p a {
  color: #00acc1;
  text-decoration: none;
}

.contact-details .text-wrapper p a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-banner {
    padding: 60px 20px;
    text-align: center;
  }

  .contact-banner .container h1 {
    font-size: 2em;
  }

  .contact-details .contact-item {
    min-width: 100%;
    /* Make items full width on smaller screens */
    flex-direction: column;
    text-align: center;
  }

  .contact-details .icon-wrapper {
    margin: 0 auto 10px;
  }
}

@media (max-width: 480px) {
  .contact-banner .container h1 {
    font-size: 1.7em;
  }
}

/* ==================================================contact===================================== */
.contact-container {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 60px;
}

.map-container {
  flex: 1 1 50%;
  /* min-height: 300px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;

}

.map-responsive {
  width: 100%;
  height: 100%;
  /* padding: 20px; */
  border-radius: 20px;
}

.contact-form {
  flex: 1 1 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h2 {
  margin-top: 0;
  color: #333;
}

.form-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.form-group>input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-group>input[type="text"],
.form-group>input[type="email"],
.form-group>input[type="tel"] {
  width: 100%;
  /* Ensure full width within the form-group */
}

textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
}

button {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .map-responsive .map-container,
  .contact-form {
    flex: 0 0 50%;
  }


  .form-group {
    flex-direction: column;
  }
}

/* ===================================airlines======================================== */
.hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.hero h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}
.hero h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;

}


.container {
  /* max-width: 1000px; */
  padding: 40px 60px;
  text-align: start;
}

.main-title {
  font-size: 32px;
  color: #007489;
  margin-bottom: 10px;
}

.section-title {
  font-size: 24px;
  color: #1d4b8f;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.sub-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1f1e1e;
}

.description {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 1000px) {
  .container {
    padding: 40px;
  }

  .hero h1 {
    font-size: 30px;
  }

}


/* =====================================small screen fyl booking card==================================== */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spirit-card {
  position: relative;
  background: white;
  max-width: 460px;
  width: 100%;
  height: 80%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.spirit-header {
  text-align: center;
  padding: 8px;
}

.spirit-header img {
  max-height: 50px;
}

.spirit-title {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
  color: #000;
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px;
  margin-bottom: 10px;
}

.button-grid button {
  background-color: #000b7b;
  color: white;
  border: none;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.plane-img {
  width: 100%;
  height: 70px;
  margin-top: 10px;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.profile-section img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #000b7b;
}

.call-button {
  background-color: orange;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-radius: 50px;
  margin: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.call-button i {
  background-color: white;
  color: orange;
  border-radius: 50%;
  padding:6px 10px ;
  font-size: 14px;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  padding-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  background: #f0f0f0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Show modal only on mobile */
@media (max-width: 768px) {
  .modal.show-on-mobile {
    display: flex;
  }
}