html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f0f8ff;
  color: #333;
  padding-top: 100px;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #00b4d8, #0077b6);
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  height: 80px;
  width: auto;
  margin-right: 30px;
}

.navbar .nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar .nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar .nav-menu li a:hover {
  color: #90e0ef;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar .dropdown-menu li {
  list-style: none;
}

.navbar .dropdown-menu li a {
  color: #0077b6;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
}

.navbar .dropdown-menu li:hover {
  background-color: #caf0f8;
}

/* Force navbar to stay horizontal on small screens */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 15px;
  }
  
   .logo {
    height: 50px;
    margin-right: 10px;
  }

  .nav-menu {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3px;
  }

  .nav-menu li a {
    padding: 5px;
    font-size: 14px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }
}

/* Hero Section */
.hero-text {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  text-align: left;
  padding-left: 60px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(to right, #17a8c5, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideFadeIn 4s ease-out forwards;
}

/* Package Cards */
.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 40px;
}

.package-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card h2 {
  padding: 15px 20px 0;
  color: #023e8a;
}

.package-card ul {
  list-style: square;
  padding: 10px 25px;
}

.package-card p {
  padding: 0 20px 10px;
  font-weight: bold;
}

.package-card button {
  background-color: #0096c7;
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: background 0.3s;
  margin-top: auto;
}

.package-card button:hover {
  background-color: #0077b6;
}

/* Note Section */
.note-section {
  background-color: #023e8a;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  font-style: italic;
}

/* Contact Section */
.contact-section {
  background-color: #0077b6;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.contact-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 18px;
  margin: 5px 0;
}

.contact-section a {
  color: #90e0ef;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 15px;
}

.social-icons img {
  width: 32px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
