  body, html {
    margin: 0; padding: 0; height: 100%;
    font-family: Arial, sans-serif;
    background: #f0ebdf;
    color: #333;
  }
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
  }
  /* === Navbar styles === */
  header {
    position: relative;
    background: linear-gradient(135deg, #003049, #1a1a1a);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    overflow: hidden;
  }
  .navbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    flex-wrap: wrap;
    min-height: 100px;
  }
  .logo {
    margin-left: 15px;
  }
  .logo img {
    height: 100px;
    width: auto;
  }
  #navigations {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    margin-right: 15px;
  }
  #navigations li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  #navigations li a:hover {
    color: #ffcc00;
  }
  /* Mobile nav button hidden by default */
  .mobile-nav {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }
  /* === Hero section === */
  .hero {
    position: relative;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
  }
  video.herosection-video {
    width: 100vw !important;
    height: calc(var(--vh, 1vh) * 100);
    min-width: 100vw;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
  }
  .hero-text {
    position: absolute;
    top: 45%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 4px black;
    z-index: 5;
    max-width: 400px;
  }
  .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-text .btn {
    background-color: #ff7f50;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .hero-text .btn:hover {
    background-color: #ff6347;
  }
  /* === About section === */
  .about-section {
    background: #f0ebdf;
    padding: 50px 20px 80px;
  }
  .about-section h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
  }
  .about-section h2 span {
    color: #e47820;
  }
  .about-section p.intro {
    max-width: 800px;
    margin: 20px auto 3rem;
    font-size: 16px;
    color: #555;
    text-align: center;
  }
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
  }
  .offering {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
  }
  .offering h4 {
    margin-bottom: 10px;
    color: #ff6600;
  }
  .offering p,
  .offering ul {
    font-size: 14px;
    color: #555;
    margin: 0;
  }
  .offering ul {
    list-style: none;
    padding-left: 0;
  }
  .offering ul li {
    margin-bottom: 8px;
  }
  .why-choose {
    max-width: 700px;
    margin: 3rem auto 0;
    padding-left: 0;
    list-style: none;
  }
  .why-choose li {
    background: #fff;
    font-size: 14px;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  }
  .outro {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: #333;
  }

/* === Airport Pickup & Drop === */
.airport-section {
  text-align: center;
  padding: 80px 20px;
  background: #f0ebdf;
}

.airport-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.airport-section p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.pickup-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

.pickup-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.pickup-card {
  width: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
  transition: transform 0.3s;
}

.pickup-card:hover {
  transform: translateY(-5px);
}

.pickup-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.pickup-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.pickup-card .btn-book {
  margin-bottom: 15px;
  padding: 10px 18px;
  border: none;
  background: #0077b6;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.popup-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

#booking-form input, #booking-form button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#booking-form button {
  background: #0077b6;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

 /* === Destinations Grid and Cards === */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px; /* keeps it from spanning full huge screens */
  margin: 0 auto; /* centers the grid */
}

/* Card */
.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-height: 300px; /* LIMIT height */
}

.destination-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Image */
  .destinations-grid {
    max-width: 1200px;
    margin: 50px auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* fixes 4 cols */
    grid-auto-rows: auto;
    gap: 1.5rem;
  }
  .destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 300px;
    display: flex;
    flex-direction: column;
  }
  .destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }
  .destination-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.4s ease;
    flex-shrink: 0;
  }
  .destination-card:hover img {
    transform: scale(1.1);
  }
  .destination-card .destination-name {
    padding: 10px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* === Hotels Grid and Cards === */
  .hotels-grid {
    max-width: 1200px;
    margin: 20px auto 80px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* fixes 4 cols */
    grid-auto-rows: auto;
    gap: 1.5rem;
  }
  .hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }
  .hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
    flex-shrink: 0;
  }
  .hotel-info {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
  }
  .hotel-info h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hotel-info p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
  }

  /* Footer */
  footer {
    background: linear-gradient(135deg, #003049, #1a1a1a);
    color: #fff;
    font-family: "Segoe UI", sans-serif;
    padding: 20px 10px 10px;
    text-align: center;
  }
  .footer-container {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: flex-start;
  }
  .footer-sec {
    text-align: left;
  }
  .footer-sec img.logo-png {
    max-width: 100px;
    margin-bottom: 12px;
  }
  .footer-heading {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffcc00;
  }
  .footer-sec ul {
    list-style: none;
    padding-left: 0;
  }
  .footer-sec ul li {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .footer-link {
    color: #f3f1eb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-link:hover {
    color: #ffcc00;
  }
  .social-media-links img {
  width: 10px;         /* Standard icon size */
  height: px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;  /* Makes icons round; remove if you want square */
  box-shadow: 0 0 4px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: #fff;  /* Optional: consistent background */
  padding: 4px;            /* Optional: space inside round background */
}
  .social-media-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .social-media-links img:hover {
    transform: scale(1.12);
    -shadow: 0 2px 8px rgba(0,0,0,0.18);
    background-color: #f0f0f0;
  }
  .copy-right {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    font-size: 12px;
    font-family: "Segoe UI", sans-serif;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
  }
  /* Responsive */
  @media (max-width: 992px) {
    .destinations-grid,
    .hotels-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .destinations-grid,
    .hotels-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 768px) {
    .navbar-flex {
      padding: 12px 8px;
      position: relative;
      z-index: 12;
    }
    header {
      height: auto !important;
      min-height: 220px;
      overflow: visible !important;
    }
    #navigations {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #002233;
      z-index: 11;
    }
    #navigations.open {
      display: flex !important;
      flex-direction: column !important;
    }
    #navigations li {
      padding: 10px 0;
      text-align: center;
    }
    .mobile-nav {
      display: block;
    }
    .navbar-center {
      order: 3;
      margin-top: 10px;
    }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  .footer-sec {
    text-align: center;
  }
  .footer-sec img.logo-png {
    margin: 0 auto 12px;
    display: block;
  }
  .copy-right {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    text-align: center;
    padding: 14px 6px;
  }
  .social-media-links {
    justify-content: center;
  }
  .hero {
    height: 60vw;
    min-height: 220px;
    max-height: 350px;
    overflow: hidden;
  }
  video.herosection-video {
    height: 100%;
    min-width: 100vw;
    object-fit: cover;
    left: 0;
    right: 0;
  }
  .hero-text {
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 0 18px;
    box-sizing: border-box;
    text-align: center;
  }
  .hero-text h1,
  .hero-text p {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-text .btn {
    padding: 10px 18px;
    font-size: 1rem;
    width: 90%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
  }
}
  
 
  /*/====================Contact Page Configration ===============================/*/
  

  .contact-container-outer {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,40,40,0.5);
  padding: 20px 0;
}
.contact-inner {
  display: flex;
  gap: 48px;
  width: 1050px;
  max-width: 97vw;
  justify-content: center;
  align-items: flex-start;
}
.contact-form-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  padding: 44px 32px 28px 32px;
  width: 415px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-form-card h2 {
  text-align: center;
  color: #0077b6;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}
.contact-form-card input,
.contact-form-card select {
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  background: #f7fafd;
  transition: border 0.2s;
}
.contact-form-card input:focus,
.contact-form-card select:focus {
  border-color: #0077b6;
  outline: none;
}
.contact-form-card button {
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.14rem;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: bold;
  margin-top: 15px;
}
.contact-form-card button:hover {
  background: #005b90;
}
.contact-details-panel {
  background: rgba(20,28,42,0.88);
  color: #fff;
  border-radius: 28px;
  padding: 34px 28px 18px 28px;
  width: 410px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.09rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.17);
}
.contact-details-panel h3 {
  color: #FFD600;
  font-size: 1.31rem;
  margin-bottom: 22px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.contact-details-panel b,
.contact-details-panel strong {
  color: #fff;
  font-weight: bold;
}
.contact-details-panel a {
  color: #1de9b6;
  text-decoration: underline;
}
.contact-details-panel .address {
  margin-top: 17px;
  margin-bottom: 8px;
  line-height: 1.32;
}
.map-embed {
  border-radius: 16px;
  margin-top: 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  background: #fff;
}


@media (max-width: 950px) {
  .contact-inner {
    flex-direction: column;
    align-items: center;
    width: 98vw;
    gap: 36px;
  }
  .contact-details-panel, .contact-form-card {
    width: 97vw;
    max-width: 465px;
  }
}
@media (max-width: 600px) {
  .contact-form-card, .contact-details-panel {
    padding: 20px 7px 13px 7px;
  }
  .contact-container-outer {
    padding: 9px 0;
  }
}