* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navbar-height: 84px;
}

a {
  color: #222;
  text-decoration: none;
}

@media (max-width: 576px) {
  :root {
    --navbar-height: 76px;
  }
}

@font-face {
  font-family: "SinkinSans";
  src:
    url("../fonts/SinkinSans-400Regular.woff2") format("woff2"),
    url("../fonts/SinkinSans-500Medium.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BwModelica";
  src: url("../fonts/BwModelica-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BwModelica";
  src: url("../fonts/BwModelica-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BwModelica";
  src: url("../fonts/BwModelica-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BwModelica";
  src: url("../fonts/BwModelica-bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BwModelica";
  src: url("../fonts/BwModelica-ExtraBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "SinkinSans";
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

/* Slightly reduce global base font-size for a more refined, compact look */
html {
  font-size: 15px;
}

.section {
  padding: 100px 0px;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0px;
  }
}

/* NAVBAR - Kerovit style */
.site-navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 0 20px;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: var(--navbar-height);
}

.site-navbar .container-fluid {
  height: 100%;
}

.site-navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

.site-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

/* Slightly smaller on narrow viewports */
@media (max-width: 992px) {
  .site-logo {
    max-height: 48px;
  }
}

@media (max-width: 576px) {
  .site-logo {
    max-height: 38px;
  }

  .mobile-site-logo {
    margin-left: 6px;
  }
}

.site-navbar .nav-link {
  position: relative;
  color: #222;
  padding: 0.6rem 0.9rem;
  padding-left: 15px;
  padding-right: 15px;
  /* background: #f1f1f1; */
  border-radius: 0px;
  font-weight: 500;
  margin-left: 25px;
  transition: color .18s ease, background .18s ease;
}

.nav-actions .nav-link {
  color: #ffffff;
  padding: 0.6rem 0.9rem;
  background: #163e73;
  transition: color .18s ease;
}

.nav-actions .nav-link:hover {
  color: #222;
  background: #d3d3d3;
  transition: color .18s ease, background 0.18s ease;

}

.navbar-nav .nav-item:first-child .nav-link {
  margin-left: 0;
}

/* .site-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #5a5a5a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s cubic-bezier(.2, .9, .2, 1);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after {
  transform: scaleX(1);
} */

/* .site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  transform: translateX(2px);
} */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Search removed: search-related styles deleted */

/* Mobile navbar: hamburger LEFT, logo CENTER, search RIGHT (like Kerovit) */
@media (max-width: 991px) {
  .site-navbar {
    padding-left: 12px;
    padding-right: 12px;
    width: 100vw;
  }

  .site-navbar .container-fluid {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Hamburger: sits on the left */
  .site-navbar .navbar-toggler {
    order: 0;
    position: relative;
    border: none;
    padding: 6px;
    z-index: 2000;
  }

  /* Logo: visually centered */
  .site-navbar .navbar-brand {
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0; */
  }

  /* Search icon: sits on the right */
  /* .site-navbar .nav-actions {
    order: 2;
    display: flex !important;
    margin-left: auto;
  } */
  .site-navbar .nav-link {
    color: #ffffff;
    padding: 0.6rem 0.9rem;
    background: #163e73;
    font-size: 13px;
  }

  .site-navbar .nav-actions .nav-link.d-none {
    display: none !important;
  }

  .site-navbar .nav-actions .nav-search {
    display: flex !important;
    font-size: 1.15rem;
    color: #222;
  }
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  /* height: 100svh; */
  min-height: 600px;
  overflow: hidden;
}

/* ==================== SLIDES ==================== */
.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dark overlay on slides */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 51%) 0%, rgb(0 0 0 / 59%) 50%, rgb(0 0 0 / 87%) 100%);
  /* background: linear-gradient(135deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%); */
}

/* ==================== HERO CONTENT ==================== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.right-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

/* ==================== TEXT CONTENT ==================== */
.text-content {
  max-width: 35vw;
}

.hero-title {
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.cta-link span {
  position: relative;
}

.cta-link span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.cta-link:hover span::after {
  width: 100%;
}

.cta-link:hover {
  color: #fff;
}

.cta-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cta-link:hover i {
  transform: translateX(5px);
}

/* ==================== THUMBNAIL GALLERY ==================== */
.thumb-gallery {
  display: flex;
  gap: 15px;
  width: 35vw;
  /* height: 15vh; */
}

.thumb {
  width: 100%;
  height: auto;
  border: 3px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.thumb:hover::before {
  opacity: 0.3;
}

.thumb.active::before {
  opacity: 0;
}

.thumb.active {
  border-color: #fff;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.thumb:hover img {
  transform: scale(1.1);
}

.products-section {
  position: relative;
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== PROGRESS BAR ==================== */
.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 20;
}

.progress-bar {
  height: 100%;
  background: #ffffff86;
  width: 0%;
  transition: width 0.05s linear;
}

/* ==================== RESPONSIVE - LARGE DESKTOP ==================== */
@media (max-width: 1400px) {
  .content-wrapper {
    padding: 0 50px;
  }

  .hero-title {
    font-size: 1.1rem;
    line-height: 2;
  }

  .thumb {
    width: 100px;
    height: 100px;
  }
}

/* ==================== RESPONSIVE - DESKTOP ==================== */
@media (max-width: 1200px) {
  .content-wrapper {
    padding: 0 40px;
  }

  .text-content {
    max-width: 450px;
  }

  .hero-title {
    font-size: 0.95rem;
  }

  .thumb {
    width: 100px;
    height: 100px;
  }

  .thumb-gallery {
    gap: 12px;
  }
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 992px) {
  .hero-content {
    padding-bottom: 100px;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 30px;
  }

  .text-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 0.95rem;
  }

  .thumb-gallery {
    width: 100%;
    justify-content: flex-start;
  }

  .thumb {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {

  /* Reduce hero height on phones so content below is reachable */
  .hero-slider {
    height: 72vh;
    min-height: 72vh;
    max-height: 78vh;
  }

  .hero-content {
    padding-bottom: 50px;
  }

  .content-wrapper {
    padding: 0 18px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hide thumbnails on mobile — show nav arrows instead */
  .right-controls,
  .thumb-gallery {
    display: none !important;
  }

  .text-content {
    max-width: 85%;
  }

  .hero-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.45;
  }

  .cta-link {
    font-size: 0.88rem;
  }

  /* Make mobile drawer / overlay full viewport so nav covers screen */
  .mobile-overlay {
    top: 0 !important;
    bottom: 0 !important;
  }

  .mobile-drawer {
    top: 0 !important;
    height: 100% !important;
    transform: translateX(-100%);
    z-index: 100;
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 576px) {
  .hero-content {
    padding-bottom: 30%;
  }

  .content-wrapper {
    padding: 0 16px;
    gap: 0;
  }

  .text-content {
    max-width: 85%;
  }

  .hero-title {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .cta-link {
    font-size: 0.85rem;
  }
}

/* ==================== RESPONSIVE - SMALL MOBILE ==================== */
@media (max-width: 400px) {
  .content-wrapper {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 0.85rem;
  }

  .cta-link {
    font-size: 0.82rem;
  }
}

/* ==================== LANDSCAPE MODE ON SHORT SCREENS ==================== */
@media (max-height: 500px) {
  .hero-slider {
    min-height: 100vh;
  }

  .hero-content {
    align-items: center;
    padding-bottom: 60px;
  }

  .content-wrapper {
    flex-direction: row;
    align-items: flex-end;
  }

  .text-content {
    max-width: 50%;
  }

  .hero-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  /* Search removed: media query removed. */
  .thumb {
    width: 55px;
    height: 55px;
  }
}

/* ==================== ANIMATION CLASSES ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide.active~.hero-content .hero-title {
  animation: fadeInUp 0.8s ease forwards;
}

/* ==================== MOBILE HERO NAV ARROWS ==================== */
.hero-mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .hero-mobile-nav {
    display: flex;
    position: absolute;
    bottom: 60px;
    right: 20px;
    z-index: 15;
    gap: 8px;
  }

  .hero-mobile-prev,
  .hero-mobile-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
  }

  .hero-mobile-prev:active,
  .hero-mobile-next:active {
    background: rgba(255, 255, 255, 0.3);
  }
}

/* ==================== MOBILE DRAWER STYLES ==================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1600;
  display: none;
}

.mobile-overlay.open {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  z-index: 1700;
  transform: translateX(-110%);
  transition: transform 0.32s ease;
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.12);
  padding: 18px 16px;
  overflow-y: auto;
}

.mobile-drawer[aria-hidden="false"],
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-header {
  gap: 8px;
}

.mobile-close {
  font-size: 1.8rem;
  background: none;
  border: none;
  padding: 4px 8px;
}

.mobile-brand .brand-name {
  font-weight: 600;
  color: #0b5fa8;
}

.mobile-brand .brand-tag {
  font-size: 0.8rem;
  color: #6c757d;
}

.mobile-search-box {
  margin: 12px 0 18px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1vw;
}

.mobile-nav a,
.mobile-sub-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 6px;
  border-radius: 4px;
  color: #222;
  background: transparent;
  border: none;
  font-size: 1rem;
}

.mobile-nav {
  margin-top: 10vh;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 3vh;
}

.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding-left: 15px;

}

.mobile-nav .mobile-submenu.open {
  max-height: 800px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.mobile-nav .mobile-submenu li a {
  padding: 10px 6px;
  color: #556;
  font-size: 0.95rem;
}

/* Hide this custom drawer on larger screens */
@media (min-width: 992px) {

  .mobile-overlay,
  .mobile-drawer {
    display: none !important;
  }
}

/* On small screens hide the default Bootstrap collapsed nav so only our drawer appears */
@media (max-width: 991px) {
  .site-navbar .navbar-collapse {
    display: none !important;
  }

  .mobile-nav {
    margin-top: 3vh;
  }

  .mobile-nav li {
    margin-bottom: 1vh;
  }

  .mobile-nav li:last-child {
    border-bottom: 0px solid rgba(0, 0, 0, 0.04);
  }
}

/* Hide search button on mobile — REMOVED: now showing search icon on mobile like Kerovit */

/* Mobile drawer link styling: remove underlines and tidy hover */
.mobile-nav a,
.mobile-nav .mobile-sub-toggle,
.mobile-nav .mobile-submenu li a {
  text-decoration: none;
  background-color: transparent;
}

.mobile-nav a:hover,
.mobile-nav .mobile-sub-toggle:hover {
  /* background: rgba(11, 95, 168, 0.04); */
  background-color: transparent;
}

/* ==================== MEGA MENU STYLES ==================== */
.mega-menu {
  /* Make the mega menu fixed to viewport so it behaves like the navbar */
  --navbar-offset: 84px;
  /* fallback value; matches navbar height */
  position: fixed;
  left: 0;
  right: 0;
  top: var(--navbar-offset);
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 1500;
  display: none;
  padding: 40px 0;
  /* max-height: calc(100vh - var(--navbar-offset)); */
  height: 580px;
  overflow: auto;
}

.mega-menu.open {
  display: block;
}

.mega-inner {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  padding: 0 30px;
}

.mega-left {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-heading-img {
  display: block;
  max-width: 440px;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  margin: 0;
}

.mega-center {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  padding-left: 40px;
  height: 100%;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin-top: 1vh;
}

.mega-list li {
  margin-bottom: 3vh;
}

.mega-list a {
  display: block;
  font-size: 1.05rem;
  color: #222;
  text-decoration: none;
  font-weight: 200;
  margin-bottom: 6px;
  position: relative;
  transition: color .18s ease, transform .18s ease;
  width: fit-content;
}

.mega-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1.8px;
  width: 100%;
  background: #0d3b66;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .26s cubic-bezier(.2, .9, .2, 1);
}

.mega-list a:hover::after,
.mega-list a:focus::after {
  transform: scaleX(1);
}

.mega-list a:hover,
.mega-list a:focus {
  transform: translateX(3px);
}

.mega-list .muted {
  margin: 0;
  color: #7a8a95;
  font-size: 0.95rem;
}

.mega-right {
  height: 100%;
  width: 100%;
  padding: 1vw;
}

.mega-right .preview-wrap {
  background: #f7f7f7;
  /* padding: 18px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  height: 100%;
  width: 100%;
}

.preview-img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mega-menu small image slider */
.mega-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.mega-slider .mslide {
  display: none;
  width: 100%;
  height: 100%;
}

.mega-slider .mslide.active {
  display: block;
}

.mega-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mega-slider .ms-prev,
.mega-slider .ms-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.mega-slider .ms-prev {
  left: 8px;
}

.mega-slider .ms-next {
  right: 8px;
}

.mega-slider .ms-prev:focus,
.mega-slider .ms-next:focus {
  outline: 2px solid rgba(11, 95, 168, 0.3);
}

@media (max-width: 992px) {
  .mega-slider {
    max-width: 100%;
  }

  .mega-slider .ms-prev,
  .mega-slider .ms-next {
    display: none;
  }
}

/* Responsive: stack columns on smaller viewports */
@media (max-width: 992px) {
  .mega-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mega-left {
    opacity: 0.12;
  }

  .mega-left .mega-heading-img {
    max-width: 440px;
  }

  .mega-center {
    border-left: none;
    padding-left: 0;
  }

  .preview-img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .mega-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 20px 0;
  }
}

/* Products section styles removed (product grid & slider) */

/* ==================== EXPLORE BY PRODUCT CATEGORY (SWIPER) ==================== */
.explore-section {
  background: #fff;
  padding: 84px 16px;
}

.explore-container {
  width: 100%;
  /* margin: 0 auto; */
  /* padding: 0 18px; */
}

.explore-head {
  margin-bottom: 28px;
}

.explore-head .section-title {
  font-size: clamp(32px, 3.6vw, 32px);
  font-weight: 500;
  color: #1f2830;
}

.explore-head .view-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 8px;
  color: #0d3b66;
  text-decoration: none;
  font-weight: 500;
  transition: color .18s ease;
  width: fit-content;
}

.explore-head .view-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 85%;
  background: #0d3b66;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.2, .9, .2, 1);
}

.explore-head .view-more:hover::after,
.explore-head .view-more:focus::after {
  transform: scaleX(1);
}

.explore-head .view-more:hover,
.explore-head .view-more:focus {
  color: #0d3b66;
}

.explore-swiper {
  position: relative;
  padding-bottom: 28px;
}

.explore-swiper .swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
}

.explore-card {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  /* background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04); */
  text-decoration: none;
  color: inherit;
  transform: translateY(0);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

/* 
.explore-card:focus {
  outline: 2px solid rgba(11, 95, 168, 0.12);
} */

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  /* background: #f2f2f2; */
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  will-change: transform;
}

.media-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.06) 100%); */
  background: linear-gradient(180deg, rgb(0 0 0 / 13%) 40%, rgba(0, 0, 0, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.card-footer {
  padding: 7px 16px 7px;
  color: #194075;
  text-transform: capitalize;
}

.card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  transition: color 0.35s ease;
}

.card-body .arrow {
  color: #9aa6a6;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease;
}

.explore-card:hover,
.explore-card.revealed {
  transform: translateY(-8px);
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); */
}

.explore-card:hover .card-media img {
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) scale(1.07);
  filter: saturate(1.02) contrast(1.02);
}

.explore-card:hover .media-overlay {
  opacity: 1;
}

/* Swiper controls styling */
.explore-nav {
  position: absolute;
  right: 12px;
  top: -10px;
  display: flex;
  gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  background: rgba(0, 0, 0, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}



/* Responsive rules */
@media (min-width: 992px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }
}

@media (max-width: 991px) {
  .explore-head .section-title {
    font-size: 2rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

}

@media (max-width: 768px) {
  .explore-container {
    padding: 0 12px;
  }
}

/* reveal animation initial state */
.explore-slide {
  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.explore-slide.revealed {
  opacity: 1;
  transform: translateY(0);
}

.explore-slide1 {
  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease;
}

.explore-slide1.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* small polish */
.explore-head .view-more i {
  margin-left: 8px;
  transition: transform .26s ease, opacity .2s ease;
  transform: translateX(0);
  opacity: 0.95;
}

.explore-head .view-more:hover i,
.explore-head .view-more:focus i {
  transform: translateX(6px);
}

/* ==================== ABOUT - PREMIUM SPLIT LAYOUT ==================== */
.about-split {
  --about-bg: #f6f6f6;
  --about-text: #222222;
  --about-muted: #555555;
  --about-gap: 48px;
  background: var(--about-bg);
  padding: 3vw;
  /* height: 100vh; */
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
}

.about-split__container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.about-split__inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--about-gap);
  align-items: center;
  height: 100%;
}

.about-split__left {
  /* max-width: 520px; */
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  flex-direction: column;
  z-index: 2;
  height: 100%;
  padding: 2vw 0;
}

.about-split__left::before {
  content: "";
  position: absolute;
  inset: 0 -30% auto auto;
  width: 60%;
  height: 100%;
  filter: blur(28px);
  transform: translateY(10%);
  border-radius: 12px;
  z-index: -1;
  pointer-events: none;
}

.about-split__heading {
  color: var(--about-text);
  /* font-family: ""; */
  font-weight: 100;
  line-height: 1.4;
  letter-spacing: 0.6px;
  margin-bottom: 28px;
  font-size: clamp(32px, 3.6vw, 32px);
}

.about-split__lead {
  color: var(--about-muted);
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.6;
  margin-top: 6px;
  font-weight: 200;
}

.about-split__right {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  padding: 2vw;
}

.about-split__img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--about-bg);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.06);
}

.about-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-split__img-wrap:hover .about-split__img {
  transform: scale(1.02);
}

/* Fade-up animation (text then image) */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-split__left.fade-up {
  transition-delay: 0s;
}

.about-split__lead {
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.06s;
}

.about-split__right.fade-up {
  transition-delay: 0.2s;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax uses transform on the image; we expose a CSS variable for tiny translate */
.about-split__img {
  transform: translate3d(0, var(--about-parallax, 0px), 0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .about-split__inner {
    grid-template-columns: 1fr;
  }

  .about-split__right {
    order: 2;
  }

  .about-split__left {
    order: 1;
  }

  .about-split {
    padding: 64px 18px;
  }

  .about-split__img-wrap {
    max-height: 420px;
  }

  .about-split__heading {
    font-size: clamp(28px, 7.6vw, 36px);
  }
}

@media (max-width: 420px) {
  .about-split {
    padding: 48px 14px;
  }

  .about-split__heading {
    font-size: clamp(22px, 9.4vw, 28px);
  }
}

/* End about split */

/* ============================================================
   FOOTER  –  Kerovit-style premium layout
   ============================================================ */
.site-footer {
  background: #fff;
  color: #1a1a2e;
  border-top: 1px solid #e5e5e5;
}

/* ---- Main body (brand + link columns) ---- */
.footer-main {
  width: 100%;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

/* Brand column */
.footer-brand {
  flex: 0 0 280px;
  /* width: 40%;   */
}

.footer-logo {
  height: 65px;
  width: auto;
  margin-bottom: 28px;
}

.footer-contact {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color .2s;
}

.footer-contact a:hover {
  color: #0d3b66;
}

/* Link columns wrapper */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  flex: 1;
  justify-content: flex-end;
}

.footer-col {
  min-width: 180px;
}

.footer-col__title {
  font-size: 15px;
  font-weight: 600;
  color: #0d3b66;
  margin: 0 0 24px;
  /* text-decoration: underline; */
  /* text-underline-offset: 4px;
  text-decoration-thickness: 1.5px; */
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 15px;
}

.footer-col a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: #0d3b66;
}

/* ---- Bottom bar ---- */
.footer-bottom {
  margin: 0 auto;
  padding: 24px 48px 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social__label {
  font-size: 13px;
  font-weight: 500;
  color: #0d3b66;
  white-space: nowrap;
}

.footer-social__icons {
  display: flex;
  gap: 10px;
}

.footer-social__icons a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0d3b66;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background .25s, transform .25s;
}

.footer-social__icons a:hover {
  background: #1a5f9e;
  transform: translateY(-2px);
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #666;
  /* letter-spacing: .5px; */
  text-align: center;
  line-height: 1.8;
}

.footer-top-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .25s, color .25s, transform .25s;
}

.footer-top-btn:hover {
  border-color: #0d3b66;
  color: #0d3b66;
  transform: translateY(-3px);
}

/* ---- Footer responsive ---- */
@media (max-width: 991px) {
  .footer-main {
    flex-direction: column;
    padding: 48px 28px 36px;
    gap: 36px;
  }

  .footer-brand {
    flex: unset;
    max-width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 32px 40px;
  }

  .footer-bottom {
    padding: 20px 28px 28px;
  }

  .footer-logo {
    height: 65px;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 36px 20px 28px;
    gap: 50px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-col {
    min-width: calc(50% - 14px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 24px;
    gap: 14px;
  }

  .footer-copy {
    text-align: left;
    order: 2;
  }

  .footer-top-btn {
    align-self: flex-end;
    order: 3;
  }
}

/* Footer link hover underline + subtle slide */
.footer-col a {
  position: relative;
  color: #444;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1.8px;
  width: 100%;
  background: #0d3b66;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .26s cubic-bezier(.2, .9, .2, 1);
}

.footer-col a:hover::after,
.footer-col a:focus::after {
  transform: scaleX(1);
}

.footer-col a:hover,
.footer-col a:focus {
  transform: translateX(2px);
}

/* ensure link underline doesn't overflow on small columns */
@media (max-width: 576px) {
  .footer-col a::after {
    bottom: -3px;
  }
}

/* ==================== WHY CHOOSE US ==================== */
:root {
  --why-bg: #f7f7f7;
  --why-text: #222;
  --why-muted: #5f6670;
  --why-accent: #0d3b66;
  --why-card-bg: rgba(255, 255, 255, 0.92);
  --why-card-border: rgba(13, 59, 102, 0.09);
  --why-shadow: 0 8px 22px rgba(10, 28, 43, 0.06);
  --why-shadow-hover: 0 16px 34px rgba(10, 28, 43, 0.14);
}

.why-choose-us {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background:
    radial-gradient(1200px 260px at 50% 0%, rgba(13, 59, 102, 0.08) 0%, rgba(13, 59, 102, 0) 70%),
    linear-gradient(180deg, #f9f9f9 0%, var(--why-bg) 100%);
}

.why-choose-us.header-banner {
  padding: 80px 20px;
}

.header-banner .why-choose-us__subtitle {
  margin-bottom: 20px;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1320px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(13, 59, 102, 0) 0%, rgba(13, 59, 102, 0.26) 50%, rgba(13, 59, 102, 0) 100%);
}

.why-choose-us__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.why-choose-us__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}

.why-choose-us__header.header-banner {
  margin: 0 auto 0px;
}

.why-choose-us__subtitle {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--why-accent);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-choose-us__title {
  position: relative;
  margin: 0;
  color: var(--why-text);
  font-size: clamp(32px, 3.6vw, 32px);
  line-height: 1.4;
  font-weight: 700;
}

.why-choose-us__title::after {
  content: "";
  display: block;
  width: 94px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(13, 59, 102, 0.06) 0%, rgba(13, 59, 102, 0.8) 50%, rgba(13, 59, 102, 0.06) 100%);
}

.why-choose-us__description {
  margin: 18px auto 0;
  max-width: 850px;
  color: var(--why-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-feature-card {
  position: relative;
  background: var(--why-card-bg);
  border: 1px solid var(--why-card-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--why-shadow);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(236, 242, 248, 0.3));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.why-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--why-accent);
  border: 1px solid rgba(13, 59, 102, 0.2);
  background: #fff;
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-feature-card__title {
  position: relative;
  margin: 0;
  color: var(--why-text);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.why-feature-card__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 11px;
  background: rgba(13, 59, 102, 0.35);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-feature-card__text {
  margin: 14px 0 0;
  color: var(--why-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.why-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--why-shadow-hover);
  border-color: rgba(13, 59, 102, 0.18);
}

.why-feature-card:hover::before {
  opacity: 1;
}

.why-feature-card:hover .why-feature-card__icon {
  color: #176aa5;
  border-color: rgba(23, 106, 165, 0.35);
  transform: scale(1.06) rotate(-4deg);
}

.why-feature-card:hover .why-feature-card__title::after {
  width: 64px;
  background: rgba(13, 59, 102, 0.78);
}

/* reveal animation: transform + opacity only */
.why-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* subtle blur-fade feel via a light veil (opacity only) */
.why-feature-card .why-feature-card__text,
.why-feature-card .why-feature-card__title,
.why-feature-card .why-feature-card__icon {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .why-feature-card {
    padding: 34px 28px;
  }
}

@media (max-width: 992px) {
  .why-choose-us {
    padding: 96px 18px;
  }

  .why-choose-us__header {
    margin-bottom: 42px;
  }

  .why-choose-us__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .why-choose-us {
    padding: 76px 16px;
  }

  .why-choose-us__header {
    text-align: left;
    margin-bottom: 30px;
  }

  .why-choose-us__title::after {
    margin-left: 0;
  }

  .why-choose-us__description {
    margin-left: 0;
  }

  .why-choose-us__grid {
    grid-template-columns: 1fr;
  }

  .why-feature-card {
    padding: 28px 22px;
  }
}

/* ==================== OUR RESPONSIBILITIES ==================== */
:root {
  --or-bg: #f4f5f6;
  --or-text: #63676d;
  --or-heading: #707b86;
  --or-accent: #c8a26a;
}

.our-responsibilities {
  position: relative;
  padding: 120px 0px;
  /* background:
    radial-gradient(1200px 420px at 50% -40px, rgba(161, 177, 191, 0.16) 0%, rgba(161, 177, 191, 0) 70%),
    linear-gradient(180deg, #f5f6f7 0%, var(--or-bg) 100%); */
  overflow: hidden;
}

.our-responsibilities::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.our-responsibilities__container {
  width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.our-responsibilities__header {
  text-align: center;
  margin-bottom: 36px;
}

.our-responsibilities__kicker {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
  font-weight: 300;
  color: var(--or-accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.our-responsibilities__title {
  margin: 4px 0 0;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.02;
  font-weight: 600;
  color: var(--or-heading);
  text-transform: lowercase;
}


.our-responsibilities__visuals {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
}

.or-visual {
  width: 100%;
  margin: 0;
  position: relative;
}

.or-visual--save {
  max-width: 940px;
}




.or-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.or-img--save {
  /* max-height: 760px; */
  object-fit: cover;
  filter: saturate(0.95) contrast(0.96);
}

.or-img--earth {
  min-height: 340px;
  transform: translate3d(0, var(--or-earth-parallax, 0px), 0) scale(1.03);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.or-reveal {
  width: 100%;
  opacity: 0;
  transform: translateY(55px);
  filter: blur(10px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.or-reveal.is-visible {
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 992px) {
  .our-responsibilities {
    padding: 96px 18px;
  }

  .or-visual--save {
    max-width: 860px;
  }

  .or-caption {
    left: 16px;
    bottom: 14px;
    font-size: 0.86rem;
    padding: 8px 12px;
  }
}

@media (max-width: 640px) {
  .our-responsibilities {
    padding: 72px 14px;
  }

  .our-responsibilities__header {
    margin-bottom: 20px;
  }

  .our-responsibilities__wave {
    width: 58px;
  }

  .our-responsibilities__visuals {
    gap: 12px;
  }

  .or-img--earth {
    min-height: 220px;
  }

  .or-caption {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}

.opacity-50 {
  font-size: 14px;
  /* opacity: 0.1; */
  max-width: 85%;
  margin-top: 10px;
  margin-bottom: 0px;
}

.heroTitle1 {
  font-size: 2.1rem;
  color: #fff;
  line-height: 1.5;
}

/* ====== MARGIN ALL ====== */
.m-6 {
  margin: 3.5rem !important;
}

.m-7 {
  margin: 4rem !important;
}

.m-8 {
  margin: 4.5rem !important;
}

.m-9 {
  margin: 5rem !important;
}

.m-10 {
  margin: 6rem !important;
}

/* ====== MARGIN TOP ====== */
.mt-6 {
  margin-top: 3.5rem !important;
}

.mt-7 {
  margin-top: 4rem !important;
}

.mt-8 {
  margin-top: 4.5rem !important;
}

.mt-9 {
  margin-top: 5rem !important;
}

.mt-10 {
  margin-top: 6rem !important;
}

/* ====== MARGIN BOTTOM ====== */
.mb-6 {
  margin-bottom: 3.5rem !important;
}

.mb-7 {
  margin-bottom: 4rem !important;
}

.mb-8 {
  margin-bottom: 4.5rem !important;
}

.mb-9 {
  margin-bottom: 5rem !important;
}

.mb-10 {
  margin-bottom: 6rem !important;
}

/* ====== MARGIN START (LEFT in LTR) ====== */
.ms-6 {
  margin-left: 3.5rem !important;
}

.ms-7 {
  margin-left: 4rem !important;
}

.ms-8 {
  margin-left: 4.5rem !important;
}

.ms-9 {
  margin-left: 5rem !important;
}

.ms-10 {
  margin-left: 6rem !important;
}

/* ====== MARGIN END (RIGHT in LTR) ====== */
.me-6 {
  margin-right: 3.5rem !important;
}

.me-7 {
  margin-right: 4rem !important;
}

.me-8 {
  margin-right: 4.5rem !important;
}

.me-9 {
  margin-right: 5rem !important;
}

.me-10 {
  margin-right: 6rem !important;
}

/* ====== MARGIN X (LEFT + RIGHT) ====== */
.mx-6 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.mx-7 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.mx-8 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.mx-9 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.mx-10 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

/* ====== MARGIN Y (TOP + BOTTOM) ====== */
.my-6 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-7 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-8 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-9 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-10 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

/* ====== SPACING SCALE ====== */
/* 6 = 3.5rem, 7 = 4rem, 8 = 4.5rem, 9 = 5rem, 10 = 6rem */

/* ====== PADDING ALL ====== */
.p-6 {
  padding: 3.5rem !important;
}

.p-7 {
  padding: 4rem !important;
}

.p-8 {
  padding: 4.5rem !important;
}

.p-9 {
  padding: 5rem !important;
}

.p-10 {
  padding: 6rem !important;
}

/* ====== PADDING TOP ====== */
.pt-6 {
  padding-top: 3.5rem !important;
}

.pt-7 {
  padding-top: 4rem !important;
}

.pt-8 {
  padding-top: 4.5rem !important;
}

.pt-9 {
  padding-top: 5rem !important;
}

.pt-10 {
  padding-top: 6rem !important;
}

/* ====== PADDING BOTTOM ====== */
.pb-6 {
  padding-bottom: 3.5rem !important;
}

.pb-7 {
  padding-bottom: 4rem !important;
}

.pb-8 {
  padding-bottom: 4.5rem !important;
}

.pb-9 {
  padding-bottom: 5rem !important;
}

.pb-10 {
  padding-bottom: 6rem !important;
}

/* ====== PADDING START ====== */
.ps-6 {
  padding-left: 3.5rem !important;
}

.ps-7 {
  padding-left: 4rem !important;
}

.ps-8 {
  padding-left: 4.5rem !important;
}

.ps-9 {
  padding-left: 5rem !important;
}

.ps-10 {
  padding-left: 6rem !important;
}

/* ====== PADDING END ====== */
.pe-6 {
  padding-right: 3.5rem !important;
}

.pe-7 {
  padding-right: 4rem !important;
}

.pe-8 {
  padding-right: 4.5rem !important;
}

.pe-9 {
  padding-right: 5rem !important;
}

.pe-10 {
  padding-right: 6rem !important;
}

/* ====== PADDING X ====== */
.px-6 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.px-7 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.px-8 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

.px-9 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.px-10 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

/* ====== PADDING Y ====== */
.py-6 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-7 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-8 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-9 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-10 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.raden-about {
  max-width: 150px;
  margin-top: 15px;
}

.stack-section {
  position: relative;
}

/* Panels */
.panel {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  overflow: hidden;
}

/* Background with parallax layer */
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
  /* for zoom feel */
  transition: transform 1.5s ease;
}

/* Background images */
/* .panel-1 {
  background: url('../imgs/newbanner2.jpg') center/cover no-repeat;
  z-index: 1;
}

.panel-2 {
  background: url('../imgs/newbanner4.jpg') center/cover no-repeat;
  z-index: 2;
}

.panel-3 {
  background: url('../imgs/newbanner3.jpg') center/cover no-repeat;
  z-index: 3;
} */

/* Hover zoom */
.panel:hover::before {
  transform: scale(1.35);
}

/* Dark overlay */
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Text */
.reveal {
  font-size: clamp(32px, 3.6vw, 32px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(80px);
}

.explore-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.explore-more i {
  transition: transform 0.3s ease;
}

/* Hover */
.explore-more:hover {
  color: #fff;
}

.explore-more:hover i {
  transform: translateX(6px);
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  max-width: 900px;
  text-align: center;
  color: #fff;
}

/* Heading */
.cta-container h2 {
  font-size: clamp(32px, 3.6vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Description */
.cta-container p {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

/* Primary Button */
.btn.primary {
  background: #fff;
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Secondary Button */
.btn.secondary {
  border: 1px solid #555;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}

.contact-wrapper {
  padding: 80px 0;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); */
}

.section-title {
  font-weight: 600;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: #eef3f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3b66;
  font-size: 16px;
}

.info-text strong {
  margin-bottom: 10px;
  display: block;
}

.info-text p {
  margin: 0px 0px 10px 0px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.form-floating>.form-control {
  border-radius: 0px;
  border: 1px solid #e0e0e0;
}

.form-floating>label {
  color: #777;
}

.form-control:focus {
  border-color: #0d3b66;
  box-shadow: 0 0 0 0.1rem rgba(13, 59, 102, 0.1);
}

.btn-custom {
  background: #0d3b66;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 0px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #d3d3d3;
  color: #111;
  transform: translateY(-1px);
}

.form-note {
  font-size: 13px;
  color: #888;
}

@media(max-width:768px) {
  .contact-card {
    padding: 25px;
  }
}

.hero-section {
  height: calc(100vh - 83px);
  background: url('../imgs/faucets-collection.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-section.product-hero {
  height: calc(60vh - 83px) !important;
}

.hero-section._2 {
  background: url('../imgs/sanitary-collection.jpg') no-repeat center center/cover;
}

.hero-section._3 {
  background: url('../imgs/other-collection.jpg') no-repeat bottom center/cover;
}

/* Dark overlay for better text visibility */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content1 {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  max-width: 800px;
}

.hero-content1 h1 {
  font-size: 2.8rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.hero-content1 p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content1 h1 {
    font-size: 2rem;
  }

  .hero-content1 {
    padding-bottom: 100px;
  }
}

.bg-white {
  background: #fff !important;
}

.padding-top-0 {
  padding-top: 0px;
}

.padding-bottom-0 {
  padding-bottom: 0px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}


.product-card {
  border-radius: 12px;
  overflow: hidden;
  /* background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04); */
  text-decoration: none;
  color: inherit;
  transform: translateY(0);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card:hover .card-media img {
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) scale(1.07);
  filter: saturate(1.02) contrast(1.02);
}

.product-card:hover .media-overlay {
  opacity: 1;
}

.product-card .card-body h3 {
  text-transform: uppercase;
}

.product-sec [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.product-sec [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.product-inner-card .card-media {
  aspect-ratio: 1 / 1;
}

.product-card.product-inner-card {
  border: 1px solid #d3d3d3;
}

.product-inner-card .card-footer p {
  /* padding: 0px 16px 0px 16px; */
  font-size: 12px;
  line-height: 20px;
  color: #163e73;
}

.product-img {
  border: 1px solid #d3d3d3;
}

#enquiryModal .form-control {
  border-radius: 0px;
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
}

#enquiryModal .modal-body {
  padding: 25px;
}

#enquiryModal button.submit {
  color: #ffffff;
  padding: 0.6rem 0.9rem;
  background: #163e73;
  border-color: #163e73;
  transition: color .18s ease;
}

#enquiryModal button.submit:hover {
  color: #222;
  background: #d3d3d3;
  border-color: #d3d3d3;
  transition: color .18s ease, background 0.18s ease;
}

#enquiryModal label {
  font-size: 14px;
}

.blue-color {
  color: #163e73;
}

.vision-mission-section {
  background:
    radial-gradient(1200px 260px at 50% 0%, rgba(13, 59, 102, 0.08) 0%, rgb(13 59 102 / 0%) 70%), linear-gradient(180deg, #9fb9da 0%, #f7f7f700 100%)
}

.faucet-img {
  max-height: 500px;
  opacity: 0.15;
}

.vm-box {
  background: var(--why-card-bg);
  border: 1px solid var(--why-card-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--why-shadow);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vm-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(236, 242, 248, 0.3));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.vm-icon img {
  width: 80px;
  height: 80px;
  border-radius: 00%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--why-accent);
  /* border: 1px solid rgba(13, 59, 102, 0.2); */
  /* background: #fff; */
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vm-title {
  position: relative;
  margin: 0;
  color: var(--why-text);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.vm-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 11px;
  background: rgba(13, 59, 102, 0.35);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vm-box p {
  margin: 14px 0 0;
  color: var(--why-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.bg-gray {
  background-color: #f3f3f3;
}

.five-grid {
  display: flex;
  flex-wrap: wrap;
}

.feature-box {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-box img {
  width: 60px;
  height: 60px;
}

/* Tablet */
@media (max-width: 991px) {
  .feature-box {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .feature-box {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .feature-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.page-link {
  color: #163e73;
  border-radius: 30px;
  height: 48px;
  padding: 12px;
  width: 48px;
  line-height: 24px;
  text-align: center;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 30px;
  line-height: 19px;
  text-align: center;
  font-size: 22px;
}

.active>.page-link,
.page-link.active {
  background-color: #163e73;
  border-color: #163e73;
}

.page-link:hover {
  color: #fff;
  background-color: #163e73;
  border-color: #163e73;
}

.pagination {
  gap: 15px;
}

.page-link:focus {
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.content {
  text-align: center;
}