
body {
  font-family: 'Inter', sans-serif;
}



/*------------------ whatsapp-btn css code---------------------------- */

@import url("https://fonts.googleapis.com/css?family=Roboto");
/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 100;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}
@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: .3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: .3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4.0s ease 4;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 10px;
  bottom: 85px;
  right: 6px;
  transition: .5s;
  border-radius: 10px;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight .6s 0.0s both;
}
.popup-whatsapp > div {
  margin: 5px;
}
@media (max-width: 680px) {
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}
.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: column;
}
.popup-whatsapp > .content-whatsapp.-top p {
  color: #585858;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 1.0em;
}
.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 0px 0px 15px 0px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f76060;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}
.closePopup:hover {
  background-color: #f71d1d;
  transition: .3s;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}
.send-msPopup:hover {
  background-color: #f8f8f8;
  transition: .3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight .6s 0.0s both;
}

input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: .3s;
}
@media (max-width: 420px) {
  input.whats-input[type=text] {
    width: 225px;
  }
}
input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}
input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: .3s;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #333333;
}

  /*------------------ whatsapp-btn css code---------------------------- */

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 10px 30px;
  min-height: 70px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

/* Logo container */
.navbar-brand {
  display: flex;
  align-items: center;
}

/* ✅ Fixed logo height (works for ANY logo size) */
.logo {
  height: 50px;     /* 👈 control logo size here */
  width: auto;
  object-fit: contain;
}

/* Nav links */
.navbar-nav .nav-link {
  margin: 0 10px;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

/* Button */
.enquire-btn {
  background-color: #f39c12;
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  font-weight: 500;
  transition: 0.3s;
}

.enquire-btn:hover {
  background-color: #d68910;
  color: #fff;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}

/* Small devices */
@media (max-width: 576px) {
  .logo {
    height: 40px;
  }
}



/* HERO SECTION */
/* HERO SECTION */
.hero {
  min-height: 75vh;
  padding-top: 120px;
  padding-bottom: 120px;
  background: 
    linear-gradient(135deg, #062337cc, #09355399, #13868266),
    url('img/home-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* TEXT */
.hero-title {
  font-size: 60px;
  font-weight: 700;
}

.hero-title span {
  color: #2ec4b6;
}

/* STATS WRAPPER FIX */
.stats-wrapper {
  margin-top: -60px;  /* pull card up slightly */
  position: relative;
  z-index: 10;
}

/* CARD */
.stats-card {
  background: #fff;
  /*padding: 20px 20px;*/
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* EACH COLUMN */
.stats-card .col-md-3 {
  padding: 10px 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .stats-wrapper {
    margin-top: 20px; /* remove overlap on mobile */
  }
}


/* Section */
.section-subtitle {
  color: #2ec4b6;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 500;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.section-desc {
  font-size: 15px;
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

/* Card */
.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

/* .package-card:hover {
  transform: translateY(-6px);
} */

/* Image */
.image-box {
  position: relative;
}

.image-box img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.price {
  position: absolute;
  bottom: 10px;        /* slightly tighter */
  left: 10px;
  background: #2d6cdf;
  color: #fff;
  padding: 4px 10px;  /* reduced padding */
  border-radius: 12px; /* less rounded */
  font-size: 11px;    /* smaller text */
  font-weight: 500;
}

/* Content */
.content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Text */
.content h5 {
  font-size: 17px;
  font-weight: 600;
}

.content p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}

/* Button alignment */
.content .d-flex {
  margin-top: auto;
}

/* Buttons */
.btn {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 25px;
  white-space: nowrap;
}

/* Outline button (teal) */
.btn-outline-primary {
  border: 2px solid #2ec4b6;
  color: #2ec4b6;
}

.btn-outline-primary:hover {
  background: #2ec4b6;
  color: #fff;
}

/* Book button */
.btn-warning {
  background-color: #f4b400;
  border: none;
  color: #000;
  font-weight: 500;
}

.btn-warning:hover {
  background-color: #e09e00;
}

/* Smooth zoom */
.image-box img {
  transition: transform 0.4s ease;
}

/* Hover effect */
.package-card:hover .image-box img {
  transform: scale(1.1);
}





.hm-hero {
  position: relative;
  height: 80vh;
  background: url('img/honeymoon.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* Dark overlay */
.hm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b3e60b3;
}

/* Content */
.hm-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}

.hm-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hm-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Glass cards */
.hm-card-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hm-card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.15);
  padding: 15px 25px;
  border-radius: 12px;
  min-width: 200px;
}

.hm-card h6 {
  margin: 0;
  font-weight: 600;
}

.hm-price {
  color: #00e0ff;
  font-size: 14px;
}

/* Button */
.hm-btn {
  background: #f59e0b;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
}

.hm-btn:hover {
  background: #d97706;
}



/* Section */
.svc-section {
  padding: 70px 20px;
  text-align: center;
  background: #f5f7fa;
}

/* Title */
.svc-subtitle {
  color: #0d9488;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.svc-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

/* Grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 150vh;
  margin: auto;
}

/* Card */
.svc-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.svc-card:hover {
  transform: translateY(-5px);
}

/* Icon Circle */
.svc-icon {
  width: 50px;
  height: 50px;
  background: #e6f4f3;
  color: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
}

/* Text */
.svc-text {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}



.gallery{
  background: #f5f7fa;
}

/* Card */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 250px; /* 👈 fixed height for uniform look */
}

/* Image fit */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 MAGIC: handles any image size */
  transition: transform 0.4s ease;
}

/* Hover zoom */
.gallery-card:hover img {
  transform: scale(1.1);
}

/* Optional overlay */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-card {
    height: 200px;
  }
}

/* Overlay text */
.overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

/* Text style */
.overlay-text h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}


/* Show on hover */
.gallery-card:hover .overlay-text {
  opacity: 5;
  transform: translateY(0);
}

/* Overlay shadow */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* 👈 darker shadow */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Show shadow on hover */
.gallery-card:hover::after {
  opacity: 1;
}







/* Section */

    .reviews {
      padding: 60px 0;
      background-color: #f5f7fa;
    }

    /* Card */
    .review-card {
      background: #fff;
      border-radius: 12px;
      transition: 0.3s;
      height: 100%;
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Stars */
    .stars {
      color: #f4b400;
      font-size: 18px;
      letter-spacing: 2px;
    }

    /* Text */
    .review-text {
      font-size: 15px;
      color: #555;
      margin: 15px 0;
    }

    /* Name */
    .review-card h6 {
      font-weight: 600;
    }





  .footer-wrapper{
      background:#0a4468;
      min-height:90vh;
      color:#fff;
      padding-top:92px;
    }

    /* TOP SECTION */

    .main-title{
      font-size:34px;
      font-weight:700;
      line-height:1.2;
      text-align:center;
      margin-bottom:18px;
      letter-spacing:-0.5px;
    }

    .sub-title{
      font-size:17px;
      line-height:1.8;
      font-weight:400;
      text-align:center;
      color:#b9c4cc;
      max-width:700px;
      margin:auto;
    }

    .cta-btn{
      width:300px;
      height:62px;
      border-radius:14px;
      background:#f4a20a;
      border:none;
      color:#fff;
      font-size:21px;
      font-weight:700;
      margin-top:30px;
      transition:.3s;
    }

    .cta-btn:hover{
      background:#df9408;
    }

    .top-space{
      margin-bottom:100px;
    }

    /* FOOTER */

    .footer-area{
      padding-bottom:40px;
    }

    .logo{
      width:82px;
      margin-bottom:20px;
    }

    .footer-desc{
      color:#d2dbe2;
      font-size:15px;
      line-height:1.9;
      max-width:290px;
      font-weight:400;
    }

    .footer-heading{
      font-size:18px;
      font-weight:700;
      margin-bottom:22px;
      letter-spacing:.3px;
    }

    .footer-links a{
      display:block;
      text-decoration:none;
      color:#d2dbe2;
      font-size:15px;
      margin-bottom:12px;
      transition:.3s;
    }

    .footer-links a:hover{
      color:#fff;
    }

    .contact-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:#d2dbe2;
      font-size:15px;
      margin-bottom:16px;
      line-height:1.6;
    }

    .contact-item i{
      color:#0db2b2;
      font-size:16px;
      margin-top:3px;
    }

    .trust-item{
      display:flex;
      align-items:center;
      gap:12px;
      color:#d2dbe2;
      font-size:15px;
      margin-bottom:16px;
    }

    .trust-item i{
      color:#0db2b2;
      font-size:16px;
    }

    .trust-text{
      color:#8ba3b5;
      font-size:14px;
      margin-top:8px;
    }

    .copyright{
      border-top:1px solid rgba(255,255,255,0.1);
      text-align:center;
      color:#8ba3b5;
      font-size:14px;
      padding:20px 0;
    }

    @media(max-width:991px){

      .main-title{
        font-size:34px;
      }

      .top-space{
        margin-bottom:100px;
      }

      .footer-heading{
        margin-top:30px;
      }

    }