@import url("reset.css");
@import url("fonts.css");

/* VARIABLES */
:root {
  /* COLORS */
  --color-background: #fff;
  --color-bg-secondary: #f4f7f9;
  --color-white: #fff;
  --color-black: #1c1b1b;
  --color-dark-blue: #001a33;
  --text-color: #657078;
  --link-color: #52baf0;
  --light-blue: #f4f7f9;
  --light-gray-1: #f2f2f2;
  --light-gray-2: #e1e4e6;
  --primary-blue: #10498a;

  /* BORDER RADIUS */
  --border-radius-8: 12px;
  --border-radius-12: 12px;
  --border-radius-24: 24px;
  --border-radius-32: 32px;
  --border-rounded: 100%;

  /* LINE HEIGHT */
  --line-height-115: 115%;
  --line-height-135: 135%;
  --line-height-150: 150%;
  --line-height-175: 175%;
  --line-height-200: 200%;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--color-background);
}

._lock {
  overflow: hidden;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
}

.container-max {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.page-dark-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -2;
}

.page-dark-overlay._active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.ds-none {
  display: none !important;
}


/***** Header *****/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

header._sticky {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 73, 138, 0.08);
  box-shadow: 0 12px 32px rgba(16, 73, 138, 0.1);
}

.header-row {
  gap: 64px;
  padding: 8px 35px;
  height: 84px;
  transition: all 0.3s ease-in-out;
}

header._sticky .header-row {
  height: 78px;
}

.header-row .header-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease-in-out;
}

.header-row .header-logo.sec {
  display: none;
}

header._sticky .header-row .header-logo {
  max-width: 172px;
}

header._sticky .header-row .header-logo.prim {
  display: none;
}

header._sticky .header-row .header-logo.sec {
  display: block;
}

.navigation-bar {
  width: 100%;
  gap: 24px;
}

.menu-links {
  gap: 34px;
}

.menu-links li {
  position: relative;
}

.menu-links li .sub-menu {
  position: absolute;
  top: 220%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  padding: 10px 0;
  background-color: var(--color-white);
  border: 1px solid rgba(16, 73, 138, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(11, 31, 51, 0.12);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.menu-links li .sub-menu:after,
.menu-links li .sub-menu:before {
  bottom: 100%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.menu-links li .sub-menu:after {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: var(--color-white);
  border-width: 9px;
  left: 50%;
  margin-left: -9px;
}

.menu-links li .sub-menu:before {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(16, 73, 138, 0.08);
  border-width: 10px;
  left: 50%;
  margin-left: -10px;
}

.menu-links li .sub-menu li {
  transition: all 0.25s ease-in-out;
}

.menu-links li .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  color: #33475b;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}

.menu-links li .sub-menu li:hover {
  background-color: rgba(16, 73, 138, 0.06);
}

.menu-links li .sub-menu li:hover a {
  color: var(--primary-blue);
  padding-left: 22px;
}

.menu-links li .sub-menu._active {
  top: 185%;
  visibility: visible;
  opacity: 1;
}

.menu-links a {
  gap: 8px;
  font-size: 16.5px;
  line-height: var(--line-height-150);
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}

/* transparent header text */
header:not(._sticky) .menu-links a {
  color: #ffffff;
}

/* sticky header text */
header._sticky .menu-links a {
  color: var(--color-black);
}

.main-nv-ln::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

header:not(._sticky) .main-nv-ln::after {
  background: #ffffff;
}

header._sticky .main-nv-ln::after {
  background: var(--primary-blue);
}

.main-nv-ln:hover::after {
  width: 100%;
}

header:not(._sticky) .main-nv-ln:hover {
  color: #ffffff;
  opacity: 0.9;
}

header._sticky .main-nv-ln:hover {
  color: #186dcd;
}

.hd-drop-smb {
  font-size: 12px;
  transition: all 0.2s ease-in-out;
}

header:not(._sticky) .hd-drop-smb {
  color: #ffffff;
}

header._sticky .hd-drop-smb {
  color: var(--color-black);
}

.hd-drop-smb._active {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.header-contacts {
  gap: 14px;
  cursor: pointer;
}

.contact-wrapper {
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
}

/* transparent initial state */
header:not(._sticky) .contact-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

header:not(._sticky) .contact-wrapper span {
  font-size: 15.5px;
  line-height: var(--line-height-150);
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

header:not(._sticky) .contact-wrapper i {
  font-size: 14px;
  color: #ffffff;
  padding: 0;
  border: none;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

/* sticky state */
header._sticky .contact-wrapper {
  border: 1px solid rgba(16, 73, 138, 0.1);
  background: #fff;
}

header._sticky .contact-wrapper span {
  font-size: 15.5px;
  line-height: var(--line-height-150);
  color: var(--color-black);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

header._sticky .contact-wrapper i {
  font-size: 14px;
  color: var(--primary-blue);
  padding: 0;
  border: none;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.contact-wrapper:hover {
  transform: translateY(-1px);
}

header:not(._sticky) .contact-wrapper:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

header:not(._sticky) .contact-wrapper:hover span,
header:not(._sticky) .contact-wrapper:hover i {
  color: #ffffff;
}

header._sticky .contact-wrapper:hover {
  border-color: rgba(16, 73, 138, 0.22);
  box-shadow: 0 8px 20px rgba(16, 73, 138, 0.08);
}

header._sticky .contact-wrapper:hover span,
header._sticky .contact-wrapper:hover i {
  color: var(--primary-blue);
}

.get-quote {
  padding: 15px 30px;
  font-size: 15.5px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}

/* transparent state button */
header:not(._sticky) .get-quote {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

/* sticky state button */
header._sticky .get-quote {
  color: var(--color-white);
  background: linear-gradient(135deg, #10498a, #186dcd);
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(16, 73, 138, 0.18);
}

header:not(._sticky) .get-quote:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  animation: none;
}

header._sticky .get-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 73, 138, 0.24);
  animation: none;
}

.menu-icon {
  z-index: 5;
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-left: 5px;
  display: none;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  left: 0;
  position: absolute;
  height: 2px;
  width: 100%;
  transition: all 0.5s ease;
  border-radius: 20px;
}

/* transparent menu icon */
header:not(._sticky) .menu-icon span,
header:not(._sticky) .menu-icon::before,
header:not(._sticky) .menu-icon::after {
  background-color: #ffffff;
}

/* sticky menu icon */
header._sticky .menu-icon span,
header._sticky .menu-icon::before,
header._sticky .menu-icon::after {
  background-color: #ffffff;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  transform: perspective(1px) scale(1) translate3d(0, 0, 0);
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-icon span {
  top: 50%;
  transform: perspective(1px) scale(1) translate(0px, -50%) translate3d(0, 0, 0);
}

.menu-icon._active span {
  transform: scale(0) translate(0px, -50%);
}

.menu-icon._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}

.menu-icon._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
}

/***** End Header *****/
/***** End Header *****/

/***** Main  *****/

main._homepage {
  flex: 1 1 auto;
}

/***** Main Slider homepage (index) *****/

.main-slider {
  position: relative;
  overflow: hidden;
}

.main-slider__slide {
  position: relative;
}

.main-slider__slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 47% 0;
  overflow: hidden;
}

.main-slider__slide .img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(7, 23, 39, 0.78) 0%,
      rgba(9, 34, 57, 0.62) 34%,
      rgba(16, 73, 138, 0.28) 66%,
      rgba(16, 73, 138, 0.06) 100%);
}

.main-slider__slide .img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 100%);
}

.main-slider__slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transform: scale(1);
  transition:
    transform 6s ease,
    filter 0.4s ease;
}

.main-slider__slide.swiper-slide-active .img-wrapper img {
  transform: scale(1.05);
}

.main-slider__slide .main-slider__text {
  position: absolute;
  top: 50%;
  /* max() keeps the block's left edge on-screen when 30% of the viewport
     is less than half the block width (narrow desktops) */
  left: max(30%, calc(380px + 3vw));
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--color-white);
  gap: 0;
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
}

.main-slider__slide .main-slider__text h2 {
  font-size: clamp(44px, 4.8vw, 66px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 22px 0;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.22);
}

.main-slider__slide .main-slider__text p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 34px 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: none;
  /* overflow safety for very long admin-entered descriptions */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-slider__slide .main-slider__text .slider__link {
  margin-left: 0;
}

.main-slider__slide .main-slider__text h2,
.main-slider__slide .main-slider__text p,
.main-slider__slide .main-slider__text .slider__link {
  position: relative;
  left: 0;
}

/* text animation */
.main-slider__wrapper .main-slider__slide.swiper-slide-active .main-slider__text h2 {
  animation: leftright 1.4s ease;
}

.main-slider__wrapper .main-slider__slide.swiper-slide-active .main-slider__text p {
  animation: leftright 1.8s ease;
}

.main-slider__wrapper .main-slider__slide.swiper-slide-active .main-slider__text .slider__link {
  animation: leftright 2.2s ease;
}

@keyframes leftright {
  0% {
    opacity: 0;
    left: -70px;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* pagination */
.main-slider .swiper-pagination {
  bottom: 34px !important;
}

.main-slider .swiper-pagination .swiper-pagination-bullet {
  width: 42px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  border: none !important;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.main-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 56px;
  background-color: var(--color-white);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.28);
  border: none !important;
}

/* arrows */
.main-slide-btn-wr {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 0 28px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.main-slide-btn-wr button {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 56px;
  height: 56px;
  border-radius: var(--border-rounded);
  color: var(--color-white);
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.main-slide-btn-wr button:hover {
  background: var(--primary-blue);
  color: var(--color-white);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.main-slider:hover .main-slide-btn-wr {
  visibility: visible;
  opacity: 1;
}

/***** End Main Slider homepage (index) *****/

/***** Our Offer Homepage *****/

.our-offer__homepage {
  padding: 75px 50px;
  /* background-color: var(--color-bg-secondary); */
}

.our-offer__homepage .offer-links {
  max-width: 1400px;
  width: 100%;
  gap: 15px;
}

.our-offer__homepage .offer-link__item {
  max-width: 32%;
  width: 100%;
  gap: 15px;
  text-align: center;
  padding: 25px 25px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  position: relative;
  overflow: hidden;
}

.our-offer__homepage .offer-link__item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.our-offer__homepage .offer-link__item .img-bg {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(40%);
  z-index: 0;
}

.our-offer__homepage .offer-link__item .vector-img {
  max-width: 75px;
  width: 100%;
  margin-bottom: 5px;
  position: relative;
}

.our-offer__homepage .offer-link__item h3 {
  font-size: 18px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 500;
  position: relative;
}

.our-offer__homepage .offer-link__item p {
  font-size: 15px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
}

.our-offer__homepage .offer-link__item .link-sign {
  font-size: 14spx;
  padding: 10px;
  border: 1px solid var(--light-gray-1);
  border-radius: var(--border-rounded);
  background-color: var(--color-bg-secondary);
  color: var(--primary-blue);
  font-weight: bold;
  position: relative;
}

.our-offer__homepage .offer-link__item .vector-img,
.our-offer__homepage .offer-link__item h3,
.our-offer__homepage .offer-link__item p,
.our-offer__homepage .offer-link__item .link-sign {
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.our-offer__homepage .offer-link__item:hover h3,
.our-offer__homepage .offer-link__item:hover p,
.our-offer__homepage .offer-link__item:hover .link-sign {
  color: var(--color-white);
}

.our-offer__homepage .offer-link__item:hover .link-sign {
  color: var(--color-white);
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.our-offer__homepage .offer-link__item:hover::before {
  background-color: transparent;
}

.our-offer__homepage .offer-link__item:hover .vector-img {
  filter: brightness(0) invert(1);
}

.our-offer__homepage .offer-text {
  max-width: 600px;
  width: 100%;
  padding: 35px;
}

.our-approuch .text-wrapper h5,
.our-offer__homepage .offer-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  line-height: var(--line-height-150);
}

.our-approuch .text-wrapper h2,
.our-offer__homepage .offer-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-115);
  margin-bottom: 25px;
}

.our-approuch .text-wrapper p,
.our-offer__homepage .offer-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
}

a.view-more {
  max-width: 170px;
  width: 100%;
  padding: 17px 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  border: 3px solid var(--light-gray-2);
  border-radius: var(--border-radius-32);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

a.view-more i {
  margin-left: 10px;
  color: var(--primary-blue);
  font-size: 13px;
  transition: all 0.3s ease-in-out;
}

a.view-more:hover {
  background-color: var(--primary-blue);
  color: var(--color-white);
  border-color: var(--primary-blue);
}

a.view-more:hover i {
  color: var(--color-white);
}

/***** End Our Offer Homepage *****/

/***** Our products Homepage *****/

.our-products {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0px 20px;
}

.our-products__column h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.our-products__column p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.filtering-items-wrapper .filter-list {
  gap: 35px;
}

.filtering-items-wrapper .filter-item {
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  background-color: var(--color-white);
  border: 3px solid var(--light-gray-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.filtering-items-wrapper .filter-item._active {
  background-color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  color: var(--color-white);
}

.filtering-items-wrapper .filter-item:hover {
  background-color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  color: var(--color-white);
}

.__pods-row {
  gap: 30px;
  margin-top: 50px;
}

.filter__pod-single {
  max-width: 22.5%;
  width: 100%;
  padding: 0 0 18% 0;
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  transition: all 0.8s ease-in-out;
}

.prod-cat .filter__pod-single {
  max-width: 31.5%;
  padding: 0 0 25% 0;
}

.filter__pod-single .pod-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: all 0.6s ease-in-out;
}

.filter__pod-single .heading-wr {
  position: absolute;
  bottom: 20px;
  left: 20px;
  gap: 7px;
  padding-bottom: 6px;
  overflow: hidden;
}

.filter__pod-single .heading-wr i {
  font-size: 18px;
  color: var(--color-white);
  transform: translate(-30px, 0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.filter__pod-single h4 {
  font-size: 28px;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  line-height: var(--line-height-115);
}

.filter__pod-single h4::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: -100%;
  background-color: var(--primary-blue);
  transition: all 0.3s ease-in-out;
}

.filter__pod-single:hover h4::before {
  left: 0;
}

.filter__pod-single:hover .pod-img {
  transform: scale(1.2);
  filter: brightness(50%);
}

.filter__pod-single:hover .heading-wr i {
  transform: translate(0, 0);
  opacity: 1;
}

.filterable.ds-none {
  display: none !important;
}

.filterable.ds-hide {
  visibility: hidden;
  opacity: 0;
}

/***** End Our products Homepage *****/

/***** Promo Offer Homepage *****/

.promo-offer {
  padding: 100px 10px;
  background-color: var(--color-bg-secondary);
}

.promo-offer__column {
  gap: 15px;
}

.promo-offer h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 500;
  max-width: 650px;
  width: 100%;
  text-shadow: 0px 0px 13px rgba(66, 184, 131, 0.33);
}

.promo-offer p {
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 300;
  max-width: 500px;
  width: 100%;
  color: var(--text-color);
}

.promo-offer .call__action {
  font-size: 18px;
  font-weight: 500;
  max-width: 250px;
  width: 100%;
  padding: 18px 30px;
  border-radius: var(--border-radius-32);
  background-color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
}

.promo-offer .call__action:hover {
  background-color: transparent;
  border-color: var(--light-gray-2);
  transition: all 0.3s ease-in-out;
  box-shadow: unset;
  color: var(--color-dark-blue);
}

/***** End Promo Offer Homepage *****/

.pod-detailed {
  margin-top: 60px;
  margin-bottom: 100px;
}

.pod-det-hd-wr {
  margin-bottom: 40px;
  padding-left: 10px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr .text-wrapper {
  max-width: 600px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr a.view-more {
  margin-bottom: 0;
}

.pod-det-hd-wr h2 {
  font-size: 42px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.pod-det-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
  max-width: 500px;
  width: 100%;
}

.pod-detail__slide {
  gap: 100px;
}

.pod-detail__slide .img-wrapper {
  max-width: 50%;
  width: 100%;
  position: relative;
  padding: 0 0 40% 0;
  border-radius: var(--border-radius-24);
  overflow: hidden;
}

.pod-detail__slide .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.pod-detail__slide .prod-description {
  max-width: 40%;
  width: 100%;
  gap: 10px;
}

.pod-detail__slide .prod-description h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  width: 100%;
}

.pod-detail__slide .prod-description p {
  max-width: 85%;
  width: 100%;
  font-size: 18px;
  line-height: var(--line-height-150);
  font-weight: 300;
  color: var(--text-color);
  margin-bottom: 10px;
}

.pod-features {
  max-width: 80%;
  width: 100%;
  gap: 20px;
}

.pod-features li {
  max-width: 45%;
  width: 100%;
  /* gap: 8px; */
}

.pod-features li h4 {
  font-size: 22px;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  font-weight: 500;
}

.pod-features li p {
  font-size: 17px;
  color: var(--text-color);
  line-height: var(--line-height-135);
  font-weight: 400;
}

.explore__btn {
  max-width: 60%;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--color-white);
  border-radius: var(--border-radius-32);
  background-color: var(--primary-blue);
  border: 3px solid var(--primary-blue);
  margin-top: 20px;
  gap: 20px;
  transition: all 0.2s ease-in-out;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.explore__btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  content: "";
  width: 50%;
  height: 120%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 1s ease-in-out;
}

.explore__btn:hover {
  background-color: #36966b;
  border-color: #36966b;
}

.explore__btn:hover::before {
  left: 125%;
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-blue);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all 0.5s;
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}

.btn-wr-sl button:hover {
  background-color: rgba(66, 184, 131, 0.7);
  border: 3px solid var(--primary-blue);
}

.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-blue);
  height: 1px;
  width: 40px;
}

.btn-wr-sl.cl-gr button {
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: var(--light-gray-2);
  border: unset;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl.cl-gr .line {
  margin: 0px 7px;
  background-color: var(--light-gray-2);
  height: 1px;
  width: 40px;
}

/***** About US *****/

.about-us__homepage {
  padding: 50px 10px;
  background-color: var(--color-bg-secondary);
}

.about-us__homepage .offer-links {
  max-width: 700px;
  width: 100%;
  gap: 15px;
}

.about-us-row__homepage {
  gap: 100px;
}

.about-us__homepage .offer-link__item {
  max-width: 48%;
  width: 100%;
  gap: 15px;
  text-align: center;
  padding: 25px 25px;
  background-color: var(--color-white);
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.about-us__homepage .offer-link__item h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  color: var(--primary-blue);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.about-us__homepage .offer-link__item h3 {
  font-size: 23px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.about-us__homepage .offer-link__item:hover {
  background-color: #69c99e;
}

.about-us__homepage .offer-link__item:hover h3,
.about-us__homepage .offer-link__item:hover h2 {
  color: var(--color-white);
}

.about-us__homepage .offer-text {
  max-width: 600px;
  width: 100%;
}

.about-us__homepage .offer-text {
  max-width: 600px;
  width: 100%;
  padding: 35px;
}

.about-us__homepage .offer-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  line-height: var(--line-height-150);
}

.about-us__homepage .offer-text h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-115);
  margin-bottom: 25px;
}

.about-us__homepage .offer-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
}

.why-whe__row {
  gap: 24px;
}

.why-we_item {
  flex: 1;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* top accent */
.why-we_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #10498a;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* hover card only */
.why-we_item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-we_item:hover::before {
  transform: scaleX(1);
}

/* icon (STATIC now) */
.why-we_item i {
  font-size: 36px;
  color: #10498a;
  margin-bottom: 16px;
}

/* title */
.why-we_item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1f33;
}

/* text */
.why-we_item p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* responsive */
@media (max-width: 991px) {
  .why-whe__row {
    flex-direction: column;
  }
}

.partners-slider {
  margin-top: 80px;
}

.partners-slider h2 {
  font-size: 38px;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 50px;
}

.partners-slide img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.partners-slider .swiper-pagination {
  position: relative;
  margin-top: 35px;
}

.partners-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-blue);
  opacity: 0.5;
  padding: 5px;
}

.partners-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-blue) !important;
  opacity: 1;
}

/***** End About US *****/

/***** Video About *****/

.video-about {
  width: 100%;
  position: relative;
  padding: 0 0 25% 0;
}

.video-about img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(45%);
}

.video-about .text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-about .text-wrapper h2 {
  color: var(--color-white);
  line-height: var(--line-height-150);
  font-size: 32px;
  font-weight: 500;
  max-width: 800px;
  width: 100%;
  margin-bottom: 40px;
}

.video-about .text-wrapper i {
  color: var(--primary-blue);
  font-size: 32px;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: var(--border-rounded);
  transition: all 0.3s ease-in-out;
  animation: pulse-animation 2s infinite;
  text-align: center;
}

.video-about .text-wrapper i:hover {
  background-color: var(--primary-blue);
  color: var(--color-white);
  cursor: pointer;
}

.video-modal-body {
  position: relative;
  padding: 0 0 45% 0;
  max-width: 1200px;
  width: 100%;
}

.video-modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(27, 121, 228, 1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(68, 187, 133, 0);
  }
}

/***** End Video About *****/

/***** FAQ *****/

.faq {
  margin-top: 75px;
  margin-bottom: 75px;
  padding: 0px 15px;
}

.faq .faq-text {
  max-width: 480px;
  width: 100%;
}

.faq .faq-text h4 {
  font-size: 18px;
  line-height: 22px;
  color: #777777;
  margin-bottom: 8px;
  font-weight: 300;
}

.faq .faq-text h2 {
  font-size: 38px;
  line-height: 42px;
  color: #212529;
  margin-bottom: 24px;
  font-weight: 600;
}

.faq .faq-text img {
  max-width: 150px;
  height: auto;
  margin-bottom: 24px;
}

.faq .faq-text h3 {
  font-size: 21px;
  line-height: 25px;
  color: #777777;
  margin-bottom: 24px;
  margin-right: 8px;
  font-weight: 400;
}

.faq .faq-text p {
  font-size: 15.5px;
  line-height: 20px;
  color: #777777;
  margin-bottom: 50px;
  font-weight: 400;
}

.faq .faq-text .contact-btn {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.faq .faq-text .contact-btn button {
  font-size: 17px;
  color: var(--color-white);
  background-color: var(--primary-blue);
  border-radius: var(--border-radius-24);
  padding: 18px 35px;
  max-width: 250px;
  width: 100%;
  border-radius: var(--border-radius-24);
  box-shadow: 5px 5px #666666;
  transition: all 0.3s ease-in-out;
  border: none;
}

.faq .faq-text .contact-btn:hover {
  opacity: 0.8;
  transform: translate(5px, 5px);
}

.faq .faq-text .contact-btn:hover button {
  box-shadow: 0px 0px #666666;
}

.faq-col {
  position: relative;
  max-width: 750px;
  width: 100%;
  height: auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-items .smb {
  margin: 0;
  padding: 0;
  color: var(--color-dark);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.faq-items .item {
  display: flex;
  flex-direction: column;
  max-width: 750px;
  width: 100%;
  margin: 5px 0;
  background-color: var(--light-gray-1);
  padding: 0px 10px 10px 10px;
  border-radius: var(--border-radius-24);
}

.faq-items .item .question {
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px 5px 10px;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-dark-blue);
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  margin-top: 25px;
}

.faq-items .item .answer {
  position: relative;
  margin-top: 5px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color);
  width: 75%;
  max-height: 0px;
  transition: all 0.4s ease;
  overflow: hidden;
  line-height: 24px;
  padding: 10px 10px 0px 10px;
  opacity: 0;
  visibility: hidden;
}

.faq-items .item.active .answer {
  max-height: 300px;
  visibility: visible;
  opacity: 1;
}

.faq-items .item.active .smb {
  transform: rotate(135deg);
}

/***** End FAQ *****/

/***** Gallery section Homepage *****/

.gallery {
  margin-top: 75px;
  padding: 0px 15px;
}

.gallery-heading {
  width: 100%;
  margin-bottom: 20px;
}

.gallery-heading .text-wrapper.pg {
  width: 100%;
}

.gallery-heading .text-wrapper.pg h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.gallery-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.gallery-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.gallery-slide {
  width: 100%;
  position: relative;
  padding: 0 0 20% 0;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-wrapper-modal,
.gallery-slider-single {
  max-width: 1000px;
  width: 100%;
}

.gallery-slide-single {
  width: 100%;
  position: relative;
  padding: 0 0 70% 0;
}

.gallery-slide-single img,
.gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
}

.gallery-slide img:hover {
  transform: scale(1.1);
}

/***** End Gallery section Homepage *****/

/***** Reviews Section Homepage *****/
.reviews {
  margin-top: 75px;
  padding: 0px 15px;
}

.reviews-heading {
  margin-bottom: 75px;
}

.reviews-heading h2 {
  font-size: 58px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.reviews-heading h2 span {
  color: var(--primary-blue);
}

.reviews-heading p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.btn-call__now {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn-call__now {
  font-size: 17px;
  color: var(--color-white);
  background-color: var(--primary-blue);
  border-radius: var(--border-radius-24);
  padding: 18px 35px;
  max-width: 250px;
  width: 100%;
  border-radius: var(--border-radius-24);
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: all 0.3s ease-in-out;
  border: none;
}

.btn-call__now:hover {
  box-shadow: none;
  background-color: #297050;
}

.review-slide {
  height: unset;
  padding: 25px 15px;
  border: 3px solid var(--light-gray-1);
  border-radius: var(--border-radius-12);
}

.review-slide .stars-wrapper {
  margin-bottom: 15px;
}

.review-slide .stars-wrapper i {
  font-size: 18px;
  color: var(--primary-blue);
}

.review-slide img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-rounded);
  object-fit: cover;
}

.review-slide p {
  font-size: 18px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 20px;
  flex: 1 1 auto;
}

.review-slide .client-info {
  gap: 20px;
}

.review-slide .client-initials h4 {
  font-size: 18px;
  color: var(--color-dark-blue);
  font-weight: 500;
}

.review-slide .client-initials p {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 0;
}

/***** End Reviews Section Homepage *****/

/***** Blog Homepage section *****/

.view-more-itm {
  margin-bottom: 50px;
}

.blog__homepage {
  margin-top: 75px;
  padding: 0px 15px;
  margin-bottom: 75px;
}

.blog__row {
  gap: 50px 30px;
}

.blog-heading {
  width: 100%;
  margin-bottom: 20px;
}

.blog-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.blog-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.blog-item {
  max-width: 31%;
  width: 100%;
  gap: 15px;
}

.blog-item .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 65% 0;
}

.blog-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
}

.blog-item .date-wrapper {
  gap: 10px;
}

.blog-item .date-wrapper span {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item .date-wrapper i {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item h3 {
  font-size: 22px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.blog-item p {
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 300;
}

.blog_btn {
  max-width: 200px;
  width: 100%;
  padding: 15px 30px;
  outline: none;
  border: none;
  border-radius: var(--border-radius-24);
  color: var(--color-white);
  background-color: var(--primary-blue);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.blog_btn span {
  position: relative;
}

.blog_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--link-color);
  transition: all 0.3s ease-in-out;
}

.blog-item:hover .blog_btn::before {
  top: 0;
}

.blog-item:hover .img-wrapper img {
  filter: grayscale(1);
}

.post-content {
  margin: 50px 10px;
}

.post-content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: normal;
  line-height: var(--line-height-175);
}

.post-content h1 {
  font-size: 2em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h2 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h3 {
  font-size: 1.17em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h4 {
  font-size: 1em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h5 {
  font-size: 0.83em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h6 {
  font-size: 0.67em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

/***** End Blog Homepage section *****/

/***** Page Intro *****/
.page-intro {
  position: relative;
  width: 100%;
  padding: 0 0 45% 0;
}

.page-intro.min {
  position: relative;
  width: 100%;
  padding: 0 0 37.5% 0;
}

.page-intro img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.page-intro.min img {
  object-position: 0 0;
}

.page-intro .intro-text-wrapper {
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
}

.page-intro .page-intro-txt {
  color: var(--color-white);
  gap: 10px;
}

.page-intro .breadcrumbs {
  gap: 7px;
}

.page-intro .breadcrumbs a {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
}

.page-intro .page-intro-txt h2 {
  font-size: 62px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h2.ttl-min {
  font-size: 34px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 135%;
  margin-top: 15px;
  letter-spacing: 1.4px;
}

.page-intro .page-intro-txt p {
  font-size: 18px;
  font-weight: 300;
  line-height: 175%;
  max-width: 600px;
  width: 100%;
}

/***** End Page Intro *****/

/***** PRODUCT PAGE *****/

.page-desc {
  margin-top: 50px;
}

.prod-desc {
  gap: 15px;
}

.prod-desc h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.prod-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.specifications {
  margin-top: 75px;
}

.spec-heading h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin-bottom: 35px;
}

.spec-wrapper {
  gap: 100px;
}

.spec-wrapper .img-wrapper {
  max-width: 650px;
  width: 100%;
  position: relative;
  padding: 0 0 45% 0;
}

.spec-wrapper .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  filter: brightness(80%);
}

.spec-list {
  max-width: 580px;
  width: 100%;
  gap: 15px;
}

.spec-list h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: var(--line-height-150);
}

.spec-list .item {
  gap: 5px;
}

.spec-list .item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.spec-list .item p {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-150);
}

.floor-paln {
  margin-top: 100px;
  margin-bottom: 100px;
}

.floor-paln h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 20px;
}

.floor-paln .img-wrapper img {
  max-width: 950px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-wrapper {
  margin-top: 50px;
  margin-bottom: 75px;
}

.features-wrapper ul {
  max-width: 1000px;
  width: 100%;
  gap: 20px;
}

.features-wrapper ul li {
  font-size: 17px;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.features-wrapper ul li i {
  margin-right: 15px;
  color: var(--primary-blue);
  font-size: 35px;
}

.features-wrapper h3 {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.related-prod.pg {
  background-color: var(--color-bg-secondary);
}

.rel-hd-wr {
  margin-bottom: 30px;
  gap: 10px;
}

.rel-hd-wr h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.rel-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
}

.related-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.related-slide::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: var(--primary-blue);
  transition: all 0.3s ease-in-out;
}

.related-slide:hover::after {
  bottom: 0px;
}

.related-slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 70% 0;
}

.related-slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(60%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.related-slide .slide-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 1;
  gap: 5px;
}

.related-slide .slide-text h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
}

.related-slide .slide-text h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
  letter-spacing: 1.4px;
}

.related-slide:hover .img-wrapper img {
  filter: brightness(40%);
}

/***** End PRODUCT PAGE *****/

/***** About page *****/

.we-are {
  margin: 90px 0;
  padding: 0px 15px;
}

.we-are-row {
  align-items: start;
  gap: 48px;
}

/* IMAGE */
.we-are-row .img-wrapper {
  min-height: 500px;
  width: 50%;
  position: relative;
  padding: 0 0 38% 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.12);
}

.we-are-row .img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(16, 73, 138, 0.12),
      rgba(0, 0, 0, 0.08));
}

.we-are-row .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
  transition: transform 0.5s ease;
}

.we-are-row .img-wrapper:hover img {
  transform: scale(1.04);
}

/* TEXT */
.we-are-row .text-wrapper {
  width: 45%;
}

.we-are-row .text-wrapper h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: 1.15;
  margin-bottom: 22px;
}

.we-are-row .text-wrapper p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 620px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .we-are {
    margin: 70px 0;
  }

  .we-are-row {
    flex-direction: column !important;
    gap: 30px;
  }

  .we-are-row .img-wrapper,
  .we-are-row .text-wrapper {
    width: 100%;
  }

  .we-are-row .img-wrapper {
    padding: 0 0 60% 0;
  }

  .we-are-row .text-wrapper {
    text-align: center;
  }

  .we-are-row .text-wrapper .view-more {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .we-are-row .text-wrapper h2 {
    font-size: 32px;
  }

  .we-are-row .text-wrapper p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/***** End About page *****/

/***** Contact Page *****/

.contact-pg-wrapper {
  gap: 100px;
}

.contact-pg .text-wrapper {
  gap: 20px;
}

.contact-pg .text-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.contact-pg .text-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
}

.contact-pg .text-wrapper p span {
  color: var(--text-color);
  font-weight: 600;
}

.contact-pg .text-wrapper .contacts {
  gap: 10px;
}

.contact-pg .text-wrapper .contacts li {
  margin-bottom: 10px;
}

.contact-pg .text-wrapper .contacts a {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-pg .text-wrapper .contacts li i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 18px;
  background-color: var(--primary-blue);
  color: var(--color-white);
  border-radius: var(--border-rounded);
}

.form-wrapper {
  width: 50%;
  gap: 20px;
}

.form-wrapper h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.form-wrapper form {
  max-width: 100%;
  gap: 30px;
}

iframe.map {
  margin-top: 75px;
}

/***** End Contact Page *****/

/***** CAtegory Prod Page *****/

.prod-cat {
  margin-bottom: 75px;
}

/***** End CAtegory Prod Page *****/

/***** Footer *****/

iframe {
  margin-top: 50px;
}

footer {
  width: 100%;
  background-color: var(--primary-blue);
  margin-top: auto;
}

.footer-nav {
  padding: 48px 0px;
}

.footer-nav-section {
  max-width: 307px;
  width: 100%;
  padding: 0px 15px;
}

.footer-nav-row .footer-info {
  gap: 22px;
}

.footer-nav-row .footer-info .footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}

.footer-nav-row .footer-info h2 {
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer-nav-row .footer-info .footer-socials {
  gap: 12px;
}

.footer-nav-row .footer-info .footer-socials img {
  width: 22px;
  height: auto;
}

.footer-nav-row .footer-info p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}

.footer-nav-row .footer-nav-section:nth-child(2) {
  padding-left: 48px;
}

.footer-nav-row .footer-nav-links h3 {
  font-size: 22px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-nav-row .footer-nav-links .footer-link {
  margin-bottom: 8px;
}

.footer-nav-row .footer-nav-links .footer-link a {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  transition: all 0.25s ease-in-out;
}

.footer-nav-row .footer-nav-section:last-child .footer-link a {
  font-size: 16px;
  line-height: 24px;
}

.footer-nav-row .footer-nav-links .footer-link a:hover {
  color: var(--link-color);
}

.bottom-footer {
  height: 72px;
  background-color: var(--primary-blue);
  width: 100%;
}

.bottom-footer h4 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

/***** End Footer *****/

/***** End Main  *****/

/***** BTN WOW *****/
a.btn-wow {
  max-width: 250px;
  width: 100%;
  height: 65px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  /* background-color: transparent; */
  border-radius: var(--border-radius-3);
  font-weight: 500;
  position: relative;
  /* overflow: hidden; */
  transition-delay: 0.3s;
  transition: all 0.3s ease-in;
}

a.btn-wow span.txt {
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

a.btn-wow i.arrow {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
  /* color: var(--primary-blue); */
}

a.btn-wow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8%;
  width: 65px;
  height: 100%;
  border-radius: 50px;
  /*1*/
  border: 2px solid var(--color-white);
  /*2*/
  box-shadow: 0 0 0 0 rgba(#5a99d4, 0.5);
  transition: all 0.3s ease-in-out;
}

a.btn-wow:hover::before {
  width: 108%;
  height: 100%;
  border-radius: 100px;
  border-color: var(--primary-blue);
  background-color: var(--primary-blue);
  animation: unset;
}

a.btn-wow:hover i.arrow {
  left: 73%;
  color: var(--primary-white);
}

a.btn-wow:hover span.txt {
  left: 40%;
  color: var(--primary-white);
}

a.btn-wow span {
  position: relative;
  z-index: 1;
}

/***** End BTN WOW *****/

/* MODAL WINDOW */

.my-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.my-modal._active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background-color: rgba(0, 26, 51, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.modal-overlay._active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay .close-modal-window {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.modal-body {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.2s;
  position: relative;
  bottom: -100%;
  opacity: 1;
  visibility: hidden;
  transform: scale(0.7);
}

.modal-overlay._active .modal-body {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  transform: scale(1);
}

.modal-overlay .close-modal-window:hover {
  transform: rotate(90deg);
  color: #ff8080;
}

/* MODAL WIDNOW */

/***** CONTACT MODAL WINDOW *****/

.contact-modal-body {
  max-width: 920px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--border-radius-24);
  overflow: hidden;
  margin: 10px;
  /* columns stretch to the same height — image always fills, no gaps
     (markup uses align-items-stretch; kept here as a safety net) */
  align-items: stretch;
}

.contact-modal-body .img-wrapper {
  max-width: 42%;
  width: 100%;
  position: relative;
  align-self: stretch;
  min-height: 100%;
  overflow: hidden;
}

.contact-modal-body .img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-modal-body .text-wrapper {
  padding: 40px 36px;
  gap: 10px;
}

.contact-modal-body .text-wrapper h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
}

.contact-modal-body .text-wrapper h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--text-color);
  margin-bottom: 15px;
}

.contact-form-popup {
  max-width: 100%;
  width: 100%;
  gap: 0;
}

/* RESTORED template field design for the popup (light-gray pills on white) —
   extended so select + textarea match the inputs exactly */
.contact-form-popup input.form-control,
.contact-form-popup select.form-select,
.contact-form-popup textarea.form-control,
.contact-form-popup input,
.contact-form-popup select,
.contact-form-popup textarea {
  width: 100%;
  height: auto;
  min-height: 0;
  background-color: var(--light-gray-1);
  border: 1px solid transparent;
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-blue);
  outline: none;
  box-shadow: none;
}

.contact-form-popup select {
  cursor: pointer;
  padding-right: 48px;
  background-position: right 20px center;
}

.contact-form-popup textarea {
  min-height: 96px;
  max-height: 160px;
  resize: vertical;
}

.contact-form-popup input:focus,
.contact-form-popup select:focus,
.contact-form-popup textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(16, 73, 138, 0.08);
}

.contact-form-popup .is-invalid,
.contact-form-popup .has-error input,
.contact-form-popup .has-error select,
.contact-form-popup .has-error textarea {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.08);
}

.contact-form-popup .get-quote {
  border: none;
  color: var(--color-white);
  font-size: 18px;
  line-height: var(--line-height-150);
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  background-color: var(--primary-blue);
}

.contact-form-popup .get-quote:hover {
  animation: none;
  background-color: #36966b;
}

/***** End CONTACT MODAL WINDOW *****/


/***** Single Service Page *****/

.banner {
  height: 500px;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(7, 28, 49, 0.84) 0%,
      rgba(9, 34, 57, 0.72) 30%,
      rgba(16, 73, 138, 0.38) 62%,
      rgba(110, 132, 158, 0.12) 100%);
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 100%);
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(68%);
}

.banner__text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 100;
}

.banner__text-wrapper h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.banner__text-wrapper a,
.banner__text-wrapper span {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 620px;
}

.single-service .text-wrapper h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: 1.15;
  margin-bottom: 22px;
}

.single-service .text-wrapper p {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 620px;
}

.contact-us form .inner-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-bottom: 20px;
}

.contact-us .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us .img-container {
  border-radius: var(--border-radius-12);
  overflow: hidden;
}

.contact-us {
  padding: 60px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius-24);
}

/* RESTORED template field design (soft rounded pills, no hard border) —
   extended so select + textarea match the inputs exactly */
.contact-us form .inner-input input,
.contact-us form .inner-input select,
.contact-us form .inner-input textarea {
  width: 100%;
  height: auto;
  min-height: 0;
  background-color: var(--color-white);
  border: 1px solid transparent;
  padding: 15px 20px;
  border-radius: var(--border-radius-24);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-blue);
  outline: none;
  box-shadow: none;
}

.contact-us form .inner-input select {
  cursor: pointer;
  padding-right: 48px;
  background-position: right 20px center;
}

.contact-us form .inner-input textarea {
  height: 200px;
  min-height: 100px;
  max-height: 200px;
  resize: vertical;
}

/* focus / error states on the borderless pills: soft rings */
.contact-us form .inner-input input:focus,
.contact-us form .inner-input select:focus,
.contact-us form .inner-input textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(16, 73, 138, 0.08);
}

.contact-us form .inner-input .is-invalid,
.contact-us form .inner-input .has-error input,
.contact-us form .inner-input .has-error select,
.contact-us form .inner-input .has-error textarea {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.08);
}

.contact-us form button {
  border: 3px solid var(--primary-blue);
  color: var(--color-white);
  font-size: 18px;
  line-height: var(--line-height-150);
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  background-color: var(--primary-blue);
  min-width: 200px;
}

.contact-us form button:hover {
  background-color: transparent;
  border-color: var(--light-gray-2);
  transition: all 0.3s ease-in-out;
  box-shadow: unset;
  color: var(--color-dark-blue);
  border: 3px solid var(--light-gray-2);
}

.single-service .video-about .text-wrapper h2 {
  color: var(--color-white);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  background-color: var(--color-white);
  border: none;
  padding: 17px 20px;
  border-radius: var(--border-radius-24);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;

  cursor: pointer;
  user-select: none;
}

.custom-select-menu {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 10px 0;
  background-color: var(--color-white);
  border: 1px solid rgba(16, 73, 138, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(11, 31, 51, 0.12);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 100;
  list-style: none;
  margin: 0;
}

.custom-select-menu.open {
  visibility: visible;
  opacity: 1;
}

.custom-select-menu li {
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.custom-select-menu li:hover {
  background-color: rgba(16, 73, 138, 0.06);
}

.sidebars {
  margin-top: 90px;
  padding-left: 10px;
  height: 100%;
}

.sidebar__other-services {
  padding: 20px;
  width: 100%;
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-24);
}

.sidebar__other-services h4 {
  margin-bottom: 15px;
  font-size: 21px;
  line-height: 25px;
  color: var(--text-color);
  margin-left: 8px;
  font-weight: 400;
}

.sidebar__other-services a {
  margin-bottom: 10px;
  width: 100%;
  max-width: unset;
}

.sidebar__other-services a:last-child {
  margin-bottom: unset;
}

.sidebar__contact {
  margin-top: 20px;
  top: 110px;
  overflow: hidden;
  border-radius: var(--border-radius-24);
  position: sticky;
}

.sidebar__contact img {
  width: 130%;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.sidebar__contact-info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.sidebar__contact-info h5 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 25px;
  color: var(--color-white);
  font-weight: 400;
}

.sidebar__contact-info a {
  color: var(--color-white);
}

.sidebar__contact-info i {
  padding: 15px;
  border: 1px solid var(--color-white);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-rounded);
  transition: all 0.3s;
}

.sidebar__contact-info:hover i {
  background: var(--color-dark-blue);
}

.sidebar__contact-phone {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sidebar__contact-phone span {
  font-size: 16px;
  line-height: 1.6rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.single-service .container {
  max-width: 1500px;
}

.single-service .video-about {
  margin-top: 150px;
}

/***** End Single Service Page *****/


/***** About us Page *****/

.about-us .images-wrapper {
  width: 50%;
}

.about-us .img-wrapper {
  width: 50%;
  height: 300px;
}

.about-us .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-8);
}

.our-approuch {
  margin: 75px 0;
}

.our-approuch__img-container {
  position: relative;
  padding: 0 0 185px 100px;
}

.our-approuch__img-1 img,
.our-approuch__img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.922;
  transform-origin: left;
  border-radius: var(--border-radius-32);
}

.our-approuch__img-1,
.our-approuch__img-2 {
  border-radius: var(--border-radius-32);
  max-width: 500px;
}

.our-approuch__img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 9px solid var(--color-background);
}

.our-approuch .text-wrapper {
  padding: 35px;
}

.our-approuch .text-wrapper p {
  margin-bottom: unset;
}

.our-approuch__card span {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-115);
}

.our-approuch__card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--light-gray-1);
  border-radius: var(--border-radius-32);
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
}

.our-approuch__card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  border-radius: var(--border-radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.our-approuch__card-icon i {
  color: var(--color-white);
  font-size: 30px;
}

/***** End About us Page *****/


/***** Service List Page *****/

.card-list-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  align-items: stretch;
  gap: 30px;
  margin-bottom: 8px;
  padding: 75px 0;
}

.card-item {
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius-12);
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 26, 51, .10);
}

.card-item .thumb {
  position: relative;
  padding: 0 0 62% 0;
  overflow: hidden;
}

.card-item .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.card-item:hover .thumb img {
  transform: scale(1.06);
}

.card-item .meta {
  padding: 18px 18px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-item .date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-color);
}

.card-item .date i {
  font-size: 12px;
  color: var(--text-color);
  opacity: .6;
}

.card-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: 1.4;
}

.card-item p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 300;
  flex-grow: 1;
}

.card-item .read-btn {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s ease;
}

.card-item:hover .read-btn {
  gap: 9px;
}

/* list pagination: see "Frontend Pagination" block at the end of this file */

/***** End Service List Page *****/
/***** Start Language Switcher *****/

/* slots: desktop instance in contacts row, mobile instance atop the menu */
.lang-slot--mobile {
  display: none;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

/* pill sized exactly like .contact-wrapper */
.language-switcher__current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 15.5px;
  line-height: var(--line-height-150);
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* transparent initial state — glass pill, white text */
header:not(._sticky) .language-switcher__current {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

header:not(._sticky) .language-switcher:hover .language-switcher__current {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

/* sticky state — white pill, dark text, blue accent */
header._sticky .language-switcher__current {
  background: #fff;
  border: 1px solid rgba(16, 73, 138, 0.1);
  color: var(--color-black);
}

header._sticky .language-switcher:hover .language-switcher__current {
  border-color: rgba(16, 73, 138, 0.3);
  color: var(--primary-blue);
}

.language-switcher:hover .language-switcher__current {
  transform: translateY(-1px);
}

.language-switcher__arrow {
  font-size: 11px;
  transition: transform 0.3s ease-in-out;
}

header._sticky .language-switcher__arrow {
  color: var(--primary-blue);
}

.language-switcher:hover .language-switcher__arrow,
.language-switcher._open .language-switcher__arrow {
  transform: rotate(180deg);
}

.language-switcher__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(16, 73, 138, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16, 73, 138, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
    visibility 0.3s;
  z-index: 300;
}

/* hover bridge so the dropdown doesn't close in the 12px gap */
.language-switcher__dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.language-switcher:hover .language-switcher__dropdown,
.language-switcher._open .language-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--color-black);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.25s ease-in-out;
}

.language-switcher__dropdown li a:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
  padding-left: 18px;
}

.language-switcher__dropdown li a.__active {
  background: var(--primary-blue);
  color: #ffffff;
  pointer-events: none;
}

.language-switcher__short {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.8px;
  color: var(--primary-blue);
}

.language-switcher__dropdown li a.__active .language-switcher__short {
  color: #ffffff;
}

.language-switcher__name {
  font-size: 14.5px;
  font-weight: 500;
  color: inherit;
}

@media (max-width: 1200px) {
  /* swap instances: hide desktop pill, show mobile item first in menu */
  .lang-slot--desktop {
    display: none;
  }

  .lang-slot--mobile {
    display: block;
    width: 100%;
  }

  .language-switcher {
    width: fit-content;
    flex-direction: column;
    align-items: stretch;
  }

  /* compact pill on the dark panel — one state, no hover/focus color shifts */
  header:not(._sticky) .language-switcher__current,
  header._sticky .language-switcher__current,
  header:not(._sticky) .language-switcher:hover .language-switcher__current,
  header._sticky .language-switcher:hover .language-switcher__current,
  header:not(._sticky) .language-switcher._open .language-switcher__current,
  header._sticky .language-switcher._open .language-switcher__current {
    width: fit-content;
    min-width: 96px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #ffffff;
    padding: 10px 18px;
    font-size: 15px;
    outline: none;
    transform: none;
  }

  header:not(._sticky) .language-switcher._open .language-switcher__current,
  header._sticky .language-switcher._open .language-switcher__current {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
  }

  header:not(._sticky) .language-switcher__arrow,
  header._sticky .language-switcher__arrow,
  header:not(._sticky) .language-switcher:hover .language-switcher__arrow,
  header._sticky .language-switcher:hover .language-switcher__arrow {
    color: #ffffff;
    font-size: 12px;
  }

  /* compact card dropdown under the button */
  .language-switcher__dropdown {
    position: static;
    display: none;
    width: fit-content;
    min-width: 150px;
    max-width: 220px;
    margin-top: 8px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .language-switcher__dropdown::before {
    display: none;
  }

  /* mobile opens ONLY via tap (_open), never hover */
  .language-switcher:hover .language-switcher__dropdown {
    display: none;
  }

  .language-switcher._open .language-switcher__dropdown {
    display: block;
  }

  /* kill every blue/visited/focus link state inside the switcher */
  .language-switcher__dropdown li a,
  .language-switcher__dropdown li a:hover,
  .language-switcher__dropdown li a:focus,
  .language-switcher__dropdown li a:active,
  .language-switcher__dropdown li a:visited {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    outline: none;
    background: transparent;
    padding: 11px 14px;
  }

  .language-switcher__dropdown li a:hover,
  .language-switcher__dropdown li a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .language-switcher__dropdown li a.__active,
  .language-switcher__dropdown li a.__active:hover,
  .language-switcher__dropdown li a.__active:focus,
  .language-switcher__dropdown li a.__active:visited {
    background: var(--primary-blue);
    color: #ffffff;
  }

  .language-switcher__short,
  .language-switcher:hover .language-switcher__short {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
  }

  .language-switcher__name {
    font-size: 14.5px;
    font-weight: 500;
  }
}

/***** End Language Switcher *****/

/***** Start Frontend Forms (validation + AJAX states) *****/

/* field wrapper: stable spacing, errors never shift the layout */
.frontend-form .form-group {
  position: relative;
  margin-bottom: 18px;
  width: 100%;
}

.frontend-form .inner-input .form-group {
  margin-bottom: 0;
}

.frontend-form .inner-input {
  margin-bottom: 18px;
}

/* inputs: modern, consistent, serious */
.frontend-form .form-control,
.frontend-form select.form-select {
  display: block;
  width: 100%;
  height: 54px;
  border: 1px solid var(--light-gray-2);
  border-radius: 12px;
  background: var(--color-white);
  padding: 0 18px;
  font-size: 15px;
  line-height: 52px;
  color: var(--color-black);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  box-shadow: none;
  appearance: none;
}

.frontend-form select.form-control,
.frontend-form select {
  height: 54px;
  line-height: normal;
  cursor: pointer;
}

.frontend-form textarea.form-control {
  height: auto;
  min-height: 132px;
  line-height: 1.5;
  padding: 15px 18px;
  resize: vertical;
}

.frontend-form .form-control::placeholder {
  color: var(--text-color);
  opacity: 0.75;
}

.frontend-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(16, 73, 138, 0.1);
}

/* kill Bootstrap's validation icons and colors entirely */
.frontend-form .form-control.is-invalid,
.frontend-form .form-control.is-valid,
.frontend-form .was-validated .form-control:invalid,
.frontend-form .was-validated .form-control:valid {
  background-image: none !important;
  padding-right: 18px !important;
}

/* error state: soft, elegant */
.frontend-form .has-error .form-control,
.frontend-form .form-control.is-invalid {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.07);
}

.frontend-form .has-error .form-control:focus,
.frontend-form .form-control.is-invalid:focus {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12);
}

/* success state: quiet — just return to neutral (no green circus) */
.frontend-form .has-success .form-control,
.frontend-form .form-control.is-valid {
  border-color: var(--light-gray-2);
  box-shadow: none;
}

.frontend-form .has-success .form-control:focus,
.frontend-form .form-control.is-valid:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(16, 73, 138, 0.1);
}

/* error text: small, clean, directly under the field */
.frontend-form .help-block,
.frontend-form .invalid-feedback {
  display: block;
  min-height: 0;
  margin: 6px 2px 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  color: #c73e3e;
  text-align: left;
}

.frontend-form .help-block:empty {
  display: none;
}

/* AJAX success / error banner */
.frontend-form .form-ajax-message {
  display: none;
  width: 100%;
  margin: 0 0 16px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.frontend-form .form-ajax-message._success {
  display: block;
  background: #eef7f1;
  border: 1px solid #cbe5d5;
  color: #256b47;
}

.frontend-form .form-ajax-message._error {
  display: block;
  background: #fbeeee;
  border: 1px solid #efd0d0;
  color: #a63838;
}

/* submit button: sending state keeps width, spinner overlays the label */
.frontend-form button[type="submit"] {
  transition: opacity 0.25s ease;
}

.frontend-form button.is-sending {
  position: relative;
  color: transparent !important;
  pointer-events: none;
  opacity: 0.85;
}

.frontend-form button.is-sending::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid #ffffff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: form-spin 0.7s linear infinite;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

/* popup callback form: spacing only — field look is the restored pill
   design in the CONTACT MODAL WINDOW section */
.contact-form-popup .form-group {
  width: 100%;
  margin-bottom: 12px;
}

.contact-form-popup .help-block {
  text-align: left;
}

.contact-form-popup .form-ajax-message {
  text-align: center;
}

/* mobile */
@media (max-width: 767.98px) {
  .frontend-form .form-control {
    height: 50px;
    line-height: 48px;
    padding: 0 15px;
  }

  .frontend-form textarea.form-control {
    padding: 13px 15px;
  }

  .frontend-form .inner-input {
    margin-bottom: 14px;
  }

  .frontend-form button[type="submit"] {
    width: 100%;
  }
}

/***** End Frontend Forms *****/

/***** Start Page Breadcrumbs *****/

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.page-breadcrumbs a,
.page-breadcrumbs .current,
.page-breadcrumbs .separator {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-breadcrumbs a {
  text-decoration: none;
  padding: 3px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.page-breadcrumbs a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.page-breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.45);
  font-size: 17px;
  line-height: 1;
  user-select: none;
}

.page-breadcrumbs .current {
  color: #ffffff;
  font-weight: 500;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767.98px) {
  .page-breadcrumbs {
    gap: 7px;
    font-size: 14px;
    padding: 0 14px;
  }

  .page-breadcrumbs a,
  .page-breadcrumbs .current,
  .page-breadcrumbs .separator {
    font-size: 14px;
  }

  .page-breadcrumbs .current {
    max-width: 200px;
  }
}

/***** End Page Breadcrumbs *****/

/***** Start Header Search *****/

/* Header pill button — mirrors .contact-wrapper's two header states */
.header-search-btn {
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.header-search-btn i {
  font-size: 15.5px;
  line-height: var(--line-height-150);
  transition: all 0.3s ease-in-out;
}

header:not(._sticky) .header-search-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

header:not(._sticky) .header-search-btn i {
  color: #ffffff;
}

header:not(._sticky) .header-search-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

header._sticky .header-search-btn {
  border: 1px solid rgba(16, 73, 138, 0.1);
  background: #fff;
}

header._sticky .header-search-btn i {
  color: var(--primary-blue);
}

header._sticky .header-search-btn:hover {
  border-color: rgba(16, 73, 138, 0.22);
  box-shadow: 0 8px 20px rgba(16, 73, 138, 0.08);
}

.header-search-btn:hover {
  transform: translateY(-1px);
}

/* Search modal overlay: above header (1050) and page modals (2000) —
   it can only be opened from the header, never on top of the gallery */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2050;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 16px 24px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.search-modal._active {
  visibility: visible;
  opacity: 1;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 26, 51, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-modal__content {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--border-radius-24);
  padding: 32px;
  transform: translateY(-24px) scale(0.98);
  opacity: 0;
  transition: all 0.35s ease-in-out;
  transition-delay: 0.08s;
  box-shadow: 0 24px 64px rgba(0, 26, 51, 0.35);
}

.search-modal._active .search-modal__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--color-black);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.search-modal__close:hover {
  background: var(--primary-blue);
  color: var(--color-white);
  transform: rotate(90deg);
}

.search-modal__header h3 {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.search-modal__header p {
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 20px;
}

.search-modal__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search-modal__input-wrapper > .bi-search {
  position: absolute;
  left: 18px;
  font-size: 17px;
  color: var(--primary-blue);
  pointer-events: none;
}

.search-modal__input {
  width: 100%;
  padding: 15px 52px 15px 48px;
  font-size: 17px;
  color: var(--color-black);
  background: var(--light-blue);
  border: 2px solid transparent;
  border-radius: 999px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.search-modal__input:focus {
  border-color: var(--primary-blue);
  background: var(--color-white);
}

.search-modal__input::placeholder {
  color: var(--text-color);
}

.search-modal__spinner {
  position: absolute;
  right: 18px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(16, 73, 138, 0.15);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.search-modal._loading .search-modal__spinner {
  opacity: 1;
  animation: search-spin 0.7s linear infinite;
}

@keyframes search-spin {
  to {
    transform: rotate(360deg);
  }
}

.search-modal__results {
  margin-top: 20px;
  overflow-y: auto;
  min-height: 60px;
}

.search-modal__message {
  color: var(--text-color);
  font-size: 15px;
  text-align: center;
  padding: 18px 0;
}

.search-modal__message--error {
  color: #b0413e;
}

.search-modal__group {
  margin-bottom: 14px;
}

.search-modal__group-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  padding: 6px 8px;
  border-bottom: 1px solid var(--light-gray-2);
  margin-bottom: 6px;
}

/* Result rows: all link states pinned — no default browser blue/visited */
.search-result,
.search-result:visited,
.search-result:focus,
.search-result:active {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  border-radius: var(--border-radius-12);
  color: var(--color-black);
  text-decoration: none;
  transition: background 0.25s ease-in-out;
}

.search-result:hover {
  background: var(--light-blue);
  color: var(--color-black);
}

.search-result__thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-8);
  overflow: hidden;
  background: var(--light-gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result__thumb--icon i {
  font-size: 18px;
  color: var(--primary-blue);
}

.search-result__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.search-result__title {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result__desc {
  font-size: 13.5px;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result__badge {
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  background: rgba(16, 73, 138, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Mobile: button lives inside the DARK burger panel (≤1200px, same
   breakpoint as the menu) — white/glass style, big touch target */
@media (max-width: 1200px) {
  .header-search-btn,
  header._sticky .header-search-btn,
  header:not(._sticky) .header-search-btn {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .header-search-btn i,
  header._sticky .header-search-btn i,
  header:not(._sticky) .header-search-btn i {
    color: #ffffff;
  }

  .search-modal {
    padding: 16px;
    align-items: stretch;
  }

  .search-modal__content {
    max-width: 100%;
    max-height: 100%;
    padding: 24px 18px;
    border-radius: var(--border-radius-12);
  }

  .search-modal__header h3 {
    font-size: 20px;
  }

  .search-result__badge {
    display: none;
  }
}

/***** End Header Search *****/

/* button element resets for the search UI (native border/font) */
.header-search-btn,
.search-modal__close {
  border: none;
  background-color: transparent;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.search-modal__close {
  background-color: var(--light-blue);
}



/***** Start Frontend Pagination *****/
/* Shared list pagination (Blog/Services/Portfolio/Products) —
   rendered by views/partials/_pagination.php */

.frontend-pagination-wrap {
  width: 100%;
  margin: 48px 0 8px;
  text-align: center;
}

.frontend-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.frontend-pagination__link {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--light-gray-2);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 26, 51, 0.05);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    background 0.25s ease, box-shadow 0.25s ease;
}

.frontend-pagination__link i {
  font-size: 14px;
  line-height: 1;
}

a.frontend-pagination__link:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: 0 12px 28px rgba(16, 73, 138, 0.14);
}

.frontend-pagination__item.is-active .frontend-pagination__link {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(16, 73, 138, 0.28);
  cursor: default;
}

.frontend-pagination__item.is-disabled .frontend-pagination__link {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

.frontend-pagination__link.--gap {
  border: none;
  background: transparent;
  box-shadow: none;
  min-width: 28px;
  padding: 0 4px;
  color: var(--text-color);
  cursor: default;
}

/* never let default link colors leak in */
.frontend-pagination a,
.frontend-pagination a:visited,
.frontend-pagination a:focus {
  outline: none;
}

a.frontend-pagination__link:focus-visible {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(16, 73, 138, 0.25);
}

@media (max-width: 575px) {
  .frontend-pagination-wrap {
    margin-top: 34px;
  }

  .frontend-pagination {
    gap: 6px;
  }

  .frontend-pagination__link {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .frontend-pagination__item.--prev .frontend-pagination__link,
  .frontend-pagination__item.--next .frontend-pagination__link {
    padding: 0 14px;
  }
}
/***** End Frontend Pagination *****/

/***** Start Frontend Forms polish (select parity + modal balance) *****/

/* selects join the same focus/error/success states as inputs */
.frontend-form select.form-select:focus,
.frontend-form .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(16, 73, 138, 0.1);
}

.frontend-form .has-error select.form-select,
.frontend-form select.form-select.is-invalid {
  border-color: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.07);
}

.frontend-form .has-success select.form-select,
.frontend-form select.form-select.is-valid {
  border-color: var(--light-gray-2);
  box-shadow: none;
  background-image: none;
}

/* custom chevron: appearance:none removed the native arrow */
.frontend-form select.form-select,
.frontend-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23657078' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  /* placeholder-like grey until a real option is chosen is handled by JS-free
     CSS below via :invalid when using required, otherwise keep normal color */
}

/* the modal form: left-aligned fields (select/textarea read badly centered),
   headings stay centered via the surrounding .text-wrapper */
.contact-form-popup .form-control,
.contact-form-popup select.form-select {
  text-align: left;
}

.contact-form-popup textarea.form-control {
  min-height: 96px;
}

.contact-form-popup .help-block {
  text-align: left;
}

/* modal content column: form gets breathing room, no fixed height jumps */
.contact-modal-body .text-wrapper .h2,
.contact-modal-body .text-wrapper h2 {
  font-size: 26px;
  line-height: 1.35;
}

.contact-modal-body .text-wrapper h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media (max-width: 991.98px) {
  .contact-modal-body .text-wrapper {
    padding: 30px 24px;
  }
}
/***** End Frontend Forms polish *****/

/***** Start About Founder *****/
.about-founder-section {
  padding: 100px 0;
  background: #fff;
}

.about-founder {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-founder__media {
  position: relative;
  min-height: 520px;
}

.about-founder__image {
  overflow: hidden;
  border-radius: var(--border-radius-24);
  box-shadow: 0 24px 70px rgba(16, 73, 138, 0.16);
}

.about-founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-founder__image--main {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 430px;
}

.about-founder__image--secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 300px;
  border: 10px solid #fff;
}

.about-founder__kicker {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-founder__content h2 {
  margin-bottom: 22px;
  color: var(--color-black);
}

.about-founder__content p {
  color: var(--color-black);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-founder__lead {
  font-size: 20px;
  line-height: 1.65;
}

.about-founder__quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--primary-blue);
  background: var(--light-blue);
  border-radius: var(--border-radius-12);
}

.about-founder__quote p {
  margin-bottom: 0;
  font-style: italic;
}

.about-founder__signature strong {
  display: block;
  font-size: 18px;
  color: var(--color-black);
}

.about-founder__signature span {
  color: #64748b;
}

@media (max-width: 991px) {
  .about-founder {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-founder__media {
    min-height: 420px;
  }

  .about-founder-section {
    padding: 72px 0;
  }
}

@media (max-width: 575px) {
  .about-founder-section {
    padding: 56px 0;
  }

  .about-founder__media {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .about-founder__image--main,
  .about-founder__image--secondary {
    position: static;
    width: 100%;
    height: 280px;
    border: 0;
  }
}
/***** End About Founder *****/

/***** Start Legal Pages (Privacy Policy / Terms of Use) *****/
.legal-page {
  padding: 90px 0;
  background: #fff;
}

.legal-page__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 60px;
  justify-content: center;
  align-items: start;
}

.legal-page__toc {
  position: sticky;
  top: 110px;
  background: var(--light-blue);
  border-radius: var(--border-radius-24);
  padding: 28px 26px;
}

.legal-page__toc h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.legal-page__toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-page__toc a {
  display: block;
  padding: 7px 10px;
  border-radius: var(--border-radius-8);
  color: var(--color-black);
  font-size: 14.5px;
  line-height: 1.45;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.legal-page__toc a:hover {
  background: rgba(16, 73, 138, 0.08);
  color: var(--primary-blue);
}

.legal-page__content .legal-updated {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  background: rgba(16, 73, 138, 0.07);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 20px;
}

.legal-page__content .legal-intro {
  font-size: 19px;
  line-height: 1.65;
  color: var(--color-black);
  margin-bottom: 38px;
}

.legal-section {
  margin-bottom: 36px;
  scroll-margin-top: 110px;
}

.legal-section h2 {
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 73, 138, 0.12);
}

.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: #3b4350;
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #3b4350;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .legal-page {
    padding: 64px 0;
  }

  .legal-page__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-page__toc {
    position: static;
    padding: 22px 20px;
  }
}

@media (max-width: 575px) {
  .legal-page {
    padding: 48px 0;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .legal-page__content .legal-intro {
    font-size: 17px;
  }
}
/***** End Legal Pages *****/

/***** Start Error Page (404) *****/
.error-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 82% 18%, rgba(16, 73, 138, 0.45) 0%, rgba(16, 73, 138, 0) 60%),
    linear-gradient(135deg, #071c31 0%, #0a2540 55%, #10498a 130%);
}

.error-hero::after {
  content: "404";
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-size: clamp(220px, 34vw, 560px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

.error-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.error-hero__kicker {
  display: inline-block;
  font-size: clamp(84px, 13vw, 170px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}

.error-hero h1 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.error-hero .error-hero__text {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.error-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.error-hero__actions a.view-more {
  max-width: 220px;
  margin-bottom: 0;
  color: #fff;
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.error-hero__actions a.view-more:hover {
  background: #fff;
  color: var(--primary-blue);
  border-color: #fff;
}

.error-hero__actions a.view-more--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.error-hero__actions a.view-more--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

@media (max-width: 575px) {
  .error-hero {
    padding: 120px 0 72px;
  }

  .error-hero__actions {
    flex-direction: column;
  }

  .error-hero__actions a.view-more {
    max-width: 320px;
    width: 100%;
  }
}
/***** End Error Page (404) *****/

/***** Start Partner Certificate Gallery *****/
.partner-card {
  gap: 14px;
}

.partner-card__certificate-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.25s ease;
}

.partner-card__certificate-btn i {
  font-size: 15px;
}

.partner-card__certificate-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-1px);
}

body.certificate-gallery-open {
  overflow: hidden;
}

.certificate-gallery {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.certificate-gallery.is-open {
  display: flex;
}

.certificate-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 49, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.certificate-gallery.is-shown .certificate-gallery__backdrop {
  opacity: 1;
}

.certificate-gallery__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 96vw);
  max-height: 92vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-radius: var(--border-radius-24);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.certificate-gallery.is-shown .certificate-gallery__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.certificate-gallery__stage {
  min-height: 0;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7, 28, 49, 0.05), rgba(16, 73, 138, 0.07));
}

.certificate-gallery__image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 132px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius-12);
  background: #fff;
  box-shadow: 0 16px 50px rgba(7, 28, 49, 0.18);
  transition: opacity 0.18s ease;
}

.certificate-gallery__image.is-loading {
  opacity: 0.35;
}

.certificate-gallery__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 22px;
  border-top: 1px solid rgba(16, 73, 138, 0.1);
  background: #fff;
}

.certificate-gallery__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
}

.certificate-gallery__counter {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.certificate-gallery__close,
.certificate-gallery__nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-black);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.certificate-gallery__close {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  font-size: 17px;
}

.certificate-gallery__nav {
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 22px;
}

.certificate-gallery__nav--prev {
  left: 16px;
}

.certificate-gallery__nav--next {
  right: 16px;
}

.certificate-gallery__close:hover,
.certificate-gallery__nav:hover {
  background: var(--primary-blue);
  color: #fff;
}

.certificate-gallery__nav.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .certificate-gallery {
    padding: 14px;
  }

  .certificate-gallery__dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 18px;
  }

  .certificate-gallery__stage {
    padding: 14px;
  }

  .certificate-gallery__image {
    max-height: calc(94vh - 128px);
    border-radius: 10px;
  }

  .certificate-gallery__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
  }

  .certificate-gallery__nav {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .certificate-gallery__nav--prev {
    left: 8px;
  }

  .certificate-gallery__nav--next {
    right: 8px;
  }

  .certificate-gallery__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .partner-card__certificate-btn {
    padding: 8px 15px;
    font-size: 12.5px;
  }
}
/***** End Partner Certificate Gallery *****/
/* Private draft preview notice. */
.admin-preview-banner {
  position: relative;
  z-index: 1050;
  padding: 12px 18px;
  background: rgba(245, 158, 11, 0.14);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  color: #78350f;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.admin-preview-banner strong {
  margin-right: 6px;
  font-weight: 700;
}

.main-gallery-preview {
  padding: 72px 0;
  background: var(--color-bg-secondary);
}

.main-gallery-preview h1 {
  margin-bottom: 28px;
  color: var(--color-dark-blue);
}

.main-gallery-preview figure {
  max-width: 960px;
  margin: 0 auto;
}

.main-gallery-preview img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: var(--color-white);
}

.main-gallery-preview figcaption {
  padding: 12px 16px;
  color: var(--text-color);
  text-align: center;
}

/* Logged-in frontend administration bar. Never affects guest layout. */
:root { --frontend-adminbar-height: 34px; }
body.has-frontend-adminbar { padding-top: var(--frontend-adminbar-height); }
body.has-frontend-adminbar > .site-wrapper > header.header {
  top: var(--frontend-adminbar-height);
}
.frontend-admin-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 99999;
  display: none;
  height: var(--frontend-adminbar-height);
  color: #fff;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  font-family: "DM Sans", sans-serif;
  line-height: 1;
}
.frontend-admin-bar.is-visible { display: block; }
.frontend-admin-bar__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 8px;
}
.frontend-admin-bar a { text-decoration: none; }
.frontend-admin-bar__link,
.frontend-admin-bar__user,
.frontend-admin-bar__logout {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  height: var(--frontend-adminbar-height);
  padding: 0 10px;
  border: 0;
  color: rgba(255,255,255,.86);
  background: transparent;
  font-size: 12px;
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}
.frontend-admin-bar__brand { color: #fff !important; }
.frontend-admin-bar__brand strong { font-size: 12px; font-weight: 700; }
.frontend-admin-bar__actions {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.frontend-admin-bar__link:hover,
.frontend-admin-bar__link:focus-visible { color: #fff; background: rgba(255,255,255,.1); }
.frontend-admin-bar__context { color: #a9d8ff; }
.frontend-admin-bar__account { display: flex; align-items: stretch; flex: 0 0 auto; margin-left: auto; }
.frontend-admin-bar__languages { display: flex; align-items: center; gap: 2px; padding: 0 5px; }
.frontend-admin-bar__languages a {
  display: grid;
  min-width: 27px;
  height: 24px;
  padding: 0 5px;
  place-items: center;
  border-radius: 5px;
  color: #9aa9bd;
  font-size: 10px;
  font-weight: 700;
}
.frontend-admin-bar__languages a.active,
.frontend-admin-bar__languages a:hover { color: #fff; background: rgba(255,255,255,.12); }
.frontend-admin-bar__user { color: #b9c5d5; }
.frontend-admin-bar__logout-form { display: flex; margin: 0; }
.frontend-admin-bar__logout { cursor: pointer; }
.frontend-admin-bar__logout:hover,
.frontend-admin-bar__logout:focus-visible { color: #fff; background: #8f3040; }
.frontend-admin-bar .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  font-family: "bootstrap-icons" !important;
  font-size: 14px;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width: 1100px) {
  .frontend-admin-bar__user,
  .frontend-admin-bar__secondary { display: none; }
}
@media (max-width: 1200px) {
  body.has-frontend-adminbar .navigation-bar {
    /* The panel is fixed INSIDE header.header, and the header's mobile
       backdrop-filter makes it the containing block — so `top` is
       already relative to the admin-bar-shifted header. Only the
       viewport-based height needs the admin-bar correction. */
    top: calc(var(--mobile-header-height, 80px) - 1px);
    height: calc(100dvh - var(--mobile-header-height, 80px) + 1px - var(--frontend-adminbar-height));
  }
}
@media (max-width: 767px) {
  .frontend-admin-bar { overflow: hidden; }
  .frontend-admin-bar__inner { overflow-x: auto; overflow-y: hidden; padding: 0 4px; scrollbar-width: none; }
  .frontend-admin-bar__inner::-webkit-scrollbar { display: none; }
  .frontend-admin-bar__link,
  .frontend-admin-bar__logout { padding: 0 9px; }
  .frontend-admin-bar__languages { display: none; }
  .frontend-admin-bar__account { margin-left: 0; }
}
@media (max-width: 520px) {
  .frontend-admin-bar__brand strong,
  .frontend-admin-bar__actions .frontend-admin-bar__link:not(.frontend-admin-bar__context) span,
  .frontend-admin-bar__logout span { display: none; }
  .frontend-admin-bar__link,
  .frontend-admin-bar__logout { min-width: 34px; justify-content: center; }
}
