body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #0c111b, #000);
}

.navbar-custom {
  background: linear-gradient(to right, #0c111b, #000);
  padding: 0.75rem 2rem;
}

.navbar-brand {
  font-weight: bold;
  color: #00bfff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand img {
  height: 30px;
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
}

.nav-link:hover {
  color: #00bfff !important;
}

.nav-link.active {
  color: #00bfff !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00bfff;
}

.btn-book {
  background-color: #00bfff;
  color: white;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.btn-book:hover {
  background-color: #00a6d6;
}

.navbar-nav .nav-item {
  margin: 0 0.3rem;
}

.hero-box img {
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.custom-nav {
background-color: transparent;
border: 2px solid #00bfff;
border-radius: 50%;
width: 40px;
height: 40px;
top: 50%;
transform: translateY(-50%);
color: #00bfff;
}
.overlay-text {
position: absolute;
left: 0;
top: 0;
transform: translateY(-50%);
font-size: 4rem;
font-weight: bold;
opacity: 0.05;
pointer-events: none;
z-index: 0;
}
@media (max-width: 768px) {
.overlay-text {
font-size: 2rem;
top: 10px;
transform: none;
}
}
.container-fluid {
  background-color: #0e1a2b;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
}
.bg-dark-blue {
  background-color: #0e1a2b;
}
.highlight-text {
  color: #5dc1b9;
}
.btn-custom-blue {
  background-color: #5dc1b9;
  border: none;
}
.btn-custom-outline {
  border: 1px solid #fff;
  color: #fff;
}

.text-outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    color: transparent;
    pointer-events: none;
  }
  
.card-custom {
  background-color: #152233;
  border: none;
  border-radius: 15px;
}
.icon-box {
  width: 50px;
  height: 50px;
  background-color: #5dc1b9;
  border-radius: 10px;
}

.feature-card {
background-color: #12161f;
transition: 0.3s ease-in-out;
border: 1px solid transparent;
}

.feature-card:hover {
background: #007bff;
color: white;
border-color: rgba(0, 123, 255, 0.5);
box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.feature-card:hover .text-white-50 {
color: #ffffff !important;
}

.feature-card:hover i {
color: white !important;
}
.cta-box {
background-color: #00bfff !important;
}
.accordion-button:focus {
box-shadow: none;
}
.faq-section {
background-color: #030b17;
position: relative;
}
.footer-section a:hover {
color: #ffffff !important;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}
.btn-book {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-book:hover {
  background-color: #008cba; /* Slightly darker for hover */
  transform: scale(1.05); /* Slightly increase size on hover */
  animation: pulse 1s infinite; /* Pulse animation */
}

@keyframes pulse {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1); /* Slightly enlarge */
  }
  100% {
    transform: scale(1.05);
  }
}
.btn-info {
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.btn-info:hover {
  background-color: #008cba; /* Slightly darker for hover */
  transform: scale(1.05); /* Slightly increase size on hover */
  animation: pulse 1s infinite; /* Pulse animation */
}

@keyframes pulse {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1); /* Slightly enlarge */
  }
  100% {
    transform: scale(1.05);
  }
}
.carousel-item img {
  transition: transform 0.5s ease-in-out;
}

.carousel-item:hover img {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Apply animation to carousel images only */
.carousel-item img {
  animation: fadeIn 1s ease-out;
}
/* Watermark Style */
.overlay-text {
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  top: 20px;
  left: 0;
  width: 100%;
  text-align: left;
  pointer-events: none;
}

/* Section Title */
.section-title {
  position: relative;
  z-index: 2;
}

/* Feature Card Styling */
.feature-card {
  background-color: transparent;
  border: none;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  color: #aaa;
}

.feature-card i {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  color: #6c757d;
  transition: color 0.3s ease;
}

.feature-card h5 {
  font-weight: 600;
  color: #3390ff;
}

.feature-card:hover,
.feature-card.active {
  background-color: #0d99ff;
  color: #fff;
}

.feature-card:hover i,
.feature-card.active i {
  color: #fff;
}

.feature-card:hover h5,
.feature-card.active h5 {
  color: #fff;
}

/* Blue Filled Button */
.btn-modern-blue {
  background-color: #3390ff;
  color: #fff;
  border: 2px solid #3390ff;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-modern-blue:hover {
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}


/* Outline Button */
.btn-modern-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #3390ff;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-modern-outline:hover {
  background-color: #3390ff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(51, 144, 255, 0.4);
  transform: translateY(-2px);
}
