@import url('fonts/fonts.css');

/* BODY STYLE */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: url('../images/background3.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  scroll-behavior: smooth;
  /* Hide default cursor */
}

body {
  color: #051022;
  font-family: 'Red Hat Text', sans-serif;
  font-variant-numeric: lining-nums;
  overscroll-behavior: none;
  overflow-x: hidden;
}
section {
  background-color: transparent;
}

/* ---------------------------------------------------
  FONT SIZES
----------------------------------------------------- */
h1{
  font-size: 64px;
}
h2{
  font-size: 40px;
}
h3 {
  font-size: 35px;
}
h4 {
  font-size: 50px;
}

h5 {
  font-size: 32px;
}

h6 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ff-inter,
.ff-playfair {
  font-family: 'Faculty Glyphic', serif;
  font-weight: 600;
  font-variant-numeric: lining-nums;
}

.p-xss {
  font-size: 10px;
  font-weight: 300;
}

.p-xs {
  font-size: 12px;
  font-weight: 300;
}
.p-sm {
  font-size: 14px;
  font-weight: 300;
}
.p-md {
  font-size: 18px;
  font-weight: 300;
}
.p-lg {
  font-size: 22px;
  font-weight: 300;
}

.p-xlg {
  font-size: 28px;
}

.p-x2lg {
  font-size: 32px;
}

.pt-6 {
  padding-top: 6rem !important;
}

.mt-7 {
  margin-top: 6rem !important;
}

.white-bg {
  background-color: rgb(255, 255, 255);
 
}
.Line {
  font-weight: 300;
}
/* ---------------------------------------------------
  FONT FAMIILIES
----------------------------------------------------- */
/* ---------------------------------------------------
  GLOBAL STYLES
----------------------------------------------------- */
a {
  color: initial;
  text-decoration: none !important;
  transition: all .3s;
  display: inline-block
}

a:hover {
  color: #172B68;
}

:focus {
  outline: 0 !important;
  box-shadow: none !important
}

/* ---------------------------------------------------
  FONT WEIGHTS
----------------------------------------------------- */
.light {
  font-weight: 300 !important;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500 !important
}

.semi-bold {
  font-weight: 600
}

.bold {
  font-weight: 700
}

.x-bold {
  font-weight: 800
}

.font-black {
  font-weight: 900 !important;
}
.grey-background {
  background-color: #919294 !important;
}
/* ---------------------------------------------------
  COLORS
----------------------------------------------------- */
.m-grey-text {
  color: rgb(255, 255, 255, .6) !important;
}

.grey-text {
  color: #4f4f4f !important;
}
.l-grey-text {
  color: #E9ECEF !important;
}
.d-grey-text {
  color: #333333 !important;
}

.orange-text {
  color: #172B68 !important;
}

.site-logo  {
  max-width: 90px;
}

/* ---------------------------------------------------
  BUTTON STYLING
----------------------------------------------------- */


.btn-cta {
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  background-color: #172B68;
  border: none;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #afafaf;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.btn-cta:hover::before {
  width: 300%;
  height: 300%;
}

.btn-cta:hover {
  color: #fff !important;
}

.btn-cta span {
  position: relative;
  z-index: 2;
}

.btn-wave {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 12px 32px;
  background: #172B68;
  color: #fff !important;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0;
  transition: background 0.4s ease;
}

.btn-wave::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: translateY(0);
  transition: transform 0.6s ease-in-out;
}

.btn-wave:hover::before {
  transform: translateY(-100%);
}

.btn-wave:hover {
  background-color: #000;
}



.site-btn {
  border: 2px solid #172B68;
  padding: 12px 30px;
  transition: ease-in-out .2s;
  color: #172B68;
  background: transparent;
}

.site-btn:hover {
  background: #172B68;
  color: white;
}

.filled-btn {
  background: #172B68;
  color: white;
}
.filled-btn:hover {
  background: transparent;
  color: #172B68;
}
.border-btn {
  background: transparent;
  border: 2px solid #fff !important;
  color: #fff ;
}

.border-btn:hover {
  background: #172B68;
  border: 2px solid #172B68;
  color: white;
}

.transparent-btn {
  background: transparent;
  padding: 0;
  border: none;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
  outline: none;
}

.transparent-btn:hover {
  color: #2f4fae;
  transform: scale(1.03);
}


.transparent-btn:focus {
  outline: none;
  box-shadow: none;
}


/* ---------------------------------------------------
  INPUT STYLING
----------------------------------------------------- */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.site-input {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  width: 100%;
  background: transparent;
  border: 2px solid #ccc;
  outline: none;
  color: black;
  z-index: 1;
  transition: border-color 0.3s ease;
}

/* Light border always visible */
.site-input:hover {
  border-color: #ccc;
  border-bottom-color: #172B68;
}

/* Animated wrapper */
.input-animated {
  position: relative;
  display: block;
  width: 100%;
}

/* Horizontal lines */
.input-animated::before,
.input-animated::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #172B68;
  transition: transform 0.4s ease;
  z-index: 2;
}

.input-animated::before {
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
}

.input-animated::after {
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
}

/* Vertical lines */
.input-animated span::before,
.input-animated span::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #172B68;
  transition: transform 0.4s ease;
  z-index: 2;
}

.input-animated span::before {
  left: 0;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.input-animated span::after {
  right: 0;
  top: 0;
  transform: scaleY(0);
  transform-origin: top;
}

/* Trigger animation on focus */
.input-animated:focus-within::before,
.input-animated:focus-within::after,
.input-animated:focus-within span::before,
.input-animated:focus-within span::after {
  transform: scale(1);
}



/* INPUT STYLING */
.input-underline {
  position: relative;
  display: block;
  width: 100%;
}

.input-underline input {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-underline input:focus {
  outline: none;
}

.input-underline input::placeholder {
  color: #aaa;
}

/* Animated underline */
.input-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: width 0.4s ease;
}

.input-underline input:focus ~ ::after {
  width: 100%;
}

/* Fix: use sibling selector */
.input-underline input:focus ~ .underline-bar {
  width: 100%;
}

/* Underline bar element */
.underline-bar {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: width 0.4s ease;
}

.mailing-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-input {
  padding: 12px 30px;
  font-size: 16px;
  border: 2px solid #1f2d5c;
  outline: none;
  min-width: 300px;
  max-width: 100%;
}

input::placeholder,textarea::placeholder{
  color: #999;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

input[type="checkbox"] + label:before {
  border: 1px solid #172B68;
  background-color: white;
  content: "\00a0"; /* non-breaking space */
  display: inline-block;
  font: 16px/1em sans-serif;
  height: 26px;
  margin: 0 7px 0px 0;
  padding: 4px;
  vertical-align: middle;
  width: 26px;
  border-radius: 0px;
  transition: all 0.2s ease;
}

/* Tick on hover (preview) */
input[type="checkbox"]:not(:checked):hover + label:before {
  content: "\2713" !important;
  color: #ffffff !important;
  text-align: center;
  background-color: #273e82;
}

/* Actual checked state */
input[type="checkbox"]:checked + label:before {
  background: #172B68 !important;
  color: white !important;
  content: "\2713" !important;
  text-align: center;
  border: 1px solid #172B68 !important;
}

input[type="checkbox"]:checked + label:after {
  font-weight: bold;
}

input[type="checkbox"]:focus + label::before {
  outline: rgb(59, 153, 252) auto 5px;
}


/* ---------------------------------------------------
  PRELOADER
----------------------------------------------------- */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, .2);
  border-top-color: #172B68;
  height: 18em;
  margin: 0 auto 3.5em auto;
  width: 18em
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #172B68;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg)
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, .2);
  position: relative
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: .2s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: .4s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: .6s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: .8s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s
}

.ctn-preloader .loader-section {
  background-color: white;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px)
}

.ctn-preloader .loader-section.section-left {
  left: 0
}

.ctn-preloader .loader-section.section-right {
  right: 0
}

.loaded .animation-preloader {
  opacity: 0;
  transition: .3s ease-out
}

/* 
.heavy-cursor {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.2s ease, border-color 0.3s ease;
}
.inner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
*/

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: .7s .3s all cubic-bezier(.1, .1, .1, 1)
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: .7s .3s all cubic-bezier(.1, .1, .1, 1)
}

.animation-preloader img {
  width: 155px;
  object-fit: contain;
  position: absolute;
  top: 34%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-45%)
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg)
  }
}

@keyframes letters-loading {

  0%,
  100%,
  75% {
    opacity: 0;
    transform: rotateY(-90deg)
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0)
  }
}

/* ---------------------------------------------------
  HEADER (Optimized)
----------------------------------------------------- */
header {
  padding: 0 0 0 0;
}

.home-header {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(46, 85, 206, 0) 10.13%, rgba(23, 43, 104, 0.41) 100%);
}
header.home-header .dropdown button.transparent-btn {
  color: white;
}

.home-header a:not(.dropdown-item) {
  color: white;
}
header a:hover,
header a.active,
header a:active,
header a:focus {
  color: #172b68;
}

header ul.d-flex {
  list-style: none !important;
  padding-left: 0 !important;
}

.home-header .navbar-toggler {
  color: white;
}

header .offcanvas-title {
  color: white;
}

header .offcanvas .btn-close {
  filter: invert(1);
}

/* .site-header {
  position: sticky !important;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}  */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.site-header.header-loggedin {
  position: sticky !important;
  top: 0;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 8px 12px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link {
  color: #000000 !important;
}

.home-header .nav-link {
  color: #ffffff !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #172B68;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

.navbar-nav .nav-link:hover {
  color: #172B68 !important;
}

.navbar-nav .nav-link:not(:hover)::after {
  width: 0;
  left: 100%;
  transform: translateX(-100%);
}

/* Transparent Buttons */
.transparent-btn {
  background: transparent;
  padding: 0;
  border: none;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
  outline: none;
  vertical-align: middle;
  font-size: 18px !important; 
}

.transparent-btn:hover {
  color: #29438e;
  transform: scale(1.02);
}

.transparent-btn:focus {
  outline: none;
  box-shadow: none;
}

.icon-hover-bounce {
  transition: transform 0.2s ease-in-out;
}

.icon-hover-bounce:hover {
  transform: translateY(-3px);
}

/* Logo & Dropdowns */
header a:hover,
header a.active,
header a:active,
header a:focus {
  color: #172B68;
}

header .dropdown-menu a:hover,
header .dropdown-menu a:focus,
header .dropdown-menu a:active {
  color: #fff !important;
  background: #172B68 !important;
}

header .dropdown-menu {
  border-radius: 0;
  padding: 8px 0;
  min-width: 180px;
}

/* Search Bar */
.search-barr {
  position: relative;
  width: 40px;
  overflow: hidden;
  transition: width 0.4s ease;
}

.search-barr input {
  width: 100%;
  padding: 12px 60px 12px 12px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  color: #333;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.search-barr.open {
  width: 200px;
}

.search-barr.open input {
  opacity: 1;
  pointer-events: auto;
}

.search-barr input:focus {
  outline: none;
  border-bottom-color: #172B68;
  background: rgba(255, 255, 255, 0);
}

.search-barr button.transparent-btn {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #172B68;
  font-size: 20px;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.3s ease;
}

/* Optional: Improve mobile offcanvas button */
.navbar-toggler {
  border: none;
  font-size: 20px;
}

/* Language dropdown flag image */
.dropdown-menu img {
  max-width: 20px;
}

/* /* ---------------------------------------------------
  BANNER
----------------------------------------------------- */
.scroll-down {
  position: absolute;
  bottom: 15%;
  right: 70px;
  display: none;
}

.scroll-down span {
  width: 45px;
  height: 60px;
  border: 1px solid #172B68;
  color: #172B68;
  border-radius: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ---------------------------------------------------
  ABOUT US
----------------------------------------------------- */
.banner {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 100px 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us {
  padding: 120px 0;
}

.float-smooth {
  animation: floatLogo 3s ease-in-out infinite;
}

.desktop-logo {
  max-width: 200px;
}

.mobile-logo {
  max-width: 140px;
  display: block;
  margin: 0 auto;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 991px) {
  .scroll-down{
    display: block;
  }
  .about-us {
    padding: 80px 20px;
  }
}


.about-us-small {
  padding: 40px 0;
}

.about-us-medium {
  padding: 60px 0;
}

.about-us-large {
  padding: 80px 0;
}

.row {
  justify-content: space-around;
}

.services-banner {
  display: flex;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.service-panel {
  flex-grow: 1;
  flex-basis: 0;
  transition: all 0.5s ease;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.service-panel:hover {
  flex-grow: 4;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 43, 104, 0.7), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.service-panel .content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 70%;
  padding-bottom: 40px;
}

.service-panel:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.service-panel h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-panel p {
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .services-banner {
    flex-wrap: wrap;
    height: auto;
  }

  .service-panel {
    flex: 0 0 50%;
    height: 300px;
  }

  .service-panel:hover {
    flex: 0 0 50%;
  }

  .service-panel h3 {
    font-size: 1rem;
  }

  .service-panel p {
    font-size: 0.75rem;
  }
}
/* ---------------------------------------------------
  FEATURED PRODUCTS
----------------------------------------------------- */
.featured-product-card{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:20px;
}
.featured-product-card img {
  margin-bottom: 25px;
  width: auto;
    max-height: 50px;
}
.featured-product-card.blue-card {
  background: #172B68;
  color: white;
}
.featured-product-card.grey-card {
  background: #e8e8e8;
}
.featured-product-card.grey-card h3 {
  color: #172B68;
}
.site-carousel, .site-carousel div, .site-carousel .item img {
  height: 100%;
}
.site-carousel .item img {
  object-fit: cover;
}



/* Hide nav by default */
.site-carousel .owl-nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
}

/* Show nav on hover */
.site-carousel:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

/* Navigation button base style */
.site-carousel .owl-nav button {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-size: 20px !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover style */
.site-carousel .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  color: #172B68 !important;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Button positioning */
.site-carousel .owl-nav button.owl-prev,
.site-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


.site-carousel .owl-nav button.owl-prev {
  left: 20px;
}

.site-carousel .owl-nav button.owl-next {
  right: 20px;
}

/* ---------------------------------------------------
  FOOTER
----------------------------------------------------- */
footer {
  background: #172B68;
  color: white;
}

.footer-inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0;
}

footer h6 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

footer ul li {
  margin-top: 10px;
}

.footer-link {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}

.footer-link:hover {
  color: #fff;
}

footer p {
  font-size: 13px;
  color: #ccc;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-left: 0;
  margin-top: 16px;
}

.social-icons a {
  font-size: 22px;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.2);
}

.newsletter-form input[type="email"] {
  padding: 10px 16px;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 0;
  flex: 1 1 auto;
}

.newsletter-form input[type="email"]:focus {
  outline: 1px solid white;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.site-video, .site-video[poster]{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-embed {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-btn {
  width: 107px;
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.571);
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #172B68;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  animation: pulse-ring 1.7s infinite;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(23, 43, 104, 0.3);
  transform: translate(-50%, -50%) scale(1.05);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.571);
  }
  70% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


.gallery-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
}
.main-swiper .swiper-slide {
  position: relative;
}
.thumbs-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
}
.thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #172B68;
}

.slide-up-btn,
.slide-up-blue-btn,
.footer-subscribe-btn{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 0px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.slide-up-btn {
  color: #172B68;
  background: transparent;
  border: 1px solid #172B68;
}

.slide-up-blue-btn {
  color: #FFF;
  background-color: #172B68;
  border: 1px solid #172B68;
}

.slide-up-btn::before,
.slide-up-blue-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #172B68;
  z-index: -1;
  transition: height 0.4s ease;
}

.slide-up-blue-btn::before {
  background: #FFFFFF;
}

.slide-up-btn:hover::before,
.slide-up-blue-btn:hover::before {
  height: 100%;
}

.slide-up-btn:hover {
  color: white;

}

.slide-up-blue-btn:hover {
  color: #172B68;
}
.svg-inline--fa.fa-w-12 {
  width: 1.5em;
}
/* Content wrap for text + icon */
.btn-content {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* This handles spacing perfectly */
}

/* Animate icon without absolute positioning */
.btn-icon {
  opacity: 1;
  transform: translateX(6px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-up-btn:hover .btn-icon,
.slide-up-blue-btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.slide-up-invert-btn {
  position: relative;
  overflow: hidden;
  color: #FFF;
  border: 2px solid #FFF;
  padding: 12px 30px;
  background: transparent;
  transition: color 0.3s ease;
  z-index: 1;
}

.slide-up-invert-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFF;
  z-index: -1;
  transition: height 0.4s ease;
}

.slide-up-invert-btn:hover , .slide-up-btn:hover::before{
  color: #172B68;
}

.subscribe-btn{
  position: relative;
  overflow: hidden;
  color: #172B68;
  border: 2px solid #FFF;
  padding: 12px 30px;
  background: #FFF;
  transition: color 0.3s ease;
  z-index: 1;
  font-weight: 300;
  font-size: 1rem;
}
.subscribe-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: height 0.4s ease;
}

.subscribe-btn {
  height: 50px;
  padding: 12px 24px;
  background-color: #172B68;
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  border: none;
  transition: background 0.3s ease;
}
.subscribe-btn:hover {
  background-color: #0e1d49;
}

.footer-subscribe-btn {
  position: relative;
  overflow: hidden;
  color: #FFF;
  border: 1px solid #172B68;
  padding: 12px 30px;
  background: #172B68;
  transition: color 0.3s ease;
  z-index: 1;
}

.footer-subscribe-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFF;
  z-index: -1;
  transition: height 0.4s ease;
}

.footer-subscribe-btn:hover,
.footer-subscribe-btn:hover::before {
  color: #172B68;
}



.subscribe-btn:hover::before,
.slide-up-blue-btn:hover::before,
.slide-up-invert-btn:hover::before,
.slide-up-btn:hover::before,
.footer-subscribe-btn:hover::before{
  height: 100%;
}

.yacht-layout-arrow {
  width: 44px;
  height: 44px;
  background: #172B68;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease-out, background 0.2s ease-out;
  position: absolute;
  bottom: 10px;
  box-shadow: none;
  border-radius: 0;
}

.yacht-layout-arrow:hover {
  background: #0e1d49;
  transform: scale(1.1);
}

.yacht-layout-arrow.swiper-button-next {
  right: 10px;
}
.yacht-layout-arrow.swiper-button-prev {
  left: 10px;
}

.yacht-layout-thumbs-swiper .swiper-slide-thumb-active {
  border-left: 3px solid #172B68;
  background-color: #f3f6ff;
}

.yacht-layout-thumbs-swiper .swiper-slide {
  height: 33.33% !important;
  margin: 0 !important;
}

.dimension-logs {
  background: #172B68;
  padding: 60px 0;
  color: white;
}

.dimension-logs .table-responsive {
  border-radius: 0;
  overflow: hidden;
}

.dimension-logs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background-color: transparent;
}

.dimension-logs thead {
  background-color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dimension-logs thead th {
  padding: 16px 18px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.875rem;
  white-space: nowrap;
}

.dimension-logs tbody tr {
  transition: background 0.2s ease;
}

.dimension-logs tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.dimension-logs tbody th,
.dimension-logs tbody td {
  padding: 14px 18px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  vertical-align: middle;
}

.dimension-logs tbody th {
  font-weight: 600;
  text-align: center;
  width: 40px;
}



/* Layout */
.layout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 100%;
  height: 100vh;
}

.deck-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #e5e5e5;
  padding: 20px;
  overflow: hidden;
}

.deck-image img {
  width: 90%;
  max-height: 85vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.deck-image img.active {
  opacity: 1;
  transform: scale(1);
}

/* Thumbnails */
.deck-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  background: #f9f9f9;
}

.deck-thumb {
  flex: 0 0 33.333%;
  min-height: 33.333%;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.2s ease;
}

.deck-thumb:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.deck-thumb.active {
  border-left: 3px solid #172B68;
  background: #ffffff;
}

.deck-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.deck-thumb:hover img {
  transform: scale(1.02);
}

.deck-thumb span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
  color: #172B68;
  font-weight: 600;
  padding: 4px 10px;
}

/* Label */
.deck-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  font-weight: 600;
  font-family: 'Playfair Display';
  color: #172B68;
  padding: 6px 14px;
  border-radius: 0;
}

/* Nav buttons */
.nav-buttons {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.nav-buttons button {
  background: #172B68;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-buttons button:hover {
  background: #0e1d49;
  transform: scale(1.05);
}
.nav-buttons button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}


.purple-tag {
  background: rgba(67, 93, 195, 0.7);
  padding: 1px 9px;
}

span.yellow-tag {
  padding: 1px 9px;
  background: #FFF3CD;
  color: #664D03;
}
span.grey-tag {
  padding: 1px 9px;
  background: #fff;
  color: #172B68;
  font-weight:bold;
}

.product-gallery .thumbs-swiper .swiper-slide {
  width: auto;
  height: auto;
  opacity: 0.7;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}
.product-gallery .thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #172B68;
}
.product-gallery .thumbs-swiper img {
  display: block;
  margin: 0 auto;
}

.split {
  opacity: 0;
  will-change: transform;
  
}

.split * {
  will-change: transform;
 
}

.lineMask {
  overflow: hidden;
  display: block;
}


.brand-logo {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.brand-logo:hover {
  opacity: 1;
}



/* START OF HEADER_____  */
/* Hero Section */
.hero-section {
  position: static;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  z-index: 2;
  color: #fff;
  padding: 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.hero-header {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, #172B68 0%, transparent 80%);
  z-index: 3;
}

.navbar {
  padding: 1rem 2.5rem;
}

.navbar-nav .nav-link {
  margin-left: 16px;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: rgba(67, 93, 195, 0.7);
  transition: width 0.3s ease;
}

.home-header .nav-link:hover {
  color: #fff !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.text-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  pointer-events: none;
  padding: 0 20px;
}

/* English and Arabic masks */
.text-english {
  color: white;
  z-index: 2;
  transition: mask-image 0.1s ease, -webkit-mask-image 0.1s ease;
}

.text-arabic {
  color: white;
  z-index: 2;
  transition: mask-image 0.1s ease, -webkit-mask-image 0.1s ease;
  font-family: 'Tajawal' , 'Tajawal';
  direction: rtl;
  will-change: mask-image;
}

.glass-cursor {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50% !important;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.02s ease;
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.244),
    inset 0 0 5px rgba(255, 255, 255, 0.67);
}

.m-auto{
  margin: auto;
}

.no-h-padding{
  padding-left: 0;
  padding-right: 0;
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0) !important;
  color: #000 !important;
  font-weight: 500;
  box-shadow: none !important;
  padding: 2rem 0;
  font-size: 22px;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  content: '+';
  font-weight: bold;
  font-size: 1.5rem;
  transform: none !important;
  background-image: none !important;
  margin-top: -18px;
}

.accordion-button:not(.collapsed)::after {
  content: '-';
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  background-color: transparent !important;
}

.brand-intro {
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  padding: 80px 20px;
}

/* Scroll down arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  color: #172B68;
  animation: scrollBounce 1.8s ease-in-out infinite;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.scroll-down-arrow:hover {
  opacity: 1;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Background zoom animation */
.product-page-header-image .bg-image {
  object-fit: cover;
  object-position: center;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 1;
  animation: zoomFade 12s ease-in-out infinite alternate;
}
@keyframes zoomFade {
  from {
    transform: scale(1);
    opacity: 0.92;
  }
  to {
    transform: scale(1.07);
    opacity: 1;
  }
}

/* Gradient overlay refinement */
.product-page-header-image {
  height: 100vh; /* reduced height */
}

.product-page-header-image .gradient-overlay {
  height: 50%; /* reduced from 100% to 50% */
  bottom: 0;
  top: auto;
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0), transparent);
}

.product-desc-section {
background-color: white;
}

/* Content styling */
.product-header-content {
  z-index: 2;
  font-weight: 300;
  text-align: center;
  padding: 2rem 1rem;
}
.product-header-content .logo {
  max-width: 200px;
  margin: 0 auto 1rem;
  transition: transform 0.4s ease;
}

.product-header-content .logo:hover {
  transform: scale(1.05);
}

.product-header-content .title {
  color: #172B68;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.product-header-content .desc {
  color: #212529;
  font-size: 3rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 880px;
  margin: auto;
  letter-spacing: 0.2px;
}

/* Responsive */
.block-desc {
  padding: 0 50px;
}

.gallery-wrapper {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.gallery-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.142);
}
.gallery-caption h1 {
  font-size: 2rem;
  margin: 0;
}
.gallery-caption p {
  margin: 0;
  font-size: 1rem;
}
.bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 2;
}

.thumbs {
  display: flex;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}
.thumbs img {
  flex: 0 0 auto;
  width: 300px;
  height: 190px;
  object-fit: cover;
  cursor: pointer;
  border: 0px solid transparent;
  transition: border-color 0.3s ease;
}
.thumbs img:hover {
  border-color: #395cc6 !important;
  border: 2px solid ;
}
.thumbs img.active {
  border-color: #17307e;
  border: 2px solid ;
}

/* Fullscreen overlay */
#fullscreenModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.718);
  align-items: center;
  justify-content: center;
}
#fullscreenModal img {
  max-width: 90vw;
  max-height: 90vh;
}

.title {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
}
.title span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideIn 0.6s ease forwards;
}
@keyframes slideIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.brand-intro .heading-img {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.intro-content {
  max-width: 80%;
  margin: auto;
}

.intro-content p {
  font-size: 24px;
  color: #333;
  line-height: 2;
  font-weight: 400;
  opacity: 0;
  transform: translateY(40px);
}

.intro-content p strong {
  font-weight: 600;
  color: #172B68;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.site-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* Only apply equal height to this specific row */
.same-height-row>[class*='col-'] {
  display: flex;
}

.same-height-row>[class*='col-']>.spec-item {
  flex-grow: 1;
  width: 100%;
  height: 100%;
}

/* Box styling */
.spec-item {
  background: rgba(223, 223, 223, 0.152);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px;
  padding: 40px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.spec-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  z-index: 0;
  transition: 0.75s;
}

.spec-item:hover::before {
  left: 125%;
}

.spec-item:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid #17307e;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}



/* Icon */
.spec-icon {
  width: 50px;
  height: auto;
  margin-bottom: 12px;
  margin: auto;

}

/* Label and value */
.spec-label {
  font-size: 13px;
  color: #888;
  margin: 6px auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.full-img {
  width: 100vw;
}

.hover-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(23, 43, 104, 0.2), rgba(23, 43, 104, 0.95));
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(20px); */
  transition: all 0.4s ease;
  z-index: 2;
}

/* Show on hover (desktop only) */
.might-interested-img {
  width: 100%;
}

.might-interested-card-inner {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  z-index: 1;
}
.product-gallery .thumbs-swiper .swiper-slide-thumb-active {
  border-color: #172B68;
  opacity: 1;
}
.might-interested-card:hover .hover-details {
  opacity: 1;
  visibility: visible;
}
.might-interested-card {
  position: relative;
}
/* Base style for Swiper arrows like Owl Carousel */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-size: 20px !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Position */
.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

/* Hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  color: #172B68 !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Remove default Swiper arrow icons */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.section-animate-card,
.featured-row {
  overflow: hidden;
  max-height: 100vh;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.full-height{
    max-height: 100vh!important;
    height: 100vh!important;
}
.spacer-section {
  height: 100vh;
  background: transparent;
}

.site-carousel .item img {
  object-fit: cover;
}

.featured-products .row {
  height: 100%;
  width: 100%;
  margin: 0;
}

.py-10 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.mt-8{
  margin-top: 6rem !important;
}

.mr-2{
  margin-right: 10px;  
}

.schedule-consultation {
  position: relative;
  overflow: hidden;
}

.main-heading {
  font-size: 64px;
}

.schedule-consultation {
  position: relative;
  overflow: hidden;
}

.horizontal-scroll-outer {
  position: relative;
  width: 100%;
  height: 100vh;
}

.horizontal-scroll-inner {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.horizontal-scroll-inner .item {
  flex: 0 0 100vw;
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
}

.prestige-section {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding: 60px 0;
}

.prestige-section .heading {
  max-width: 70%;
  margin: 0 0 0 auto;
  text-align: right;;
}

.home-header .white-color {
  color: #FFFFFF !important;
}


.image-half {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%),
    url('../images/prestige-bg.png') no-repeat center top;
  background-size: cover;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.prestige-section .container-fluid {
  position: relative;
  z-index: 2;
}

.prestige-section h2 {
  color: #000;
}

.search-barr {
  max-width: 150px;
  position: relative;
  overflow: hidden;
  margin-left: 15px;
}

.our-mission,.operations-management,.financial-management,.planning-for-safety {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.our-mission::before,.operations-management::before,.financial-management::before,.planning-for-safety::before {
  content: '';
  position: absolute;
  inset: 0;
  animation: zoomFade 12s ease-in-out infinite alternate;
  z-index: 0;
}

.our-mission::before {
  background: url(../images/ourmission.jpg) no-repeat center center / cover;
}

.operations-management::before {
  background: url(../images/operations-management-bg.jpg) no-repeat center center / cover;
}

.financial-management::before {
  background: url(../images/financial-management.jpg) no-repeat center center / cover;
}

.planning-for-safety::before {
  background: url(../images/panning-for-safety.jpg) no-repeat center center / cover;
}

.our-mission-card,.operations-management-card,.financial-management-card,.planning-for-safety-card {
  padding: 45px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5.2px);
  font-weight: 300;
  color: white;
  position: relative;
  z-index: 2;
}

@keyframes zoomFade {
  from {
    transform: scale(1);
    opacity: 0.92;
  }
  to {
    transform: scale(1.12);
    opacity: 1;
  }
}

.our-mission::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.contact-inner {
  background: rgba(217, 217, 217, 0.561);
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iti__selected-flag {
  padding: 0 15px 0 15px !important;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
  padding-left: 110px !important;

}

.iti {
  width: 100%;
}

.iti input {
  height: 50px;
  border: 1px solid #ccc;
  padding-right: 12px;
  font-size: 16px;
  box-shadow: none;
  
}

.navbar{
    padding: 0;
}

.spec-boxes-mobile .mobile-spec-box {
  text-align: center;
}
.circle-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #172B68;
  border-radius: 50%;
  color: #172B68;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: transparent;
  text-decoration: none;
  margin-right: 10px;
}

.circle-icon:hover {
  background-color: #172B68;
  color: #fff;
}

.opicity-img-mob{
  width: 50%;
  position: absolute;
  top: 40px;
  right: 100px;
  opacity: 0.6;
}

.Finder-banner {
  justify-content: flex-end;
  min-height: 85vh;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%), url('../images/italy-sicily-mediterranean-sea-5-november-2005-man-driving-luxury-yacht-editorial.jpg') center/cover no-repeat;
  color: black;
}

.banner-zoom {
  animation: zoomFade 12s ease-in-out infinite alternate;
}

.blogs-banner .background {
  animation: zoomFade 12s ease-in-out infinite alternate;
}

.blog-card-img {
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  transform-origin: center center;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05) rotate(1.5deg);
}


.blog-card-inner p {
  font-weight: 300; /* Light */
}

.blog-card-img:hover img {
  transform: scale(1.05) rotate(1.5deg);
}

.news-bg {
  position: relative;
  display: flex;
  justify-content: center;
  background: url('../images/luxury-motor-boat-cruising-blue-sea-summer-vacation.jpg') no-repeat center center / cover;
  z-index: 1;
  min-height: 55vh;
  overflow: hidden;
}

.news-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.news-bg>* {
  position: relative;
  z-index: 2;
}

.news-bg h4 {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  word-break: break-word;
}

.news-banner {
  justify-content: flex-end;
  min-height: 85vh;
  color: black;
}


.newsletter-section {
  background-color: #f8f9fa;
  padding: 100px 20px; 
}

.join-heading {
  font-size: 38px;
  font-weight: 700;
  text-transform: capitalize;
  color: #172B68;
}
.join-subheading {
  font-size: 22px;
  font-weight: 300;
  color: #343A40;
  max-width: 1078px;
  margin: auto;
}
.email-input-wrapper {
  width: 100%;
  max-width: 593px;
}
.email-input {
  padding: 14px 16px;
  height: 60px;
  font-size: 18px;
  font-weight: 400;
  background-color: #ffffff00;
  color: #343A40;
  border: 2px solid #051f6b;
  border-radius: 0;
}

.email-input::placeholder {
  opacity: 0.6;
  transition: 0.2s ease;
  
}
.email-input:focus::placeholder {
  opacity: 0;
}

.yacht-management-banner {
  justify-content: flex-end;
  min-height: 92vh;
  background: url('../images/yacht-management.webp') no-repeat center center / cover;
  color: black;
}

.superyacht-management-banner {
  justify-content: flex-end;
  min-height: 92vh;
  background: url('../images/superyacht.png') no-repeat center center / cover;
  color: black;
}

.banner-heading {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
  color: white;
}

.banner-heading h1 {
  font-size: 4rem;
  line-height: 1.2;
  color: white;
  text-align: left;
}

@media (max-width:768px) {
  .banner-heading h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: white;
    text-align: left;
  }
}

.blogs-banner::after,.news-banner::after {
  display: none;
}

.filter-block .fw-bold {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-check-input {
  width: 18px;
  height: 18px;
  accent-color: #172B68;
  border-radius: 0px;
  transition: transform 0.2s ease;
}

.form-check-input:hover {
  transform: scale(1.05);
  color: #172B68;
  background-color: #172B68;
  box-shadow: 0 0 4px rgba(23, 43, 104, 0.4);
}

.form-check-input:checked {
  transform: scale(1.1);
}
.form-check-label {
  color: #6c6e7e;
  font-size: 1rem;
  display: inline-flex;
}
.btn-sm {
  min-width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 0px;
  font-size: 1rem;
  background: transparent;
  border: 1px solid #172B68;
  color: #172B68;
  transition: all 0.2s ease;
}
.btn-sm:hover {
  background: #172B68;
  color: #fff;
}
.counter-value {
  display: inline-block;
  width: 40px;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: #1e2a49;
}

.blog-bottom-bar {
  background: linear-gradient(90deg, #F4F4F4 0%, rgba(255, 255, 255, 0) 100%);
  padding: 15px 0;
}

.yacht-search-banner {
  padding: 100px 0;
  text-align: center;
}

.yacht-search-filter {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(13px);
  box-shadow: 0 0 14px -6px rgba(0, 0, 0, 0.3);
  padding: 32px;
  border-radius: 0;
  color: #172B68;
}

.subscribe-btn svg {
  transition: transform 0.3s ease;
}

.subscribe-btn:hover svg {
  transform: translateX(4px);
}


.planning-for-safety .our-mission-card::before,
.operations-management .our-mission-card::before,
.planning-for-safety .our-mission-card::after,
.operations-management .our-mission-card::after {
  display: none;
}

.project-bg-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 50px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease;
}

.project-bg-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.project-bg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
  pointer-events: none;
}

.project-card-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 10px;
  background: #172B68;
  color: white;
  font-size: 12px;
}

.project-bg-card-inner {
  padding: 50px;
  color: white;
  position: relative;
  z-index: 2;
}

/* Initial grayscale state + transition setup */
.product-bg-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: transform 8s ease-in-out, filter 1s ease-in-out;
}

/* Hover animation: zoom + grayscale to color */
.project-bg-card:hover .product-bg-card-img {
  transform: scale(1.05) translateY(-2%);
  filter: grayscale(0%);
}
@media (max-width: 767px) {
  .project-bg-card-inner {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 30px 20px;
  }
}


.linear-brand-logo {
  max-height: 93px !important;
  object-fit: contain !important;
}

.newsletter-input {
  border: 2px solid #172B68;
  background: transparent;
}

.newsletter-main {
  max-width: 700px;
}

.mailing-list {
  padding: 70px 0;
  background: url('../images/newsletter-bg.png') no-repeat center center / cover;
}

.brand-logos-carousel .owl-stage {
  transition-timing-function: linear !important;
  align-content: center;
}


.filters-dropdown {
  padding: 15px 20px;
  background: white;
  border: 0;
  box-shadow: 0px 0px 14.4px -8px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(13.15px);
  min-width: 280px;
}

.w-25 {
  width: 25% !important;
}



/* ----------------------------------------------------

-----  CHART ------------------------------------------ */


.cost-chart-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(240,240,240,0.6));
  border: 1px solid rgba(200, 200, 200, 0.3);
  border-radius: 0;
  backdrop-filter: none; /* not needed since white bg */
  -webkit-backdrop-filter: none;
}


.cost-chart-section .section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}

.apexcharts-canvas svg {
  background: transparent !important;
}


@media (max-width: 768px) {
  .cost-chart-section {
    padding: 60px 15px;
  }

  .cost-chart-section .section-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .apexcharts-xaxis text {
    display: none !important;
  }
}

.home-header .dropdown-menu[data-bs-popper] {
  margin-top: -8rem;
}

.brand-logos-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 10px;
}

.brand-logos-carousel .item img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

header svg path {
  fill: #172B68 !important;
}

header svg {
  position: absolute;
  left: 0px;
  top: -6px;
  overflow-x: hidden;
  z-index: 1;
}

header .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  z-index: -1;
  display: none;
}

header .overlay.show-now {
  display: block;
}

.show-now {
  transition: all 500ms ease-in-out 0s;
  z-index: 3 !important;
}

/*#toggle-btn {
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}*/
#toggle-btn {
  z-index: 4;
}

.btn-outline {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid var(--clr-overlay-bg);
}

.btn-outline-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: 4s linear 0s infinite normal none running morph;
}

.btn-outline-2 {
  border-radius: 53% 47% 43% 58% / 51% 39% 61% 49%;
}

@keyframes morph {
  0% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
      border-radius: 30% 60% 70% 40% / 50% 60% 30%;
  }

  100% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

}

/* #hamburger { position: relative; width: 100%; height: 100%; z-index: 2; display: flex; justify-content: center; align-items: center; }
#hamburger .line-1 { position: relative; width: 20px; transform: translate(14px, -2.5px); height: 1.25px; background: var(--clr-overlay-bg); transition: transform 0.25s ease 0s; }
#hamburger .line-2 { position: relative; width: 24px; height: 1.25px; right: 0px; transform: translate(-6px, 2.5px); background: rgb(0, 0, 0); transition: transform 0.25s ease 0s; }
#hamburger.active .line-1 { left: 12px; width: 24px; transform: rotate(45deg); }
#hamburger.active .line-2 { right: 12px; transform: rotate(-45deg); } */
.btn-outline {
  display: none !important;
}

#hamburger {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#hamburger .line-1, #hamburger .line-2, #hamburger .line-3 {
  position: relative;
  width: 24px;
  height: 3px;
  border-radius: 5px;
  transform: translate(0px, 0px);
  transition: transform 0.25s ease 0s;
  background: black;
}

#hamburger .line-1 {
  background: black;
}

#hamburger .line-2 {
  right: 0px;
  margin: 5px 0;
}

#hamburger .line-3 {
  right: 0px;
}

#hamburger.active .line-1 {
  left: 0px;
  transform: rotate(45deg);
  transform-origin: 27% 0%;
}

#hamburger.active .line-2 {
  transform: scaleY(0);
}

#hamburger.active .line-3 {
  right: -2px;
  top: -2px;
  transform: rotate(-45deg);
  transform-origin: -11% 0%;
}

.menu {
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 100vh;
  margin-inline: 2rem;
  z-index: 3;
  left: 0px;
  overflow: hidden scroll;
  background: #172B68;
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.menu a {
  /* position: relative; */
  /* top: 100vh; */
  line-height: 1.25;
  text-decoration: none;
  color: white;
  font-size: 40px;
  transition: none;
}

.menu a span {
  font-size: 20px;
  margin-right: 2em;
}

.menu-item {
  position: relative;
}

.meu-container {
  width: 70%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-header p {
  color: white !important;
}

.home-header .logo img {
  -webkit-filter: invert(100%); /* Safari/Chrome */
  filter: invert(100%);
}

.home-header #hamburger .line-1, .home-header #hamburger .line-2, .home-header #hamburger .line-3 {
  background: black;
}

.home-header .btn-outline {
  border: 1px solid black;
}

.primary-menu .menu-container .wrapper {
  width: 100%;
  height: 100%;/* display: flex; */
  flex-direction: column;
  justify-content: space-around;
}

.primary-menu a span {
  text-transform: uppercase;
  font-size: 88px;
  font-family: 'Averta Demo';
  line-height: 86px;
  padding: 0;
  transition: all .3s ease;
  display: block;
}

.secondary-menu {
  position: relative;
  flex: 2 1 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8em;
  flex-direction: column;
}

.secondary-menu .menu-item a {
  font-family: 'Averta Demo';
  font-size: 36px;
}

.secondary-menu .menu-container .wrapper:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.primary-menu a:hover {
  -webkit-text-stroke: 1px rgb(176, 252, 94);
  color: black;
}

.header-logo {
  padding: 20px;
}

.header-logo a {
  position: unset;
}

.header-social-links {
  min-height: 50vh;
  border-top: 1px solid rgb(103, 103, 103);
  border-bottom: 1px solid rgb(103, 103, 103);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  overflow: hidden;
}

.header-social-links a, .header-bottom-links a {
  font-size: 18px;
  color: white;
  line-height: 20px;
  font-family: 'Poppins', sans-serif;
  text-transform: unset;
  transition: none;
  text-transform: capitalize;
}

.header-bottom-links {
  padding: 20px 15px;
  overflow: hidden;
}

.menu h4 {
  color: white;
}

.menu .border-right {
  border-right: 1px solid rgb(103, 103, 103);
}

.primary-menu .menu-item {
  padding: 53px 4%;
  border-bottom: 1px solid rgb(103, 103, 103);
  overflow: hidden;/* min-height: 125px; */

  /* padding: 0 4%; */
}

.primary-menu .menu-item:first-child a {

  /* padding: 26px 0 40px 0; */
}

.primary-menu .wrapper .menu-item:last-child {
  border-bottom: 0px !important;
}

.gradient-border {
  background: linear-gradient(0deg, rgb(172, 137, 237) 33%, rgb(176, 252, 94) 33%, rgb(176, 252, 94) 66%, rgb(62, 232, 203) 66%) 100% 0px / 12px 100% no-repeat;
}

.primary-menu::-webkit-scrollbar {
  width: 2px;
}

.primary-menu::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

.primary-menu::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

.primary-menu {
  max-height: 100vh;
  overflow-y: scroll;
  --scrollbarBG: transparent;
  --thumbBG: black;
  padding-right: 12px;
}

.menu .row .col-lg-3 {
  min-height: 100vh;
}

.primary-menu, .menu-container {
  height: 100%;
}

.header-menu-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-img {
  width: 100%;
  max-width: 350px;
  margin: 0px auto;
  margin-bottom: 50px;
}

.header-menu-right-links a {
  font-size: 16px;
  word-break: break-word;
  transition: none;
  line-height: 22px;
}

.header-menu-right-links {
  padding: 150px 15px 50px 15px;
  overflow: hidden;
}




.sales-submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  overflow: hidden;
  display: none;
  pointer-events: none;
}

/* Inner Wrapper */
.submenu-inner {
  padding: 120px 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-list li:not(.submodels li) {
  opacity: 0;
  transform: translateY(60px);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0;
}

.submenu-list li a {
  text-decoration: none;
  color: #000;
}

.submenu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.submenu-title {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  margin: 0;
}

.close-submenu {
  font-size: 60px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  color: #000;
}

.submenu-list li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submenu-list:hover li a {
  color: #aaa;
}

.submenu-list li:hover a {
  color: #000 !important;
}

body.no-scroll {
  overflow: hidden;
}

.submodels {
  display: none;
  overflow: hidden;
  white-space: nowrap;
  gap: 10px;
  flex-wrap: wrap;
  /* padding-left:5px; */ 
}

.submodels a {
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submodels a:hover {
  color: #888;
}

.submenu-list,
.submenu-list li,
.submodels {
  list-style: none;
}

.submodels {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding-top: 15px;
}

/* Primary brand link at the top of the submenu */
.submodels .brand-primary {
    margin: 0 0 16px;
    line-height: 0.6;
}

.brand-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-decoration: underline;
    /* underline as requested */
    text-underline-offset: 3px;
    /* Optional: slightly larger to stand out
    font-size: 1.05em;
    */
}

.brand-primary-link .arrow {
    display: inline-block;
    transition: transform .18s ease;
}

.brand-primary-link:hover .arrow,
.brand-primary-link:focus .arrow {
    transform: translateX(2px);
}

.submodels .line-content a {
    text-decoration: none;
}

.line-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom:10px;
  width: 100%;
}

.line-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.line-tabs button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #aaa;
  padding: 5px 10px 5px 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.line-tabs button.active,.line-tabs button:hover , 
.submenu-list li:has(.line-tabs button.active) > a {
  color:#000;
  text-decoration:none!important;
}

/*
.line-tabs button:first-child {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
*/

.line-content {
  display: none;
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 0px;
  margin-bottom: 10px;
}

.line-content a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.submenu-banner-bg {
  position: fixed;
  top: 30%;
  right: 10%;
  width: 45vw;
  height: 60vh;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.brand-specs{
  list-style: none;
  padding: 10px 0;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.submenu-list li{
  margin: 10px 0 !important;
}
.submenu-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-sales-menu,.mobile-sales-menu:hover {
  font-size: 14px;
  color: black;
}
ul.submenu-list {
  max-height: 70vh;
  overflow-y: auto !important;
}
#box1 {
  z-index: 9999;
}
#brandPreview{
  max-height: 400px !important;
  border-radius: 12px;
}

.yacht-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.yacht-img {
  display: block;
  width: 100%;
  border-radius: 0px;
  object-fit: cover;
}
/* Light blue overlay effect */
.hover-overlay {
  background-color: #172B68;
  /* Light blue with transparency */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.yacht-card:hover .hover-overlay {
  opacity: 0.4;
  border-radius: 0px;
}

/* Make sure badge appears above overlay */
.yacht-card .badge  {
  z-index: 3;
  position: absolute;
  background-color: #172B68;
}

.yacht-models-section {
  background-color: #F1F2F6;

}
.yacht-models-section .row {
  justify-content: center;
}
.yacht-models-section strong {
  font-size: 500;
}

.justify-content-left{
  justify-content: left !important;
}

.yacht-models-section .badge {
  font-size: 18px;
  padding: 10px;
  margin-right: 0 !important;
  margin-top: 20px !important;
  opacity: 0.8;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  z-index: 999;
}

.yacht-card:hover .badge {
  background-color: #fff;
  color: #172B68;
}
.text-left{
    text-align:left!important;
}

.tour-icon {
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;
}
.slide-up-blue-btn:hover .tour-icon {
  content: url('../images/360_tour_blue.png');
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.start-50 {
    left: 50%;
}


@media (max-width: 991px) {
    .translate-middle {
      transform: translate(-40%,-50%)!important;
      
    }
    .start-50 {
      left: 45%!important;
    }
}



@media (max-width: 767px) {
  body.lock-scroll {
    overflow: hidden;
    height: 100vh;
    position: relative;
  }

  #heroSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
  }

  .scroll-down {
    bottom: 15%;
    right: 50%;
    transform: translateX(50%);
    cursor: pointer;
    z-index: 99999;
  }

  .scroll-down span {
    animation: bounce 2s infinite;
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease;
    z-index: 99999;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(10px);
    }
  }
}

.modern-specs {
  padding-top: 50px;
}

.spec-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row .label {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 4px 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-right: 10px;
  white-space: nowrap;
}

@media (max-width: 576px) {

}
@media (max-width: 768px) {
  
  .spec-row .label,.spec-row .value {
    font-size: 12px;
  }
  
  .site-carousel .owl-nav {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-carousel .owl-nav button {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }

  .site-carousel .owl-nav button.owl-prev {
    left: 10px;
  }

  .site-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}
#faqAccordion p {
    margin-top: auto;
    margin-bottom: auto;
}

/* Mobile header hide/show animation */
@media (max-width: 767px) {
  .navbar {
    position: fixed;
    /* keep it on top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform .35s ease, opacity .35s ease;
  }

  .navbar.nav-hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .navbar.nav-show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Base container */
.featured-products {
  position: relative;
  width: 100%;
}

.featured-products .featured-row {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  flex-direction: row;
  z-index: 1;
}

@media (max-width: 1024px) {
  .featured-products .featured-row {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* stack vertically */
    z-index: 1;
    /* baseline, will be overridden by JS */
  }

  /* Ensure row fills height */
  .featured-products .featured-row .row {
    height: 100%;
    width: 100%;
    margin: 0;
  }

  /* Image = 40% */
  .featured-products .featured-row .col-xl-8,
  .featured-products .featured-row .col-lg-7 {
    height: 40%;
    width: 100%;
    overflow: hidden;
  }

  .featured-products .featured-row .col-xl-8 img,
  .featured-products .featured-row .col-lg-7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Text = 60% */
  .featured-products .featured-row .col-xl-4,
  .featured-products .featured-row .col-lg-5 {
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 !important;
    box-sizing: border-box;
  }
}



.gsap-image-transition-section {
  width: 100vw;
  min-height: 100vh;
  background: #ccd0d3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gsap-image-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gsap-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: width 0.5s, height 0.5s;
}

.gsap-content {
  position: absolute;
  left: 50%;
  min-height: calc(100vh - 210px);
  top: 17%;
  transform: translate(-50%, 0);
  width: 100vw;
  text-align: left;
  /* opacity: 0;
  pointer-events: none; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 10px;
}

.gsap-content-inner {
  max-width: 700px;
  margin: -15px auto;
}

.gsap-title {
  font-size: 6vw;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #222;
  margin-bottom: 2vw;
  text-align: center;
}

.gsap-desc {
  font-size: 21px;
  color: #222;
  margin-bottom: 2vw;
  text-align: left;
  max-width: 600px;
}

.gsap-up-btn {
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s, color 0.2s;
}

.gsap-btn:hover {
  background: #222;
  color: #fff;
}

.gsap-title,
.gsap-desc,
.gsap-up-btn {
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s, color 0.2s;
}


.gsap-image-transition-section {
  position: relative;
}

.gsap-image-transition-section:last-child {
  margin-bottom: 0;
}

/* avoid accidental margin gaps */

@media (max-width: 899px) {
  .gsap-image-transition-section {
    min-height: 100vh;
  }

}

/* ===========================
   Brochure Modal (Final Version)
   =========================== */

.br-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 16, 34, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.br-modal-overlay.show {
    display: flex;
}

.br-modal {
    width: min(920px, 92vw);
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(23, 43, 104, 0.15);
    border-radius: 6px;
    animation: brModalIn 0.25s ease-out;
    overflow: hidden;
}

@keyframes brModalIn {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---------- HEADER ---------- */
.br-modal__header {
    padding: 14px 18px;
    background: #f7f8fb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.br-modal__header h5 {
    font-size: 22px;
    font-weight: 700;
    color: #172B68;
    margin: 0;
}

.br-close {
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #172B68;
    cursor: pointer;
    padding: 4px 8px;
    transition: 0.2s ease-in-out;
}

.br-close:hover {
    color: #0f1b48;
    transform: scale(1.1);
}

/* ---------- BODY ---------- */
.br-modal__body {
    padding: 16px 18px;
    background: #ffffff;
}

.br-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #222;
}

.br-table thead th {
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.br-table tbody td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
}

.br-table tr:last-child td {
    border-bottom: none;
}

/* ---------- DOWNLOAD BUTTON ---------- */
.br-download-btn {
    min-width: 100px;
    text-align:center;
    border: 2px solid #172B68;
    padding: 6px 14px;
    font-size: 14px;
    background: transparent;
    color: #172B68;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.25s ease-in-out;
    display: inline-block;
}

.br-download-btn:hover {
    background: #172B68;
    color: #ffffff;
    text-decoration: none;
}

/* ---------- FOOTER ---------- */
.br-modal__footer {
    padding: 14px 18px;
    background: #f7f8fb;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: right;
}

#brCloseBtn {
    background: transparent;
    color: #172B68;
    border: 2px solid #172B68;
    padding: 8px 18px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

#brCloseBtn:hover {
    background: #172B68;
    color: #ffffff;
}

/* ---------- RESPONSIVE (60% / 40%) ---------- */
@media (max-width: 600px) {
    .br-modal {
        width: 94vw;
    }

    .br-modal__header h5 {
        font-size: 18px;
    }

    .br-table {
        font-size: 14px;
    }

    .br-table thead {
        display: none;
    }

    .br-table tbody tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .br-table tbody td {
        border: none;
        padding: 0;
    }

    .br-table tbody td:first-child {
        flex: 0 0 60%;
        text-align: left;
        font-weight: 500;
        color: #172B68;
    }

    .br-table tbody td:last-child {
        flex: 0 0 40%;
        text-align: right;
    }

    .br-download-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .br-modal__footer {
        text-align: center;
    }
}