@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap";
:root {
  --accent-color: #b8861a;
  --accent-color-dark: #9a6e10;
  --primary-color: #13233a;
  --heading-color: #0f1f33;
  --text-color: #4c5f74;
  --body-gradient: linear-gradient(165deg, #f8fafc 0%, #edf2f7 65%, #f6f9fc 100%);
  --surface-color: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(19, 35, 58, 0.1);
  --shadow-soft: 0 18px 40px rgba(15, 31, 51, 0.08);
  --shadow-medium: 0 24px 48px rgba(15, 31, 51, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
}
* {
  padding: 0;
  margin: 0;
}
body {
  background: var(--body-gradient);
  background-attachment: fixed;
  position: relative;
  font-family: 'Inter', manrope, sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-color);
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(184, 134, 26, 0.12), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(19, 35, 58, 0.09), transparent 46%);
  pointer-events: none;
  z-index: 0;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--accent-color);
}
::selection,
::-moz-selection {
  background-color: var(--accent-color);
  color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', poppins, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--heading-color);
  letter-spacing: -0.4px;
}
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5 {
  color: #fff;
}
.bg-dark p,
.bg-dark span {
  color: #999;
}
h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--primary-color);
  letter-spacing: -1.5px;
}
h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.5rem);
  line-height: 1.18;
  color: var(--primary-color);
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -1px;
}
h3,
h4 {
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--primary-color);
  letter-spacing: -0.4px;
}
h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
h4 {
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}
h5,
h6 {
  font-size: 14px;
  margin: 0 0 10px;
}
img {
  border: none;
  outline: none;
  max-width: 100%;
}
ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  font-size: 15.5px;
  line-height: 1.82;
  margin-bottom: 18px;
  color: var(--text-color);
  font-family: 'Inter', manrope, sans-serif;
}
a,
a:hover {
  text-decoration: none;
}
a {
  color: var(--primary-color);
}
a:hover {
  color: var(--accent-color);
}
a:focus {
  outline: 0;
  text-decoration: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ddd !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ddd !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}
button {
  border: none;
  background: 0 0;
}
.padding {
  padding: clamp(64px, 8vw, 110px) 0;
}
.no-padding {
  padding: 0;
}
.padding-15 {
  padding: 15px;
}
.padding-20 {
  padding: 20px;
}
.box-padding {
  padding: 0 50px;
}
.bg-white {
  background-color: var(--surface-color);
}
.bg-grey {
  background: linear-gradient(180deg, #f3f7fb 0%, #f8fbff 100%);
  position: relative;
}
.bg-dark {
  background-color: #101c2f !important;
}
.bd-top {
  border-top: 1px solid #e5e5e5;
}
.bd-bottom {
  border-bottom: 1px solid #e5e5e5;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-25 {
  margin-left: 25px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-35 {
  margin-left: 35px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.fz-28 {
  font-size: 28px;
}
.fz-24 {
  font-size: 24px;
}
.fz-22 {
  font-size: 22px;
}
.fz-20 {
  font-size: 20px;
}
.fz-18 {
  font-size: 18px;
}
.fz-16 {
  font-size: 16px;
}
.text-black {
  color: #333;
}
.text-white {
  color: #fff;
}
.box-shadow,
.box-shadow-hover:hover {
  -webkit-box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.1);
  -moz-box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.1);
  box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.1);
}
.loaded .site-preloader-wrap {
  opacity: 0;
  visibility: hidden;
}
.site-preloader-wrap {
  position: fixed;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: var(--body-gradient);
  top: 0;
  left: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.site-preloader-wrap .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.spinner-inner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.spinner-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: #b8861a;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
.spinner-circle:nth-child(2) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-top-color: #263a4f;
  animation: spin 2s linear infinite reverse;
}
.spinner-circle:nth-child(3) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-top-color: #b8861a;
  animation: spin 1s linear infinite;
}
.spinner-text {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #263a4f;
  letter-spacing: 3px;
  animation: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}
.btn_group a {
  margin: 5px;
}
.btn_group_left a {
  margin-right: 15px;
  margin-bottom: 15px;
}
.default-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  text-transform: uppercase;
  font-family:
    manrope,
    sans-serif;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
  line-height: 52px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 1.4px;
  padding: 0 34px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
  z-index: 1;
}
.default-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #13233a 0%, #1f3b5f 100%);
  transition: left 0.3s ease;
  z-index: -1;
}
.default-btn:hover {
  transform: translateY(-3px);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}
.default-btn:hover:before {
  left: 0;
}
.default-btn:active {
  transform: translateY(0);
  -webkit-box-shadow: 0 5px 15px rgba(184, 134, 26, 0.3);
  box-shadow: 0 5px 15px rgba(184, 134, 26, 0.3);
}
.section-heading {
  position: relative;
  padding: 14px 0 24px;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  display: block;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
}
.section-heading span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 2.6px;
  font-family:
    manrope,
    sans-serif;
  position: relative;
  margin-bottom: 18px;
  z-index: 1;
  padding: 0 18px;
}
.section-heading span:before {
  background: linear-gradient(90deg, rgba(184, 134, 26, 0.14), rgba(184, 134, 26, 0.6));
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -8px;
  z-index: -1;
  opacity: 0.4;
}
.section-heading span:after {
  background-color: var(--accent-color);
  position: absolute;
  content: "";
  width: 32px;
  height: 2px;
  left: calc(50% - 16px);
  bottom: -8px;
  z-index: 1;
}
a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(170%) blur(12px);
  border-bottom: 1px solid rgba(19, 35, 58, 0.08);
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1000;
}
.viewport-sm .primary-header {
  padding: 10px 0;
}
.header-menu-wrap {
  margin-left: auto;
}
.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  z-index: 1001;
}
.sticky-header .primary-header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(15, 31, 51, 0.12);
}
.sticky-header.headroom--top {
  transform: translateY(-100%);
}
.headroom {
  transition: none;
  will-change: transform;
}
.headroom--unpinned {
  transform: translateY(-100%);
}
.headroom--pinned {
  transform: translateY(0);
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-menu-icon {
  display: none;
}
.burger-menu {
  width: 20px;
  height: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: transform 330ms ease-out;
  -moz-transition: transform 330ms ease-out;
  -o-transition: transform 330ms ease-out;
  transition: transform 330ms ease-out;
}
.burger-menu.menu-open {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.line-menu {
  background-color: var(--primary-color);
  border-radius: 4px;
  width: 100%;
  height: 3px;
}
.line-menu.line-half {
  width: 50%;
}
.line-menu.first-line {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}
.menu-open .line-menu.first-line {
  -webkit-transform: rotate(-90deg) translateX(3px);
  -moz-transform: rotate(-90deg) translateX(3px);
  -o-transform: rotate(-90deg) translateX(3px);
  transform: rotate(-90deg) translateX(3px);
}
.line-menu.last-line {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}
.menu-open .line-menu.last-line {
  -webkit-transform: rotate(-90deg) translateX(-3px);
  -moz-transform: rotate(-90deg) translateX(-3px);
  -o-transform: rotate(-90deg) translateX(-3px);
  transform: rotate(-90deg) translateX(-3px);
}
.header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-menu-wrap ul li {
  display: inline-block;
  position: relative;
}
.header-menu-wrap ul li > a {
  display: block;
  font-family:
    manrope,
    sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
  padding: 0 18px;
  height: 80px;
  line-height: 80px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.header-menu-wrap ul li:hover > a {
  color: var(--accent-color);
}
.header-menu-wrap ul li > a:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-menu-wrap ul li:hover > a:after {
  transform: scaleX(1);
}
.header-menu-wrap li ul {
  background-color: #fff;
  display: block;
  width: 250px;
  padding: 30px 0;
  -webkit-box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px 1px 20px 0 rgba(0, 0, 0, 0.07);
  position: absolute;
  left: -35px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  -o-transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.header-menu-wrap li:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.header-menu-wrap li li {
  display: block;
  padding: 0 35px;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
}
.header-menu-wrap li li:last-child {
  margin: 0;
}
.header-menu-wrap li li > a {
  font-family:
    source sans pro,
    sans-serif;
  display: block;
  height: auto;
  line-height: inherit;
  color: #263a4f;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
  text-transform: capitalize;
  padding: 1px 8px;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
.header-menu-wrap li li:hover > a {
  color: #b8861a !important;
  background-color: #f9f9f9;
}
.header-menu-wrap li ul li ul {
  width: 250px;
  position: absolute;
  left: 100%;
  top: 0;
}
@media (min-width: 993px) {
  .header-menu-wrap li ul {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .sticky-header {
    display: none !important;
  }
  .headroom--top .header-menu-wrap,
  .headroom--unpinned .header-menu-wrap {
    display: none !important;
  }
  .dropdown-plus {
    width: 49px;
    height: 49px;
    line-height: 49px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .dropdown-plus:before,
  .dropdown-plus:after {
    position: absolute;
    content: "";
    top: 24px;
    right: 18px;
    width: 13px;
    height: 1px;
    background-color: #222;
  }
  .dropdown-plus:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .dropdown-plus.dropdown-open:after {
    display: none;
  }
  .mobile-menu-icon {
    display: block;
  }
  .header {
    background-color: #ffffff;
    backdrop-filter: none;
  }
  .header-menu-wrap {
    display: none;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 80px);
    padding: 12px 20px 18px;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1002;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(15, 31, 51, 0.18);
  }
  .header-menu-wrap ul li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .header-menu-wrap ul li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
  .header-menu-wrap ul li > a {
    padding: 10px 15px;
    height: inherit;
    line-height: inherit;
  }
  .header-menu-wrap ul li > a:after {
    display: none;
  }
  .header-menu-wrap ul li:hover > a:after {
    transform: scaleX(0);
  }
  .header-menu-wrap ul li ul li ul,
  .header-menu-wrap ul li ul {
    background-color: transparent;
    width: 100%;
    opacity: 1;
    padding: 0;
    visibility: visible;
    position: inherit;
    display: none;
    top: inherit;
    left: inherit;
    box-shadow: none;
  }
  .header-menu-wrap li li {
    padding-left: 11px;
  }
  .header-menu-wrap li li:last-child {
    border-bottom: none;
  }
  .header-menu-wrap li li > a {
    color: #263a4f;
    font-size: 13px;
  }
  .header-menu-wrap li li:hover > a {
    color: #666;
  }
}
@media (max-width: 580px) {
  .header-right a.menu-btn {
    line-height: 40px;
    font-size: 10px;
    padding: 0 25px;
  }
  .primary-header .header-logo {
    max-width: 150px;
  }
}
.primary-header-inner .header-right {
  display: flex;
  align-items: center;
  line-height: 80px;
  margin-left: 20px;
}
.header-right .mobile-menu-icon {
  margin-left: 20px;
}
.header-right a.menu-btn {
  background-color: #b8861a;
  line-height: 40px;
  color: #fff;
  border-radius: 25px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.header-right a.menu-btn:hover {
  background-color: #b8861a;
  opacity: 0.8;
  color: #fff;
}
.primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.primary-header .header-logo {
  max-width: 180px;
}
.primary-header .header-logo img {
  max-height: 58px;
}
.viewport-lg .primary-header .header-menu-wrap {
  display: block !important;
}
.about-section {
}
.about-wrap {
  display: flex;
  align-items: center;
}
.about-content {
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 30px;
}
.about-promo {
  padding-left: 80px;
}
.about-promo .about-promo-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  min-height: 120px;
  padding: 24px;
  border-radius: var(--radius-md);
  background-color: var(--surface-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}
.about-promo .about-promo-item:last-child {
  margin-bottom: 0;
}
.about-promo .about-promo-item i {
  font-size: 38px;
  color: var(--accent-color);
  margin-right: 18px;
  flex-shrink: 0;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 26, 0.1);
}
.about-promo .about-promo-item div {
  flex: 1;
  padding-top: 5px;
}
.about-promo .about-promo-item h3 {
  margin-top: 0;
}
.about-promo .about-promo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.service-section {
  position: relative;
  z-index: 1;
}
.service-section .dark-bg {
  position: absolute;
  background: linear-gradient(140deg, #10233b 0%, #1a3553 58%, #274567 100%);
  width: 100%;
  height: 420px;
  left: 0;
  top: 0;
  z-index: -2;
  padding-top: 80px;
  overflow: hidden;
}
.service-section .dark-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(184, 134, 26, 0.2), transparent 38%),
    radial-gradient(circle at 86% 85%, rgba(255, 255, 255, 0.13), transparent 42%);
}
.service-section:before {
  background: none;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.section-heading.dark-background {
  padding: 30px 0 40px;
}
.section-heading.dark-background h2 {
  color: #fff;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.section-heading.dark-background span {
  color: #ffd9bc;
  text-shadow: 0 2px 8px rgba(184, 134, 26, 0.3);
}
.section-heading.dark-background span:before {
  background: rgba(255, 255, 255, 0.3);
  opacity: 0.5;
}
.section-heading.dark-background span:after {
  background-color: #b8861a;
  box-shadow: 0 0 10px rgba(184, 134, 26, 0.5);
}
.service-item {
  background-color: var(--surface-color);
  padding: 42px 26px 30px;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 440px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.service-item .service-icon {
  color: var(--accent-color);
  font-size: 44px;
  margin-bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: rgba(184, 134, 26, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-item .overlay-icon {
  position: absolute;
  left: 50%;
  bottom: 50%;
  font-size: 120px;
  color: var(--accent-color);
  opacity: 0.07;
  transform: translate(-50%, 50%);
  z-index: -1;
}
.service-item h3 {
  font-size: 19px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.service-item p {
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-item .read-more {
  font-family:
    manrope,
    sans-serif;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  margin-top: auto;
  padding-top: 10px;
  letter-spacing: 1.1px;
}
.service-item .read-more:hover {
  opacity: 0.8;
}
.service-item:hover {
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
  border-color: rgba(184, 134, 26, 0.28);
  transition: all 0.3s ease-in-out;
}
.service-item:hover h3,
.service-item:hover .service-icon,
.service-item:hover .overlay-icon,
.service-item:hover p,
.service-item:hover .read-more {
  transition: all 0.2s ease-in-out;
}
.service-item:hover h3 {
  color: var(--primary-color);
}
.service-item:hover .service-icon,
.service-item:hover .overlay-icon {
  color: var(--accent-color);
}
.service-item:hover p {
  color: #8d9aa8;
}
.service-item:hover .read-more {
  color: var(--primary-color);
}
.service-carousel {
  position: relative;
}
.service-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}
.service-carousel .owl-item {
  display: flex;
  height: auto;
}
.service-carousel .owl-item .service-item {
  width: 100%;
}
.service-carousel .owl-nav {
}
.service-carousel .owl-nav div {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  left: -70px;
  top: calc(50% - 20px);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(9, 20, 34, 0.18);
}
.service-carousel .owl-nav div.owl-next {
  left: auto;
  right: -70px;
}
.service-section.section-2 {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
.service-section.section-2 .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.service-content {
}
.service-content span {
  font-family:
    work sans,
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.service-content h2 {
  margin-bottom: 20px;
}
.service-content p {
  margin-bottom: 30px;
}
.services-list .offset-top {
  transform: translateY(30px);
}
.services-list .service-item {
  text-align: left;
  min-height: 250px;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.services-list .service-item i {
  font-size: 42px;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}
.services-list .service-item:hover i {
  color: #b8861a;
}
.services-list .service-item h3 {
  margin: 0 0 5px;
}
.services-list .service-item p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.promo-section {
}
.promo-wrap {
}
.promo-item {
  padding: 30px 15px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.promo-item h3 {
  font-size: 18px;
  margin: 10px 0 5px 0;
}
.promo-item i {
  display: block;
  font-size: 50px;
  color: #b8861a;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.promo-item h3 {
  font-size: 18px;
  margin: 10px 0 5px 0;
}
.promo-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
.work-pro-section {
  background-image: url(../img/Home/slide-3.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.work-pro-section:before {
  background: rgba(26, 39, 53, 0.94);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.work-pro-item {
  min-height: 280px;
  padding: 35px 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.work-pro-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 134, 26, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.work-pro-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(184, 134, 26, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.work-pro-item:hover:before {
  opacity: 1;
}
.work-pro-item .number {
  font-size: 20px;
  color: #fff;
  font-family: poppins, sans-serif;
  font-weight: 700;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #b8861a;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transition: all 0.3s ease;
}
.work-pro-item:hover .number {
  transform: scale(1.1) rotate(360deg);
  box-shadow: none;
}
.work-pro-item .number-line {
  background: rgba(184, 134, 26, 0.3);
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 30px;
  left: 150px;
  z-index: -1;
  transition: all 0.3s ease;
}
.work-pro-item:hover .number-line {
  background: rgba(184, 134, 26, 0.6);
  height: 4px;
}
.work-pro-item h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.work-pro-item:hover h3 {
  color: #b8861a;
}
.work-pro-item p {
  color: #e0e0e0;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  transition: color 0.3s ease;
}
.work-pro-item:hover p {
  color: #e0e0e0;
}
.service-section.section-2 .services-list .service-item:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
  border-color: var(--border-soft);
}
.work-pro-section .work-pro-item:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.work-pro-section .work-pro-item:hover:before {
  opacity: 0;
}
.work-pro-section .work-pro-item:hover .number {
  transform: none;
  box-shadow: none;
}
.work-pro-section .work-pro-item:hover .number-line {
  background: rgba(184, 134, 26, 0.3);
  height: 3px;
}
.work-pro-section .work-pro-item:hover h3 {
  color: #fff;
}
.projects-section {
  background: transparent;
  position: relative;
  z-index: 1;
}
.projects-section .container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.projects-section .container-fluid {
  padding: 0;
}
.projects-carousel {
}
.project-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
}
.project-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.gallery-image-zoomed-out {
  object-fit: contain !important;
  background: #f5f5f5;
}
.project-item .overlay {
  background-color: rgba(184, 134, 26, 0.8);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.project-item:hover .overlay {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
  transition: all 300ms ease;
}
.projects-content {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 0;
  padding: 30px;
  z-index: 1;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.4s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.4s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.project-item:hover .projects-content {
  transform: translateY(0);
}
.project-item .tittle:hover {
  text-decoration: underline;
}
.projects-content .category {
  font-family:
    work sans,
    sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 15px;
  color: #fff;
  display: block;
}
.projects-content .tittle {
  font-size: 18px;
  color: #fff;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: 0;
  display: block;
}
.project-item .view-icon {
  position: absolute;
  width: auto;
  height: auto;
  right: 40px;
  top: 30px;
  display: block;
  font-size: 25px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}
.project-item:hover .view-icon {
  cursor: pointer;
  right: 20px;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.projects-carousel {
  position: relative;
}
.projects-carousel .owl-nav {
}
.projects-carousel .owl-nav div {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  left: -70px;
  top: calc(50% - 20px);
  background-color: #fff;
  color: #263a4f;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.projects-carousel .owl-nav div.owl-next {
  left: auto;
  right: -70px;
}
.project-single-section {
  position: relative;
  z-index: 1;
}
.project-single-section .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.project-single-content {
  background-color: #fff;
  padding-left: 30px;
}
.project-single-content p,
.project-single-content h2 {
  margin-bottom: 20px;
}
.project-single-content .project-details li {
  line-height: 40px;
}
.project-single-content .project-details span {
  font-family:
    work sans,
    sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  color: #263a4f;
  font-size: 14px;
  letter-spacing: 0;
  width: 150px;
  display: inline-block;
}
.cta-section {
  background: #f5f7fa;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.cta-section:before {
  background-color: rgba(240, 243, 247, 0.3);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.cta-content {
}
.cta-content span {
  font-family:
    work sans,
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  color: #ddd;
}
.cta-content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 46px;
  margin-bottom: 30px;
}
.content-section {
}
.content-wrap {
  display: flex;
  align-items: center;
}
.content-wrap img {
  border-radius: 15px;
}
.content-info {
}
.content-info span {
  font-family:
    work sans,
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.content-info h2 {
  margin-bottom: 20px;
}
.content-info p {
  margin-bottom: 30px;
}
.counter-section {
  background: #f5f7fa;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.counter-section:before {
  background-color: rgba(240, 243, 247, 0.3);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.counter-content {
  text-align: center;
}
.counter-content .counter {
  font-family:
    work sans,
    sans-serif;
  color: #b8861a;
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  position: relative;
  display: block;
  margin: 0 0 10px;
}
.counter-content h4 {
  font-family:
    work sans,
    sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
}
.team-section {
  position: relative;
  z-index: 1;
}
.team-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.team-wrap .col-lg-3 {
  padding: 0;
}
.team-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
}
.team-item img {
  width: 100%;
  border-radius: 15px;
}
.team-item .team-content {
  display: block;
}
.team-item .team-content h3 {
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
  bottom: -58px;
  background-color: #fff;
  box-shadow: 0 14px 70px -10px rgba(0, 0, 0, 0.15);
  transform: rotate(-90deg);
  transform-origin: 0 0;
  padding: 10px 15px;
  font-size: 16px;
  z-index: 2;
}
.bg-dark .team-item .team-content h3 {
  color: #263a4f;
}
.team-item .team-content span {
  position: absolute;
  width: auto;
  height: auto;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  font-family:
    work sans,
    sans-serif;
  padding: 5px 10px;
  background-color: #b8861a;
  box-shadow: 0 14px 70px -10px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.team-item .team-social {
  position: absolute;
  width: auto;
  height: auto;
  right: 20px;
  top: 20px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s linear;
}
.team-item .team-social li {
  transform: translateX(100px);
  transition: all 0.3s linear;
}
.team-item .team-social li:nth-child(1) {
  transition-delay: 0ms;
}
.team-item .team-social li:nth-child(2) {
  transition-delay: 100ms;
}
.team-item .team-social li:nth-child(3) {
  transition-delay: 150ms;
}
.team-item .team-social li:nth-child(4) {
  transition-delay: 200ms;
}
.team-item:hover .team-social li {
  transform: translateX(0);
}
.team-item .team-social li a {
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.team-item:hover img {
  transform: scale(1.08);
  cursor: pointer;
}
.team-item:hover .team-social {
  visibility: visible;
  opacity: 1;
}
.team-item .overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.team-item:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.testimonial-section {
  position: relative;
  z-index: 1;
}
.testimonial-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.testi-item img {
  width: 100px !important;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
}
.testi-content {
  padding-left: 20px;
}
.testi-content h3 {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  margin: 0;
}
.testi-content span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-family:
    work sans,
    sans-serif;
}
.testi-item {
  background-color: #fff;
  position: relative;
  padding: 30px;
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.testi-item .fa-quote-right {
  position: absolute;
  right: 30px;
  bottom: 25px;
  font-size: 50px;
  color: #b8861a;
  opacity: 0.5;
}
.testi-content .rattings {
  display: inline-block;
  margin-left: 5px;
}
.testi-content .rattings li {
  display: inline-block;
}
.testi-content .rattings li i {
  font-size: 10px;
  color: #b8861a;
  display: inline-block;
}
.owl-controls .owl-dots {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -50px;
  text-align: center;
}
.owl-controls .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: #555;
  margin: 0 3px;
  position: relative;
  text-align: center;
}
.owl-controls .owl-dots .owl-dot.active {
  background-color: #b8861a;
}
.page-header {
  background: linear-gradient(145deg, #eaf0f6 0%, #f8fbfe 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-header:before {
  background: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-header:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: none;
  background-size: auto;
  z-index: -1;
  opacity: 0.6;
}
.page-content {
}
.page-content h2 {
  color: #263a4f;
  font-size: 36px;
}
.page-content p {
  color: #8d9aa8;
  margin: 0;
}
.error-section {
}
.error-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-content img {
  max-width: 100%;
}
.error-content .error-info {
  padding-left: 50px;
  text-align: center;
}
.error-content .error-info h2 {
  font-size: 200px;
  line-height: 200px;
  letter-spacing: -10px;
}
.error-content .error-info a {
  color: #263a4f;
  font-weight: 600;
  text-decoration: underline;
}
.error-content .error-info a:hover {
  color: #b8861a;
}
.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .dots {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.contact-info h3 {
  line-height: 28px;
}
.contact-info h4 {
  font-size: 15px;
  line-height: 28px;
}
.contact-info span {
  text-transform: uppercase;
  margin-right: 5px;
}
.form-control {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: none;
}
.form-control:focus {
  border-color: #b8861a;
  box-shadow: none;
  outline: none;
}
#form-messages {
  display: none;
}
#form-messages.alert-danger,
#form-messages.alert-success {
  display: block;
}
#google-map {
  width: 100%;
  height: 400px;
}
.blog-section {
}
.blog-section.bg-dark .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.blog-item .blog-thumb {
  position: relative;
}
.blog-item .blog-thumb .category {
  background-color: #b8861a;
  padding: 5px 15px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-family:
    work sans,
    sans-serif;
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
  bottom: 0;
}
.blog-item .blog-thumb .category a {
  color: #fff;
}
.blog-item .blog-thumb img {
  width: 100%;
  margin: 0;
  border-radius: 15px 15px 0 0;
}
.blog-content {
  background-color: #f9fafa;
  padding: 30px;
  border-radius: 0 0 15px 15px;
}
.blog-content h3 {
  line-height: 24px;
}
.blog-content h3 a {
  color: #263a4f;
  font-size: 18px;
  line-height: 24px;
}
.blog-content h3 a:hover {
  color: #b8861a;
}
.blog-content .read-more {
  font-family:
    work sans,
    sans-serif;
  color: #263a4f;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  transition: all 200ms linear 0ms;
}
.blog-content .read-more:before {
  background-color: #b8861a;
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
  transition: all 200ms linear 0ms;
}
.blog-content .read-more:hover {
  color: #b8861a;
  padding-left: 40px;
}
.blog-content .read-more:hover:before {
  width: 30px;
}
.pagination-wrap {
}
.pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}
.pagination-wrap.text-left li {
  margin: 0 10px 0 0;
}
.pagination-wrap li a {
  border: 1px solid #e5e5e5;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: #263a4f;
  font-weight: 600;
  border-radius: 8px;
}
.pagination-wrap li a:hover {
  background-color: #b8861a;
  color: #fff;
  opacity: 1;
  text-decoration: none;
}
.pagination-wrap li a.active {
  background-color: #b8861a;
  border: 1px solid #b8861a;
  color: #fff;
}
.sidebar-wrap {
  padding-left: 40px;
}
.sidebar-wrap .widget-content {
  margin-bottom: 40px;
}
.sidebar-wrap .widget-content h4 {
  position: relative;
  margin-bottom: 30px;
}
.sidebar-wrap .widget-content h4:before {
  background-color: #b8861a;
  position: absolute;
  content: "";
  width: 20%;
  height: 3px;
  left: 0;
  bottom: -5px;
}
.sidebar-wrap .widget-content .widget-links li a:hover {
  text-decoration: underline;
}
.search-form {
  position: relative;
  margin-left: -2px;
}
.search-form .form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  width: 100%;
  display: block;
  border: 1px solid #e5e5e5;
  color: #263a4f;
  height: auto;
  padding: 15px 20px;
  border-radius: 25px;
  padding-right: 60px;
}
.search-form .search-btn {
  background-color: transparent;
  font-size: 15px;
  color: #263a4f;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 10px 0;
  opacity: 0.6;
}
.search-form .search-btn:focus,
.search-form .search-btn:hover {
  opacity: 1;
  cursor: pointer;
}
.search-form input::-webkit-input-placeholder {
  color: #8d9aa8 !important;
}
.search-form input:-moz-placeholder {
  color: #8d9aa8 !important;
}
.search-form input::-moz-placeholder {
  color: #8d9aa8 !important;
}
.search-form input:-ms-input-placeholder {
  color: #8d9aa8 !important;
}
.thumb-post {
}
.thumb-post li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: top;
  margin-bottom: 20px;
}
.thumb-post li:last-child {
  margin-bottom: 0;
}
.thumb-post li img {
  width: 100px;
  display: block;
}
.thumb-post li a {
  font-family: poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #263a4f;
  padding-left: 15px;
  letter-spacing: -0.5px;
}
.thumb-post li a:hover {
  color: #b8861a;
  text-decoration: underline;
}
.widget-content .tags {
}
.widget-content .tags li {
  display: inline-block;
}
.widget-content .tags li a {
  display: inline-block;
  background-color: #b8861a;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  margin: 3px;
}
.widget-content .tags li a:hover {
  background-color: #8d9aa8;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.blog-thumb {
}
.blog-thumb img {
  margin-bottom: 20px;
}
.blog-single-content {
}
.blog-single-content h2 a {
  font-size: 28px;
  color: #263a4f;
}
.blog-single-content h2 a:hover {
  color: #b8861a;
}
.single-post-meta {
  margin-bottom: 20px;
}
.single-post-meta li {
  display: inline-block;
  margin-right: 20px;
}
.single-post-meta li i {
  font-size: 12px;
  color: #b8861a;
  margin-right: 5px;
}
.single-post-meta li a {
  display: inline-block;
  font-family:
    work sans,
    sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #263a4f;
}
blockquote {
  background-color: #f5f5f5;
  padding: 40px;
  border-left: 4px solid #b8861a;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}
blockquote .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
blockquote p {
  color: #263a4f;
  font-size: 20px;
}
blockquote span {
  display: block;
  margin-top: 20px;
  color: #263a4f;
}
.post-tags {
  margin-top: 30px;
}
.post-tags li {
  display: inline-block;
}
.post-tags li a {
  display: inline-block;
  background-color: #b8861a;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  margin: 3px;
}
.post-tags li a:hover {
  background-color: #8d9aa8;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.author-box {
  display: flex;
  align-items: center;
  padding: 30px;
  margin-top: 30px;
  border-left: 4px solid #b8861a;
}
.author-box img {
  border-radius: 50%;
}
.author-info {
  padding-left: 30px;
}
.author-info h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
}
.author-box .social-icon {
}
.author-box .social-icon li {
  display: inline-block;
  margin-right: 8px;
}
.author-box .social-icon li a {
  font-size: 14px;
  color: #263a4f;
}
.author-box .social-icon li a:hover {
  color: #b8861a;
}
.post-navigation {
  border: 1px solid #e5e5e5;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
}
.post-navigation .col {
  padding: 20px;
}
.post-navigation .col:not(:last-of-type) {
  border-right: 1px solid rgba(17, 17, 17, 0.04);
}
.post-navigation .col a {
  color: #263a4f;
  font-size: 12px;
  text-transform: uppercase;
  font-family:
    work sans,
    sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.post-navigation .col.next-post a {
  justify-content: flex-end;
}
.post-navigation .col i {
  display: inline-block;
  font-size: 14px;
}
.post-navigation .ti-arrow-left {
  margin-right: 10px;
}
.post-navigation .ti-arrow-right {
  margin-left: 10px;
}
.post-navigation .col a:hover {
  color: #b8861a;
}
.post-navigation .col.prev-post .fa {
  margin-right: 10px;
}
.post-navigation .col.next-post .fa {
  margin-left: 10px;
}
.blog-single-wrap .comments-area {
  margin-top: 40px;
}
.blog-single-wrap .comments-area .comments {
  border-bottom: 0;
}
.blog-single-wrap .comments-area li > div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  padding: 35px;
}
.blog-single-wrap .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}
.blog-single-wrap .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
  margin: 0;
}
.blog-single-wrap .comments-area ol > li:last-child div {
  border-bottom: 0;
}
.blog-single-wrap .comments-area .comments-title {
  font-size: 22px;
  font-weight: 600;
}
.blog-single-wrap .comments-area li > div {
  position: relative;
}
.blog-single-wrap .comments-area .comment-thumb {
  position: absolute;
  left: 35px;
}
.blog-single-wrap .comments-area .comment-thumb .comment-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.blog-single-wrap .comments-area .comment-thumb .comment-img img {
  border-radius: 50%;
}
.blog-single-wrap .comments-area .comment-main-area {
  padding-left: 100px;
}
.blog-single-wrap .comments-area .comment-main-area p {
  margin-bottom: 20px;
}
.blog-single-wrap .comments-area .comments-meta h4 {
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1px;
}
.blog-single-wrap .comments-area .comments-meta h4 span {
  font-family:
    work sans,
    sans-serif;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 5px;
}
.blog-single-wrap .comments-area .comment-reply-link {
  font-family:
    work sans,
    sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #b8861a;
  display: inline-block;
  text-transform: uppercase;
  padding-left: 35px;
  position: relative;
}
.blog-single-wrap .comments-area .comment-reply-link:before {
  background-color: #b8861a;
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
}
.blog-single-wrap .comments-area .comment-reply-link:hover {
  text-decoration: underline;
}
.blog-single-wrap .comment-respond {
}
.blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.blog-single-wrap .comment-respond form input,
.blog-single-wrap .comment-respond form textarea {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 50px;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: all 0.3s;
}
.blog-single-wrap .comment-respond form input:focus,
.blog-single-wrap .comment-respond form textarea:focus {
  border-color: #b8861a;
}
.blog-single-wrap .comment-respond form textarea {
  height: 200px;
  padding: 15px;
}
.blog-single-wrap .comment-respond .form-inputs {
  overflow: hidden;
}
.blog-single-wrap .comment-respond .form-inputs > input:nth-child(2) {
  width: 49%;
  float: left;
}
.blog-single-wrap .comment-respond .form-inputs > input:nth-child(3) {
  width: 49%;
  float: right;
}
.blog-single-wrap .comment-respond .form-submit input {
  font-family:
    work sans,
    sans-serif;
  max-width: 180px;
  background-color: #b8861a;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 25px;
  text-transform: uppercase;
}
.blog-single-wrap .comment-respond .form-submit input:hover {
  opacity: 0.9;
}
.sponsor-section {
  padding: 56px 0;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.sponsor-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  z-index: -1;
}
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  flex: 1;
  min-width: 0;
  min-height: 116px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(19, 35, 58, 0.08);
  transition: all 0.3s ease;
}
.sponsor-item img {
  opacity: 0.62;
  width: 100%;
  max-width: 180px;
  height: 72px;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.sponsor-item:hover img {
  opacity: 1;
  cursor: pointer;
}
.sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.widget-section {
  background: linear-gradient(140deg, #0f1e33 0%, #132741 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.widget-content {
}
.widget-content img {
  margin-bottom: 20px;
}
.widget-section .widget-content h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}
.widget-content p {
}
.widget-content span {
  display: block;
  color: rgba(236, 243, 250, 0.82);
  margin-bottom: 8px;
}
.widget-content .widget-links {
}
.widget-content .widget-links li {
}
.widget-content .widget-links li a {
  color: rgba(236, 243, 250, 0.76);
  line-height: 2.1;
  font-weight: 500;
}
.widget-content .widget-links li a:hover {
  color: #b8861a;
  text-decoration: underline;
}
.subscribe-form {
  position: relative;
}
.subscribe-form .form-input {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  padding-right: 140px;
  border-radius: 25px;
}
.subscribe-form .submit-btn {
  background-color: #b8861a;
  font-family:
    work sans,
    sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  border-radius: 25px;
  line-height: 50px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 0 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.footer-section {
  background-color: #0c1728;
  display: block;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}
.footer-section p {
  font-size: 13px;
  color: rgba(236, 243, 250, 0.72);
  margin: 0;
}
#scroll-to-top {
  background: linear-gradient(140deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  display: none;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  line-height: 45px;
  color: #fff;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  box-shadow: none;
}
#scroll-to-top:hover {
  background: linear-gradient(140deg, var(--accent-color-dark) 0%, var(--accent-color) 100%);
  color: #fff;
  opacity: 1;
}
.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: 50px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}
.whatsapp-float i {
  margin-top: 3px;
}
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Catalog Models Horizontal Layout */
#models-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

#models-container::-webkit-scrollbar {
  height: 10px;
}

#models-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#models-container::-webkit-scrollbar-thumb {
  background: #b8861a;
  border-radius: 10px;
}

#models-container::-webkit-scrollbar-thumb:hover {
  background: #e66a06;
}

#models-container > div {
  flex: 0 0 350px;
  max-width: 350px;
}

#models-container .catalog-model-card {
  height: 100%;
}

#models-container .project-item {
  margin-bottom: 0;
}

/* Global sharp-corner override */
:root {
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
}

*,
*::before,
*::after {
  border-radius: 0 !important;
}

.whatsapp-float,
.whatsapp-float:hover {
  border-radius: 50% !important;
}

#scroll-to-top,
#scroll-to-top:hover {
  border-radius: 50% !important;
}

.work-pro-item .number,
.work-pro-item:hover .number,
.work-pro-section .work-pro-item:hover .number {
  border-radius: 50% !important;
}

/* ===== LIGHT INDUSTRIAL THEME ===== */

/* Body */
body {
  background: #eef1f6 !important;
}
body::before {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(184, 134, 26, 0.07), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(19, 35, 58, 0.06), transparent 46%) !important;
}

/* Restore dark text */
p { color: var(--text-color) !important; }
h1, h2, h3, h4, h5, h6 { color: var(--heading-color) !important; }
a { color: var(--primary-color) !important; }
a:hover { color: var(--accent-color) !important; }

/* === HEADER (dark) === */
.header {
  background-color: #0c1728 !important;
  backdrop-filter: none !important;
  border-bottom: 3px solid var(--accent-color) !important;
}
.sticky-header .primary-header {
  background-color: rgba(12, 23, 40, 0.98) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
}
.header-menu-wrap ul li > a { color: rgba(255, 255, 255, 0.85) !important; }
.header-menu-wrap ul li:hover > a { color: var(--accent-color) !important; }
.header-menu-wrap li ul { background-color: #fff !important; }
.header-menu-wrap li li > a { color: #263a4f !important; }
.header-menu-wrap li li:hover > a { color: var(--accent-color) !important; background-color: #f9f9f9 !important; }
.line-menu { background-color: #fff !important; }

@media (max-width: 992px) {
  .header { background-color: #0c1728 !important; }
  .header-menu-wrap {
    background-color: #fff !important;
    box-shadow: 0 20px 40px rgba(15, 31, 51, 0.18) !important;
  }
  .header-menu-wrap ul li > a { color: #263a4f !important; }
  .header-menu-wrap ul li { border-bottom: 1px solid rgba(0,0,0,0.04) !important; }
  .header-menu-wrap ul li:first-child { border-top: 1px solid rgba(0,0,0,0.04) !important; }
  .header-menu-wrap li li > a { color: #263a4f !important; }
  .header-menu-wrap li li:hover > a { color: var(--accent-color) !important; background-color: transparent !important; }
}

/* === PAGE HERO (kept dark for impact) === */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #172c4a 100%) !important;
  padding: 80px 0 72px !important;
  position: relative !important;
  overflow: hidden !important;
  border-bottom: 3px solid var(--accent-color) !important;
}
.page-hero::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important; right: 0 !important;
  width: 55% !important; height: 100% !important;
  background: linear-gradient(135deg, transparent 30%, rgba(184, 134, 26, 0.07) 100%) !important;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
  pointer-events: none !important;
}
.page-hero::after { display: none !important; }
.page-hero .hero-eyebrow {
  display: block !important;
  color: var(--accent-color) !important;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 4px !important; text-transform: uppercase !important;
  margin-bottom: 16px !important; font-family: manrope, sans-serif !important;
}
.page-hero h1 {
  color: #fff !important;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important;
  font-weight: 800 !important; line-height: 1.08 !important;
  margin-bottom: 0 !important; letter-spacing: -2px !important;
  text-transform: uppercase !important;
}
.page-hero h1 span { color: var(--accent-color) !important; }
.page-hero .hero-sub {
  color: rgba(190, 215, 236, 0.65) !important;
  font-size: 16px !important; margin-top: 20px !important;
  margin-bottom: 0 !important; max-width: 520px !important;
  font-weight: 400 !important; letter-spacing: 0 !important;
}
.page-hero .hero-actions {
  margin-top: 32px !important; display: flex !important;
  gap: 14px !important; flex-wrap: wrap !important;
}
.page-hero .hero-actions .btn-outline {
  display: inline-block !important; line-height: 50px !important;
  padding: 0 32px !important; border: 2px solid rgba(255,255,255,0.30) !important;
  color: rgba(255,255,255,0.85) !important; font-size: 12px !important;
  font-weight: 700 !important; letter-spacing: 1.4px !important;
  text-transform: uppercase !important; font-family: manrope, sans-serif !important;
  transition: all 0.3s ease !important; background: transparent !important;
}
.page-hero .hero-actions .btn-outline:hover {
  border-color: var(--accent-color) !important; color: var(--accent-color) !important;
}

/* === ALL CONTENT SECTIONS (light) === */
.about-section { background: #fff !important; }
.content-section { background: #fff !important; }
.content-section.bg-grey { background: #f4f7fb !important; }
.catalog-page-section { background: #f4f7fb !important; }
.projects-section { background: #f4f7fb !important; }
.projects-section .container {
  background: rgba(255, 255, 255, 0.80) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 24px !important;
  padding: 48px 30px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
}
.bg-grey { background: #f4f7fb !important; }

/* Service section dark panel stays, keep the existing gradient */
.service-section .dark-bg {
  background: linear-gradient(140deg, #10233b 0%, #1a3553 58%, #274567 100%) !important;
}

/* === CARDS (white) === */
.service-item {
  background-color: #fff !important;
  border-color: rgba(19, 35, 58, 0.08) !important;
}
.service-item h3 { color: var(--heading-color) !important; }
.service-item p { color: var(--text-color) !important; }
.service-item:hover { background-color: #fff !important; border-color: rgba(184,134,26,0.28) !important; }
.service-item:hover h3 { color: var(--primary-color) !important; }
.service-item:hover p { color: #8d9aa8 !important; }

.about-promo-item {
  background-color: rgba(255, 255, 255, 0.80) !important;
  border-color: rgba(19, 35, 58, 0.08) !important;
}
.about-promo-item h3 { color: var(--heading-color) !important; }
.about-promo-item p { color: var(--text-color) !important; }
.about-promo-item:hover { background-color: #fff !important; }

.testi-item {
  background-color: #fff !important;
  border-left-color: var(--accent-color) !important;
}
.testi-item p { color: var(--text-color) !important; }
.testi-content h3 { color: var(--heading-color) !important; }
.testi-content span { color: var(--text-color) !important; }

/* === SECTION HEADINGS === */
.section-heading h2 { color: var(--primary-color) !important; }
.section-heading span {
  color: var(--accent-color) !important;
  background: rgba(184, 134, 26, 0.08) !important;
  padding: 3px 12px !important;
}
.section-heading.dark-background h2 { color: #fff !important; }
.section-heading.dark-background span { color: #ffd9bc !important; }

/* Content / about text */
.service-content h2, .content-info h2, .about-content h2 { color: var(--heading-color) !important; }
.service-content p, .content-info p, .about-content p { color: var(--text-color) !important; }
.service-content span, .content-info span { color: var(--accent-color) !important; }

/* === CONTACT FORM (light) === */
.contact-info h2, .contact-info h3, .contact-info h4 { color: var(--heading-color) !important; }
.contact-info p, .contact-info span { color: var(--text-color) !important; }
.contact-info a { color: var(--primary-color) !important; }
.contact-info a:hover { color: var(--accent-color) !important; }
.form-control {
  background-color: #fff !important;
  border-color: rgba(19, 35, 58, 0.15) !important;
  color: var(--heading-color) !important;
}
.form-control:focus {
  background-color: #fff !important;
  border-color: var(--accent-color) !important;
}

/* === SPONSOR BAR (light) === */
.sponsor-section {
  background: rgba(255, 255, 255, 0.84) !important;
  border-top-color: rgba(19, 35, 58, 0.08) !important;
  border-bottom-color: rgba(19, 35, 58, 0.08) !important;
}
.sponsor-item { background: rgba(255,255,255,0.75) !important; border-color: rgba(19,35,58,0.08) !important; }
.sponsor-item img { opacity: 0.62 !important; filter: none !important; }
.sponsor-item:hover { background: #fff !important; box-shadow: var(--shadow-soft) !important; transform: translateY(-3px) !important; }
.sponsor-item:hover img { opacity: 1 !important; }

/* Work process dark overlay */
.work-pro-section:before { background: rgba(26, 39, 53, 0.94) !important; }

/* === WIDGET / FOOTER (keep dark) === */
.widget-section { background: linear-gradient(140deg, #0f1e33 0%, #132741 100%) !important; }
.widget-section .widget-content h4 { color: #fff !important; }
.widget-content p { color: rgba(236, 243, 250, 0.65) !important; }
.widget-content span { color: rgba(236, 243, 250, 0.65) !important; }
.widget-content .widget-links li a { color: rgba(236, 243, 250, 0.76) !important; }
.widget-content .widget-links li a:hover { color: var(--accent-color) !important; }
.footer-section { background-color: #0c1728 !important; }
.footer-section p { color: rgba(236, 243, 250, 0.50) !important; }

/* Box shadow restore */
.box-shadow { box-shadow: 0 0.2rem 2.8rem rgba(36, 36, 36, 0.10) !important; }

/* Work Process dark section — white text must win over global heading rule */
.work-pro-section .work-pro-item h3 { color: #fff !important; }
.work-pro-section .work-pro-item p { color: rgba(220, 235, 248, 0.82) !important; }
.work-pro-section .work-pro-item i { color: var(--accent-color) !important; }

/* Service dark panel text */
.service-section .dark-bg p { color: rgba(210, 228, 244, 0.75) !important; }
.service-section .dark-bg .section-heading h2 { color: #fff !important; }

/* === TYPOGRAPHY SYSTEM UPGRADES === */

/* Body uses Inter for maximum readability */
body { font-family: 'Inter', manrope, sans-serif !important; }

/* Headings use Poppins — heavier, tighter, more impact */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', poppins, sans-serif !important; }
h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -2px !important;
  line-height: 1.06 !important;
}
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
  font-weight: 700 !important;
  letter-spacing: -1.2px !important;
  line-height: 1.18 !important;
}
h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.4px !important;
  line-height: 1.45 !important;
}
h4 {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.2px !important;
}

/* Body paragraphs: Inter at comfortable reading size */
p {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 15.5px !important;
  line-height: 1.82 !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

/* Eyebrow / section sub-labels: Manrope for UI feel */
.section-heading span,
.hero-eyebrow,
.service-content span,
.content-info span {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

/* Navigation links */
.header-menu-wrap ul li > a {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-weight: 700 !important;
  font-size: 12.5px !important;
  letter-spacing: 0.3px !important;
}

/* Widget footer headings */
.widget-content h4 {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

/* Widget footer links */
.widget-links li a {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Page-hero h1 keeps page-hero specific sizes (already !important) — don't override */

/* === SEARCH BAR (catalog) === */
.catalog-search-section {
  max-width: 780px !important;
  margin: 0 auto 40px !important;
}
.search-label-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}
.search-label-text {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: #a0adb8 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.search-label-text i { color: var(--accent-color) !important; font-size: 11px !important; }

.catalog-search { position: relative !important; display: flex !important; align-items: center !important; }
.catalog-search .search-input-icon {
  position: absolute !important;
  left: 22px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #b8c4ce !important;
  font-size: 17px !important;
  z-index: 1 !important;
  pointer-events: none !important;
  transition: color 0.22s ease !important;
}
.catalog-search input {
  width: 100% !important;
  height: 64px !important;
  border: 2px solid rgba(19, 35, 58, 0.12) !important;
  border-radius: 100px !important;
  padding: 0 170px 0 58px !important;
  font-size: 15.5px !important;
  font-family: 'Inter', manrope, sans-serif !important;
  color: #0f1f33 !important;
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(15, 31, 51, 0.08) !important;
  transition: all 0.28s ease !important;
  letter-spacing: 0 !important;
}
.catalog-search input:focus {
  outline: none !important;
  border-color: #b8861a !important;
  box-shadow: 0 4px 28px rgba(184, 134, 26, 0.18), 0 0 0 5px rgba(184, 134, 26, 0.07) !important;
}
.catalog-search input::placeholder { color: #b8c4ce !important; font-weight: 400 !important; }

.search-live-badge {
  position: absolute !important;
  right: 64px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--accent-color) !important;
  font-family: 'Manrope', manrope, sans-serif !important;
  white-space: nowrap !important;
  letter-spacing: 0.3px !important;
  display: none !important;
}
.search-live-badge.visible { display: inline-block !important; }

.catalog-search-clear {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  border-radius: 50% !important;
  background: #f4f7fb !important;
  color: #7a8ea0 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.22s ease !important;
}
.catalog-search-clear:hover { background: var(--accent-color) !important; color: #fff !important; }
.catalog-search-clear.visible { display: flex !important; }

.search-hint-text {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: #b0bec9 !important;
  text-align: center !important;
  font-family: 'Inter', manrope, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}
.search-hint-text strong { color: #6b7f94 !important; font-weight: 600 !important; }

@media (max-width: 576px) {
  .catalog-search input { height: 54px !important; padding: 0 56px 0 50px !important; font-size: 14.5px !important; }
  .search-live-badge { display: none !important; }
}

/* Primary CTA and catalog buttons — override global a { color !important } */
.default-btn { color: #fff !important; }
.default-btn:hover { color: #fff !important; }
.btn-download { color: #fff !important; }
.btn-download:hover { color: #fff !important; }
.btn-contact { color: rgba(255, 255, 255, 0.88) !important; }
.btn-contact:hover { color: #fff !important; }


/* =====================================================
   CARD & TYPOGRAPHY UPGRADES — DESIGN SYSTEM v2
   ===================================================== */

/* ── Section headings ─────────────────────────────── */
.section-heading {
  padding: 0 0 32px !important;
}
.section-heading span {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 14px !important;
  background: rgba(184, 134, 26, 0.08) !important;
  border-left: 3px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  border-radius: 0 !important;
}
.section-heading span::before,
.section-heading span::after { display: none !important; }
.section-heading h2 {
  font-family: 'Poppins', poppins, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -1.4px !important;
  line-height: 1.12 !important;
}
.section-heading p {
  font-size: 15.5px !important;
  color: #6b7f94 !important;
  max-width: 560px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-heading.dark-background span {
  background: rgba(184, 134, 26, 0.14) !important;
  color: var(--accent-color) !important;
}
.section-heading.dark-background h2 { color: #fff !important; }

/* ── About/content span eyebrow labels ────────────── */
.service-content > span,
.content-info > span,
.about-content > span {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 14px !important;
  background: rgba(184, 134, 26, 0.08) !important;
  border-left: 3px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
  border-radius: 0 !important;
}
.service-content h2,
.content-info h2,
.about-content h2 {
  font-weight: 800 !important;
  letter-spacing: -1.4px !important;
  line-height: 1.12 !important;
}
.service-content p,
.content-info p,
.about-content p {
  font-size: 15.5px !important;
  line-height: 1.82 !important;
  color: #5a6d82 !important;
}

/* ── Service cards ────────────────────────────────── */
.service-item {
  background: #fff !important;
  border: 1px solid rgba(19, 35, 58, 0.07) !important;
  border-top: 3px solid transparent !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 14px rgba(15, 31, 51, 0.06) !important;
  padding: 36px 26px 28px !important;
  transition: border-top-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease !important;
}
.service-item:hover {
  border-top-color: var(--accent-color) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 40px rgba(15, 31, 51, 0.12) !important;
  background: #fff !important;
  border-left-color: rgba(19, 35, 58, 0.07) !important;
}
.service-item .service-icon {
  width: 58px !important;
  height: 58px !important;
  font-size: 24px !important;
  border-radius: 0 !important;
  background: #f4f7fb !important;
  color: var(--accent-color) !important;
  margin-bottom: 22px !important;
  transition: background 0.28s ease, color 0.28s ease !important;
}
.service-item:hover .service-icon {
  background: var(--accent-color) !important;
  color: #fff !important;
}
.service-item h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  color: var(--heading-color) !important;
  margin-bottom: 12px !important;
}
.service-item p {
  font-size: 14.5px !important;
  line-height: 1.78 !important;
  color: #6b7f94 !important;
  font-family: 'Inter', manrope, sans-serif !important;
}
.service-item:hover h3 { color: var(--heading-color) !important; }
.service-item:hover p { color: #8d9aa8 !important; }

/* ── About promo feature items (index page) ───────── */
.about-promo .about-promo-item {
  background: #fff !important;
  border: 1px solid rgba(19, 35, 58, 0.07) !important;
  border-left: 4px solid transparent !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 10px rgba(15, 31, 51, 0.05) !important;
  padding: 20px 22px !important;
  transition: border-left-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.about-promo .about-promo-item:hover {
  border-left-color: var(--accent-color) !important;
  transform: translateX(5px) !important;
  box-shadow: 0 8px 28px rgba(15, 31, 51, 0.10) !important;
  background: #fff !important;
}
.about-promo .about-promo-item i {
  font-size: 20px !important;
  border-radius: 0 !important;
  background: rgba(184, 134, 26, 0.08) !important;
  color: var(--accent-color) !important;
  width: 46px !important;
  height: 46px !important;
}
.about-promo .about-promo-item h3 {
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: var(--heading-color) !important;
  margin-bottom: 5px !important;
}
.about-promo .about-promo-item p {
  font-size: 14px !important;
  color: #6b7f94 !important;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
  font-family: 'Inter', manrope, sans-serif !important;
}

/* ── Work Process steps (dark bg section) ─────────── */
.work-pro-item {
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-top: 3px solid rgba(184, 134, 26, 0.22) !important;
  padding: 30px 22px !important;
}
.work-pro-item:hover {
  transform: none !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-top-color: var(--accent-color) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
}
.work-pro-item:hover::before { opacity: 0 !important; }
.work-pro-item .number {
  background: transparent !important;
  border: 2px solid rgba(184, 134, 26, 0.45) !important;
  color: var(--accent-color) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  border-radius: 0 !important;
  width: 50px !important;
  height: 50px !important;
  line-height: 46px !important;
  box-shadow: none !important;
}
.work-pro-item:hover .number { transform: none !important; box-shadow: none !important; }
.work-pro-item h3 {
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 10px !important;
}
.work-pro-item:hover h3 { color: #fff !important; }
.work-pro-item p {
  color: rgba(210, 228, 246, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}
/* Hide the connecting line */
.work-pro-item .number-line { display: none !important; }

/* ── Testimonial cards ────────────────────────────── */
.testi-item {
  background: #fff !important;
  border: 1px solid rgba(19, 35, 58, 0.07) !important;
  border-top: 3px solid var(--accent-color) !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 14px rgba(15, 31, 51, 0.06) !important;
  padding: 32px 28px 28px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}
.testi-item::before {
  content: '\201C' !important;
  font-family: 'Georgia', serif !important;
  font-size: 72px !important;
  line-height: 1 !important;
  color: var(--accent-color) !important;
  opacity: 0.12 !important;
  position: absolute !important;
  top: 18px !important;
  right: 24px !important;
  pointer-events: none !important;
}
.testi-item img {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(184, 134, 26, 0.3) !important;
  margin-bottom: 18px !important;
  flex-shrink: 0 !important;
  line-height: normal !important;
}
.testi-content { padding-left: 0 !important; width: 100% !important; }
.testi-item p,
.testi-content p {
  font-size: 15px !important;
  line-height: 1.82 !important;
  color: #5a6d82 !important;
  font-style: italic !important;
  margin-bottom: 18px !important;
  font-family: 'Inter', manrope, sans-serif !important;
}
.testi-content h3 {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: var(--heading-color) !important;
  margin-bottom: 3px !important;
  display: block !important;
}
.testi-content span {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--accent-color) !important;
  display: block !important;
}
.testi-content .rattings {
  display: block !important;
  margin-left: 0 !important;
  margin-top: 10px !important;
}
.testi-content .rattings li i { font-size: 11px !important; color: #f59e0b !important; }
.testi-item .fa-quote-right { display: none !important; }

/* ── Team cards ───────────────────────────────────── */
.team-section .team-wrap { display: flex; flex-wrap: wrap; }
.team-item {
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(15, 31, 51, 0.10) !important;
}
.team-item img {
  border-radius: 0 !important;
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
  transition: transform 0.45s ease !important;
}
.team-item:hover img { transform: scale(1.05) !important; }

/* Persistent gradient overlay — always visible */
.team-item .overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.35) 50%,
    transparent 100%
  ) !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 0 !important;
}
.team-item:hover .overlay { opacity: 1 !important; visibility: visible !important; }

/* Reset the rotated h3 label — place content at bottom */
.team-item .team-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 20px 18px 16px !important;
  z-index: 2 !important;
  transform: none !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
}
.team-item .team-content h3 {
  position: static !important;
  transform: none !important;
  transform-origin: unset !important;
  background: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  line-height: 1.3 !important;
  padding: 0 !important;
  margin-bottom: 4px !important;
  width: auto !important;
  height: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: block !important;
}
.team-item .team-content span {
  position: static !important;
  background: none !important;
  box-shadow: none !important;
  color: var(--accent-color) !important;
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  margin-bottom: 0 !important;
}

/* Social icons below the name/role inside .team-content */
.team-item .team-social {
  position: static !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  gap: 8px !important;
  margin-top: 12px !important;
  right: auto !important;
  top: auto !important;
}
.team-item .team-social li {
  transform: none !important;
  transition: none !important;
}
.team-item:hover .team-social li { transform: none !important; }
.team-item .team-social li a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.80) !important;
  font-size: 12px !important;
  border-radius: 50% !important;
  margin-bottom: 0 !important;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease !important;
}
.team-item .team-social li a:hover {
  background: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #fff !important;
}

/* ── Gallery / project items ──────────────────────── */
.project-item {
  border-radius: 0 !important;
  overflow: hidden !important;
}
.project-item img {
  border-radius: 0 !important;
  height: 260px !important;
  transition: transform 0.45s ease !important;
}
.project-item:hover img { transform: scale(1.06) !important; }
.project-item .overlay {
  background: rgba(10, 22, 40, 0.70) !important;
  border-radius: 0 !important;
}
.project-item .view-icon {
  position: absolute !important;
  right: auto !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 50px !important;
  height: 50px !important;
  background: var(--accent-color) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 16px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.project-item:hover .view-icon {
  opacity: 1 !important;
  visibility: visible !important;
  right: auto !important;
}

/* ── Sponsor / brand logo bar ─────────────────────── */
.sponsor-item {
  background: #fff !important;
  border: 1px solid rgba(19, 35, 58, 0.07) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 80px !important;
  padding: 16px 20px !important;
  transition: border-color 0.28s ease !important;
}
.sponsor-item img {
  opacity: 0.40 !important;
  filter: grayscale(100%) !important;
  transition: opacity 0.3s ease, filter 0.3s ease !important;
}
.sponsor-item:hover { border-color: rgba(184, 134, 26, 0.28) !important; transform: none !important; }
.sponsor-item:hover img { opacity: 1 !important; filter: grayscale(0%) !important; }

/* ── Contact page info block ──────────────────────── */
.contact-info h2 {
  font-weight: 800 !important;
  letter-spacing: -1.2px !important;
  line-height: 1.12 !important;
}
.contact-info h3 {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #4c5f74 !important;
  line-height: 1.6 !important;
}
.contact-info h4 { font-weight: 500 !important; font-size: 0.9rem !important; line-height: 2 !important; }
.contact-info h4 span {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--accent-color) !important;
}

/* ── Catalog: brand + machine-type headers ─────────── */
.brand-name {
  font-family: 'Poppins', poppins, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}
.brand-description {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 14px !important;
  color: #6b7f94 !important;
  line-height: 1.7 !important;
}
.machine-type-header {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}
.product-title {
  font-family: 'Poppins', poppins, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px !important;
  line-height: 1.35 !important;
  color: var(--heading-color) !important;
}
.product-description {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
  color: #6b7f94 !important;
}

/* ── Hero eyebrow & sub-text ──────────────────────── */
.page-hero .hero-eyebrow {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
}
.page-hero .hero-sub {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 16.5px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* ── Widget / footer ──────────────────────────────── */
.widget-section .widget-content h4 {
  font-family: 'Manrope', manrope, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 3.5px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.widget-content p {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: rgba(210, 228, 244, 0.62) !important;
}
.widget-links li a {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(210, 228, 244, 0.68) !important;
  transition: color 0.22s ease, padding-left 0.22s ease !important;
  padding: 4px 0 !important;
  display: block !important;
  letter-spacing: 0 !important;
}
.widget-links li a:hover {
  color: var(--accent-color) !important;
  padding-left: 4px !important;
}
.footer-section p {
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.2px !important;
  color: rgba(210, 228, 244, 0.38) !important;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .team-item img { height: 280px !important; }
  .project-item img { height: 220px !important; }
  .service-item { padding: 28px 20px 22px !important; }
  .testi-item { padding: 24px 20px 22px !important; }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0d1c2e;
  border-top: 3px solid #b8861a;
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.35);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 220px;
}
.cookie-text p {
  margin: 0;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78) !important;
}
.cookie-text strong {
  color: #fff;
  font-weight: 600;
}
.cookie-text a {
  color: #b8861a !important;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: #b8861a;
  color: #fff;
  border: none;
  padding: 9px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}
.cookie-btn-accept:hover {
  background: #9a6e10;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}
.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
  }
}

/* =====================================================
   CORPORATE MATURITY — VVE v3
   Refined for corporate South Africa. Applied last
   so these rules win the cascade.
   ===================================================== */

/* ── Accent & root overrides ─────────────────────────── */
:root {
  --accent-color: #b8861a;
  --accent-color-dark: #9a6e10;
  --text-color: #4a5568;
  --shadow-soft: 0 4px 24px rgba(15, 31, 51, 0.07);
  --shadow-medium: 0 8px 36px rgba(15, 31, 51, 0.11);
}

/* ── Body & backgrounds ──────────────────────────────── */
body { background: #f8f7f5 !important; }
.bg-grey { background: #f1f0ee !important; }
.about-section { background: #ffffff !important; }
.service-section .dark-bg {
  background: linear-gradient(140deg, #0d1e32 0%, #172b46 55%, #1f3655 100%) !important;
}

/* ── Hero: measured, not aggressive ─────────────────── */
.page-hero {
  background: linear-gradient(155deg, #0a1628 0%, #0f1f33 55%, #162840 100%) !important;
  border-bottom: 1px solid rgba(184, 134, 26, 0.30) !important;
  padding: 100px 0 90px !important;
}
.page-hero::before {
  background: linear-gradient(135deg, transparent 35%, rgba(184, 134, 26, 0.04) 100%) !important;
}
.page-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
  text-transform: none !important;
  line-height: 1.12 !important;
}
.page-hero h1 span { color: #b8861a !important; }
.page-hero .hero-eyebrow {
  font-size: 10px !important;
  letter-spacing: 3.5px !important;
  color: rgba(184, 134, 26, 0.90) !important;
}
.page-hero .hero-sub {
  color: rgba(200, 220, 240, 0.75) !important;
  font-size: 15.5px !important;
  line-height: 1.70 !important;
  max-width: 560px !important;
}

/* ── Buttons: sharp, corporate ───────────────────────── */
.default-btn {
  background: #b8861a !important;
  border-radius: 2px !important;
  letter-spacing: 1.2px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 48px !important;
  padding: 0 28px !important;
  box-shadow: none !important;
  background-image: none !important;
}
.default-btn:before { background: #0f1f33 !important; }
.default-btn:hover { transform: none !important; box-shadow: 0 4px 16px rgba(184,134,26,0.22) !important; }
.default-btn:active { box-shadow: none !important; }
.page-hero .hero-actions .btn-outline {
  border-radius: 2px !important;
  font-size: 11px !important;
  letter-spacing: 1.2px !important;
  line-height: 46px !important;
  border-color: rgba(255,255,255,0.22) !important;
}
.page-hero .hero-actions .btn-outline:hover {
  border-color: #b8861a !important;
  color: #b8861a !important;
  background: transparent !important;
}

/* ── Typography: measured hierarchy ─────────────────── */
h1 { font-weight: 700 !important; letter-spacing: -1px !important; }
h2 { font-weight: 700 !important; letter-spacing: -0.5px !important; }
h3 { font-weight: 600 !important; letter-spacing: -0.2px !important; }
h4 { font-weight: 600 !important; letter-spacing: 0 !important; }
p  { line-height: 1.80 !important; }

/* Section heading spans */
.section-heading span {
  background: rgba(184, 134, 26, 0.07) !important;
  border-left-color: #b8861a !important;
  color: #b8861a !important;
  font-size: 10px !important;
  letter-spacing: 3px !important;
}

/* ── Service cards ───────────────────────────────────── */
.service-item { border-top: 2px solid transparent !important; }
.service-item:hover { border-top-color: #b8861a !important; box-shadow: var(--shadow-medium) !important; }
.service-item .service-icon {
  background: rgba(184, 134, 26, 0.07) !important;
  color: #b8861a !important;
  border-radius: 0 !important;
}
.service-item:hover .service-icon { background: #b8861a !important; color: #fff !important; }
.service-item .overlay-icon { color: #b8861a !important; opacity: 0.06 !important; }

/* ── About promo ─────────────────────────────────────── */
.about-promo-item i { color: #b8861a !important; }

/* ── Work process ────────────────────────────────────── */
.work-pro-item { border-top: 2px solid rgba(184, 134, 26, 0.18) !important; }
.work-pro-item:hover { border-top-color: #b8861a !important; }
.work-pro-item .number { border-color: rgba(184, 134, 26, 0.40) !important; color: #b8861a !important; }

/* ── Testimonials ────────────────────────────────────── */
.testi-item { border-top: 2px solid #b8861a !important; }
.testi-item::before { color: #b8861a !important; opacity: 0.10 !important; }
.testi-content span { color: #b8861a !important; }
.testi-content .rattings li i { color: #b8861a !important; }

/* ── Team cards ──────────────────────────────────────── */
.team-item .team-content span { color: #b8861a !important; }
.team-item .team-social li a:hover { background: #b8861a !important; border-color: #b8861a !important; }

/* ── Gallery ─────────────────────────────────────────── */
.project-item .view-icon { background: #b8861a !important; }
.project-item .overlay { background: rgba(10, 22, 40, 0.65) !important; }

/* ── Sponsor bar ─────────────────────────────────────── */
.sponsor-item img { opacity: 0.38 !important; filter: grayscale(100%) !important; }
.sponsor-item:hover img { opacity: 1 !important; filter: grayscale(0%) !important; }

/* ── Navigation ──────────────────────────────────────── */
.dl-menu li a { letter-spacing: 0.3px !important; }

/* ── Scroll to top ───────────────────────────────────── */
#scroll-to-top { background: #b8861a !important; }

/* ── Cookie banner ───────────────────────────────────── */
.cookie-banner { border-top-color: #b8861a !important; }
.cookie-btn-accept { background: #b8861a !important; }
.cookie-btn-accept:hover { background: #9a6e10 !important; }
.cookie-text a { color: #b8861a !important; }

/* ── Search bar (catalog) ────────────────────────────── */
.catalog-search input:focus {
  border-color: #b8861a !important;
  box-shadow: 0 4px 24px rgba(184, 134, 26, 0.12), 0 0 0 4px rgba(184, 134, 26, 0.06) !important;
}
.search-live-badge { background: #b8861a !important; }

/* ── Widget footer links ─────────────────────────────── */
.widget-links li a:hover { color: #b8861a !important; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem) !important; }
  .page-hero { padding: 72px 0 64px !important; }
}

/* =====================================================
   TYPOGRAPHY, CARDS & LOGO REFINEMENT — v4
   ===================================================== */

/* ── Logo: proper fit in dark header & footer ───────── */
.header-logo {
  display: flex !important;
  align-items: center !important;
}
.primary-header .header-logo {
  max-width: 210px !important;
}
.primary-header .header-logo img {
  max-height: 44px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
}
.widget-content > a:first-child {
  display: inline-block !important;
  margin-bottom: 22px !important;
}
.widget-content > a:first-child img {
  max-width: 150px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 0 !important;
}

/* ── Headings: rhythm & measure ──────────────────────── */
.section-heading { padding: 0 0 36px !important; }
.section-heading.text-center h2 {
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
h2 { margin-bottom: 18px !important; }
h3, h4 { margin-bottom: 12px !important; }
.about-content h2 { margin-bottom: 22px !important; }
.service-content h2 { margin-bottom: 20px !important; }

/* ── Paragraphs: readable measure ────────────────────── */
.about-content p,
.service-content p,
.content-info p {
  max-width: 600px !important;
  color: #54657a !important;
}
p { color: #54657a !important; }
.hero-sub, .testi-item p, .service-item p, .about-promo-item p,
.work-pro-item p, .product-description, .brand-description {
  max-width: none !important;
}

/* ── Card title/description hierarchy ───────────────── */
.service-item h3 {
  font-size: 17px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}
.service-item p {
  font-size: 13.8px !important;
  line-height: 1.75 !important;
  color: #6b7f94 !important;
}
.testi-item p {
  font-size: 14.5px !important;
  line-height: 1.78 !important;
}
.team-item .team-content h3 {
  font-size: 1.05rem !important;
  margin-bottom: 4px !important;
}
.work-pro-item h3 {
  font-size: 16.5px !important;
  margin-top: 18px !important;
  margin-bottom: 10px !important;
}
.work-pro-item p {
  font-size: 13.5px !important;
  color: #6b7f94 !important;
}
.product-title { letter-spacing: -0.2px !important; }
.brand-name { letter-spacing: 1.6px !important; }

/* ── Card elevation: consistent scale ────────────────── */
.service-item,
.testi-item,
.about-promo .about-promo-item {
  box-shadow: 0 2px 12px rgba(15, 31, 51, 0.05) !important;
}
.service-item:hover,
.testi-item:hover {
  box-shadow: 0 10px 32px rgba(15, 31, 51, 0.10) !important;
}

@media (max-width: 768px) {
  .primary-header .header-logo { max-width: 160px !important; }
  .primary-header .header-logo img { max-height: 36px !important; }
}

/* ── Footer: Cookie Settings link ─────────────────────── */
.footer-cookie-settings {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin-left: 6px !important;
  font-family: 'Inter', manrope, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.2px !important;
  color: rgba(210, 228, 244, 0.55) !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}
.footer-cookie-settings:hover {
  color: #b8861a !important;
}
