/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}
/* Header Container */
header {
  background: linear-gradient(135deg,white,wheat);
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo and Title */
.logo-title {
  display: flex;
  align-items: center;
  height: 80px;     /* Or set a higher value if restricted */
  padding: 10px 0;
}

.logo {
  height: 190px;      /* Try 100px or 120px */
  width: auto;        /* Keeps the aspect ratio */
  max-width: 100%;    /* Prevents overflow */
  display: block;     /* Removes extra spacing */
}

/* Tablet */
@media (max-width: 768px) {
  .logo {
    height: 140px;  /* Slightly smaller */
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo {
    height: 120px;  /* Even smaller for small screens */
  }
}
.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a75bb;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
  margin: 10px 0;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: bold; /* Optional */
  transition: all 0.3s ease; /* Smooth transition */
}

.nav-links li a:hover {
  color: #ff6600; /* Change to any hover color you prefer */
  
  background-color: #bdbcbc; /* Optional: add background on hover */
  padding: 5px; /* Optional: slight padding for better effect */
  border-radius: 5px; /* Optional: for rounded background */
}
/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 14px;
}

.contact-info a {
  color:black;
  text-decoration: none;
  font-weight: bold;
}
.contact-info a:hover {
  color: #ff6600; /* Change to your desired hover color */
  
  transition: color 0.3s ease; /* Optional: smooth color transition */
}
/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 2px;
  background-color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-bottom: 5px;
  }

  .contact-info {
    align-items: flex-start;
    margin-top: 5px;
  }
}


.hero {
  background: url('IMAGE/hero-image.jpg') center/cover no-repeat;
  color: #fff;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero{
    height: 400px;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

.btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 5px;
}
.packages {
  background: #f9f9f9;
  padding: 50px 0;
}
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  flex: 1 1 30%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  margin: 1rem;
}
.card p {
  margin: 0 1rem 1rem;
  color: maroon;
  font-size: 13px;
  font-weight: bold;
}
.view-details-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.view-details-btn:hover {
  background-color: #e05500;
}

.destinations {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}

.destination-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
}

.about, .contact {
  padding: 50px 0;
}
 .query-section {
      background: #f9f9f9;
      padding: 40px 20px;
    }

    .query-container {
      max-width: 800px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .query-container h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #0d47a1;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group input,
    .form-group select {
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 15px;
    }

    .form-group input:focus {
      border-color: #0d47a1;
      outline: none;
      box-shadow: 0 0 0 2px rgba(13, 71, 161, 0.2);
    }

    .submit-btn {
      grid-column: span 2;
      background-color: #0d47a1;
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #093170;
    }

    @media (max-width: 768px) {
      .form-grid {
        grid-template-columns: 1fr;
      }

      .submit-btn {
        grid-column: span 1;
      }
    }
.contact form {
  display: flex;
  flex-direction: column;
}
.contact input, .contact textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
  }
  .cards {
    flex-direction: column;
  }
  .card {
    flex: 1 1 100%;
  }
}

 /* Enquiry Button */
  #enquiry-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    
  }
  #enquiry-widget button {
    background-color:orangered;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
  }

  /* Modal Background */
  #contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }

  /* Modal Content */
  .modal-content {
    background-color: beige;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    font-size: 15px;
    
  }
.modal-content h3{
  color:blue;
}

  /* Close Button */
  .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color:black;
  }

  .close-modal:hover {
    color: #000;
  }
  .inclusion-exclusion {
  background-color: #f4f9ff;
  padding: 60px 20px;
}

.inclusion-exclusion .container {
  max-width: 1200px;
  margin: auto;
}

.inclusion-exclusion h2 {
  text-align: center;
  color: #1a75bb;
  margin-bottom: 40px;
}

.inclusion-exclusion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.inclusion-box,
.exclusion-box {
  flex: 1 1 400px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.inclusion-box h3,
.exclusion-box h3 {
  color: #1a75bb;
  margin-bottom: 15px;
  font-size: 20px;
}

.inclusion-box ul,
.exclusion-box ul {
  list-style: none;
  padding: 0;
}

.inclusion-box li,
.exclusion-box li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #333;
}

@media (max-width: 768px) {
  .inclusion-exclusion-grid {
    flex-direction: column;
  }
}
