* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body {
  color: #111;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  width: 100px;
  height: 50px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

nav a:hover {
  color: #0077b6;
}

/* BANNER */
.banner {
  background-image: url('images/tour-bg.jpg');
  color: #fff;
background-size: cover;
  min-height: 85vh;              /* ⬅ BIG BANNER */
  display: flex;
  align-items: center;

  text-align: center;
}


.banner-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #fff;
  color: #0077b6;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #f3f3f3;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #000;
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #ffffff;
  padding: 45px 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease;
  overflow: hidden;
}

/* Image */
.service-img {         /* ⬅ increased */
  margin: 0 auto 25px;
  transition: transform 0.4s ease;
}

.service-img img {
  width: 100%;
  height: 200px;
}


/* Text */
.service-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 119, 182, 0.25);
}

.service-card:hover .service-img {
  transform: translateY(-8px) scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 35px 25px;
  }
}

/* FOOTER */
.site-footer {
  background: #0b132b;
  color: #ffffff;
  padding-top: 70px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  justify-items: center;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: start;
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  margin: 15px 0 5px;
}

.footer-brand p {
  color: #cbd5e1;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

/* Info */
.footer-info h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-info h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffb703;
  display: block;
  margin-top: 6px;
}
.footer-brand,
.footer-info,
.footer-contact {
  max-width: 280px;        /* equal content width */
}
.footer-info p {
  color: #e5e7eb;
  line-height: 1.7;
}

/* Contact */
.footer-contact p {
  margin-bottom: 10px;
  color: #e5e7eb;
}

.footer-contact i {
  color: #ffb703;
  margin-right: 10px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 60px;
  padding: 15px;
  text-align: center;
  background: #050a1a;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-info h4::after,
  .footer-contact h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

