/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; color:#1E3A8A; line-height:1.6; background:#fff; }

/* Intro overlay */
#intro { position: fixed; top:0; left:0; width:100%; height:100%; background: #1E3A8A; display:flex; justify-content:center; align-items:center; z-index:10; }

/* Stamp animation */
#stamp { width: 80vw; max-width: 800px; opacity: 0; transform: scale(2) rotate(-30deg); animation: stampSwipe 2s forwards; }
@keyframes stampSwipe {
  0% { transform: scale(2) rotate(-30deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(0deg); opacity: 1; }
  100% { transform: scale(0.8) translateX(-100vw) rotate(-15deg); opacity: 1; }
}

/* Optional homepage styling */
#homepage { display:block; min-height:100vh; background:#f5f5f5; }

/* Navbar */
/* Navbar base */
.navbar {
  background-color: #fff;
  padding: 18px 20px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo img {
  height: 60px;
  width: auto;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: orange;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f4c10f;
}

.social-icons a {
  margin-left: 5px;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f4c10f;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .social-icons {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links li a {
    font-size: 18px;
  }
}

/* hero */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background:  url('../images/back.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  margin-bottom: 3rem;
}

/* Top floating flags */
.top-flags {
  position: absolute;
  top: 20px;
  display: flex;
  gap: 80px;
}

.top-flags img {
  width: 70px;
  border-radius: 6px;
 
}

/* Center content */
.hero-content {
  text-align: center;
  z-index: 2;
  padding: 20px;
}

.pill-title {
  background: #12005e;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
}

.hero-content p {
  margin-top: 20px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Bottom countries */
.bottom-countries {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 90px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.country {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.country img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .pill-title {
    font-size: 1.4rem;
    padding: 14px 25px;
  }


  .hero-content p {
    font-size: 1rem;
  }

  .top-flags img {
    width: 25px;
  }

  .country img {
    width: 30px;
    height: 30px;
  }

  .bottom-countries {
    gap: 20px;
  }
   .bottom-countries span {
    font-size: .5rem;
  }
}

@media (max-width: 480px) {
  .top-flags {
    top: 10px;
    gap: 10px;
  }

  .pill-title {
    font-size: 1.1rem;
  }
}




/* .hero { height: 100vh; /* Full viewport height */ width: 100%; /* Full width */  /* Replace with your image path */ background-size: contain; /* Scale image to cover entire area */ background-position: center; /* Center the image */ background-repeat: no-repeat; } */
/* .hero img{
  height: 85vh;
  width: 100%;
} */
/* @media (max-width: 768px){
  .hero img{
    height: 30vh;
    width: 100%;
  }
} */
/* Hero Slider */
/* .hero-slider { position: relative; overflow: hidden; }
.slides { display: flex; transition: transform 0.5s ease; }
.slide { min-width: 100%; }
.slide img { width: 100%; max-height: 100vh; object-fit: cover; } */

/* Slider buttons */
/* .prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.5);
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; } */

/* Hero text */
/* .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ff7f00;
} */
/* .hero-text h1 { font-size: 2.6rem; text-shadow: 2px 2px 5px rgba(0,0,0,0.7); }
.hero-text p{
  color: white;
  text-decoration: solid;
} */
/* .hero-text .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 2rem;
  background: rgb(35, 0, 231);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
} */

/* About Section */
.about-section { display:flex; flex-wrap:wrap; align-items:center; gap:20px; margin-top:30px; }
.about-image { flex:1; text-align:center; }
.about-image img { max-width:100%; border-radius:10px; }
.about-text { flex:1; }
.about-text h1 { font-size:2rem; margin-bottom:15px; }
.about-text p { margin-bottom:15px; font-size:1rem; }
.about-text .btn { background:#FFA500; color:#fff; padding:10px 20px; border:none; border-radius:5px; cursor:pointer; transition:0.3s; }
.about-text .btn:hover { background:#ff7f00; }

/* Section2: Services */
.section2 {
  padding: 80px 40px;
  text-align: center;
  background: #96c6fd;
}
.section2 h2 { font-size: 2.5rem; color: #1E3A8A; margin-bottom: 15px; }
.section2 p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px auto; color: #333; }

.services-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  flex: 1 1 220px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.service-card img { width: 100%; height: 200px; object-fit: cover; border-bottom: white solid #1e3aba; transition: transform 0.3s;}
.service-card h3 { padding: 15px; font-size: 1.1rem; color: #1E3A8A; text-decoration: none;}

/* Mobile fix: show h3 text on small screens */
@media (max-width: 768px){
  .service-card h3 {
    display: block !important;
    color: #1E3A8A;
  }
}

/* ensure cards look good with hover + image scaling */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover img { transform: scale(1.04); }

/* Mobile styles: tablets and smaller devices */
@media(max-width: 768px){
  /* Hero text smaller */
  .hero-text h1 { 
    font-size: 1.2rem; 
  }
  .hero-text p{
    font-size: .7rem;
  }
  .hero-text .btn{
    padding: 0.3rem 1.2rem;
  }
  .hero-slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Stack service cards vertically */
  .services-buttons { 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; /* spacing between cards */
  }

  /* Ensure service cards expand and show text */
  .service-card {
    max-width: 90%;    /* cards take most of screen width */
    flex: none;        /* prevent shrinking */
  }

  /* Image scaling for mobile */
  .service-card img {
    height: auto;       /* scale naturally */
    max-height: 200px;  /* optional cap */
  }

  /* Service titles visible */
  .service-card h3 {
    display: block;
    font-size: 1.1rem;
    margin-top: 10px;
    color: #1E3A8A;
    text-align: center;
    line-height: 1.3;
  }

  /* Hamburger menu */
  .hamburger { display: flex; }
  .navbar .nav-links { 
    display: none; 
    position: absolute; 
    top: 60px; 
    right: 0; 
    background: #1E3A8A; 
    flex-direction: column; 
    width: 200px; 
    padding: 1rem; 
  }
  .navbar .nav-links.active { display: flex; }
}



.destinations-section {
  width: 95%;
  max-width: 1200px;
  margin: 40px auto;
}

.section-heading {
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
}

/* Carousel layout */
.carousel { position: relative; }

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-item {
  flex: 0 0 100%;     /* phone: 1 per view */
  padding: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .carousel-item { flex: 0 0 50%; } /* tablet+: 2 per view */
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.carousel-item h3 {
  margin: 10px 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.stars {
  color: #f5b301;
  font-size: 1.2rem;
}

/* Arrows */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 100;             /* keep above everything */
  transition: background 0.2s ease;
}

.carousel-button:hover { background: rgba(0,0,0,0.8); }
.carousel-button.left { left: 8px; }
.carousel-button.right { right: 8px; }

/* Make sure arrows are clickable */
.carousel-button, .carousel-button * { user-select: none; }
.destination-showcase {
  padding: 60px 20px;
  text-align: center;
  background: #d0e7ff; /* light blue */
}

.destination-showcase h2 {
  font-size: 2.5rem;
  color: #1E3A8A;
  margin-bottom: 40px;
}

.destinations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-info {
  padding: 20px;
  text-align: left;
}

.destination-info h3 {
  font-size: 1.5rem;
  color: #1E3A8A;
  margin-bottom: 10px;
}

.destination-info p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.btn-see-all {
  display: inline-block;
  margin-top: 40px;
  padding: 0.8rem 2rem;
  background: #1E3A8A;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-see-all:hover {
  background: #FFA500;
}

/* Responsive */
@media(max-width: 768px) {
  .destination-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .destination-showcase h2 {
    font-size: 2rem;
  }
}

/* Why Choose Us Section */
/* WHY CHOOSE US SECTION */

.why-choose-us {
  padding: 80px 20px;
  background: #f9f9ff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #12005e;
  margin-bottom: 10px;
}

.why-choose-us p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Feature blocks */
.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;

  /* Animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Reverse layout */
.feature.reverse {
  flex-direction: row-reverse;
}

/* When visible */
.feature.show {
  opacity: 1;
  transform: translateY(0);
}

/* Images */
.feature img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.feature img:hover {
  transform: scale(1.03);
}

/* Text content */
.feature .text {
  width: 50%;
  text-align: left;
}

.feature .text h3 {
  font-size: 1.8rem;
  color: #12005e;
  margin-bottom: 15px;
}

.feature .text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.feature .btn {
  display: inline-block;
  padding: 10px 22px;
  background: #12005e;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature .btn:hover {
  background: #1f0aa3;
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .feature {
    flex-direction: column;
    text-align: center;
  }

  .feature.reverse {
    flex-direction: column;
  }

  .feature img,
  .feature .text {
    width: 100%;
  }

  .feature .text {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .feature .text h3 {
    font-size: 1.5rem;
  }
}

.study-explore {
  padding: 60px 80px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.study-explore h2 {
  font-size: 28px;
  color: #03114e;
  margin-bottom: 40px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3 boxes per row */
  gap: 20px; /* 👈 spacing between boxes */
}

.explore-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-box h3 {
  font-size: 18px;
  color: #03114e;
  margin-bottom: 12px;
}

.explore-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.explore-link {
  font-size: 14px;
  font-weight: bold;
  color: #03114e;
  text-decoration: none;
}

.explore-link:hover {
  text-decoration: underline;
}

/* Hover effect for interactivity */
.explore-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Responsive for tablets and phones */
@media (max-width: 992px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr); /* 👈 2 per row on tablets */
  }
}

@media (max-width: 768px) {
  .explore-grid {
    grid-template-columns: 1fr; /* 👈 1 per row on phones */
  }
}


/* ?footer */

/* Base Footer Styles */
.footer {
  background-color: #03114e;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center; /* center text globally */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center all sections */
  align-items: flex-start;
  gap: 20px; /* small spacing between blocks */
}

.footer-section {
  flex: 0 1 250px; /* fixed width so they cluster neatly */
  margin: 0 auto;
  text-align: center; /* center content inside each section */
}

.footer-section h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif !important; 
}
.footer-container ul{
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.footer-container ul li a{
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}
/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Subscribe Form */
.subscribe form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center; /* center input + button */
}

.subscribe input {
  padding: 10px;
  border: none;
  border-radius: 3px;
  width: 100%;
  max-width: 250px;
}

.subscribe button {
  padding: 10px;
  background-color: #f4c10f;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 8px;
  color: #ccc;
  font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid #444;
  padding-top: 15px;
  display: flex;
  flex-direction: column; /* stack logo + legal */
  align-items: center;
  text-align: center;
  gap: 8px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.logo span {
  font-style: italic;
  color: #f4c10f;
}

.legal {
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
    text-align: center; /* center everything on mobile */
  }

  .footer-container {
    flex-direction: column; /* stack sections vertically */
    justify-content: center;
    align-items: center;
    gap: 0; /* remove large vertical gap */
  }

  .footer-section {
    flex: none; /* prevent stretching */
    width: 100%; /* full width on mobile */
    max-width: 320px; /* keep compact */
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 8px;
  }

  .subscribe form {
    align-items: center; /* center input + button */
    gap: 8px;
  }

  .subscribe input {
    width: 100%;
    max-width: 250px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    flex-direction: column; /* stack logo + legal */
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .social-icons {
    margin-top: 10px;
    justify-content: center;
  }
}



/* Fade-in animation for sections */
.footer-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.2s; }
.footer-section:nth-child(2) { animation-delay: 0.4s; }
.footer-section:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect for gallery images */
.gallery-grid img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Button hover animation */
.subscribe button {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscribe button:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

/* Social icon hover animation */
.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}
/* app */
.home-appointment {
  background: linear-gradient(135deg, #9ebffd, #ffd700);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

.home-appointment-container {
  max-width: 800px;
  margin: auto;
}

.home-appointment h2 {
  font-size: 30px;
  margin-bottom: 15px;
  
}

.home-appointment p {
  font-size: 18px;
  margin-bottom: 30px;
}

.appointment-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.appointment-btn:hover {
  background: #333;
  transform: scale(1.05);
}
.testimonials {
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* deep blue gradient */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.testimonials-container {
  max-width: 900px;
  margin: auto;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #f4f4f4;
  position: relative;
}

.testimonials h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f4c10f; /* gold accent */
  margin: 12px auto 0;
  border-radius: 2px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.testimonial p {
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial h4 {
  color: #f4c10f; /* gold accent for names */
  font-weight: bold;
  font-size: 15px;
}
@media (max-width: 600px) {
  .testimonials {
    padding: 50px 15px;
  }

  .testimonials h2 {
    font-size: 24px;
  }

  .testimonial {
    padding: 20px;
  }

  .testimonial p {
    font-size: 14px;
  }
}
/* sticky */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* deep blue gradient */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
}

.sticky-banner p {
  margin: 0;
  font-size: 16px;
}

.sticky-btn {
  background: #f4c10f; /* gold accent */
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sticky-btn:hover {
  background: #ffd700;
  transform: scale(1.05);
}


.stats {
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* deep blue gradient */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.stat-box h3 {
  font-size: 40px;
  color: #f4c10f; /* gold accent */
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: #e0e0e0;
}


/* up nav */
/* ================= Top CTA Bar ================= */
.top-cta {
  background: #1E3A8A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.top-cta p {
  margin: 0;
}

.top-cta-btn {
  background: #FFA500;
  color: #fff;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  transition: 0.3s;
}

.top-cta-btn:hover {
  background: #ff8c00;
}

/* ================= Responsive ================= */
@media (max-width: 600px) {
  .top-cta {
    font-size: 0.85rem;
    padding: 8px 12px;
    gap: 10px;
  }

  .top-cta-btn {
    padding: 5px 14px;
    font-size: 0.8rem;
  }
}


/* floating */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 80px; /* keep it above sticky banner */
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 👇 animation added */
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* how high it bounces */
  }
}



.tours {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #12005e;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-content {
  padding: 20px;
  text-align: left;
}

.tour-content h3 {
  color: #12005e;
  margin-bottom: 10px;
}

/* Read-more text */
.tour-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  max-height: 1.6em; /* One line only */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Expanded state */
.tour-text.expanded {
  max-height: 300px;
}

/* Button */
.read-more-btn {
  display: inline-block;
  margin-top: 8px;
  color: #12005e;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* Responsive */
@media(max-width:600px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}