* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --text-white: #fff;
  --btn-blue: #6dcbff;
  --text-blue: #040a1c;
  --text-rotate: #57a2cc;
  --nav-background: #00283f;
  --cart-text: #7a7879;
  --bg-dark-blue: #004d73; /* Exact match to your background */
  --accent-blue: #55c2e1;
}
@font-face {
  font-family: "Asap";
  src: url("fonts/asap/Asap-Regular.ttf") format(truetype);
}
@font-face {
  font-family: "Satisfy";
  src: url("fonts/satisfy/Satisfy-Regular.ttf") format(truetype);
}
body {
  font-family: "Asap";
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none !important;
}
ul li {
  list-style: none;
}
ul {
  padding-left: 0 !important;
}
svg {
  width: 72px;
  height: 72px;
}





.bg_header {
  position: absolute;
  width: 100%;
  z-index: 99;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-dark-blue);
}
.header.sticky .navbar-toggler-icon {
  filter: invert(1) brightness(100%) !important;
}
.nav-link {
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nav-link:hover {
  border-bottom: 2px solid white;
}
.logo-text {
  font-family: "Cursive", serif;
  font-size: 2.5rem;
  line-height: 1;
}
.sub-logo {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact_info a {
  color: white;
}
.contact_info a:hover {
  color: var(--btn-blue);
  transition: 0.5s ease-in-out;
}
.social_icons a i:hover {
  color: var(--btn-blue);
  transition: 0.5s ease-in-out;
}
.navbar .nav-item.dropdown {
  position: relative;
}
.navbar .has-megamenu {
  position: fixed;
}
.navbar .megamenu {
  top: 100%;
  left: 0;
  min-width: 200px;
  width: auto !important;
  position: absolute;
  margin-top: 0;
  background-color: var(--nav-background);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  z-index: 1000;
}

.megamenu .title {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.megamenu ul li a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 5px 0;
  transition: 0.3s;
}

.megamenu ul li a:hover {
  color: var(--btn-blue);
  padding-left: 5px;
}

.navbar .megamenu_1,
.navbar .megamenu_2,
.navbar .megamenu_3,
.navbar .megamenu_4,
.navbar .megamenu_5,
.navbar .megamenu_6,
.navbar .megamenu_7 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block;
}
.navbar .megamenu_3 {
  width: 700px !important;
}
/* ===============Most Important================ */
/* Target the dropdown menu */
.navbar .nav-item.dropdown .dropdown-menu {
  display: block; /* Keep it in the DOM */
  opacity: 0; /* Start invisible */
  visibility: hidden; /* Prevent clicking while invisible */
  transform: translateY(10px); /* Slight slide-down effect */
  transition: all 0.3s ease-in-out;
  transition-delay: 0.1s; /* Small delay before it disappears */
}

/* Show on Hover */
.navbar .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s; /* Open instantly on hover */
}

/* ============================ */
/* Breadcrumb */
/* ========================== */
.about_us {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 400px;
  padding-bottom: 9rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/about_us/about_bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 600px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: transparent;
  margin-bottom: 10px;
}
.breadcrumb a,
.breadcrumb span {
  margin: 0 10px;
  display: inline-block;
  color: white;
}
.breadcrumb a:hover {
  color: var(--btn-blue);
  transition: 0.5s ease-in-out;
}
.about_us {
  text-align: center;
}
.title h1 {
  font-family: "Satisfy";
  font-size: 5rem;
}
/* ========================== */
/* Story Section */
/* ========================= */
.story {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background: url("images/squid_bg.png");
  background-position: top right;
  background-repeat: no-repeat;
}
.story .container {
  margin-bottom: 3rem;
}
.story_title {
  text-align: center;
}
.story_title h2 {
  font-family: "Satisfy", cursive;
  font-size: 3.75rem;
  line-height: 4.5rem;
  color: var(--text-blue);
  margin-bottom: 2.5rem;
}
.description_1 p,
.description_2 p {
  font-size: 20px;
  display: block;
  font-weight: 300;
}
.description_1 {
  padding-left: 80px;
}
.description_2 {
  padding-right: 80px;
}
.video_section {
  position: relative;
  display: block; /* Changed from inline to block */
  width: 100%; /* Ensure it spans the container width */
  max-width: 900px; /* Optional: Prevents the video from getting too massive on huge screens */
  margin: 3rem auto; /* Centers the block and adds spacing top/bottom */
  overflow: hidden;
}
.video_section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.video_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video_btn a i {
  font-size: 40px;
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease-in;
}
.video_btn a i:hover {
  transform: scale(1.1);
  background: var(--btn-blue);
  color: white;
}

/* ========================================= */
/* Offer Section */
/* ========================================= */
.offer-section {
  background-color: var(--bg-dark-blue);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-family: "Satisfy";
  font-size: 4rem;
  margin-bottom: 50px;
}

.offer-icon {
  font-size: 3.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  display: inline-block;
}

.offer-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.offer-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 300px;
  margin: 0 auto 20px;
}

.find-more {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.find-more:hover {
  color: white;
  opacity: 1;
}
.find-more .svg {
  width: 39px;
  height: 18px;
}
/* ================================== */
/* Testimonial section */
/* ================================== */
.testimonial {
  position: relative;
  padding: 6rem 0;
  background: url(images/bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial::before {
  content: "";
  background: rgba(0, 33, 50, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.testimonial_heading {
  position: relative;
  z-index: 2;
  font-family: "Satisfy";
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 400;
  color: #fff;
}
.testimonial_content {
  padding: 0 80px;
  position: relative;
  z-index: 99;
}
.rating {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  gap: 2px;
  margin-bottom: 20px;
}
.fa-star {
  color: #f2a057;
}
.review {
  position: relative;
  font-family: "Asap", serif;
  font-style: italic;
  color: #fff;
  z-index: 1;
  margin-bottom: 20px;
}
.client_name {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: capitalize;
  color: #fff;
}
.mySwiper {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px 0 60px 0; /* Space for pagination */
}
.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  transform: scale(0.7);
  margin: 0 -20px;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #50b1e1;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
  .offer-card {
    margin-bottom: 50px;
  }
}

/*====================================*/
/*=Booking Section=*/
/*====================================*/

/* Container Setup */
.booking-hero {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  background-image: url("images/about_us/book_bg.jpg"); /* Replace with your image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial", sans-serif;
}

/* The light/white faded overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.65
  ); /* Adjust opacity for the "fade" look */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
}

/* Script Font Styling */
.headline {
  max-width: 600px;
  font-family: "Satisfy";
  font-size: 3.5rem;
  color: #0b1a32; /* Deep navy/black color */
  margin-bottom: 30px;
  font-weight: 400;
}

/* Button Styling */
.book-btn {
  display: inline-block;
  background-color: #004d7a; /* Specific Navy Blue */
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.5s ease;
}

.book-btn:hover {
  background-color: var(--accent-blue);
}

/* Scroll up arrow button */
.scroll-up {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #e0e0e0;
  border: none;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 2px;
}

/* ======================== */
/* Footer Section */
/* ======================== */

/* Custom Styles */
.footer-section {
  background-color: var(--bg-dark-blue);
  background-image: url("images/about_us/footer_btm.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.brand_logo a{
  max-width: 200px;
  display: block;
}
/* Headings styles */
.script-font {
  font-family: "Satisfy";
  font-size: 2.2rem;
}
.footer .brand_logo{
  margin: 0 auto;
}
.logo-font {
  font-family: "Cursive", sans-serif;
  font-size: 3rem;
  color: #87ceeb; /* Sky Blue */
}
.phone_no a{
  color: var(--text-white);
}
.phone_no a:hover{
  color: var(--accent-blue);
  transition: 0.5s ease-in-out;
}
.email a{
  color: var(--text-white);
}
.email a:hover{
  color: var(--accent-blue);
  transition: 0.5s ease-in-out;
}
/* Links and Hover Effects */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #87ceeb;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons a {
  color: #87ceeb;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Back to Top Position */
.back-to-top {
  position: absolute;
  right: 0;
  bottom: 20%;
}

.tracking-widest {
  letter-spacing: 2px;
}

/* ===================================== */
/* Media Querires tarts Here */
@media (max-width: 499px) {
  .social_icons {
    display: none;
  }
}
@media (max-width: 767px) {
  .social_icons {
    display: none;
  }

  /* Story Section */
  .description_1 {
    padding-left: 0;
  }
  .description_2 {
    padding-right: 0;
  }
}
