body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f7;
  color: #1f1f1f;
}


h1,
h2 {
  font-family: 'Playfair Display', serif;
}
p {
  font-family: 'Times New Roman', Times, serif;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

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


.text-red {
  color: #ff4c4c;
}
.text-primary {
  color: #017687 !important;
}

.bg-primary {
  background: #017687 !important;
}

.bg-red {
  background: #ff4c4c !important;
}
.bg-white{
  background: #fff !important;
}


.br-10 {
  border-radius: 10px;
}

.br-8 {
  border-radius: 8px;
}

.list-none {
  list-style: none;
}

.fs-15 {
  font-size: 15px;
}

.fs-14 {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

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

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

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  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: var(--color-primary);
}

.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: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Button - New
--------------------------------------------------------------*/
.lovely-btn {
  background-color: #fff;
  padding: 8px 25px 8px 25px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  border: 1px solid #017687;
  color: #000;
}

.lovely-icon {
  background-color: #ff4c4c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.lovely-btn:hover {
  background-color: #017687;
  color: #fff;
}

.lovely-btn:hover .lovely-icon {
  background-color: transparent;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Common container for main content width */
.top-header {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menuss {
  max-width: 100%;
  gap: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header-top {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.header-top .logo {
  display: flex;
  align-items: center;
}

.header-top .logo img {
  height: 70px;
  margin-right: 10px;
}

.header-top .logo-text {
  font-size: 0.9em;
  color: #666;
}

.header-top .contact-info-desktop {
  text-align: right;
}

.header-top .phone-number {
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
  display: block;
}

.header-top .call-text {
  font-size: 0.8em;
  color: #888;
}

.contact-icons {
  display: none;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.icon-btn:last-child {
  background-color: #dc3545;
}

.icon-btn:hover {
  opacity: 0.8;
}

.main-nav {
  background-color: #004d99;
  color: #fff;
  padding: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: block;
  padding: 10px 10px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
}

.main-nav ul li a i {
  margin-left: 5px;
  font-size: 0.8em;
}

.mega-menu {
  position: fixed;
  left: 40px;
  right: 40px;
  top: auto;
  background-color: #fff;
  border-top: 5px solid #007a8c;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}


.has-submenu:hover .mega-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mega-menu-content h3 {
  width: 100%;
  font-size: 1.8em;
  color: #02748c;
  margin-bottom: 20px;
  text-align: center;
}

.mega-menu-column {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
}

.mega-menu-column h4 {
  font-size: 1.2em;
  color: #02748c;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.mega-menu-column ul li {
  margin-bottom: 1px;
}

.mega-menu-column ul li a {
  color: #555;
  text-decoration: none;
  padding: 0;
  display: inline;
  background-color: transparent;
  font-size: 15px;
}

.mega-menu-column ul li a:hover {
  color: #007bff;
  text-decoration: underline;
  background-color: transparent;
}

.hamburger-menu {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #017687;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #017687;
  border-bottom: 1px solid #000000;
}

.mobile-menu-header .logo img {
  height: 40px;
}

.close-menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8em;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.2s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active>a {
  background-color: #003366;
}

.mobile-nav-list li a i.fa-caret-down {
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.mobile-submenu {
  list-style: none;
  background-color: rgba(0, 0, 0, 0.2);
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.mobile-nav-list li.has-mobile-submenu.open-submenu>a i.fa-caret-down {
  transform: rotate(180deg);
}

.mobile-nav-list li.has-mobile-submenu.open-submenu>.mobile-submenu {
  max-height: 500px;
}

.mobile-submenu li a {
  padding: 12px 20px;
  font-size: 1em;
}

@media (max-width: 768px) {
  .header-top .container {
    padding: 0 15px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .header-top .logo {
    order: 2;
    margin: 0 auto;
  }

  .header-top .logo-text {
    display: none;
  }

  .header-top .contact-info-desktop {
    display: none;
  }

  .contact-icons {
    display: flex;
    order: 3;
  }

  .main-nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    order: 1;
  }

  .mega-menu {
    position: static;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    box-shadow: none;
    border-top: none;
    padding: 0;
    display: none !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-menu-content {
    flex-direction: column;
    max-width: none;
    margin: 0;
    padding: 15px;
  }

  .mega-menu-content h3 {
    text-align: left;
    margin-bottom: 10px;
  }

  .mega-menu-column {
    min-width: auto;
    padding: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }

  .mega-menu-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mega-menu-column h4 {
    border-bottom: none;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .header-top .logo img {
    height: 50px;
  }

  .hamburger-menu,
  .icon-btn {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }

  .mobile-menu-header {
    padding: 10px 15px;
  }

  .mobile-menu-header .logo img {
    height: 35px;
  }

  .close-menu-btn {
    font-size: 1.5em;
  }

  .mobile-nav-list li a {
    padding: 15px 15px;
    font-size: 1em;
  }
}

/***********************
 Hero SECTION START HERE
************************/
.hero {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #f3f3f0;
}

/***********************
 Owl SECTION START HERE
************************/
.owl-sec {
  background: linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)), url(../img/popular-cruise.webp) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.owl-nav {
  display: flex;
  margin-top: 0.5rem;
  justify-content: center;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
  margin: 0 0.5rem;
  color: #ffffff;
  padding: 0.1rem 0.6rem;
  border: 2px solid #ffffff;
  font-size: 1.1rem;
  border-radius: 50%;
}

.owl-carousel .item img {
  border-radius: 1rem;
}

 @keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(12deg); }
  40% { transform: rotate(-12deg); }
  50% { transform: rotate(8deg); }
  60% { transform: rotate(-8deg); }
  70% { transform: rotate(4deg); }
  80% { transform: rotate(-4deg); }
  90% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.call-icon {
  animation: ring 1.2s infinite;
}









