* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

/* Top Header */

.container {
  width: 100%;
  height: 30px;
  padding: 20px 50px;
  background-color: #034a4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .time {
  font-size: 14px;
  color: #fff;
}

.container .contact {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

/* social-icons */

.container .contact i {
  font-size: 14px;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  color: #fff;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s ease;
  font-size: 16px;
  margin-left: 15px;
  transition: 0.4s;
}

.social-icons a:hover {
  color: #ffd700;
}


/* Menu Header */


/* Menu Header */
header {
  background-color: #156759;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
  /* border-radius: 50%; */
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #00e0c6;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav a:hover {
  color: #ffd700;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}



.nav-links a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}


.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #00e0c6;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

nav a:hover {
  color: #ffd700;
}


.banner-section {
  width: 100%;
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5f9f9f9b;

}

.banner-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner-caption {
  position: absolute;
  padding: 15px 35px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.4);
  top: 85%;
  z-index: 2222222;
  background-color: #00b2a9;
  text-align: center;
}

.banner-caption h1 {
  font-size: 38px;
  color: #fff;
  margin-top: 5px;
}

.banner-caption p {
  font-size: 24px;


}


/* === Destination Section === */

.destination-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  margin-top: 60px;
}

.destination-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  display: inline-block;
  color: #008080;
  border-bottom: 4px solid #008080;
  border-radius: 8px;
  font-weight: 600;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.destination-card h3 {
  font-size: 1.5rem;
  margin: 15px 0 10px;
  color: #008080;
}

.destination-card p {
  padding: 0 15px 15px;
  color: #555;
  font-size: 0.95rem;
}

.destination-card .explore-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 18px;
  background: #008080;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.3s;
}

.destination-card .explore-btn:hover {
  background: #00b2a9;
  color: #ffd700;
}


.footer {
  background-color: #003b3b;
  color: #fff;
  width: 100%;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  min-width: 250px;
  margin-bottom: 20px;
  gap: 10px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #00e0c6;
}

.footer-section p,
.footer-section a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #e68900;
}

.footer-section ul {
  list-style: none;

}

.footer-section ul li {
  margin: 8px 0;
}

.footer-social-icons a {
  color: #fff;
  margin-right: 20px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 13px;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #008080;
  border-radius: 20px;
}