/* :root {
  --primary-color: #0273c8;
  --bs-primary-rgb: 2, 115, 200;
  --secondary-color: #01243f;
} */
body {
  font-family: 'Open Sans', sans-serif;
}

.ff-flayfair {
  font-family: 'Playfair Display', serif;
}

.ff-boldonse {
  font-family: 'Boldonse', serif;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary-color);
  --bs-gradient: none;
}

header {
  font-family: serif;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.contactForm {
  background-color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  background-color: transparent;
}

.contactForm .form-control::placeholder {
  color: #fff;
}

.contactForm .form-control:focus {
  box-shadow: none;
}

.navbar-brand {
  position: relative;
  display: inline-block;
  height: 85px;
}

.navbar-brand img {
  width: auto;
  height: 90px;
  position: absolute;
  /* stack logos */
  top: 10px;
  left: 0;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.footer {
  background-color: var(--secondary-color);
}

/* Default: light visible, dark hidden */
header .logo-light {
  opacity: 1;
  z-index: 2;
}

header .logo-dark {
  opacity: 0;
  z-index: 1;
}

/* On scroll: fade between them */
header.scrolled .logo-light {
  opacity: 0;
}

header.scrolled .logo-dark {
  opacity: 1;
}

header.scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

header.scrolled .navbar-brand {
  height: 60px;
}

header.scrolled .navbar-brand img {
  height: 45px;
  top: 10px;
}

header.scrolled .menuList1 {
  display: none !important;
}

header .nav-link {
  position: relative;
}

header .nav-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5px;
  right: calc(100% + 5px);
  bottom: -2px;
  background: var(--primary-color);
  height: 2px;
  border-radius: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  z-index: 1001;
}

header .nav-item:hover .nav-link::before,
header .nav-link.active::before {
  right: -5px;
}

header .navbar-mobile-menu-toggle {
  color: #fff;
}

header.scrolled .navbar-mobile-menu-toggle {
  color: var(--primary-color);
}

.navbar-mobile-menu {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgb(17 100 255 / 8%);
}

.text-black {
  color: #000;
}

#hero {
  position: relative;
  overflow: hidden;
}

#hero .swiper {
  height: 100vh;
}

#hero .swiper-slide {
  position: relative;
}

#hero .slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 12.77%,
      rgba(0, 0, 0, 0) 20.13%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 1.71%,
      rgba(52, 52, 52, 0) 100%);
  z-index: 1;
  /* mask is behind text */
}

#hero .slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  /* above mask */
}

#hero .slide-content h2,
#hero .slide-content h3 {
  margin: 0;
  font-weight: bold;
}

#hero .slide-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: transparent;
  -webkit-text-stroke: 1px white;
}

#hero .slide-content h3 {
  font-size: 3rem;
  color: #fff;
}

/* ============ Breadcrum ============= */
.breadcrum {
  position: relative;
}

.breadcrum::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 4%,
      rgba(0, 0, 0, 0) 20.13%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 1.71%,
      rgba(52, 52, 52, 0) 100%);
}

.breadcrum img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.breadcrum .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* About Us Page */
.progress {
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.progress-bar {
  background-color: var(--primary-color);
  /* background-color: #fff; */
  font-weight: bold;
  text-align: right;
  padding-right: 8px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  margin: 20px 0;
  line-height: 1.6;
}

.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.parallax-section {
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* About Us Page */
/* ============ Breadcrum ============= */
@media (max-width: 768px) {
  .navbar-brand {
    height: 75px;
  }

  .navbar-brand img {
    height: 55px;
  }

  .swiper {
    height: 80vh;
  }

  #hero .slide-content h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  #hero .slide-content h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .breadcrum img {
    height: 280px;
  }

  .swiper {
    height: 70vh;
  }

  #hero .slide-content h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  #hero .slide-content h3 {
    font-size: 1.8rem;
  }
}