body {
  margin: 0;
  font-family: Arial, sans-serif;
}




/* Header Base */
header {
  background: #05164d;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
}

.logo span {
  color: #fff;
}

/* Nav Menu Desktop */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  text-decoration: underline;
}

.btn-yellow {
  background: #f5d000;
  color: #05164d;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* Hamburger and Profile for Mobile */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.profile-icon {
  font-size: large;
  width: 110px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent; /* agar bg chahiye to change karo */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
}

.profile-icon a {
  color: #ffffff;      /* white color text */
  text-decoration: none; /* underline remove */
}
.profile-icon a:hover {
  color: #ffcc00;       /* hover par yellow */
}


/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #05164d;
  padding: 20px;
}

.mobile-menu button {
  margin: 10px 0;
  padding: 10px;
  width: 80%;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .logo, nav {
    display: none;
  }
  .hamburger, .profile-icon {
    display: block;
  }
  header {
    justify-content: space-between;
  }
  .mobile-menu.active {
    display: flex;
  }
}







/* ===== Desktop View ===== */
.desktop-view {
  padding: 20px;
  background: #081958;
  background-size: contain;
}

.nav-bar {
  display: flex;
  gap: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.nav-bar a {
  color: #dce6f5;
  text-decoration: none;
}

.nav-bar a:hover {
  color: #fff;
  border-bottom: 2px solid #f5d000;
}

.flight-options {
  margin-bottom: 15px;
  font-size: 14px;
}

.flight-options label {
  margin-right: 20px;
  color: #fff;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;

}

.search-box input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.btn-yellow {
  background: #05164d;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

.filters {
  margin-top: 10px;
  font-size: 14px;
}

.filters select {
  margin-left: 10px;
  padding: 5px;
  border-radius: 4px;
  border: none;
}

/* ===== Mobile View ===== */
.mobile-view {
  display: none;
  background: linear-gradient(90deg, #003c96, #0052cc);
  color: white;
  
  padding: 40px 20px;
  
}

.mobile-logo {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
.mobile-logo span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}
.mobile-logo b {
  color: #f5d000;
}

.btn-big {
  background: #05164d;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  margin-bottom: 20px;
  color: #fff;
}

.mobile-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive Breakpoint */
@media screen and (max-width: 768px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
}




.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 200px;
  margin: auto;
}

.slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 200px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  text-align: center;
  padding-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background-color: #333;
}



.alert-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 10px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.alert-box.red {
  background-color: #fdecea;
  color: #a94442;
  border-left: 5px solid #d9534f;
}

.alert-box.blue {
  background-color: #e6f0fa;
  color: #31708f;
  border-left: 5px solid #5bc0de;
}

.icon {
  font-size: 20px;
  margin-right: 10px;
}

.text {
  flex: 1;
  font-size: 15px;
}

.text a {
  margin-left: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: normal;
}

.pagination {
  white-space: nowrap;
  font-size: 14px;
  color: #555;
  margin-left: 15px;
}




.section {
  margin-top: 20px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-left: 15px;
}

.card-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.card-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar on mobile */
}

.card {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}

.card img {
  width: 100%;
  
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card h3 {
  font-size: 16px;
  margin: 10px 12px 4px 12px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin: 0 12px 12px 12px;
}





.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: #f1f1f1;
  padding: 20px 0;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #05164d;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.label {
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 600;
  text-align: center;
}

.divider {
  width: 1px;
  height: 50px;
  background-color: #ccc;
}




.footer {
  background-color: #f2f2f2;
  padding: 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Footer Group */

.footer-title {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 6px 0;
}

.footer-list a {
  text-decoration: none;
  color: #0077cc;
}

.icon {
  margin-right: 5px;
}

/* Social icons simulated with emojis */
.social-icons a {
  color: #000;
}

/* App buttons */
.app-buttons img {
  display: block;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* ---------- Mobile (Accordion) ---------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-list {
    display: none;
  }

  .footer-list.open {
    display: block;
    margin-top: 5px;
  }

  .footer-title::after {
    content: "▼";
    float: right;
    transform: rotate(0deg);
    transition: transform 0.3s;
  }

  .footer-title.active::after {
    transform: rotate(180deg);
  }
}


.footer-bottom {
  background-color: #f2f2f2;
  padding: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-top {
  display: flex;
  flex-direction: column;
  
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.payment-icons img {
  height: 24px;
  object-fit: contain;
}

.disclaimer {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
  
}

.disclaimer a {
  color: #0077cc;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  font-size: 13px;
}

.footer-links a {
  text-decoration: none;
  color: #0077cc;
}

/* Responsive */
@media (max-width: 600px) {
  .payment-icons img {
    height: 20px;
  }

  .footer-links {
    flex-direction: column;
    
  }
}





  /* Pop-up Button */
.open-popup-btn {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.open-popup-btn:hover {
  background: #0056b3;
}

/* Pop-up Modal */
.popup {
  padding: 20px;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999;
}

.popup-content {
  background: white;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transform: scale(0.8); /* Initially small */
  transition: transform 0.3s ease-in-out;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup.show .popup-content {
  transform: scale(1); /* Zoom-in effect */
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Typography & Layout */
h2 {
  color: #05164d;
  margin-bottom: 10px;
}

.subtext {
  color: #e74c3c;
  font-size: 14px;
}

.phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #05164d;
}

.agent-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px 0;
}

.note {
  font-size: 12px;
  color: gray;
}

/* Call Button */
.call-btn {
  display: block;
  background: #05164d;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  border: 3px solid #222;
  width: 100%;
}



  


@media (max-width: 768px) {
  .open-popup-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    background-color: blue;
    color: white;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
  .popup {
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-content {
    width: 90%;  /* Adjust width for mobile */
    max-width: 350px;  /* Max limit */
    padding: 20px;
    max-height: none;
}
.popup.show .popup-content {
    transform: scale(1);
}
} 


.call-container {
    position: relative;
    display: inline-block;
}
/* Vibrating Circles */
.ring-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(0, 140, 221, 0.5);
    transform: translate(-50%, -50%);
    animation: ringEffect 1.5s infinite;
}

.ring-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
}

.ring-circle:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

/* Ringing Animation */
@keyframes ringEffect {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}