
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #444444;
  text-decoration: none;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 80px;
  z-index: 99999;
  background: #d7df21;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #252325;
  line-height: 0;
}
.back-to-top:hover {
  background: #e5ee23;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* TOP HEADER */
.top-header {
  width: 100%;
  padding: 10px 100px;
  background: linear-gradient(90deg, #0b4d9c, #1e90ff);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideDown 0.8s ease-in-out;
}

.top-header a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.top-header i {
  margin-right: 6px;
  color: #ffd700;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
}

/* HOVER EFFECT */
.top-header a:hover {
  text-decoration: underline;
}

/* ANIMATION */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .top-header {
    justify-content: center;
  }

  .top-left {
    display: none; /* Hide email */
  }

  .top-right {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  background:#ffffff;
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 90px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #252325;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #283890;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #d7df21;
  box-shadow: 0px 0px 0px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #ffffff;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #1f3548;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1f3548;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #428bca;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #428bca;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}
#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

#hero h3 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 100;
  text-align: center;
}



#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  text-align: center;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #428bca;
  


}
#hero .btn-get-started:hover {
  background: #1c5c93;
  
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (max-height: 500px) {
  #hero, #hero .carousel-item {
    height: 120vh;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 5px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #d7df21;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}




/*--------------------------------------------------------------
# Tour section
--------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.tour1-section {
    padding: 60px 5%;
    text-align: center;
}

.tour1-section h2 {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.tour1-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tour-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.tour-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.tour-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.tour-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 18px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
}

.btn-blue {
    background: #1da1f2;
}

.btn-green {
    background: #2bb673;
}

.btn:hover {
    opacity: 0.85;
}

.tour-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
}

/* IMAGE */
.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;   /* 🔥 zoom timing */
}

/* ZOOM ON HOVER */
.tour-card:hover img {
    transform: scale(1.15);  /* zoom level */
}



/*--------------------------------------------------------------
# Our services
--------------------------------------------------------------*/
.services-section {
  padding: 60px 20px;
  text-align: center;
  background: #f7f9fc;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 40px;
}

.services-slider {
  overflow: hidden;
  width: 100%;
}

.services-track {
  display: flex;
  gap: 25px;
  animation: autoSlide 25s linear infinite;
}

.service-card {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #19b5fe, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle i {
  font-size: 30px;
  color: #fff;
}

.service-card h4 {
  font-size: 16px;
  color: #333;
}

/* AUTO SLIDE */
@keyframes autoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-card {
    width: 240px;
  }
}



/*--------------------------------------------------------------
# experience
--------------------------------------------------------------*/

/* Elegant number */
.stat-card h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0f172a; /* deep premium navy */
  margin-bottom: 6px;
  line-height: 1;
}

/* Elegant label text */
.stat-card p {
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  position: relative;
  padding-top: 12px;
}

/* Soft divider line */
.stat-card p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transform: translateX(-50%);
  border-radius: 2px;
}
.stats-section {
  font-family: 'Poppins', sans-serif;
}

.stats-section {
  background: #f8f9fb;
  padding: 60px 15px;
}

.stats-wrapper {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

/* USE GAP INSTEAD OF MARGIN */
.stats-slider {
  display: flex;
  gap: 24px; /* spacing between cards */
  transition: transform 0.6s ease-in-out;
}

/* CARD */
.stat-card {
  flex: 0 0 calc(33.333% - 16px); /* PREVENT CUT */
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


/* 🔹 MOBILE */
@media (max-width: 768px) {
  .stats-slider {
    gap: 0;
  }

  .stat-card {
    flex: 0 0 100%;
  }
}





/* Right Bottom Social Bar */
.right-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Icon Style */
.right-social .icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* Hover Animation */
.right-social .icon:hover {
  transform: translateX(-6px) scale(1.1);
}

/* Brand Colors */
.facebook {
  background: #1877f2;
}
.instagram {
  background: linear-gradient(135deg, #e1306c, #f77737);
}
.whatsapp {
  background: #25d366;
}
.youtube {
  background: #ff0000;
}

/* Mobile Adjust */
@media(max-width: 768px) {
  .right-social {
    bottom: 12px;
    right: 12px;
  }
  .right-social .icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}




/* popup */

body{
  font-family: Arial, sans-serif;
  margin:0;
}

/* OVERLAY */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

/* POPUP */
.popup-box{
  background:#fff;
  width:900px;
  max-width:95%;
  max-height:90vh;
  overflow:auto;
  border-radius:6px;
}

/* HEADER */
.popup-header{
  background:#283a90;
  color:#fff;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.close-btn{
  font-size:22px;
  cursor:pointer;
}

/* FORM */
.form-body{padding:20px}
.form-row{
  display:flex;
  gap:20px;
  margin-bottom:15px;
}
.form-group{flex:1}

label{
  font-size:14px;
}

input, textarea{
  width:100%;
  padding:10px;
  margin-top:5px;
  border:1px solid #ddd;
  border-radius:4px;
}

textarea{height:80px}

/* ROOMS BUTTON */
.rooms-btn{
  width:100%;
  background:#428bca;
  color:#fff;
  border:none;
  padding:18px;
  border-radius:30px;
  cursor:pointer;
  font-size:15px;
}

.rooms-btn small{
  display:block;
  margin-top:5px;
}

/* COUNTER */
.counter-box{
  display:none;
  border:1px solid #ddd;
  padding:15px;
  border-radius:6px;
  margin-top:10px;
}

.counter-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.counter-controls button{
  width:30px;
  height:30px;
  border:none;
  background:#428bca;
  color:#fff;
  border-radius:50%;
  cursor:pointer;
}

.counter-controls span{
  margin:0 10px;
  font-weight:bold;
}

/* BUTTONS */
.form-actions{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.submit-btn{
  background:#428bca;
  color:#fff;
  border:none;
  padding:10px 30px;
  border-radius:30px;
  cursor:pointer;
}

.cancel-btn{
  background:#fff;
  border:1px solid #428bca;
  color:#428bca;
  padding:10px 30px;
  border-radius:30px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .form-row{flex-direction:column}
}

























































/*--------------------------------------------------------------
# Special Offer
--------------------------------------------------------------*/

body{
  font-family: 'Segoe UI', sans-serif;
  background:#fff;
}

.offers-section{
  width:90%;
  margin:60px auto;
  text-align:center;
}

.offers-section h2{
  letter-spacing:4px;
  margin-bottom:40px;
}

.offer-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.offer-card img{
  width:100%;
  height:420px;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2));
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.overlay h3{
  letter-spacing:3px;
  font-size:20px;
  margin-bottom:10px;
}

.overlay p{
  font-size:14px;
  margin-bottom:20px;
}

.btn-group{
  display:flex;
  gap:15px;
}

.btn{
  padding:10px 22px;
  border-radius:25px;
  font-size:13px;
  text-decoration:none;
  color:#fff;
}

.btn.view{
  background:#27c4b8;
}

.btn.enquire{
  background:#2c7be5;
}



.swiper-button-next::after,
.swiper-button-prev::after{
  font-size:14px;
  color:#fff;
}




/*--------------------------------------------------------------
# Customer Reviews
--------------------------------------------------------------*/

.reviews-section{
  width:90%;
  margin:80px auto;
  text-align:center;
}

.reviews-section h2{
  font-size:28px;
  letter-spacing:5px;
  margin-bottom:50px;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.review-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
  transition:0.3s ease;
}

.review-card video{
  width:100%;
  height:260px;
  object-fit:cover;
}

.review-card:hover{
  transform:translateY(-8px);
}

/* Mobile view */
@media(max-width:768px){
  .reviews-grid{
    grid-template-columns:1fr;
  }

  .review-card video{
    height:240px;
  }
}































/*--------------------------------------------------------------
# About Home
--------------------------------------------------------------*/



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.about-modern {
  background: #f6f8fb;
  padding: 90px 20px;
}

.wrap {
  max-width: 1180px;
  margin: auto;
}

/* Header */
.about-head {
  text-align: center;
  max-width: 820px;
  margin: auto;
}

.about-head .tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #2563eb;
  font-weight: 600;
}

.about-head h1 {
  font-size: 42px;
  margin: 14px 0 16px;
  font-weight: 700;
  color: #0f172a;
}

.about-head p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

/* Description */
.about-desc {
  max-width: 900px;
  margin: 45px auto 65px;
  text-align: center;
  font-size: 16px;
  color: #475569;
  line-height: 1.9;
}

/* Stats */
.stats-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 70px;
}

.stat-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2563eb;
}

.stat-box span {
  font-size: 14px;
  color: #64748b;
}

/* Info Cards */
.info-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #0f172a;
}

.card ul {
  list-style: none;
}

.card ul li {
  padding: 10px 0;
  font-size: 15px;
  color: #475569;
  position: relative;
  padding-left: 18px;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* Mission */
.mission-modern {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  text-align: center;
  padding: 55px;
  border-radius: 22px;
}

.mission-modern h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.mission-modern p {
  max-width: 760px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-modern,
  .info-modern {
    grid-template-columns: 1fr;
  }

  .about-head h1 {
    font-size: 30px;
  }
}
























































.about {
  padding-top: 80px;
  padding-bottom: 0px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #d7df21;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #d7df21;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #d7df21;
}

.about .content .btn-learn-more:hover {
  background: #d7df21;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 50vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Common
--------------------------------*/
section {
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.section-description {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-divider {
  width: 50px;
  height: 3px;
  background: #d7df21;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Get Started Section 
--------------------------------*/
#about {
  background: rgb(255, 255, 255);
  padding-top: 60px;
  padding-bottom: 30px;
}

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .about-content {
  background: #fff;
}

#about .about-title {
  color: #333;
  font-weight: 700;
  font-size: 28px;
}

#about .about-text {
  line-height: 26px;
  margin-bottom: 15px;
}

#about .about-text:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Recent Photos
--------------------------------------------------------------*/
.recent-photos {
  padding: 5px;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 30px;
}
.recent-photos .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.recent-photos .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #d7df21;
}
.recent-photos .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d7df21;
}
.recent-photos .owl-nav, .recent-photos .owl-dots {
  margin-top: 25px;
  text-align: center;
}
.recent-photos .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
.recent-photos .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #95d3ff !important;
}
.recent-photos .owl-dot.active {
  background-color: #006fbe !important;
}
.recent-photos .gallery-carousel .owl-stage-outer {
  overflow: visible;
}
.recent-photos .gallery-carousel .center {
  border: 6px solid #006fbe;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}



/*********************************
6. Services new
*********************************/

.services
{
	width: 100%;
	background: #ffffff;
	padding-top: 30px;
	padding-bottom: 30px;
}
.services_row
{
	margin-top: 30px;
}
.service_col
{
	margin-bottom: 30px;
}
.service
{
	width: 100%;
	background: #f5f7fa;
	padding-top: 46px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 57px;
}
.service:hover
{
	background: #d8d9da;
}


.service_icon
{
	width: 100px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
}
.service_icon svg
{
	width: 61px;
	height: 61px;
}
.service_icon img
{
	max-width: 100%;
}
.service_text
{
	margin-top: 16px;
}
.service_text p
{
	color: #696969;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.service_title
{
	font-size: 20px;
	font-weight: 700;
	color: #232323;
	padding-top: 41px;
	margin-top: 26px;
}

.service:hover .service_text p
{
	color: #252325;
}





/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

section {
  padding: 30px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 5px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #d7df21;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}






.clients {
  padding-bottom: 30px;
  background-color: #ffffff;
}


.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #d7df21;
 
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d7df21;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}



/* Products
--------------------------------*/

#Products {
  background: rgb(255, 255, 255);
  padding: 10px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

#Products .Products-img {
  overflow: hidden;
}

#Products .Products-img img {
  max-width: 100%;
}

@media (max-width: 768px) {
  #Products .Products-img {
    height: auto;
  }

  #Products .Products-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#Products .Products-content {
  background: #fff;
}

#Products .Products-title {
  color: #333;
  font-weight: 700;
  font-size: 28px;
}

#Products .Products-text {
  line-height: 26px;
  margin-bottom: 15px;
}

#Products .Products-text:last-child {
  margin-bottom: 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.Products .content ul {
  list-style: none;
  padding: 0;
}

.Products .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.Products .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.Products .content p:last-child {
  margin-bottom: 0;
}






/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.booking-container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
}

.form-box {
  flex: 2;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

textarea {
  height: 80px;
}

.room-btn {
  width: 100%;
  background: #1c4fa1;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.room-btn span {
  font-size: 12px;
}

.guest-box {
  display: none;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.counter button {
  background: #1c4fa1;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.counter span {
  margin: 0 10px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.submit {
  background: #1c4fa1;
  color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  border: none;
}

.cancel {
  background: #fff;
  color: #1c4fa1;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid #1c4fa1;
}

/* CONTACT INFO */
.contact-box {
  background: #263b8c;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

.contact-box h3 {
  margin-bottom: 25px;
  font-size: 20px;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  color: #3ddc97;
  font-size: 18px;
  min-width: 22px;
  margin-top: 4px;
}

.contact-item div {
  font-size: 14px;
  line-height: 1.6;
}

.contact-item span {
  font-size: 13px;
  color: #d0d8ff;
}

/* ===============================
   MOBILE RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

  body {
    padding: 0 10px;
  }

  .booking-container {
    flex-direction: column;
    margin: 20px auto;
  }

  .form-box,
  .contact-box {
    width: 100%;
    padding: 20px;
  }

  .row {
    flex-direction: column;
    gap: 12px;
  }

  .room-btn {
    border-radius: 8px;
    font-size: 14px;
  }

  .guest-box {
    margin-top: 10px;
  }

  .buttons {
    flex-direction: column;
  }

  .submit,
  .cancel {
    width: 100%;
    text-align: center;
  }

  /* CONTACT INFO MOBILE FIX */
  .contact-box h3 {
    font-size: 18px;
    text-align: center;
  }

  .contact-item {
    align-items: flex-start;
    gap: 12px;
  }

  .contact-item i {
    font-size: 16px;
    margin-top: 3px;
  }

  .contact-item div {
    font-size: 14px;
    line-height: 1.5;
  }
}














/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.main-footer {
  background: #283a90;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin: 10px 0;
}

.footer-col p {
  color: #cfd8dc;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #1abc9c;
}



/* Packages */
.package-list span {
  display: inline-block;
  margin: 6px 6px 6px 0;
  padding: 8px 16px;
  background: #2e3bf7;
  border-radius: 20px;
  font-size: 13px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;

}

.contact-info li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #cfd8dc;
}

.contact-info i {
  color: #1abc9c;
  font-size: 16px;
  margin-top: 3px;
}

/* Bottom Bar */
.footer-bottom {
  background: #f7941d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;

  }
}










/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/



.services-section {
  padding: 90px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.services-section h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Service Box */
.service-box {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.service-box i {
  font-size: 42px;
  color: #2563eb;
  margin-bottom: 20px;
  display: inline-block;
}

.service-box h3 {
  font-size: 18px;
  color: #0f172a;
  font-weight: 500;
}

/* Hover Animation */
.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.service-box:hover i {
  transform: scale(1.15);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section h2 {
    font-size: 28px;
  }
}







/*--------------------------------------------------------------
# tour package
--------------------------------------------------------------*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

.containertour {
  max-width: 1200px;
  margin: auto;
  display: flex;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  padding: 15px;
  background: #eee;
}

.accordion-btn {
  width: 100%;
  background: #2fc1a0;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.accordion-content {
  display: none;
  background: #fff;
}

.accordion-content.show {
  display: block;
}

.accordion-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion-content li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* CONTENT */
.content {
  flex: 1;
  padding: 20px;
}

.package-card {
  background: #fff;
  border: 1px solid #ddd;
  margin-top: 20px;
}

.package-header {
  background: #2fc1a0;
  color: #fff;
  padding: 10px;
}

.package-body {
  display: flex;
  gap: 20px;
  padding: 15px;
}

.package-body img {
  width: 250px;
}

.icons i {
  font-size: 18px;
  margin-right: 10px;
}

.btn-group {
  margin-top: 15px;
}

.btn {
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
}

.view {
  background: #2fc1a0;
}

.enquire {
  background: #8cc63f;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# tour details
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

.tour-section {
  padding: 50px 0;
}

.tour-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.image-box {
  flex: 0 0 480px;
}

.image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.content-box h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.duration {
  color: #777;
  margin-bottom: 15px;
}

.content-box h3 {
  margin-bottom: 25px;
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-header {
  width: 100%;
  background: #2bbf9b;
  color: #fff;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.accordion-body {
  display: none;
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 0 0 6px 6px;
}

.icon {
  font-size: 20px;
  font-weight: bold;
}

.enquire-btn {
  margin-top: 25px;
  padding: 14px 30px;
  background: #2bbf9b;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tour-container {
    flex-direction: column;
    text-align: center;
  }

  .image-box img {
    max-width: 100%;
  }
}
/* ===============================
   MOBILE VIEW FIX
================================ */
@media (max-width: 768px) {

  /* MAIN CONTAINER */
  .containertour {
    flex-direction: column;
  }

  /* SIDEBAR */
  .sidebar {
    width: 100%;
    padding: 10px;
  }

  .accordion-btn {
    font-size: 14px;
    padding: 12px;
  }

  /* CONTENT */
  .content {
    padding: 10px;
  }

  /* PACKAGE CARD */
  .package-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .package-body img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .package-body h4 {
    margin-top: 15px;
  }

  .icons {
    justify-content: center;
    display: flex;
  }


  .btn {
    width: 90%;
  }
}
