
  body {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background-color: #f4f8fa;
    color: #002244;
  }
  
  /* Header Styling */
  .header {
    background-color: #002244;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #00c3ff;
  }
  
  .contact {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    gap: 10px;
  }
  
  .contact i {
    color: #00c3ff;
    font-size: 1.2rem;
  }
  
  /* Navigation */
  nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #00c3ff;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    position: relative;
    z-index: 100;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #002244;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #00c3ff;
    transition: 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00c3ff;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #002244;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      flex-direction: column;
      position: absolute;
      top: 65px;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      display: none;
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 999;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links a {
      padding: 12px 20px;
      font-size: 1rem;
      text-align: center;
    }
  
    .navbar {
      flex-direction: row;
    }
  }
  



  
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
  }
  
  .carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    max-width: 90%;
  }
  
  .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .carousel-caption button {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #00cfff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .carousel-caption button:hover {
    background-color: #009fc9;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: background-color 0.3s;
  }
  
  .arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .arrow-left {
    left: 15px;
  }
  
  .arrow-right {
    right: 15px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .carousel-container,
    .carousel-item {
      height: 60vh;
    }
  
    .carousel-caption h1 {
      font-size: 1.8rem;
    }
  
    .carousel-caption p {
      font-size: 1rem;
    }
  
    .carousel-caption button {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  
    .arrow {
      width: 38px;
      height: 38px;
      font-size: 1.5rem;
    }
  }
  


  .services {
    background-color: #ffffff;
    padding: 80px 30px;
    text-align: center;
    font-family: 'Segoe UI', 'Poppins', sans-serif;
  }
  
  .services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #023047;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  
  .services .subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: stretch;
  }
  
  .service-card {
    background: #f9f9fb;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* ✅ This line centers all text & inline elements */
    display: flex;
    flex-direction: column;
    align-items: center; /* ✅ This centers icon/title/paragraph inside */
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }
  
  .service-card .icon {
    font-size: 44px;
    margin-bottom: 18px;
    color: #0077b6;
  }
  
  .service-card h3 {
    font-size: 20px;
    color: #002244;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .services {
      padding: 50px 20px;
    }
  
    .services h2 {
      font-size: 28px;
    }
  
    .services .subtitle {
      font-size: 15px;
      margin-bottom: 35px;
    }
  
    .service-card {
      padding: 24px 20px;
    }
  
    .service-card h3 {
      font-size: 18px;
    }
  
    .service-card p {
      font-size: 14px;
    }
  }
  

  .destination-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #e8f8ff, #f9fcff);
    font-family: 'Segoe UI', 'Poppins', sans-serif;
  }
  
  .destination-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #034078;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  
  .cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: #fff;
    padding: 30px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.08);
    max-width: 320px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.15);
    border-top: 4px solid #00bfff;
  }
  
  .card-icon {
    font-size: 44px;
    margin-bottom: 18px;
    color: #007bff;
  }
  
  .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
  }
  
  .card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .card-button {
    background-color: #00bfff;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 14px;
  }
  
  .card-button.green {
    background-color: #198754;
  }
  
  .card-button:hover {
    transform: scale(1.05);
    opacity: 0.95;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      width: 90%;
    }
  }
  



  .about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5fafd, #e1f5ff); /* subtle gradient for freshness */
    text-align: center;
    font-family: 'Segoe UI', 'Poppins', sans-serif;
  }
  
  .about-heading {
    font-size: 36px;
    color: #034078;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
  
  .about-description {
    max-width: 880px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #333;
    line-height: 1.8;
  }
  
  .about-description .highlight {
    font-weight: 600;
    color: #0077cc;
  }
  
  .about-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .about-card {
    background-color: #ffffff;
    padding: 30px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.08);
    width: 310px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
  }
  
  .about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
    border-top: 4px solid #007bff;
  }
  
  .about-icon {
    font-size: 42px;
    margin-bottom: 18px;
  }
  
  .about-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
  }
  
  .about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .about-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .about-card {
      width: 92%;
    }
  }
  

  /* General Styles */
.footer {
background-color: #0d1b2a;
color: #fff;
padding: 40px 20px;
font-family: Arial, sans-serif;
}

.footer-container {
max-width: 1200px;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
}

.footer h3, .footer h4 {
margin-bottom: 15px;
}

.footer p {
font-size: 14px;
line-height: 1.6;
}

.footer a {
color: #ccc;
text-decoration: none;
font-size: 14px;
}

.footer ul {
list-style: none;
padding: 0;
}

.footer ul li {
margin-bottom: 8px;
}

.footer-logo img {
width: 150px; /* Adjust the width as needed */
height: auto; /* Maintain the aspect ratio */
}
/* Footer Sections */
.footer-about, .footer-links, .footer-contact {
flex: 1;
min-width: 200px;
}

.footer-bottom {
border-top: 1px solid #2d3e50;
margin-top: 30px;
padding-top: 20px;
text-align: center;
font-size: 13px;
color: #bbb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.footer-container {
  flex-direction: column;
  align-items: center;
}

.footer-about, .footer-links, .footer-contact {
  min-width: 100%;
  text-align: center;
}

.footer-bottom {
  padding-top: 15px;
}
}
/* Fullscreen Popup Overlay */
#popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Content Box */
#popup-content {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-align: center;
}

/* Image Styling */
.image-container {
  width: 80%;
  height: 50%;
  border-radius: 10px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  display: block;
}

/* Buttons */
.popup-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-direction: column;
}

.popup-buttons button {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-btn {
  background-color: #28a745;
  color: white;
}
.book-btn:hover {
  background-color: #218838;
}

.close-btn {
  background-color: #dc3545;
  color: white;
}
.close-btn:hover {
  background-color: #c82333;
}

@media (min-width: 600px) {
  .popup-buttons {
    flex-direction: row;
  }
  .popup-buttons button {
    width: 50%;
  }
}


