/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
    "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: white;
  --default-color: rgba(255, 255, 255, 0.7);
  --heading-color: #ffffff;
  --accent-color: #142878;
  --surface-color: #29261f;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #24379c;
  --nav-mobile-background-color: #29261f;
  --nav-dropdown-background-color: #29261f;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #f2e008;
}

.light-background {
  --background-color: #29261f;
  --surface-color: #464135;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  scrollbar-gutter: stable;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--nav-font);
}

.scroll-container {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

body.modal-open {
  padding-right: 0 important;
}

@keyframes php-email-form-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pulsating Play Button */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation: pulsate-play-btn 2s infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0%   { transform: scale(0.6, 0.6); opacity: 1; }
  100% { transform: scale(1, 1); opacity: 0; }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(12, 11, 9, 0.61);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  background-color: #0d1a52;
}

.header .topbar .contact-info i {
  font-style: normal;
  font-size: 20px;
  color: white;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.phone-hiring {
  display: flex;
  align-items: center;
  flex-grow: 1;
  min-width: 0;
}

.hiring-marquee {
  margin-left: 20px;
  flex-grow: 1;
  overflow: hidden;
}

.hiring-marquee span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 12s linear infinite;
  color: #f2e008;
  font-weight: 600;
  font-size: 13px;
}

.hiring-marquee span:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .hiring-marquee { display: none; }
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span { font-size: 13px; }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-color);
}

.header .topbar .languages ul a { color: var(--default-color); }
.header .topbar .languages ul a:hover { color: var(--accent-color); }

.header .topbar .languages ul li + li { padding-left: 10px; }
.header .topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  content: "/";
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
  transition: 0.4s;
  border-bottom: 1px solid #0d1a52;
}

.header .logo { line-height: 1; }

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  color: var(--default-color);
  border: 1px solid #0d1a52;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 24px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .header .branding {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.scrolled .header {
  --background-color: #0d1a52;
}

.scrolled .header .btn-book-a-table,
.header .btn-book-a-table:focus {
  color: white;
  border: 1px solid white;
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 24px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Navmenu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu { padding: 0; }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li { position: relative; }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a { padding-right: 0; }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: var(--nav-hover-color); }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li { min-width: 200px; }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i { font-size: 12px; }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .mobile-nav-toggle { display: none !important; }
}

/* Mobile Floating Cart Button */
.mobile-cart-btn {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 10002;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: float 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.mobile-cart-btn:hover { transform: translateY(-5px); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (min-width: 992px) {
  .btn-book-a-table { display: inline-block !important; }
  .mobile-cart-btn  { display: none !important; }
}

/*--------------------------------------------------------------
# Navmenu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 9996;
  }

  body.mobile-nav-active .mobile-nav-overlay { display: block; }

  .navmenu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding-top: 80px;
    transition: left 0.3s ease;
    z-index: 9997;
  }

  body.mobile-nav-active .navmenu { left: 0; }

  .navmenu ul {
    display: block;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .navmenu a {
    color: #222;
    font-size: 18px;
    padding: 15px 25px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navmenu a:hover,
  .navmenu .active {
    background: #f5f5f5;
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #0d1a52;
  font-size: 14px;
  position: relative;
}

.footer::after {
  content: none;
}

.footer .footer-top { padding-top: 80px; }

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links { margin-bottom: 30px; }

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child { padding-top: 0; }

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover { color: var(--accent-color); }

.footer .footer-contact p { margin-bottom: 5px; }

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within { border-color: var(--accent-color); }

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible { outline: none; }

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, darkorange, yellow, darkorange) 1;
}

.footer .copyright p { margin-bottom: 0; }

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-out;
}

.preloader-logo {
  width: 100px;
  height: auto;
  z-index: 2;
  position: relative;
}

#preloader:before {
  content: "";
  position: absolute;
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: animate-preloader 1.5s linear infinite;
  z-index: 1;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#preloader.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS animation delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li { padding-left: 10px; }

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section { scroll-margin-top: 60px; }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, black, transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--accent-color);
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 110vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, #ffffff, transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0px 1px 20px 8px rgba(0, 0, 0, 0.9);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  color: black;
  margin-top: 50px;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  color: #f2e008;
  -webkit-text-stroke: 1px #b0b0b0;
  text-stroke: 1px #b0b0b0;
  paint-order: stroke fill;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero p {
  color: color-mix(in srgb, black, transparent 10%);
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: bold;
}

.hero .cta-btn {
  color: black;
  border: 2px solid var(--accent-color);
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.hero .cta-btn:first-child { margin-right: 10px; }

.hero .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: white;
}

.btn.hero-style {
  color: black;
  border: 2px solid var(--accent-color);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
  transition: 0.3s;
}

.btn.hero-style:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--default-color);
  border-color: var(--accent-color);
}

@media (max-width: 480px) { .hero .cta-btn { font-size: 12px; } }

@media (max-width: 768px) {
  .hero h2 { font-size: 32px; }
  .hero p  { font-size: 18px; text-align: center; }
}

@media (max-width: 998px) {
  .hero h2 { margin-top: 100px; }
  .hero p  { text-align: center; }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%201400%201200%27%20preserveAspectRatio%3D%27xMidYMid%20slice%27%3E%3Cg%20fill%3D%27%23142878%27%20fill-opacity%3D%270.028%27%3E%3Cpath%20d%3D%27M1150%2C120%20C1270%2C90%201360%2C180%201338%2C300%20C1318%2C406%201214%2C456%201110%2C428%20C1028%2C406%20992%2C300%201018%2C214%20C1038%2C150%201070%2C138%201150%2C120%20Z%27%2F%3E%3Cpath%20d%3D%27M250%2C560%20C330%2C545%20396%2C596%20398%2C668%20C400%2C742%20342%2C796%20266%2C786%20C202%2C778%20168%2C720%20182%2C652%20C193%2C600%20200%2C570%20250%2C560%20Z%27%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23142878%27%20stroke-opacity%3D%270.07%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M-60%2C1160%20C300%2C980%20620%2C760%20900%2C520%20S1300%2C180%201480%2C60%27%2F%3E%3Cpath%20d%3D%27M-60%2C1174%20C307%2C970%20624%2C746%20901%2C502%20S1293%2C170%201480%2C67%27%2F%3E%3Cpath%20d%3D%27M-60%2C1190%20C315%2C958%20628%2C730%20903%2C482%20S1285%2C158%201480%2C75%27%2F%3E%3Cpath%20d%3D%27M-60%2C1208%20C324%2C944%20632%2C712%20905%2C460%20S1276%2C144%201480%2C84%27%2F%3E%3Cpath%20d%3D%27M-60%2C1228%20C334%2C929%20637%2C692%20907%2C435%20S1266%2C129%201480%2C94%27%2F%3E%3Cpath%20d%3D%27M-60%2C1250%20C345%2C912%20642%2C670%20909%2C408%20S1255%2C112%201480%2C105%27%2F%3E%3Cpath%20d%3D%27M1460%2C220%20C1240%2C320%201120%2C520%201180%2C760%20S1360%2C1040%201300%2C1200%27%2F%3E%3Cpath%20d%3D%27M980%2C-40%20C1080%2C180%201000%2C360%201140%2C520%20S1420%2C760%201420%2C900%27%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23c9b400%27%20stroke-opacity%3D%270.10%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M-40%2C1080%20C360%2C880%20700%2C720%201000%2C440%20S1360%2C120%201500%2C20%27%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%27%23142878%27%20fill-opacity%3D%270.10%27%3E%3Ccircle%20cx%3D%27900%27%20cy%3D%27520%27%20r%3D%274.5%27%2F%3E%3Ccircle%20cx%3D%271180%27%20cy%3D%27300%27%20r%3D%273.5%27%2F%3E%3Ccircle%20cx%3D%27620%27%20cy%3D%27760%27%20r%3D%274%27%2F%3E%3Ccircle%20cx%3D%271140%27%20cy%3D%27520%27%20r%3D%273.5%27%2F%3E%3Ccircle%20cx%3D%271300%27%20cy%3D%27180%27%20r%3D%274%27%2F%3E%3Ccircle%20cx%3D%27300%27%20cy%3D%27900%27%20r%3D%273%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"),
    radial-gradient(circle 660px at 88% 70px, rgba(20, 40, 120, 0.07), rgba(20, 40, 120, 0) 70%),
    radial-gradient(circle 560px at 3% calc(100% - 40px), rgba(242, 224, 8, 0.13), rgba(242, 224, 8, 0) 70%),
    radial-gradient(circle 520px at 60% 46%, rgba(20, 40, 120, 0.022), rgba(20, 40, 120, 0) 70%);
  background-repeat: no-repeat;
  background-position: center top, 0 0, 0 0, 0 0;
  background-size: cover, auto, auto, auto;
  padding: 80px 0 0;
}

/* Merged About + Why Us: spacing + anchor offset */
.about .section-title.mvc-title { margin-top: 66px; padding-bottom: 40px; }
#why-us { scroll-margin-top: 90px; margin-top: 72px; }


.about .container { position: relative; }

.about .content h3 {
  color: black;
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, black, var(--contrast-color) 30%);
}

.about .content ul {
  color: black;
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p { color: black; }

.about .about-img {
  border: 6px solid color-mix(in srgb, black, transparent 50%);
  transition: 0.3s;
  margin-top: 35px;
  height: 350px;
}

.about .about-img:hover { transform: scale(1.03); }

.about .btn {
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, black, transparent 40%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a { color: var(--heading-color); }

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p { color: var(--contrast-color); }

.why-us .card-item .hover-img {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 130px;
  opacity: 0;
  transform: translateY(-10px) scale(0.3);
  transition: all 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.why-us .card-item:hover .hover-img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
  position: relative;
  z-index: 4;
  width: 100%;
  /* band position (margin-top / margin-bottom) is set inline in index.html
     because LiteSpeed cache intercepts external CSS edits */
}

/* hidden clip path used for the wavy top of the band */
.fact .fact-clip { position: absolute; width: 0; height: 0; }

/* band */
.fact .fact-band {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  background: #0d1a52;
  -webkit-clip-path: url(#factWave);
  clip-path: url(#factWave);
}

/* halves */
.fact .fact-half {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
  padding: 66px 40px 58px;
  position: relative;
  overflow: hidden;
}
.fact .fact-left  { background: #142878; color: #f2e008; }
.fact .fact-right { background: #f2e008; color: #142878; }

/* background design: diagonal weave + soft glow */
.fact .fact-half::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 16px);
  pointer-events: none;
  z-index: 0;
}
.fact .fact-right::before {
  background-image: repeating-linear-gradient(135deg, rgba(20, 40, 120, 0.06) 0 2px, transparent 2px 16px);
}
.fact .fact-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(440px 190px at 22% 42%, rgba(92, 112, 220, 0.35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.fact .fact-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(440px 190px at 78% 42%, rgba(255, 255, 255, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fact .fact-item { position: relative; z-index: 2; display: flex; align-items: center; gap: 16px; }
.fact .fact-icon { width: 60px; display: flex; align-items: center; justify-content: center; }
.fact .fact-icon .fact-svg { height: 56px; width: auto; display: block; }
.fact .fact-icon .bi::before {
  font-size: 56px;
  line-height: 56px;
  background-image: linear-gradient(#ffffff, #142878);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fact .fact-text { text-align: left; }
.fact .fact-text h2 { font-size: 40px; font-weight: 800; line-height: 1; margin: 0; }
.fact .fact-text p {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fact .fact-left  .fact-text h2 { color: #f2e008; }
.fact .fact-right .fact-text h2 { color: #142878; }

/* reveal: slide in to meet (visible by default; animation replays on reveal) */
.fact.is-revealed .fact-left  { animation: factSlideL 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.fact.is-revealed .fact-right { animation: factSlideR 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
@keyframes factSlideL { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes factSlideR { from { opacity: 0; transform: translateX(100%); }  to { opacity: 1; transform: translateX(0); } }

/* flash when the halves meet */
.fact .fact-flash {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 260px;
  transform: translateX(-50%) scale(0.4);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: screen;
}
.fact.met .fact-flash { animation: factFlash 0.62s ease-out; }
@keyframes factFlash {
  0%   { opacity: 0; transform: translateX(-50%) scale(0.4); }
  35%  { opacity: 1; transform: translateX(-50%) scale(1); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.55); }
}

@media (max-width: 767px) {
  .fact { margin-bottom: -30px; }
  .fact { margin-top: -30px; }
  .fact .fact-band { flex-direction: column; -webkit-clip-path: none; clip-path: none; }
  .fact .fact-half { padding: 40px 18px; gap: 16px; }
  .fact .fact-text h2 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .fact.is-revealed .fact-left,
  .fact.is-revealed .fact-right { animation: none; }
  .fact .fact-flash { display: none; }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 100px;
  padding-bottom: 100px;
}

.menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 1);
}

.menu::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0px -5px 10px 2px rgba(0, 0, 0, 1);
}

.menu-right-overlay {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  width: 100%;
  /* height = 41.15% of width (1646/4000) keeps the whole man visible and the pipe edge-to-edge */
  height: 0;
  padding-bottom: 41.15%;
  background: url("../img/baliktadiconnew.png") no-repeat center top;
  background-size: 100% auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

#menu-pagination { min-height: 38px; }

/* Filters */
.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  position: relative;
  color: black;
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: poppins;
}

.menu .menu-filters li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active { color: var(--accent-color); }

.menu .menu-filters li:hover::after,
.menu .menu-filters li.filter-active::after { width: 100%; }

.menu .menu-item { margin-top: 50px; }

.menu .menu-img {
  height: 200px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(1px 5px 2px rgba(0, 0, 0, 0.8));
}

.menu .menu-content {
  margin: 10px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* FIX: Removed invalid empty background: value */
.menu .menu-content a {
  color: white;
  font-weight: 700;
  transition: 0.3s;
}

.menu .menu-content a:hover { color: var(--accent-color); }

.menu .menu-desc {
  margin: auto;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, white, transparent 20%);
  text-align: center;
}

.menu .isotope-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 650px;
}

/* when a search/filter yields nothing, don't keep the reserved height (no blank gap) */
.menu .isotope-container.is-empty {
  min-height: 0;
}

/* "No products found" fills the SAME 6-item height, so the section never changes size */
#menu-empty {
  display: none;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}
#menu-empty.show {
  display: flex;
}

#menu-search {
  display: block;
  margin: 10px auto 0 auto;
  max-width: 200px;
  z-index: 10;
}

#menu-see-more {
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .menu .menu-img      { height: 130px; }
  .menu .menu-desc     { font-size: 13px; }
  .menu .menu-filters li { font-size: 14px; }
  .menu .menu-content a  { font-size: 14px; }
}

/* Product Modal */
#productModal .modal-body.scroll-container {
  display: flex;
  gap: 30px;
  /* stretch so the grid fills the modal body height, letting the text
     column scroll on its own while the image column stays fixed */
  align-items: stretch;
}

#productModal .modal-img-container {
  flex: 0 0 auto;
  max-width: 300px;
}

#productModal .modal-img-container img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 5px;
}

#productModal .modal-text-container {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 998px) {
  #productModal .modal-body.scroll-container { display: block !important; }

  #productModal .modal-img-container,
  #productModal .modal-text-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px;
  }

  #productModal .modal-img-container img {
    max-height: 300px;
    display: block;
    margin: 0 auto;
  }

  #productModal .modal-text-container { display: block; text-align: center; }
  #productModal .modal-text-container h6 { text-align: center; }
}

@media (max-width: 767px) {
  #productModal .modal-body.scroll-container { display: block !important; }

  #productModal .modal-img-container,
  #productModal .modal-text-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px;
  }

  #productModal .modal-img-container img {
    max-height: 250px;
    display: block;
    margin: 0 auto;
  }

  #productModal .modal-text-container {
    display: block;
    min-height: auto;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("../img/special-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.specials .nav-tabs {
  border: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #222;
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover { color: #cca700; }

.specials .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.specials-tab-content {
  min-height: 0;
  transition: height 0.3s ease;
}

.specials .tab-pane.active { animation: fadeIn 0.5s ease-out; }

.specials .tab-pane .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.specials .tab-pane .col-lg-8,
.specials .tab-pane .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.specials .details p {
  color: #555;
  margin-bottom: 15px;
}

.specials .details p:last-child { margin-bottom: 0; }

.specials .tab-pane .img-fluid {
  height: auto;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.8));
}

@media (max-width: 998px) {
  .specials .tab-pane .img-fluid {
    max-height: 200px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .specials .nav-link { border: 0; padding: 15px; }
  .specials .nav-link.active { color: var(--contrast-color); background-color: var(--accent-color); }
  .specials .tab-pane .row  { flex-direction: column; align-items: center; }
  .specials .tab-pane .details { text-align: center; }
  .specials .tab-pane .img-fluid { max-height: 180px; object-fit: cover; margin-bottom: 20px; }
}

/*--------------------------------------------------------------
# Swiper Product Section
--------------------------------------------------------------*/
.swiper {
  width: 100%;
  height: 100%;
  margin-top: -50px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active { opacity: 1; }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials { margin-top: 0; }

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider { overflow: hidden; }

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: black;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, black, transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  color: black;
}

.testimonials .swiper-wrapper { height: auto; }

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.link { text-decoration: underline; }

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  margin-top: -40px;
  margin-bottom: 40px;
}

.gallery-album {
  position: relative;
  width: 100%;
  max-width: 90%;
  overflow: hidden;
  border-bottom: 5px solid #585978;
  box-shadow: 0px 5px 25px rgba(218, 211, 211, 1);
  border-radius: 30px;
  transition: all 0.5s ease-out 0s;
}

.gallery-album:hover {
  border-color: #142878;
  box-shadow: 0px 8px 25px rgba(0, 3, 47, 1);
}

.gallery .row.no-gutters {
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* FIX: Was targeting .col-4 which doesn't exist — now targets actual Bootstrap col classes used in HTML */
.gallery [class*="col-"] { margin-bottom: 30px; }

.gallery-album img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-album:hover img { transform: scale(1.05); }

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-album:hover .album-overlay { opacity: 0; }

.album-plus {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.album-name {
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}

.album-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.album-modal.show {
  display: block;
  opacity: 1;
}

.album-modal-content {
  position: relative;
  margin: 50px auto;
  width: 95%;
  color: #fff;
  transform: scale(0.1);
  opacity: 0;
  transition: all 0.4s ease;
}

.album-modal.show .album-modal-content {
  transform: scale(1);
  opacity: 1;
}

.album-modal .close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 10;
}

.active-image-container img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.thumbnails-container {
  display: flex;
  overflow-x: auto;
  margin-top: 10px;
  gap: 5px;
  padding-bottom: 5px;
}

.thumbnails-container img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: transform 0.2s, border 0.2s;
}

.thumbnails-container img.active {
  border: 2px solid #fff;
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 10;
}

.arrow:hover { background: rgba(0, 0, 0, 0.6); }

.left-arrow  { left: 10px; }
.right-arrow { right: 10px; }

@media (max-width: 576px) {
  .gallery-album {
    aspect-ratio: 30 / 9;
    max-width: 100%;
  }
  .gallery [class*="col-"] { margin-bottom: 5px; }
}

/*--------------------------------------------------------------
# Head Section
--------------------------------------------------------------*/
.head {
  --default-color: #ffffff;
  --contrast-color: #ffffff;
}

.head .member {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 20%, rgba(255,255,255,0) 100%);
  border-radius: 12px;
}

.head .member img {
  height: 380px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.head .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.head .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.head .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.head .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.head .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.head .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 10px;
  display: inline-block;
}

.head .member .social a:hover { color: var(--accent-color); }

.head .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.head .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 20%, rgba(255,255,255,0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.head .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.head .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
  position: relative;
  margin-top: -50px;
  z-index: 4;
}

.contact .info-item + .info-item { margin-top: 40px; }

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 1000;
  margin-bottom: 5px;
  color: black;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: black;
}

.contact .contact-form { height: 100%; }

.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: black;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form input[type="text"]:focus,
.contact .contact-form input[type="email"]:focus,
.contact .contact-form textarea:focus { border-color: var(--accent-color); }

.contact .contact-form input[type="text"]::placeholder,
.contact .contact-form input[type="email"]::placeholder,
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, black, transparent 30%);
}

/* Contact form — button states + hint */
.contact .contact-form button {
  color: var(--accent-color);
  background: none;
  border: 2px solid var(--accent-color);
  padding: 9px 38px;
  font-weight: 600;
  transition: 0.35s;
  border-radius: 50px;
}
.contact .contact-form button:hover:not(:disabled) {
  background: var(--accent-color);
  color: #fff;
}
.contact .contact-form button:disabled {
  border-color: #cfd2de;
  color: #aeb2c4;
  cursor: not-allowed;
}
.contact .contact-form-hint {
  font-size: 13px;
  color: #9499ad;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.contact .contact-form-hint.ok {
  color: var(--accent-color);
  font-weight: 600;
}
.contact .contact-form-hint.err {
  color: #c0392b;
  font-weight: 600;
}
.contact .cf-captcha {
  display: inline-block;
  margin: 0 auto 14px;
}

/* FIX: Removed duplicate .map-info-wrapper and .map-frame declarations */
.map-info-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.map-frame {
  flex: 1 1 350px;
  max-width: 400px;
  height: 400px;
  border: 0;
}

.map-side-image {
  flex: 1 1 250px;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  margin-top: -15px;
}

.office-info {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  margin-top: 50px;
}

.office-info h5 {
  margin-top: 0;
  margin-bottom: 5px;
  color: #0d1a52;
  font-weight: 600;
}

.office-info p {
  margin-bottom: 15px;
  color: black;
}

/* FIX: Was .map-image-wrapper (typo), corrected to .map-info-wrapper to match HTML */
@media (max-width: 992px) {
  .map-info-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .map-frame {
    width: 90%;
    max-width: 700px;
    height: 450px;
    margin: 0 auto;
  }

  .map-side-image {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }

  .office-info {
    flex: 1 1 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.6;
  }

  .container.my-5 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }

  .map-frame,
  .map-side-image,
  .office-info {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Modal Section
--------------------------------------------------------------*/
.modal-content {
  background-color: #ffffff;
  color: #000000;
}

.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content h4,
.modal-content h5,
.modal-content h6,
.modal-content p,
.modal-content span,
.modal-content li { color: #000000 !important; }

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq { margin-top: 0; }

.faq-columns {
  display: flex;
  gap: 50px;
}

.faq-column {
  flex: 1;
  display: block;
}

.faq-column-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #142878;
  position: relative;
}

.faq-column-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #585978;
  margin: 10px auto 0;
  border-radius: 2px;
}

.faq-item {
  border-bottom: 5px solid #ccc;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: #f0f4f8;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.faq-question:hover,
.faq-question.active {
  background: var(--accent-color, #007bff);
  color: #fff;
}

.faq-toggle {
  font-weight: bold;
  font-size: 22px;
  transition: transform 0.3s, color 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f9fbfd;
  font-size: 15px;
  color: #333;
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer p {
  margin: 0;
  padding: 14px 20px;
  font-style: italic;
}

/* FIX: Unified FAQ toggle — JS drives everything via .faq-question.active and inline maxHeight.
   Removed conflicting .faq-item.active rule to avoid double-system conflict. */
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #fff;
}

@media (max-width: 768px) {
  .faq-columns { flex-direction: column; gap: 0; }
  .faq-column  { width: 100%; }
}

/*--------------------------------------------------------------
# Tab Animations
--------------------------------------------------------------*/
.text-out { animation: fadeDownOut 1s ease forwards; }
.text-in  { animation: fadeUpIn 1.1s ease forwards; }
.img-out  { animation: zoomOut 1s ease forwards; }
.img-in   { animation: zoomIn 1.1s ease forwards; }

@keyframes fadeDownOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(30px); }
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes zoomOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.5); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(1.5); }
  to   { opacity: 1; transform: scale(1); }
}

/*--------------------------------------------------------------
# Scroll margin anchors
--------------------------------------------------------------*/
#contact  { scroll-margin-top: 50px; }
#faq      { scroll-margin-top: 50px; }
#gallery  { scroll-margin-top: 50px; }
#team     { scroll-margin-top: 50px; }
#specials { scroll-margin-top: 75px; }

/*--------------------------------------------------------------
# Language Switch
--------------------------------------------------------------*/
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 10px;
}

.lang-switch button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  padding: 0;
}

.lang-switch button:hover { color: #f2e008; }

.lang-switch .divider { line-height: 1; }
/*--------------------------------------------------------------
# Lower Sections — shared tinted background band (Careers → Contact)
--------------------------------------------------------------*/
.lower-sections {
  position: relative;
  isolation: isolate;
  /* clamp any horizontal overflow in the lower band (Careers → Contact) so no
     sideways scroll appears on browsers that don't support `overflow: clip` */
  overflow-x: hidden;
  /* White at the very top AND bottom so both torn-paper separators (which are white) blend in;
     the tint sits as a soft glow through the middle. */
  background:
    radial-gradient(760px 600px at 92% 34%, rgba(7, 12, 82, 0.06), transparent 58%),
    radial-gradient(700px 540px at 8% 62%, rgba(7, 12, 82, 0.05), transparent 60%),
    linear-gradient(180deg,
      #ffffff 0%,
      #f5f8fd 14%,
      #eef1f8 44%,
      #eef1f8 78%,
      #f6f8fc 92%,
      #ffffff 100%);
}

/* Honeycomb texture — pre-rendered PNG tile (cheap to paint, so it won't lag the FAQ). */
.lower-sections::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHAAAADCCAYAAACR4kY1AAAItElEQVR4nO2dz28bxxXHv7PLnRXDWZ4CX3QpasMFBLs99A/gwT4QFhJRImfFq9sip8IwIqMyUMmsEx+K/AcRYMDoMQRcAwGCAs0hPgTQQbkU6MUNhAI+qLGQ/rDqwFK9nB5W1O5SWpkUKXLf8n2O4pM43M/svJl5XA2QSyoFAHDU0geOWvxz/Gd5w5p0A5jhYIHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEYYHEybHAlmUgLAAC0PakW3Ne5FGgAFAA7neEwX8A7APtAPhJrkXmARF/BtAp1X8qVf0vjtL/djz9iyisUgBauem4YtINGA3aDu8yoFicnw1s9RFgagZv/gAhvhHG+RgIvgtMsBa8evxl7Hc6AMwEGz40xAV276T7HaDqSuXdhrBvC4MtI16vHOw9eRa+XpmR6sJvAHEXEJ8Jq/Ng/2X72/C1SD5FqAoUQMUGnr4BAOn5N2DMp4D4Tlhmbf9l+09hWDfnhYLcsr5kOtYaYHzA/P7gvy8+AZ6+TnYE5pyJ57nFK1L5m45a3paevhPFtKyePJeYwNilpetS6U1HNbcdz7/Z87epduqso20cXdzKjPQaG1L530uvsQFUZg6D3jLTbFmJDuD5Nx3V3JZKbzqlhatRHIscIcm7SXr6jqOWt6XyN53S4pUobpD/QqHt6G8edgZP70q1/LBYnJ9NxjFnJbEscMu6KpW/JZV+Lj3/RhQ2zN0SCZJe7bKrmp9Lr7kjlV4Fqm74yrHhmHk70YV1y7WL53xhUzuKW9bVKIyH1T7oGdqUvieV/8N4hrbeobqxIr3mTth5apejuHz+w6AhSZ9c2KWl61HcOO6CqBMVi/OzUi0/lJ7eHWyyND1keHofX64sXO1zuTJNxPOcviTV8qNwuNT3op7esibc0xP5UXr+Dan0c6n8rSnOj/FeOyel0uuHee6RW9aXorgsDVHxNlddqfRqNz+65drFKC5LbR49qb3ZLtWvRWHxBXvWiAQd5cfsjRojR/SXT8iUeRKf5/S8TeLznMYJPTY/MzrR38w5yyNKKuk5I39rqtS1a4Zzejon7GpMy6wtdVa9DszJ8JVMLzviE5TYvqLXWIliMv0BRkHPurZ+bfT7tyPnhDLPsZ39/M3MTie5s5SsoGSmbHVamedYI6eUfjr3UdzYGEOZJ2+kpJfxl63GWubJG5MsW02yzJM3xlu26nOxysPl4Jxv2WqA7SIWNxwj32aczg3bCTOKjX4umUyes5XauGiZOc5Q7OavDWSOvr5uIlx34UdGumswqEF0Hh/s7d4KnxeAALRF+cGPfNCygK+s7nMgjuffFMa6BwQ76AQP4Cj/767SX+SvzJM3kmtxp1T/nVT1H+B4S0+iIM5z2Sf2bfJibakgjHkJQAAfFICN/02wZUxftIPwRrtghAheWQBsAAb4Fz8bR4YLBmgHBqbAs0vSCMMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCicMCiWNhiJOSmUnSsmBgW4B5HZ6INcciaSAA2MD9jmXwTzie/oejGr+KXh/oyGtmfCTOOnbeWfyZVI1vhKP0LwHrtwKdF4EJ1oJXj78MQ7QNtDsAzIQazByh7e5RuMXi/Gxgq49gOu9BBF8cntZZdaXyVgFxFxCfCavzYP9l+9veX2bGTXckvN85dHQbwr4tDLaMOPjwYO/x39D/kdc8rI6RQY6G7/7C24+85jN2x0Esz5UWrwx4NHzLSvwBz7/pqOa2VHrTKS1c7XkTFjlStI2ja1qZkV5jQyr/e+k1NqKRsO8lX/LIa+k1NqSnd6Vaflgszs/2vCkzFMm7SXr6jqOWt6XyN53S4pUo7kxHw8eOvPZql13V/Fx6zR2p9CpQdU9qANM3iTznlnVVKn9LKv1cev6NKGz40S71jU5IqDys9kV84li7OKYbo/dWb6xIr7kTvnntchR3plt9SuhJTUrfC2f8Y01NUSOKxflZqZYfSk/vnjHZTgnpk0O7tHQ9ihvrKBaf7i5cHXC6Oy1kfnk2yIJzyvJjvxskmRip4nda1ZVKr3bzo1uuXYziMtHYcyZ+LeakVHr9MM89csv6UhSXyWsRNeooP2a3142a1NHILtWvRWHxBXs2SXyQ08f9XORH0d98gN7nFf3NvLLfI9M5YcTJ34w8de1DISekkJ7zc7wmTp2VrQNzMnwl88uOE3alpmvW3bMuql87r/2/0ROfoMT2hb3GShST+Q44KpI7E8kd+KyVrU4o8xyrzOR2Zv02+rk4R3Fj5rQyz7FONu2kDE+TKVuNrcyTNzJQtppImSdvTKJslYkyT94YS9mqz80GHi6H4Fy2qQbY7mNxo2CEG8VTveE+aYYp1XDJK0MM9G1yLjpnlD6/rhCS16995KDHtSzgKwt4+gYIZ5Iw1nr4tNX+XdkxzwK7+DFE533A/PFgb/cW8PQ1wg5gUX9wJwcCu2gbmDPhkzyVGaf07l0h8GsDa8+C9Vcj9j882HvyLIytFLrCmcwRzUQLpfotRy19Hb2WvzyXw43YdgD83AF+3BEieAWYPYTDpQO0DybdulFDNnmfjjJAOzAwBQA2AAO86Ey6VedBTgWGCIjcPx6ea4HTAAskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskDgskzv8BHuYayUqdcdsAAAAASUVORK5CYII=");
  background-size: 56px 97px;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  /* clean under the top separator and above the footer; honeycomb in between */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 140px, #000 calc(100% - 130px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 140px, #000 calc(100% - 130px), transparent 100%);
  transform: translateZ(0);
  will-change: transform;
}

/* faint hexagon texture — a quiet nod to chemistry */


/* let the band show through the individual sections */
.careers,
.testimonials,
.faq,
.contact {
  background-color: transparent;
}

/*--------------------------------------------------------------
# Careers / Job Opportunities Section
--------------------------------------------------------------*/
.careers .careers-intro {
  max-width: 680px;
  margin: -34px auto 50px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #4f5573;
}
.careers .careers-intro a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}
.careers .careers-intro a:hover { text-decoration: underline; }

.careers .job-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(7, 12, 82, 0.08);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(7, 12, 82, 0.05);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

/* top accent strip that grows on hover */
.careers .job-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-color), #24379c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.careers .job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(7, 12, 82, 0.16);
  border-color: transparent;
}
.careers .job-card:hover::after { transform: scaleX(1); }

.careers .job-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-color) 0%, #24379c 100%);
  box-shadow: 0 8px 18px rgba(7, 12, 82, 0.28);
  margin-bottom: 18px;
  transition: transform 0.32s ease;
}
.careers .job-card:hover .job-icon { transform: translateY(-2px) rotate(-4deg); }

.careers .job-dept {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.careers .job-title {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 600;
  color: #142878;
  margin: 0 0 12px;
}

.careers .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.careers .job-meta span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #3f456a;
  background: rgba(7, 12, 82, 0.06);
  border-radius: 50px;
  padding: 5px 13px;
}

.careers .job-desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: #646a8c;
  margin: 0 0 22px;
  flex-grow: 1;
}

.careers .job-apply {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--accent-color);
  text-decoration: none;
  background: rgba(7, 12, 82, 0.05);
  border: 1px solid rgba(7, 12, 82, 0.14);
  border-radius: 50px;
  padding: 9px 20px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease,
    box-shadow 0.28s ease, transform 0.2s ease;
}
.careers .job-apply i { transition: transform 0.25s ease; }
.careers .job-apply:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, #24379c 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(7, 12, 82, 0.28);
  transform: translateY(-1px);
  gap: 10px;
}
.careers .job-apply:hover i { transform: translateX(3px); }

.careers .careers-cta {
  text-align: center;
  margin-top: 50px;
}
.careers .careers-cta a {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color) 0%, #24379c 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(7, 12, 82, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.careers .careers-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(7, 12, 82, 0.32);
  opacity: 0.96;
}

@media (max-width: 575px) {
  .careers .careers-intro { margin-top: -20px; }
  .careers .job-title { font-size: 20px; }
}

/*--------------------------------------------------------------
# FAQ open/close — keep the reveal cheap to repaint
--------------------------------------------------------------*/
.faq-answer { will-change: max-height; }

/*--------------------------------------------------------------
# Careers — "View all" card, job modal, and careers page
--------------------------------------------------------------*/
/* "View All Openings" card */
.careers .job-card-all {
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: 2px dashed rgba(7, 12, 82, 0.28);
  background: linear-gradient(160deg, #f6f8ff 0%, #eceffb 100%);
}
.careers .job-card-all:hover {
  border-color: var(--accent-color);
  border-style: solid;
}
.careers .job-card-all .job-icon { margin: 6px auto 16px; }
.careers .job-card-all .job-desc { flex-grow: 0; margin-bottom: 16px; }
.careers .job-card-all .job-apply { align-self: center; }

/* Job / Careers modal — single navy theme; each posting gets a themed art background */
.job-modal { --job-accent: #142878; --job-accent-2: #24379c; }

.job-modal .modal-content { border: 0; border-radius: 16px; overflow: hidden; }
.job-modal .modal-header {
  position: relative;
  overflow: hidden;
  min-height: 94px;
  background: linear-gradient(135deg, var(--job-accent) 0%, var(--job-accent-2) 100%);
  color: #fff;
  border-bottom: 0;
  padding: 22px 24px;
}
/* job-specific decorative art (scattered themed icons), behind the title */
.job-modal-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.job-modal-art i {
  position: absolute;
  color: #ffffff;
  line-height: 1;
  transform-origin: center;
}
.job-modal .job-modal-head { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; min-width: 0; }
.job-modal .modal-header .btn-close { position: relative; z-index: 1; }
.job-modal .job-modal-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: var(--job-accent);
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
}
.job-modal .modal-header .modal-title { font-weight: 600; color: #ffffff !important; }
.job-modal .modal-header .btn-close { filter: invert(1) grayscale(1) brightness(2); }

.job-modal .modal-body { padding: 24px 26px; }
.job-modal .modal-body h6 {
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--job-accent) !important;
  margin: 22px 0 10px;
}
.job-modal .modal-body h6:first-of-type { margin-top: 0; }
.job-modal .modal-body ul { padding-left: 20px; margin-bottom: 4px; }
.job-modal .modal-body ul li { margin-bottom: 7px; line-height: 1.55; color: #444b6e; }
.job-modal .modal-body p { color: #444b6e; line-height: 1.65; }
.job-modal #jobModalSummary { font-size: 18px; line-height: 1.7; color: #2f3450; }

.job-modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.job-modal-meta span:empty { display: none; }
.job-modal-meta span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--job-accent) !important;
  background: color-mix(in srgb, var(--job-accent) 12%, #ffffff);
  border-radius: 50px;
  padding: 6px 14px;
}
.job-modal .modal-footer { border-top: 1px solid rgba(7, 12, 82, 0.08); }
.job-modal #jobModalApply {
  background: linear-gradient(135deg, var(--job-accent) 0%, var(--job-accent-2) 100%);
  border: 0;
  color: #ffffff !important;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
}


/*--------------------------------------------------------------
# Careers Landing Page (careers.html)
--------------------------------------------------------------*/
.careers-landing { overflow-x: clip; }

/* ----- Hero ----- */
.cl-hero {
  position: relative;
  padding: 175px 0 80px;
  color: #fff;
  overflow: hidden;
}
.cl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 85% -8%, rgba(58, 69, 184, 0.55), transparent 60%),
    radial-gradient(760px 520px at 8% 118%, rgba(255, 211, 77, 0.14), transparent 55%),
    linear-gradient(158deg, #0d1a52 0%, #142878 55%, #24379c 100%);
}
.cl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0, transparent 94%);
  -webkit-mask-image: linear-gradient(180deg, #000 0, transparent 94%);
}
.cl-hero .container { position: relative; z-index: 1; }
.cl-hero-inner { max-width: 760px; }
.cl-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  color: #f2e008;
  margin-bottom: 16px;
}
.cl-hero h1 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.12;
  margin: 0 0 18px;
}
.cl-hero h1 span { color: #f2e008; }
.cl-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 0 28px;
}
.cl-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.cl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, gap 0.25s ease;
}
.cl-btn i { transition: transform 0.25s ease; }
.cl-btn-light { background: #fff; color: var(--accent-color); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22); }
.cl-btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3); color: var(--accent-color); gap: 12px; }
.cl-btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.cl-btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; gap: 12px; }

.cl-hero-stats { display: flex; flex-wrap: wrap; gap: 46px; }
.cl-hero-stats div { display: flex; flex-direction: column; }
.cl-hero-stats strong {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cl-hero-stats span {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ----- Careers hero sparkling grid overlay ----- */
.cl-hero-fx-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cl-hero-fx { display: block; width: 100%; height: 100%; }

@media (prefers-reduced-motion: reduce) {
  .cl-hero-fx-wrap { display: none; }
}

/* ----- Why join ----- */
.cl-why { padding: 76px 0 30px; background: #ffffff; }
.cl-why .section-title { padding-bottom: 30px; }
.cl-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.perk {
  text-align: center;
  padding: 30px 22px;
  border: 1px solid rgba(7, 12, 82, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fafbff);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.perk:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(7, 12, 82, 0.12); border-color: transparent; }
.perk-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-color) 0%, #24379c 100%);
  box-shadow: 0 10px 22px rgba(7, 12, 82, 0.28);
}
.perk h4 { font-family: var(--heading-font); font-size: 17px; font-weight: 600; color: #142878; margin: 0 0 8px; }
.perk p { font-size: 14px; line-height: 1.6; color: #6a7090; margin: 0; }

/* ----- Openings list ----- */
.cl-openings { padding: 60px 0 84px; background: linear-gradient(180deg, #ffffff 0%, #f5f7fc 30%); }
.cl-openings-intro {
  text-align: center;
  max-width: 640px;
  margin: -12px auto 40px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #5b6188;
}
.cl-openings-intro a { color: var(--accent-color); font-weight: 600; }
.openings-list { display: flex; flex-direction: column; gap: 16px; }

.opening {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid rgba(7, 12, 82, 0.08);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 6px 18px rgba(7, 12, 82, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.opening::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), #24379c);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.32s ease;
}
.opening:hover { transform: translateX(4px); box-shadow: 0 18px 40px rgba(7, 12, 82, 0.13); border-color: transparent; }
.opening:hover::before { transform: scaleY(1); }

.opening-index {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 700;
  color: rgba(7, 12, 82, 0.12);
  min-width: 44px;
}
.opening-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-color) 0%, #24379c 100%);
  box-shadow: 0 8px 18px rgba(7, 12, 82, 0.26);
}
.opening-info { flex: 1 1 auto; min-width: 0; }
.opening-dept {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 3px;
}
.opening-title { font-family: var(--heading-font); font-size: 21px; font-weight: 600; color: #142878; margin: 0 0 6px; }
.opening-summary { font-size: 14px; line-height: 1.55; color: #6a7090; margin: 0 0 10px; }
.opening-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.opening-meta span { font-size: 13px; color: #4f5573; display: inline-flex; align-items: center; gap: 6px; }
.opening-meta i { color: var(--accent-color); }

.opening-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, #24379c 100%);
  border: 0;
  border-radius: 50px;
  padding: 11px 24px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 18px rgba(7, 12, 82, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, gap 0.22s ease;
}
.opening-btn i { transition: transform 0.22s ease; }
.opening-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(7, 12, 82, 0.32); gap: 11px; }
.opening-btn:hover i { transform: translateX(3px); }

/* ----- CTA band ----- */
.cl-cta {
  position: relative;
  text-align: center;
  padding: 66px 20px 80px;
  color: #fff;
  background:
    radial-gradient(700px 380px at 50% -20%, rgba(58, 69, 184, 0.6), transparent 60%),
    linear-gradient(180deg, #0d1a52 0%, #142878 55%, #0d1a52 100%);
}
.cl-cta h3 { font-family: var(--heading-font); font-size: 30px; font-weight: 700; margin: 0 0 10px; }
.cl-cta p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 0 auto 24px; line-height: 1.7; }

@media (max-width: 992px) {
  .cl-perks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cl-hero { padding: 140px 0 56px; }
  .cl-hero h1 { font-size: 33px; }
  .cl-hero-stats { gap: 28px; }
  .cl-hero-stats strong { font-size: 27px; }
  .opening { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .opening-index { display: none; }
  .opening-info { flex-basis: calc(100% - 72px); }
  .opening-btn { width: 100%; justify-content: center; margin-top: 4px; }
}
@media (max-width: 480px) {
  .cl-perks { grid-template-columns: 1fr; }
}

/* Careers page: navy CTA flows straight into the navy footer (no white torn-paper strip) */
.careers-page .footer::after { display: none; }
.careers-page .footer { background-color: #0d1a52; }

/* Job modal: keep header title and apply-button text white over the themed gradient */
.job-modal .modal-header .modal-title { color: #ffffff !important; }
.job-modal #jobModalApply { color: #ffffff !important; }


/* ================================================================
   CONSOLIDATED — moved out of inline <style> blocks (index.html)
   ================================================================ */
/* ===== Redesigned About "See more" modal ===== */
          #aboutModal .modal-dialog{ max-width:940px; }
          #aboutModal .modal-content{ border:none; border-radius:18px; overflow:hidden; box-shadow:0 30px 80px rgba(20,40,120,.35); }
          #aboutModal .modal-header{ position:relative; background:linear-gradient(135deg,#142878,#24379c); border-bottom:none; padding:26px 34px 28px; align-items:flex-start; }
          #aboutModal .modal-header::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:4px; background:linear-gradient(90deg,#f2e008,#f7ed5c); }
          #aboutModal .am-eyebrow{ display:block; font-size:12px; letter-spacing:2.5px; text-transform:uppercase; color:#f2e008 !important; font-weight:600; margin-bottom:6px; }
          #aboutModal .modal-title{ color:#ffffff !important; font-weight:700; font-size:25px; line-height:1.2; margin:0; }
          #aboutModal .btn-close{ margin-top:4px; opacity:.9; }
          #aboutModal .modal-body{ padding:32px 36px 12px; font-size:15.5px; line-height:1.75; background:#fff; }
          #aboutModal .modal-body p{ color:#3a3f5c !important; margin:0 0 16px; }
          #aboutModal .am-lead{ color:#1c2340 !important; font-size:17px; font-weight:500; border-left:4px solid #f2e008; padding-left:18px; margin-bottom:24px; }
          #aboutModal .am-section{ margin-top:28px; }
          #aboutModal .am-h{ display:flex; align-items:center; gap:12px; font-size:13px; letter-spacing:1.5px; text-transform:uppercase; color:#142878 !important; font-weight:700; margin:0 0 12px; }
          #aboutModal .am-h::before{ content:""; width:28px; height:3px; border-radius:2px; background:#f2e008; flex:0 0 auto; }
          #aboutModal .modal-footer{ border-top:1px solid #eef0f6; padding:16px 36px; background:#fff; justify-content:space-between; gap:12px; }
          #aboutModal .am-note{ color:#8a90ad !important; font-size:13px; margin:0; }
          #aboutModal .am-cta{ display:inline-flex; align-items:center; gap:8px; background:#142878; color:#fff !important; border:none; border-radius:999px; padding:11px 26px; font-weight:600; font-size:14px; text-decoration:none; transition:background .2s ease, transform .2s ease; }
          #aboutModal .am-cta:hover{ background:#24379c; transform:translateY(-1px); color:#fff !important; }
          @media (max-width:575px){
            #aboutModal .modal-header{ padding:22px 20px 24px; }
            #aboutModal .modal-body{ padding:22px 20px 6px; }
            #aboutModal .modal-footer{ padding:14px 20px; flex-direction:column; align-items:stretch; }
            #aboutModal .modal-title{ font-size:20px; }
          }

/* ===== Mission / Vision / Core interactive stage ===== */
            .why-us{ overflow-x:clip; }
            /* raise the bottom platform up over the model's feet so she looks like she's standing on it */
            .why-us .fact{ margin-top:-12px; position:relative; z-index:3; }
            .mvc-stage{
              --mvc-navy:#142878;
              --mvc-yellow:#f2e008;
              position:relative;
              display:block;
              background:transparent;
              padding:0 0 10px;
            }
            .mvc-scene{
              display:flex;
              align-items:flex-start;
              gap:26px;
            }
            .mvc-figure{
              position:relative;
              flex:0 0 46%;
              max-width:46%;
              align-self:flex-end;
              z-index:2;
            }
            .mvc-figure img{
              display:block;
              width:auto;
              height:920px;
              max-width:100%;
            }
            .mvc-right{
              flex:1 1 54%;
              min-width:0;
              display:flex;
              flex-direction:column;
              gap:56px;
              padding-top:18px;
            }
            /* ---- layered offset card behind the speech bubble ---- */
            .mvc-cloud-wrap{ position:relative; margin-left:-64px; margin-top:-40px;}
            .mvc-cloud-wrap::before{
              content:"";
              position:absolute;
              inset:0;
              background:var(--mvc-navy);
              border-radius:26px;
              transform:rotate(-3.5deg) translate(-12px,14px);
              z-index:0;
            }
            /* ---- clean speech bubble with a tail pointing toward the model ---- */
            .mvc-cloud{
              position:relative;
              z-index:5;
              background:#ffffff;
              border:3px solid var(--mvc-navy);
              border-radius:26px;
              padding:32px 40px 34px;
              box-shadow:0 14px 34px rgba(20,40,120,.13);
            }
            .mvc-cloud::before,
            .mvc-cloud::after{
              content:"";
              position:absolute;
              top:46%;
              width:0;
              height:0;
              border-style:solid;
              transform:translateY(-50%);
            }
            .mvc-cloud::before{           /* navy outline of the tail */
              left:-27px;
              border-width:17px 27px 17px 0;
              border-color:transparent var(--mvc-navy) transparent transparent;
            }
            .mvc-cloud::after{            /* white fill of the tail */
              left:-19px;
              border-width:13px 22px 13px 0;
              border-color:transparent #ffffff transparent transparent;
            }

            .mvc-cloud-inner{ position:relative; z-index:2; display:grid; }
            .mvc-panel{
              grid-area:1 / 1;
              opacity:0;
              transition:none;
              pointer-events:none;
            }
            .mvc-panel.is-active{
              opacity:1;
              pointer-events:auto;
            }
            .mvc-panel h4{
              margin:0 0 12px;
              font-size:30px;
              font-weight:700;
              line-height:1.1;
              color:var(--mvc-navy);
            }
            .mvc-panel h4 span{ color:var(--mvc-yellow); }
            .mvc-body{ position:relative; }
            .mvc-ghost,
            .mvc-typed{
              margin:0;
              font-size:21px;
              line-height:1.5;
              font-weight:500;
              color:#2b2f5a;
            }
            .mvc-ghost{ visibility:hidden; }
            .mvc-typed{ position:absolute; inset:0; }
            .mvc-caret{
              display:inline-block;
              width:0;
              height:1em;
              border-right:3px solid var(--mvc-navy);
              vertical-align:-0.15em;
              margin-left:3px;
              animation:mvcblink 1s steps(1,end) infinite;
            }
            @keyframes mvcblink{ 50%{ opacity:0; } }

            /* ---- doodle-frame buttons ---- */
            .mvc-tabs{
              display:flex;
              gap:30px;
              flex-wrap:wrap;
              margin-top: 100px;
            }
            .mvc-tab{
              -webkit-appearance:none;
              appearance:none;
              background:#ffffff;
              color:var(--mvc-navy);
              font-family:inherit;
              font-weight:700;
              font-size:18px;
              letter-spacing:.3px;
              padding:13px 30px;
              cursor:pointer;
              border:2.5px solid var(--mvc-navy);
              border-radius:225px 15px 225px 15px / 15px 225px 15px 225px;
              box-shadow:3px 3px 0 -1px var(--mvc-navy);
              transition:background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease, border-radius .25s ease;
            }
            .mvc-tab:nth-child(1){ transform:rotate(-1.5deg); }
            .mvc-tab:nth-child(2){ transform:rotate(1deg); }
            .mvc-tab:nth-child(3){ transform:rotate(-1deg); }
            .mvc-tab:hover,
            .mvc-tab:focus-visible,
            .mvc-tab.is-active{
              background:var(--mvc-navy);
              color:#ffffff;
              outline:none;
              transform:rotate(0deg) translateY(-2px);
              border-radius:15px 225px 15px 225px / 225px 15px 225px 15px;
              box-shadow:4px 5px 0 -1px var(--mvc-yellow);
            }
            .mvc-tab.is-active{ border-color:var(--mvc-yellow); }

            /* product logo strip below the buttons */
            .mvc-logo{
              display:block;
              width:100%;
              max-width:800px;
              height:auto;
              margin-top:100px;
              margin-left: -30px;
            }
            .mvc-figure img{ transition:none; }

            @media (max-width:991px){
              .mvc-scene{ flex-direction:column; align-items:center; gap:20px; }
              .mvc-figure{ flex:none; max-width:250px; }
              .mvc-figure img{ width:100%; height:auto; }
              .mvc-right{ flex:none; width:100%; padding-top:0; }
              .mvc-cloud-wrap{ margin-left:0; }
              .mvc-cloud-wrap::before{ display:none; }
              .mvc-cloud{ margin-left:0; }
              .mvc-cloud::before,.mvc-cloud::after{ display:none; }
              .mvc-panel h4{ font-size:24px; }
              .mvc-ghost,.mvc-typed{ font-size:18px; }
              .mvc-tabs{ justify-content:center; margin-top: 0px; }
            }

/* ===== Product modal (two-column, About-modal styling, zoomable image) ===== */
          #productModal .modal-dialog{ max-width:1080px; }
          #productModal .modal-content{ border:none; border-radius:18px; overflow:hidden; box-shadow:0 30px 80px rgba(20,40,120,.35); }
          #productModal .modal-header{ position:relative; background:linear-gradient(135deg,#142878,#24379c); border-bottom:none; padding:26px 34px 28px; align-items:flex-start; }
          #productModal .modal-header::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:4px; background:linear-gradient(90deg,#f2e008,#f7ed5c); }
          #productModal .am-eyebrow{ display:block; font-size:12px; letter-spacing:2.5px; text-transform:uppercase; color:#f2e008 !important; font-weight:600; margin-bottom:6px; }
          #productModal .modal-title{ color:#ffffff !important; font-weight:700; font-size:25px; line-height:1.2; margin:0; }
          #productModal .btn-close{ margin-top:4px; opacity:.9; }
          #productModal .modal-body{ padding:28px 34px 14px; background:#fff; overflow:hidden; min-height:0; display:flex; }
          #productModal .pm-grid{ display:flex; gap:34px; align-items:stretch; flex:1 1 auto; min-height:0; }
          #productModal .pm-col-img{ flex:0 0 44%; max-width:44%; display:flex; align-items:center; justify-content:center; overflow:hidden; }
          #productModal .pm-col-text{ flex:1 1 58%; min-width:0; overflow-y:auto; min-height:0; padding-right:10px; scrollbar-width:none; -ms-overflow-style:none; }
          #productModal .pm-col-text::-webkit-scrollbar{ display:none; }
          #productModal .pm-img{ background:#f4f6fb; border-radius:14px; padding:16px; overflow:hidden; cursor:zoom-in; }
          #productModal .pm-img img{ display:block; width:100%; height:auto; max-height:440px; object-fit:contain; transition:transform .15s ease; transform-origin:center center; }
          #productModal .pm-img:hover img{ transform:scale(2.2); }
          #productModal .pm-section{ margin-top:22px; }
          #productModal .pm-section:first-of-type{ margin-top:0; }
          #productModal .am-h{ display:flex; align-items:center; gap:12px; font-size:13px; letter-spacing:1.5px; text-transform:uppercase; color:#142878 !important; font-weight:700; margin:0 0 10px; }
          #productModal .am-h::before{ content:""; width:28px; height:3px; border-radius:2px; background:#f2e008; flex:0 0 auto; }
          #productModal .modal-body p{ color:#3a3f5c !important; line-height:1.7; margin:0 0 8px; }
          #productModal .modal-body ul{ margin:0; padding-left:18px; }
          #productModal .modal-body li{ color:#3a3f5c !important; line-height:1.7; margin-bottom:4px; }
          #productModal table{ width:100%; }
          #productModal table th{ color:#142878 !important; font-weight:600; padding:6px 14px 6px 0; white-space:nowrap; vertical-align:top; }
          #productModal table td{ color:#3a3f5c !important; padding:6px 0; }
          #productModal .modal-footer{ border-top:1px solid #eef0f6; padding:16px 34px; background:#fff; justify-content:space-between; gap:12px; }
          #productModal .am-note{ color:#8a90ad !important; font-size:13px; margin:0; }
          #productModal .am-cta{ display:inline-flex; align-items:center; gap:8px; background:#142878; color:#fff !important; border:none; border-radius:999px; padding:11px 26px; font-weight:600; font-size:14px; text-decoration:none; transition:background .2s ease, transform .2s ease; }
          #productModal .am-cta:hover{ background:#24379c; transform:translateY(-1px); color:#fff !important; }
          @media (max-width:767px){
            #productModal .modal-body{ overflow-y:auto; display:block; }
            #productModal .pm-grid{ flex-direction:column; height:auto; }
            #productModal .pm-col-img, #productModal .pm-col-text{ flex:none; max-width:100%; width:100%; }
            #productModal .pm-col-text{ overflow:visible; padding-right:0; }
          }
          @media (max-width:575px){
            #productModal .modal-header{ padding:22px 20px 24px; }
            #productModal .modal-body{ padding:22px 20px 6px; }
            #productModal .modal-footer{ padding:14px 20px; flex-direction:column; align-items:stretch; }
            #productModal .modal-title{ font-size:20px; }
          }
          /* product cards: subtle zoom + zoom cursor (no icon) */
          #menu .menu-item{ cursor:default; }
          #menu .menu-item .menu-img{ cursor:pointer; transition:transform .3s ease; }
          #menu .menu-item .menu-content a{ cursor:pointer; }
          #menu .menu-item:hover .menu-img{ transform:scale(1.06); }

#cordChat { position: fixed; right: 22px; bottom: 22px; z-index: 9999; font-family: 'DM Sans', system-ui, sans-serif; }
      #cordChatBtn { width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
        background: linear-gradient(135deg, #0d1a52, #24379c); color: #fff; box-shadow: 0 8px 24px rgba(13,27,75,0.4);
        display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
      #cordChatBtn:hover { transform: scale(1.06); }
      #cordChatBtn svg { width: 28px; height: 28px; }

      /* notification bubble */
      #cordChatNotif { position: absolute; right: 4px; bottom: 76px; width: 232px; background: #fff; color: #1c2340;
        border: 1px solid #e6e8ef; border-radius: 14px; padding: 12px 32px 12px 15px; font-size: 0.85rem; line-height: 1.42;
        box-shadow: 0 12px 32px rgba(13,27,75,0.26); cursor: pointer; animation: ccNotifIn 0.35s ease; }
      #cordChatNotif::after { content: ''; position: absolute; right: 22px; bottom: -7px; width: 13px; height: 13px;
        background: #fff; border-right: 1px solid #e6e8ef; border-bottom: 1px solid #e6e8ef; transform: rotate(45deg); }
      #cordChatNotifClose { position: absolute; top: 5px; right: 8px; background: none; border: none; color: #9aa1b8;
        font-size: 1rem; line-height: 1; cursor: pointer; }
      @keyframes ccNotifIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

      #cordChatPanel { position: absolute; right: 0; bottom: 74px; width: 360px; max-width: calc(100vw - 32px); height: 500px;
        max-height: calc(100vh - 120px); background: #fff; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
        box-shadow: 0 18px 50px rgba(13,27,75,0.32); border: 1px solid #e6e8ef; }
      .cc-head { background: linear-gradient(135deg, #0d1a52, #24379c); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
      .cc-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
      .cc-sub { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
      #cordChatClose { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; opacity: 0.8; }
      #cordChatClose:hover { opacity: 1; }
      .cc-name-row { padding: 10px 14px 0; }
      .cc-name-row input { width: 100%; padding: 9px 12px; border: 1.5px solid #e6e8ef; border-radius: 9px; font-family: inherit; font-size: 0.86rem; outline: none; }
      .cc-name-row input:focus { border-color: #24379c; }
      .cc-messages { flex: 1; min-height: 0; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 9px; background: #f4f6fb; }
      .cc-msg { display: flex; }
      .cc-msg.agent { justify-content: flex-start; }
      .cc-msg.visitor { justify-content: flex-end; }
      .cc-wrap { max-width: 80%; display: flex; flex-direction: column; }
      .cc-msg.visitor .cc-wrap { align-items: flex-end; }
      .cc-bubble { width: fit-content; max-width: 100%; padding: 9px 13px; border-radius: 13px; font-size: 0.9rem; line-height: 1.45;
        overflow-wrap: break-word; word-break: normal; white-space: pre-wrap; }
      .cc-msg.agent .cc-bubble { background: #fff; border: 1px solid #e6e8ef; color: #1c2340; border-bottom-left-radius: 4px; }
      .cc-msg.visitor .cc-bubble { background: linear-gradient(135deg, #0d1a52, #24379c); color: #fff; border-bottom-right-radius: 4px; }
      .cc-author { font-size: 0.64rem; color: #7a83a6; margin: 0 0 3px 4px; }
      .cc-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 10px; background: #f4f6fb; }
      .cc-chip { border: 1.5px solid #f2e008; color: #0d1a52; background: #fff; border-radius: 999px; padding: 7px 13px;
        font-size: 0.8rem; font-family: inherit; cursor: pointer; transition: background 0.15s, color 0.15s; }
      .cc-chip:hover { background: #0d1a52; color: #fff; border-color: #0d1a52; }
      .cc-composer { padding: 12px 14px; border-top: 1px solid #e6e8ef; display: flex; gap: 8px; background: #fff; }
      .cc-composer input { flex: 1; padding: 11px 14px; border: 1.5px solid #e6e8ef; border-radius: 10px; font-family: inherit; font-size: 0.9rem; outline: none; }
      .cc-composer input:focus { border-color: #24379c; }
      .cc-composer button { background: linear-gradient(135deg, #0d1a52, #24379c); color: #fff; border: none; width: 44px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
      .cc-composer button svg { width: 20px; height: 20px; }

/* ================================================================
   CONSOLIDATED — legal pages (.terms-section) — Privacy & Terms
   ================================================================ */
.terms-section {
  margin-top: 150px;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 40px 20px;
  background-color: #f9f9f9;
  z-index: 4;
  position: relative;
}

.terms-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
  color: black;
}

.terms-section p {
  margin-bottom: 15px;
}

.terms-section a {
  color: #0066cc;
  text-decoration: underline;
}

.terms-section strong {
  font-weight: bold;
}


/* ==========================================================================
   Custom overrides (moved in from index.html's inline <style>)
   Kept at the end so these win over the rules above.
   ========================================================================== */
/* --- desktop: stats band position --- */
@media (min-width: 768px) {
  .about { padding-bottom: 0 !important; }
  .fact { position: relative; z-index: 4; margin-top: -50px !important; margin-bottom: 50px !important; }
}

/* --- tablet / phone: center the model + product logo --- */
@media (max-width: 991px) {
  .mvc-scene  { align-items: center !important; }
  .mvc-figure { align-self: center !important; margin-left: auto !important; margin-right: auto !important; float: none !important; }
  .mvc-right  { width: 100% !important; }
  .mvc-logo   { margin-left: auto !important; margin-right: auto !important; margin-top: 0px; margin-bottom: 50px; }
}

/* --- tablet / phone: force product grid to 2 per row (overrides Isotope) --- */
@media (max-width: 991px) {
  #menu { overflow-x: clip; }
  #menu .isotope-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    height: auto !important;
    min-height: 0 !important;
    position: static !important;
    overflow: hidden !important;
  }
  #menu .isotope-container .isotope-item {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    /* let CSS grid fully own placement; ignore Isotope's inline transform/sizing so tiles can't fly out of the section on page switch */
    transform: none !important;
  }
  /* reveal effect on the newly shown tiles (uses the independent `translate` property so it doesn't fight the transform override above) */
  #menu .isotope-container .isotope-item.reveal-in {
    animation: menuTileIn 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .menu .menu-item .menu-img img { width: 100% !important; height: auto !important; }
  .menu .menu-item .menu-content h4,
  .menu .menu-item .menu-content h4 a { font-size: 14px !important; line-height: 1.25 !important; }
  .menu .menu-item .menu-content p { font-size: 12px !important; }
}

/* entrance animation for product tiles on mobile page/filter changes */
@keyframes menuTileIn {
  from { opacity: 0; translate: 0 16px; }
  to   { opacity: 1; translate: 0 0; }
}

/* --- phone: stop the stats band overlapping the product swiper --- */
@media (max-width: 767px) {
  .fact { margin-top: 0 !important; }
}

/* --- connect the stats band flush to the product swiper (no gap) --- */
.fact { margin-bottom: 0 !important; }
#product-swiper { margin-top: 0 !important; }

/* ===== redesigned meet-flash: two light streaks sweep in and meet at center ===== */
.fact .fact-flash {
  position: absolute; inset: 0; left: 0; right: 0; top: 0; bottom: 0;
  width: auto; height: auto; transform: none; background: none;
  overflow: hidden; mix-blend-mode: screen; opacity: 1;
  z-index: 4; pointer-events: none;
  animation: none !important; /* cancels the old single-burst factFlash */
}
.fact .fact-flash .ff-streak {
  position: absolute; top: -15%; height: 130%; width: 130px;
  opacity: 0; transform: skewX(-14deg); filter: blur(1.5px);
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 35%,
    rgba(255,255,255,0.98) 50%, rgba(255,255,255,0.35) 65%,
    rgba(255,255,255,0) 100%);
}

/* fire only AFTER the halves meet (.met is added ~820ms after reveal) */
.fact.met .fact-flash .ff-left  { animation: ffSweepL 0.55s cubic-bezier(0.33,0,0.2,1) forwards; }
.fact.met .fact-flash .ff-right { animation: ffSweepR 0.55s cubic-bezier(0.33,0,0.2,1) forwards; }

@keyframes ffSweepL {
  0%   { left: -160px; opacity: 0; }
  18%  { opacity: 1; }
  100% { left: calc(50% - 65px); opacity: 0; }
}
@keyframes ffSweepR {
  0%   { right: -160px; opacity: 0; }
  18%  { opacity: 1; }
  100% { right: calc(50% - 65px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fact .fact-flash { display: none; }
}

/* --- hide the hanging-man overlay on tablets & phones (it overlaps the products) --- */
@media (max-width: 991px) {
  .menu-right-overlay { display: none !important; }
}

/* --- breathing room between the search bar and the product grid --- */
#menu .isotope-container { margin-top: 24px !important; }
@media (max-width: 767px) {
  #menu .isotope-container { margin-top: 30px !important; }
  #menu #menu-search { margin-top: 6px; }
}

/* --- pagination: plain arrows, circular number balls, larger active ball --- */
#menu-pagination { gap: 8px !important; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 26px; }
#menu-pagination .pg-btn {
  min-width: 42px; height: 42px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid #e6e8ec; background: #ffffff; color: #142878;
  font-family: poppins, sans-serif; font-weight: 600; font-size: 15px; line-height: 1;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .1s ease;
}
#menu-pagination .pg-btn:hover:not(.is-active):not(.is-disabled):not(.pg-nav) {
  background: #eef1fb; border-color: #c9d2f0; color: #142878;
}
#menu-pagination .pg-btn:active:not(.is-disabled) { transform: scale(0.92); }
/* larger, filled active ball */
#menu-pagination .pg-btn.is-active {
  min-width: 52px; height: 52px; font-size: 18px;
  background: #142878; border-color: #142878; color: #ffffff;
  box-shadow: 0 6px 14px rgba(20, 40, 120, 0.40);
}
#menu-pagination .pg-btn.is-disabled { opacity: 0.35; cursor: default; pointer-events: none; }
#menu-pagination .pg-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(20, 40, 120, 0.25); }

/* plain arrows: no circle/border/background */
#menu-pagination .pg-btn.pg-nav {
  min-width: auto; width: auto; height: auto; padding: 0 8px;
  border: none; background: none; border-radius: 0; box-shadow: none;
  color: #ffffff; font-size: 20px; font-weight: 400;
}
#menu-pagination .pg-btn.pg-nav:hover:not(.is-disabled) { background: none; color: #f2e008; }

@media (max-width: 480px) {
  #menu-pagination { gap: 6px !important; }
  #menu-pagination .pg-btn { min-width: 38px; height: 38px; font-size: 14px; }
  #menu-pagination .pg-btn.is-active { min-width: 46px; height: 46px; font-size: 16px; }
  #menu-pagination .pg-btn.pg-nav { min-width: auto; height: auto; font-size: 18px; }
}