body {font-family: 'Segoe UI', sans-serif;}

.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 99999;
  background: #fafafa;
}

.navbar.scrolled {
  background:#eaeaea;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}
.navbar-nav .nav-link {color:#000000 !important;font-weight:600;}
.navbar-nav .nav-link:hover {color:#f1c40f !important; font-size:16px; text-decoration: overline;}
.navbar-toggler {
  border: 1px solid #fff;
}

/* Slider */
.carousel-item-about img {height:420px; object-fit:cover;}
.carousel-item-contact img {height:420px; object-fit:cover;}
.carousel-item img {height:620px; object-fit:cover;}
.carousel-caption {top:50%;transform:translateY(-50%);} 
.animated-text {font-size:48px;font-weight:700;animation:fadeInUp 1.5s ease;}
.sub_heading{font-size:22px;}

@keyframes fadeInUp {
  from {opacity:0; transform:translateY(50px);} 
  to {opacity:1; transform:translateY(0);} 
}

@media(max-width:768px){
  .animated-text {font-size:28px;}
}

.btn-warning {
    color: #ffffff;
    background-color: #1f4166 !important;
    border-color: #ff822e;
}


/*Visa*/

.visa-section-2 {
  padding: 80px 0;
  background: linear-gradient(135deg,#f8f9fa,#eef2f7);
}

.visa-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.4s;
}

.visa-img:hover {
  transform: scale(1.05);
}

.visa-section-2 h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.visa-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.visa-item i {
  color: #f1c40f;
  margin-right: 10px;
}

.visa-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/*Atttractive tours*/
.section-heading {
  position: relative;
}

.sub-title {
  display: inline-block;
  font-size: 14px;
  color: #f1c40f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Main Heading */
.section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Highlight word */
.highlight {
  color: #0a3d62;
  position: relative;
}

/* Underline effect */
.highlight::after {
  content: '';
  width: 60%;
  height: 4px;
  background: #f1c40f;
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 10px;
}

/* Description */
.heading-desc {
  color: #666;
  max-width: 100%;
  margin: auto;
  font-size: 15px;
}

/* Optional center line */
.section-heading::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #0a3d62;
  display: block;
  margin: 20px auto 0;
  border-radius: 10px;
}

/*Call Section*/
.cta-section {
  padding: 80px 0;
  background: #ffffff;
  color: #0a3d62; /* dark text */
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  color: #555;
}

.cta-section .btn-warning {
  border-radius: 30px;
  font-weight: 600;
}

.cta-section .btn-light {
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid #ccc;
}

/* Section */
.section {padding:60px 20px;text-align:center;}
.section h2 {font-weight:700;margin-bottom:20px;}

/* Tours Cards */

.tours-section-main {
  padding:0px 0;
  background: #f8f9fa;
}

.tours-section {
  padding:0px 0!important;
  background: #f8f9fa;
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.tour-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

/* Zoom effect */
.tour-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.tour-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  transition: 0.3s;
}

.tour-overlay h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Button hidden by default */
.tour-overlay a {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

/* Show on hover */
.tour-card:hover .tour-overlay a {
  opacity: 1;
  transform: translateY(0);
}





.btn-book {background:#f1c40f;border:none;font-weight:600;}
.btn-book:hover {background:#e67e22;color:#fff;}

/* Reviews */
.reviews-marquee {
  padding: 100px 0;
  background: linear-gradient(135deg,#0a3d62,#001234);
  overflow: hidden;
}

/* Marquee container */
.marquee {
  overflow: hidden;
  position: relative;
}

/* Moving content */
.marquee-content {
  display: flex;
  gap: 20px;
  animation: scroll 25s linear infinite;
}

/* Individual card */
.review-box {
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-box p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.review-box h6 {
  font-weight: 600;
}

/* Animation */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hover pause (premium feel) */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}


/* Form */
.form-section {background:#f1f2f6;padding:50px 20px;}

/* Footer */
.footer-mini {
  background: #001234;
  color: #fff;
  padding: 25px 0 10px;
  font-size: 14px;
}

.footer-mini a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-mini a:hover {
  color: #f1c40f;
}

.footer-mini .social {
  font-size: 18px;
  margin: 0 8px;
}

.footer-mini hr {
  background: rgba(255,255,255,0.2);
}

/* IATA Logo */
.iata-logo {
  width: 80px;
  margin-top: 5px;
  /*filter: brightness(0) invert(1); /* white effect */
}

.navbar-dark .navbar-toggler-icon {
  background-image: none !important;
}

.navbar-dark .navbar-toggler-icon::before {
  content: "\2630";   /* hamburger icon */
  color: rgb(0, 0, 0) !important;
  font-size: 30px;
}
/*About us*/
.about-banner{
  position: relative;
  height: 300px;
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-banner .overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

.about-banner h1{
  position:relative;
  z-index:2;
  font-size:40px;
}

.about-banner p{
  position:relative;
  z-index:2;
}

.aim-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.aim-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.aim-box:hover {
  transform: translateY(-5px);
}

.aim-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/*Contact*/
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-box i {
  font-size: 28px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.contact-box h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-banner-small {
  position: relative;
  width: 100%;
  height: 220px; /* fixed height for proper display */
  background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark overlay */
.contact-banner-small .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10,61,98,0.75);
  top: 0;
  left: 0;
}

/* Content fix */
.banner-content {
  position: relative;
  z-index: 2;
}

.contact-banner-small h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-banner-small p {
  font-size: 14px;
  color: #ddd;
}


.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  font-size:24px;
  padding:12px 16px;
  border-radius:50%;
  z-index:999;
}

.call-float{
  position: fixed;
  bottom: 90px; /* WhatsApp button se thoda upar */
  right: 20px;
  background: #007bff;
  color: #fff;
  font-size: 20px;
  padding: 14px 16px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: pulse 1.5s infinite;
  text-align: center;
}

/* Hover effect */
.call-float:hover{
  background: #0056b3;
  color: #fff;
  text-decoration: none;
}

/* Pulse animation */
@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}