* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffffdd; /* semi-transparent white */
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00796b;
}
.hero-slider {
  padding-top: 80px; /* space below navbar */
}

.nav-links li a:hover {
  color: #00c2ff;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 30px;
  background: linear-gradient(to right, #e0f7fa, #fff);
}

.split-left, .split-right {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.split-left img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
  display: block;
  margin: 0 auto;
}

.split-left img:hover {
  transform: scale(1.05);
}

.about-text {
  background-color: #ffffffdd;
  padding: 30px;
  border-radius: 15px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-family: 'Pacifico', cursive;
  color: #00695c;
}

.about-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.highlight {
  color: #00897b;
  font-weight: 600;
}

.callout {
  font-size: 1.1rem;
  color: #00695c;
  font-weight: bold;
}

.hashtag {
  font-style: italic;
  color: #00796b;
}

/* Animate in when visible */
.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding: 20px;
  }
}

/* Image Zoom Hover Effect */
.split-left img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-text {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Text Hover Glow Effect */
.about-text:hover {
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.2);
  transform: translateY(-5px);
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Animation when in view */
.animate-left.show, .animate-right.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }
}
/* Hero Section */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.5em;
  margin: 0 0 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin: 0;
}

/* Fade up text animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fixed Button */
.hero-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #00bcd4;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  z-index: 10;
}

.hero-btn:hover {
  background: #0097a7;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Section Styles */
.section.dark {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
}

.section.dark h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Card Grid */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card Style */
.card {
  width: 280px;
  background: #222;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Image Style */
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Card Details */
.card-details {
  padding: 16px;
}

.card-details h3 {
  font-size: 1.3rem;
  color: #00e5ff;
  margin-bottom: 8px;
}

.card-details p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.card-details .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd600;
}

.card-details .note {
  display: block;
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 6px;
}

/* Animation */
.animated-card {
  animation: fadeInUp 0.7s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.dark {
  background-color: #111;
  color: white;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}
.gallery-section {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  padding: 60px 30px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.4rem;
  color: #00695c;
  font-family: 'Pacifico', cursive;
  margin-bottom: 30px;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontal-scroll-container {
  overflow: hidden;
  width: 90%;
}

.scroll-gallery {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding: 10px 0;
}

.scroll-gallery img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.scroll-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 105, 92, 0.5);
  filter: brightness(1.05);
}

/* Scroll Buttons */
.scroll-btn {
  background-color: rgba(255, 255, 255, 0.3);
  color: #004d40;
  border: 2px solid #004d40;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 20px;
  z-index: 10;
  transition: all 0.3s ease;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  backdrop-filter: blur(5px);
  border-radius: 50%;
}

.scroll-btn:hover {
  background-color: rgba(0, 105, 92, 0.9);
  color: #ffffff;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* Scroll animation */
.animate-top {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
}

.animate-fade {
  opacity: 0;
  transition: opacity 1s ease;
}

.animate-top.show,
.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-gallery img {
    width: 300px;
    height: 200px;
  }

  .scroll-btn {
    font-size: 1.4rem;
    padding: 8px 14px;
  }
}

.gallery-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  border-radius: 10px;
}

.gallery-grid img {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.about-us-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #222;
  animation: fadeInUp 1s ease;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
  animation: fadeInUp 1.2s ease;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
}

.stat {
  flex: 1 1 200px;
  margin: 20px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease;
}

.stat:hover {
  transform: translateY(-10px);
}

.stat h3 {
  font-size: 2.5rem;
  color: #ff5722;
  margin-bottom: 10px;
}

.stat p {
  color: #333;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/*reviee*/
.review-section {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.review-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00695c;
}

#openwidget-reviews {
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.ow-review-feed {
  display: flex;
  gap: 20px;
  transition: transform 0.8s ease-in-out;
}

.ow-review-feed .ow-review {
  flex: 0 0 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.contact-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004d40;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.contact-form-box, .contact-map-box {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #00695c;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #004d40;
}

.contact-map-box {
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.contact-info {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f9f9f9;
  border-left: 4px solid #00bcd4;
  border-radius: 6px;
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
  text-align: justify; /* <-- Justify text */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #00bcd4;
  font-size: 1.2em;
}

.contact-info p {
  margin: 6px 0;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #000;
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 2rem;
    background: black;
    padding: 1rem;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}
/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
/* Call Button Styles */
.call-button {
  position: fixed;
  bottom: 90px; /* So it doesn't overlap WhatsApp if also present */
  right: 20px;
  background-color: #28a745;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-button img {
  width: 24px;
  height: 24px;
}

.call-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  animation: fadeInUp 1s ease both;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #222;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  margin: 10px 0;
}

.card-content .price {
  font-weight: bold;
  color: #e91e63;
  margin-bottom: 10px;
}

.card-content .btn {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card-content .btn:hover {
  background-color: #e64a19;
}

/* Simple fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.brochure-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #ff5722;
  color: white;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.brochure-btn:hover {
  background-color: #e64a19;
  transform: scale(1.05);
}


/* Adventure Sports Section */
.adventure-sports-section {
  background: #f0f8ff;
  padding: 80px 20px;
  text-align: center;
}
.adventure-sports-section .section-title {
  font-size: 2.8em;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}
.adventure-sports-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #00bcd4;
  margin: 10px auto 0;
  border-radius: 2px;
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.adventure-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(50px);
  opacity: 0;
  animation: fadeUp 1s forwards;
}
.adventure-card:nth-child(1) {animation-delay: 0.1s;}
.adventure-card:nth-child(2) {animation-delay: 0.2s;}
.adventure-card:nth-child(3) {animation-delay: 0.3s;}
.adventure-card:nth-child(4) {animation-delay: 0.4s;}
.adventure-card:nth-child(5) {animation-delay: 0.5s;}
.adventure-card:nth-child(6) {animation-delay: 0.6s;}

.adventure-image {
  overflow: hidden;
}
.adventure-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.adventure-card:hover .adventure-image img {
  transform: scale(1.1);
}
.adventure-info {
  padding: 20px 15px 25px;
}
.adventure-info h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #00bcd4;
}
.adventure-info p {
  font-size: 0.95em;
  color: #555;
}

/* Entrance animation */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Review Section */
.review-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.review-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
}

.review-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.review-box {
  min-width: 300px;
  flex: 0 0 auto;
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s forwards;
}

.review-box p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.review-box h4 {
  color: #00bcd4;
  font-weight: 600;
}

/* Entrance animation */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-container {
  margin-top: 50px;
  text-align: center;
  padding: 20px;
}

.services-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-card h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}
