body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      background-color: #fff;
    }
    nav.navbar {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .navbar-brand {
      font-weight: 700;
      color: #ff6f00;
    }
    .navbar-brand span {
      color: #1abc9c;
    }
    .btn-primary {
      background: linear-gradient(90deg, #1abc9c, #ff6f00);
      border: none;
    }
    .btn-primary:hover {
      opacity: 0.9;
    }

    /* Hero */
    .hero {
      position: relative;
      background: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, rgba(26,188,156,0.6), rgba(255,111,0,0.6));
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }

    .navbar-brand img {
      max-height: 50px;
      transition: transform 0.2s ease;
    }

    .navbar-brand img:hover {
      transform: scale(1.05);
    }

    .hero h1 {font-weight: 700; font-size: 3rem;}
    .hero p {font-size: 1.1rem; margin-bottom: 25px;}

    /* Booking form in hero */
    .booking-form {
      position: relative;
      z-index: 2; 
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    }
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      background: #fff;
      color: #333;
    }
    .booking-form input::placeholder,
    .booking-form textarea::placeholder {
      color: #888;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-weight: 700;
      color: #1abc9c;
    }

    /* About */
    .about-img img {
      border-radius: 15px;
      width: 100%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Destinations */
    .destination-card img {
      border-radius: 12px;
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .destination-card h5 {margin-top: 10px; color: #ff6f00;}

    /* Testimonials */
    .testimonial {
      background: #f9f9f9;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    /* Footer */
    footer {
      background: #1abc9c;
      color: #fff;
      padding: 30px 0;
      text-align: center;
    }

    @media (max-width: 1440px) {
  .col-lg-3.col-md-6 {
    margin-bottom: 2rem;
  }
  .navbar-brand h2 {
    font-size: 1.8rem; /* shrink text a bit */
  }

}

.btn-square i {
  font-size: 1.2rem;
  color: #00a859; /* or white, depending on background */
}

  .btn-square i {
  font-size: 1.2rem;
  color: #00a859; /* or white, depending on background */
}
.btn-square {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* optional for round buttons */
  display: flex;
  align-items: center;
  justify-content: center;
}