﻿.topbar {
  background: #14532d;
}
.hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
}
#services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1fdf6 0%, #ffffff 100%);
  position: relative;
}
#services h2 {
  font-size: 42px;
  font-weight: 700;
  color: #083221;
  margin-bottom: 20px;
}
#services > .container > p {
  font-size: 17px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 60px;
}
#services .card {
  border: none;
  border-radius: 20px;
  padding: 35px 20px;
  background: #c7de9d;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#services .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2d6a4f, #40916c);
}
#services .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
#services .card h5 {
  font-size: 20px;
  font-weight: 600;
  color:#D8125B;
  margin-bottom: 18px;
}
#services .card p {
  font-size: 15px;
  line-height: 1.7;
  color: #570749;
}
#services .card ul {
  padding-left: 0;
  margin-top: 20px;
  list-style: none;
}
#services .card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #0d0385;
  padding-left: 22px;
  position: relative;
}
#services .card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2d6a4f;
  font-weight: 600;
}
.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfc7c7;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
  transition: all 0.3s ease;
}
#services .card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(45, 106, 79, 0.4);
}
@media (max-width: 991px) {
  #services {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  #services h2 {
    font-size: 32px;
  }
  #services .card {
    padding: 25px 20px;
  }
}
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #469cb4, #488b1e);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
#services .card:hover .service-icon {
  transform: translateY(-3px) scale(1.05);
}
.floating-social a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.floating-social a:hover {
  transform: scale(1.1);
}
.whatsapp {
  background: #25d366;
}
.facebook {
  background: #1877f2;
}
.instagram {
  background: #e4405f;
}
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.img-animate {
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.img-animate.show {
  opacity: 1;
  transform: scale(1);
}
.card {
  transform-origin: center top;
}
.card:hover {
  transform: translateY(-12px) scale(1.02);
  transition: transform 0.35s ease;
}
.btn,
.action-btn,
.premium-btn {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  will-change: transform, box-shadow;
}
.btn:active,
.action-btn:active {
  transform: translateY(1px) scale(0.995);
}
@keyframes float-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.social-toggle {
  animation: float-up 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .img-animate,
  .card,
  .btn,
  .action-btn,
  .premium-btn,
  .social-toggle {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.stagger-wrap > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stagger-wrap.show > * {
  opacity: 1;
  transform: none;
}
.stagger-wrap.show > *:nth-child(1) {
  transition-delay: 0.06s;
}
.stagger-wrap.show > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger-wrap.show > *:nth-child(3) {
  transition-delay: 0.18s;
}
.stagger-wrap.show > *:nth-child(4) {
  transition-delay: 0.24s;
}
.stagger-wrap.show > *:nth-child(5) {
  transition-delay: 0.3s;
}
.animated-heading {
  position: relative;
  display: inline-block;
}
.animated-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, #2d6a4f, #40916c);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.animated-heading.revealed::after {
  transform: scaleX(1);
}
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple span.ripple-ink {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.35);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.hero-parallax {
  transform: translateZ(0);
  will-change: transform;
}
.hero {
  background-image: url("assets/images/image101.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
}
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    background-position: center center;
  }
}
.what-expect-section {
  padding: 100px 20px;
  background: #f5f9f8;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 80px;
}
.expect-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
}
.expect-row.reverse {
  flex-direction: row-reverse;
}
.expect-img {
  flex: 1;
}
.expect-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.expect-content {
  flex: 1;
}
.expect-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1b5e20;
}
.expect-content p {
  font-size: 16px;
/* Ensure package cards have consistent height and buttons align */
#packages .card{display:flex;flex-direction:column}
#packages .card .card-body{flex:1 1 auto;display:flex;flex-direction:column}
#packages .card .btn{margin-top:auto}
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}
.expect-content ul {
  padding-left: 20px;
}
.expect-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .expect-row,
  .expect-row.reverse {
    flex-direction: column;
  }
  .expect-row {
    gap: 30px;
  }
}
.foodings-section {
  background: #f3f3f3;
  padding: 80px 20px;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.foodings-small {
  color: #ff6a00;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.foodings-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2c2c3a;
}
.foodings-desc {
  max-width: 950px;
  margin: 0 auto 60px auto;
  color: #555;
  line-height: 1.8;
  font-size: 17px;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.food-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.food-card:hover {
  transform: translateY(-5px);
}
.food-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.food-label {
  padding: 18px 0;
  font-weight: 700;
  font-size: 18px;
  color: #1c1c1c;
  letter-spacing: 1px;
}
@media (max-width: 992px) {
  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .food-grid {
    grid-template-columns: 1fr;
  }
  .foodings-title {
    font-size: 32px;
  }
}
.premium-package {
  background: #f9f9f9;
  padding: 60px 20px;
}
.premium-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.premium-image {
  flex: 1;
}
.premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.premium-content {
  flex: 1;
  padding: 40px;
}
.premium-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #f57c40;
}
.premium-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.premium-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.premium-features li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
  color: #333;
}
.premium-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f57c40;
  font-size: 14px;
}
.premium-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #f57c40;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
}
.premium-btn:hover {
  background: #e26b2e;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .premium-container {
    flex-direction: column;
  }
  .premium-content {
    padding: 30px;
  }
}
.hilsa-section {
  padding: 80px 0;
  background: #f4f7f4;
}
.hilsa-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hilsa-image {
  flex: 1;
  min-width: 300px;
}
.hilsa-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hilsa-content {
  flex: 1;
  min-width: 300px;
}
.hilsa-content h2 {
  font-size: 36px;
  color: #1f5e3b;
  margin-bottom: 20px;
}
.hilsa-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.topbar {
  background: #0f5132;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
}
header {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo img {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}
nav a:hover {
  color: #0f5132;
}
.hero {
  height: 85vh;
  background: url("assets/images/image102.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(255, 255, 255);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero h1 {
  animation: slideDown 1s ease forwards;
  opacity: 0;
}
.hero p {
  animation: fadeUp 1.3s ease forwards;
  opacity: 0;
}
@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-overlay {
  z-index: 1;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0f5132;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 5px;
}
.section {
  padding: 70px 0;
}
.section.gray {
  background: #f5f5f5;
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}
.day {
  margin-bottom: 25px;
}
.list {
  max-width: 600px;
  margin: auto;
  list-style: none;
}
.list li {
  padding: 8px 0;
}
.booking form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.booking input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.booking button {
  padding: 12px;
  border: none;
  background: #0f5132;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background: #0f5132;
  color: white;
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .hero h1 {
    font-size: 30px;
  }
}
.navbar {
  padding: 12px 0;
  transition: all 0.3s ease-in-out;
}
.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.nav-link {
  padding: 8px 14px !important;
  transition: 0.3s ease;
}
.nav-link:hover {
  color: #19873c !important;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  .navbar-nav {
    text-align: center;
  }
  .nav-item {
    margin: 8px 0;
  }
  .nav-link {
    font-size: 1rem;
  }
  .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
  }
  .navbar-toggler-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  .nav-item {
    margin-left: 10px;
  }
  .nav-link {
    position: relative;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #198754;
    transition: 0.3s;
  }
  .nav-link:hover::after {
    width: 100%;
  }
}
.hilsa-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.hilsa-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}
.hilsa-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #ff7a3d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}
.hilsa-btn:hover {
  background: #e9652d;
}
@media (max-width: 768px) {
  .hilsa-container {
    flex-direction: column;
    gap: 40px;
  }
  .hilsa-content h2 {
    font-size: 28px;
  }
}
.action-btn {
  display: inline-block;
  padding: 15px 40px;
  margin: 10px 15px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}
.primary-action {
  background: #198754;
  color: #ffffff;
}
.primary-action:hover {
  background: #146c43;
}
.secondary-action {
  border: 2px solid #198754;
  color: #198754;
}
.secondary-action:hover {
  background: #198754;
  color: #ffffff;
}
@media (max-width: 768px) {
  .action-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 12px auto;
  }
}
.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.social-toggle {
  width: 60px;
  height: 60px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
.social-toggle:hover {
  transform: rotate(45deg);
}
.floating-social.active .social-icons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.social-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
}
.whatsapp {
  background: #25d366;
}
.facebook {
  background: #1877f2;
}
.instagram {
  background: #e4405f;
}
.floating-social {
  position: fixed !important;
  bottom: 25px !important;
  right: 25px !important;
  left: auto !important;
  top: auto !important;
  z-index: 99999 !important;
}
.floating-social {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
}
.social-toggle {
  width: 60px;
  height: 60px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
.social-toggle:hover {
  transform: rotate(45deg);
}
.social-icons {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.4s ease;
}
.floating-social.active .social-icons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-social.active .social-icons {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.social-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
}
.whatsapp {
  background: #25d366;
}
.facebook {
  background: #1877f2;
}
.instagram {
  background: #e4405f;
}


/*logo*/
.logo-icon {
    width: 35px;
    height: 35px;
    display: block;
}


.nav-link-call {
  padding: 8px 14px !important;
  transition: 0.3s ease;
}
.nav-link-call:hover {
  color: #ff6a00 !important;
}
.call-nav-item{
 width: 50px;
  height: 50px;
  background: #16a403;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s ease;
  
}