* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General body styles */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #050505;
 
}
html{
  scroll-behavior: smooth;
}

/* Header Section */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:  #1e3d59;
  
  color: rgb(244, 242, 242);
  padding: 15px 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.5rem;
  white-space: nowrap;
}


.navbar {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.navbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  background: url('images/mountain1.jpg') center/cover no-repeat;
  color: rgb(95, 86, 168);
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 60px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1rem;
  margin: 15px 0 25px 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

.hero-btn {
  background-color: #3ba776;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: background-color 0.3s, transform 0.2s;
}

.hero-btn:hover {
  background-color: #2d8656;
}

/* Grid Section */
.grid-section {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 40px 30px;
  background-color: #f8f9fa;
  flex: 1;
}


.card {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover .slideshow img,
.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 0;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  text-align: left;
  min-height: 0;
}
.slideshow {
  position: relative;
  width: 100%;
  height: 300px;
  flex-shrink: 0;
}
.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 0.3s ease;
}
.slideshow img.active {
  opacity: 1;                 /* visible image */
}

.slideshow button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: #1e3d59;
  border: none;
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  opacity: 0;
}

.card:hover .slideshow button {
  opacity: 1;
}

.slideshow button:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.prev { left: 12px; }
.next { right: 12px; }
  

    
.pack-name {
  order: 1;
  flex-shrink: 0;
}

.card-content h4,
.pack-name h4 {
  padding: 16px 20px 12px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3d59;
  text-align: center;
  line-height: 1.4;
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  width: 100%;
  box-sizing: border-box;
}

.rib {
  position: absolute;
  top: 12px;
  left: 0;
  color: #fff;
  background: linear-gradient(135deg, #3ba776 0%, #2d8656 100%);
  padding: 6px 16px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  font-size: 0.75rem;
  z-index: 5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.pack-price {
  order: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1e3d59 0%, #2a5a7a 100%);
  padding: 12px 20px;
  margin: 0;
  color: #fff;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.pack-price h5 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pack-price h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.book-now {
  order: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3ba776 0%, #2d8656 100%);
  padding: 14px 20px;
  margin: 0;
  margin-top: auto;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.book-now:hover {
  background: linear-gradient(135deg, #2d8656 0%, #1e6b47 100%);
  transform: scale(1.02);
}

.book-now h1 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-now i {
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
}

.book-now:hover i {
  transform: scale(1.1);
}
.includes {
  order: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #f8f9fa;
  padding: 12px 20px;
  margin: 0;
  border-bottom: 1px solid #e9ecef;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.includes h3 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3d59;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.includes i {
  font-size: 18px;
  color: #3ba776;
  transition: all 0.3s ease;
  cursor: pointer;
}

.includes i:hover {
  color: #2d8656;
  transform: scale(1.2);
}


.footer {
  margin-top: auto; /* pushes footer to bottom */
 text-align: center;
  
  align-items: center;
  background-color: #1e3d59;
  color: white;
  padding: 20px 40px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons i {
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  transform: scale(1.2);
}

@media (max-width: 1135px) {
  .grid-section {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .grid-section {
    grid-template-columns: repeat(1,1fr);
    gap: 25px;
    padding: 25px 20px;
  }

  .card {
    min-height: auto;
  }

  .card-content h4,
  .pack-name h4 {
    font-size: 1rem;
    padding: 14px 16px 10px;
  }

  .pack-price {
    padding: 10px 16px;
  }

  .pack-price h3 {
    font-size: 1.2rem;
  }

  .pack-price h5 {
    font-size: 0.75rem;
  }

  .includes {
    padding: 10px 16px;
    gap: 12px;
  }

  .includes h3 {
    font-size: 0.75rem;
  }

  .includes i {
    font-size: 16px;
  }

  .book-now {
    padding: 12px 16px;
  }

  .book-now h1 {
    font-size: 0.85rem;
  }

  .book-now i {
    font-size: 16px;
  }

  .type {
    padding: 10px 20px;
    margin: 15px 0;
  }

  .type h1 {
    font-size: 1.1rem;
  }
 
  .site-header {
    z-index: 1000;
    position: sticky;
    top: 0; 
    padding: 8px 10px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .logo {
    gap: 6px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo h1 {
    font-size: 1.1rem;
    display: block;
  }

  .navbar {
    gap: 8px;
    font-size: 0.85rem;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
  }

  .navbar a {
    font-size: 0.75rem;
    padding: 4px 6px;
  }

  .navbar .whatsapp {
    padding: 4px 6px !important;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .navbar .whatsapp i {
    font-size: 18px !important;
  }

  .navbar .whatsapp h3 {
    font-size: 0.65rem !important;
    margin: 0;
    line-height: 1.2;
  }

  .navbar .whatsapp a {
    text-decoration: none;
    color: inherit;
  }

  .hero {
    min-height: 300px;
    padding: 40px 15px;
  }

  .hero h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .hero p {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 10px 0 20px 0;
    padding: 0 10px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


.about {
  padding: 60px 40px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  color: #1e3d59;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #555;
}

.about-text ul {
  list-style: none;
}

.about-text li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.about-text i {
  color: #3ba776;
  margin-right: 10px;
}

/* About Image */
.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background-color: #1e3d59;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons i {
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #3ba776;
}

/* Extra small devices */
@media (max-width: 480px) {
  .site-header {
    padding: 6px 8px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo h1 {
    font-size: 0.95rem;
    display:none;
  }

  .navbar {
    gap: 4px;
  }

  .navbar a {
    font-size: 0.7rem;
    padding: 3px 4px;
  }

  .navbar .whatsapp {
    padding: 3px 4px !important;
  }

  .navbar .whatsapp i {
    font-size: 16px !important;
  }

  .navbar .whatsapp h3 {
    font-size: 0.6rem !important;
  }

  .hero {
    min-height: 250px;
    padding: 30px 10px;
  }

  .hero h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 0.85rem;
    margin: 8px 0 15px 0;
  }

  .hero-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    order: -1;
  }
}


.type {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1e3d59 0%, #2a5a7a 100%);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  color: white;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.type h1 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.static {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .static img {
  transform: scale(1.05);
}
