/*  Style.css — Balterra Trade (Cleaned & Optimised)  */

/************ TABLE OF CONTENTS ***************
1.  CSS Variables & Reset
2.  Global / Typography
3.  Elements
4.  Utility Classes
5.  Preloader
6.  Header & Topbar
7.  Navigation (desktop + mobile)
8.  Buttons
9.  Page Header (inner-page banner)
10. Footer
11. Owl Carousel
12. fh-section-title
13. fh-icon-box
14. fh-service-box
15. fh-counter
16. fh-service (products grid)
17. Back To Top
18. Cookie Banner
19. Inner-page Typography
20. Header Flex Fix
21. Media Queries
**********************************************/


/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary: #045389;
  --accent: #b08d57;
  --light-bg: #f8f9fb;
  --text-dark: #1c1c1c;
}


/* ============================================================
   2. GLOBAL / TYPOGRAPHY
   ============================================================ */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: 'Open Sans', 'Inter', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-x: hidden;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  color: #222;
}

h1 {
  font-size: 41px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 15px;
}

a {
  background: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #222;
  text-decoration: none;
}

a:active,
a:hover,
a:focus {
  outline: 0;
  text-decoration: none;
  color: #222;
}

a img {
  border: none;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: #ff0;
  color: #000;
}

/* Form baseline */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea {
  box-sizing: border-box;
  border-color: #eaeaea;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
  border-color: #222;
}

input[type=text],
textarea {
  border: 1px solid #555;
  background: #fff;
}


/* ============================================================
   3. ELEMENTS
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

td,
th {
  padding: 0;
}

table tr {
  border: 1px solid #f4f4f4;
  border-bottom-width: 0;
  padding: 5px;
}

table tr td,
table tr th {
  padding: 5px;
  border-bottom: 1px solid #f4f4f4;
  border-left: 1px solid #f4f4f4;
}

blockquote {
  font-size: 16px;
  font-style: italic;
  border-left: 3px solid #00baff;
  padding: 15px 0 15px 20px;
  margin: 35px 0 35px 40px;
  line-height: 2;
  font-weight: 500;
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.clearfix {
  zoom: 1;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.secpadd {
  padding: 70px 0;
}

.secpadd2 {
  padding: 70px 0 40px;
}

.secpaddbig {
  padding: 100px 0 70px;
}

.secpaddlf {
  padding-top: 80px;
  padding-bottom: 80px;
}

.main-color {
  color: #00baff;
}

.main-background-color {
  background-color: #00baff;
}

.sub-color {
  color: #0c1239;
}

.sub-background-color {
  background-color: #0c1239;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Owl image fix */
.owl-carousel div.owl-item img {
  max-width: 100%;
  width: inherit;
}

/* Slider / Revolution Slider button */
.ch_button,
.tp-caption.ch_button {
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
  border-radius: 0 !important;
  padding: 17px 35px !important;
  text-align: center !important;
  min-width: 175px !important;
}

.ch_button:hover,
.tp-caption.ch_button:hover {
  border-color: #00baff !important;
  background-color: #00baff !important;
}


/* ============================================================
   5. PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/balterralogo.webp);
  background-size: 220px auto;
}


/* ============================================================
   6. HEADER & TOPBAR
   ============================================================ */
.site-header {
  background-color: #fff;
  position: relative;
  padding: 18px 0;
  
}

.site-logo h1,
.site-logo h2,
.site-logo p {
  margin: 0;
  line-height: 0;
  text-indent: -9999px;
}

.site-logo .hide-logo {
  display: none;
}

.site-logo .show-logo {
  display: inline-block;
}

.topbar {
  background-color: #0c1239;
  position: relative;
  z-index: 1000;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.topbar .topbar-left {
  float: left;
}

.topbar .topbar-right {
  float: right;
}

.topbar .widget {
  font-size: 15px;
  margin-bottom: 0;
  display: inline-block;
  color: #dde2fc;
  padding: 0 20px;
}

.topbar .widget:first-child {
  padding-left: 0;
}

.topbar .widget:last-child {
  padding-right: 0;
}

.topbar .widget p {
  margin-bottom: 0;
}

.topbar .widget .topbar-contact i {
  color: #00baff;
  padding-right: 6px;
  font-size: 18px;
}

.topbar .topbar-socials {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.topbar .topbar-socials li {
  display: inline-block;
  padding: 0 10px;
}

.topbar .topbar-socials li a {
  color: #dde2fc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.topbar .topbar-socials li:hover a {
  color: #00baff;
}

.topbar .cargohub-social-links-widget a {
  color: #dde2fc;
  font-size: 15px;
}

.topbar .cargohub-social-links-widget a:hover {
  color: #00baff;
}

/* Topbar office switcher */
.topbar-office {
  float: right;
  display: none;
}

.topbar-office.active {
  display: block;
  padding-left: 10px;
}

.topbar-office li {
  display: inline-block;
  padding: 0 20px;
}

.topbar-office li:last-child {
  padding-right: 0;
}

.topbar-office li i {
  color: #ffffff;
  padding-right: 6px;
  font-size: 18px;
}

.topbar-office li a,
.topbar-office li a:visited,
.topbar-office li a:hover,
.topbar-office li a:focus {
  color: inherit;
}

/* Sticky header */
.header-sticky.header-v1 .site-header.minimized,
.header-sticky.header-v2 .site-header.minimized {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
  position: fixed;
  z-index: 9999;
  background-color: #fff;
}

.header-sticky .site-header.minimized .nav .menu>li a {
  color: #222;
}

.header-sticky .site-header.minimized .nav .menu>li:hover>a,
.header-sticky .site-header.minimized .nav .menu>li.current-menu-item>a,
.header-sticky .site-header.minimized .nav .menu>li.active>a {
  color: #00baff;
}

.header-sticky .site-header.minimized .nav .menu>li li:hover>a {
  color: #fff;
}

.fh-header-minimized {
  display: none;
}

/* Off-canvas overlay */
.off-canvas-layer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  cursor: pointer;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.display-mobile-menu .off-canvas-layer {
  display: block;
  pointer-events: auto;
}

/* Site content */
.site-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container {
  padding-left: 0;
  padding-right: 0;
}

.container .container {
  width: 100%;
}

/* Page header banner (inner pages) */
.page-header {
  margin: 0;
  padding-bottom: 0;
  border: none;
  background-color: #161616;
}

.page-header h1 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
  position: relative;
  z-index: 99;
}

.page-header .header-title {
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
  background: url(../images/bg/page-header-bg.jpg) center center no-repeat fixed;
  background-size: cover;
}

.page-header .breadcrumb-area {
  background-color: #fff;
  padding: 22px 0;
  border-bottom: 1px solid #ececec;
  font-size: 16px;
}

.page-header .breadcrumb-area nav {
  background-color: transparent;
  text-align: left;
  padding: 0;
  margin: 0;
  color: #848484;
  line-height: 20px;
}

.page-header .breadcrumb-area nav i {
  padding: 0 5px;
  font-size: 14px;
  color: #848484;
}

.page-header .breadcrumb-area nav span[itemprop="title"],
.page-header .breadcrumb-area nav a span[itemprop="title"] {
  color: #848484;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


/* ============================================================
   7. NAVIGATION (DESKTOP + MOBILE)
   ============================================================ */

/* Desktop */
.nav {
  line-height: 20px;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  display: block;
  font-family: 'Montserrat', sans-serif;
}

.nav ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.nav ul ul {
  -webkit-transition: top 0.3s ease 0s, opacity 0.3s;
  transition: top 0.3s ease 0s, opacity 0.3s;
  position: absolute;
  top: 110%;
  left: 8px;
  width: 270px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #fff;
  margin-top: 31px;
  padding: 15px 0;
  z-index: 9999;
}

.nav ul ul::before {
  content: '';
  width: 100%;
  height: 40px;
  position: absolute;
  background-color: transparent;
  left: 0;
  top: -40px;
}

.nav ul ul ul {
  left: 115%;
  top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: 0;
}

.nav ul ul ul::before {
  width: 10px;
  height: 100%;
  top: 0;
  left: -10px;
}

.nav li {
  display: inline-block;
  position: relative;
}

.nav li:hover>ul {
  opacity: 1;
  top: 92%;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav li li {
  padding: 12px 30px;
  display: block;
  line-height: 1.2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

.nav li li:last-child {
  border-bottom: 0;
}

.nav li li:hover {
  background-color: #0c1239;
}

.nav li li:hover>a {
  color: #fff;
}

.nav li li:hover>ul {
  top: 0;
  left: calc(100% + 10px);
}

.nav ul.menu {
  zoom: 1;
}

.nav ul.menu::before,
.nav ul.menu::after {
  content: "";
  display: table;
}

.nav ul.menu::after {
  clear: both;
}

.nav ul.menu>li {
  display: block;
  float: left;
  position: relative;
  padding: 9px 19px;
}

.nav ul.menu>li>a {
  text-transform: uppercase;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 99;
}

.nav ul.menu>li:first-child>ul {
  left: 0;
}

.nav ul.menu>li:last-child {
  border: none;
}

.nav ul.menu>li.has-children>a::before {
  content: '\f107';
  font-family: FontAweSome;
  position: absolute;
  top: 50%;
  right: -13px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav ul.menu>li:hover>a,
.nav ul.menu>li.current-menu-item>a,
.nav ul.menu>li.active>a,
.nav ul.menu>li.current_page_item>a {
  color: #00baff;
}

.nav .menu li.extra-menu-item {
  float: right;
}

.nav .menu li.extra-menu-item.menu-item-button-link {
  padding: 0;
}

.nav .menu li.extra-menu-item.menu-item-button-link a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin-top: 4px;
  text-transform: inherit;
}

/* Hamburger */
.navbar-toggle {
  padding: 0;
  margin: 0;
  border-radius: 0;
  position: static;
}

.navbar-icon {
  display: inline-block;
  height: 25px;
  width: 27px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navbar-icon .navbars-line {
  display: inline-block;
  width: 27px;
  height: 2px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 0;
  cursor: pointer;
}

.navbar-icon .navbars-line::before,
.navbar-icon .navbars-line::after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #222;
}

.navbar-icon .navbars-line::before {
  top: -8px;
}

.navbar-icon .navbars-line::after {
  bottom: -8px;
}

.navbars-icon {
  display: inline-block;
  position: relative;
}

.navbars-icon i {
  color: #222;
  font-size: 26px;
}

/* Mobile slide-out panel */
.primary-mobile-nav {
  width: 340px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -340px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  color: #848484;
  z-index: 99999;
  border: 1px solid #f4f4f4;
}

.primary-mobile-nav .close-canvas-mobile-panel {
  padding: 20px;
  display: inline-block;
  font-size: 46px;
  line-height: 30px;
  padding-bottom: 0;
}

.primary-mobile-nav ul {
  list-style: none;
  padding-left: 0;
}

.primary-mobile-nav ul.menu {
  padding-bottom: 30px;
}

.primary-mobile-nav ul.menu.over-submenu {
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.primary-mobile-nav ul.menu li {
  padding: 15px 20px;
  position: static;
}

.primary-mobile-nav ul.menu li .toggle-children {
  float: right;
  position: relative;
}

.primary-mobile-nav ul.menu li .toggle-children i {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  right: -20px;
  top: -12px;
  font-size: 22px;
}

.primary-mobile-nav ul.menu li>ul {
  position: absolute;
  float: left;
  right: 0;
  top: 0;
  visibility: visible;
  display: inline-block;
  width: 100% !important;
  z-index: 10;
  margin-top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.35s;
  transition: 0.35s;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}

.primary-mobile-nav ul.menu li>ul .menu-parent-items {
  background-color: #f4f4f4;
  color: #222;
  text-transform: uppercase;
}

.primary-mobile-nav ul.menu li.over-menu>ul {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.primary-mobile-nav ul.menu li.menu-back {
  padding-left: 40px;
  position: relative;
}

.primary-mobile-nav ul.menu li.menu-back::before {
  content: '\f104';
  font-family: Fontawesome;
  font-size: 22px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.primary-mobile-nav ul.menu li.extra-menu-item {
  margin-top: 40px;
}

.primary-mobile-nav ul.menu li.current-menu-item>a {
  color: #00baff;
}

.display-mobile-menu .primary-mobile-nav {
  right: 0;
  z-index: 99999;
}


/* ============================================================
   8. BUTTONS
   ============================================================ */
.fh-btn {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  display: inline-block;
  min-width: 150px;
  min-height: 50px;
  line-height: 50px;
  border-radius: 0;
  padding: 0 20px;
  background-color: #00baff;
  text-transform: capitalize;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: 'Montserrat', sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-btn:hover,
.fh-btn:focus {
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: #cc0000;
}

.fh-btn-2 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  display: inline-block;
  min-width: 150px;
  min-height: 50px;
  line-height: 50px;
  border-radius: 0;
  padding: 0 20px;
  background-color: #0c1239;
  text-transform: capitalize;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: 'Montserrat', sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-btn-2:hover,
.fh-btn-2:focus {
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: #06092a;
}

/* fh-button shortcode */
.fh-button {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.fh-button:hover {
  color: #fff;
}

.fh-button.button-type-bordered {
  min-width: 160px;
  height: 50px;
  line-height: 48px;
  border: 1px solid #fff;
  text-align: center;
}

.fh-button.align-left {
  float: left;
}

.fh-button.align-right {
  float: right;
}

.fh-button.button-color-dark {
  color: #222;
}

.fh-button.button-color-dark.button-type-bordered {
  border-color: #222;
}

.fh-button.button-color-dark:hover {
  color: #222;
}


/* ============================================================
   10. FOOTER
   ============================================================ */
.site-footer {
  padding: 25px 0;
  color: #fff;
}

.site-footer .footer-copyright {
  font-size: 16px;
  color: #fff;
}

.site-footer .footer-copyright a {
  color: #00baff;
}

.footer-widgets {
  color: #fff;
}

.footer-widgets .widget {
  margin-bottom: 35px;
}

.footer-widgets .widget-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.footer-widgets .widget-title::after {
  display: none;
}

.footer-widgets .widget-title a {
  color: #fff;
}

.footer-widgets .textwidget a,
.footer-widgets .textwidget a:visited,
.footer-widgets .textwidget a:hover,
.footer-widgets .textwidget a:focus {
  color: inherit;
}

.footer-widgets .menu {
  margin-top: -10px;
}

.footer-widgets .menu li {
  padding: 5px 0 5px 15px;
  border: 0;
}

.footer-widgets .menu li::before {
  display: none;
}

.footer-widgets .menu li::after {
  top: 4px;
  right: auto;
  left: 0;
}

.footer-widgets .menu li a {
  color: #fff;
  padding-left: 0;
}

.footer-widgets .menu li a::before {
  display: none;
}

.footer-widgets .menu li:hover a {
  color: #00baff;
}

/* Subscribe form */
.footer-widgets .fh-form-field {
  margin-bottom: 15px;
}

.footer-widgets .fh-form-field .subscribe {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 23px;
}

.footer-widgets .fh-form-field .subscribe ::-webkit-input-placeholder {
  color: #fff;
}

.footer-widgets .fh-form-field .subscribe ::-moz-placeholder {
  color: #fff;
}

.footer-widgets .fh-form-field .subscribe :-ms-input-placeholder {
  color: #fff;
}

.footer-widgets .fh-form-field .subscribe input[type="email"] {
  width: 100%;
  background-color: transparent;
  color: #fff;
  padding-left: 10px;
  padding-right: 95px;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 50px;
  line-height: 50px;
}

.footer-widgets .fh-form-field .subscribe input[type="email"]:focus {
  outline: none;
}

.footer-widgets .fh-form-field .subscribe input[type="submit"] {
  position: absolute;
  width: 86px;
  height: 50px;
  right: 0;
  top: 0;
  background-color: #00baff;
  z-index: 99;
  border: none;
}

.footer-sidebars {
  padding-top: 80px;
  padding-bottom: 50px;
}

/* Balterra-specific footer */
.balterra-footer .footer-sidebars {
  padding-top: 70px;
  padding-bottom: 35px;
}

.balterra-footer .widget {
  height: 100%;
}

.balterra-footer .footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.balterra-footer .footer-logo img {
  max-width: 170px;
  height: auto;
}

.balterra-footer .textwidget p {
  margin-bottom: 9px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.balterra-footer .textwidget a {
  text-decoration: none;
}

.balterra-footer .textwidget a:hover,
.balterra-footer .textwidget a:focus {
  color: #00baff;
}

.balterra-footer-copy {
  display: flex;
  align-items: center;
}

.balterra-footer-copy .footer-text {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  text-align: right;
  flex-wrap: wrap;
}

.balterra-footer-copy .footer-text a {
  color: #fff;
}

.balterra-footer-copy .footer-text a:hover,
.balterra-footer-copy .footer-text a:focus {
  color: #00baff;
}

.footer-main {
  align-items: flex-start;
}

.footer-main>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
}

.footer-bottom a {
  margin: 0 8px;
}

.cargohub-social-links-widget a {
  color: #fff;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cargohub-social-links-widget a:first-child {
  padding-left: 0;
}

.cargohub-social-links-widget a:last-child {
  padding-right: 0;
}

.cargohub-social-links-widget a:hover {
  color: #00baff;
}

.opening-hours {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.opening-hours li {
  padding: 4px 0;
}

.opening-hours li span {
  float: right;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: inline-block;
  padding: 0 15px;
}

.footer-menu ul li:last-child {
  padding-right: 0;
}

.footer-menu ul li:first-child {
  padding-left: 0;
}

.footer-menu ul li a {
  color: #848484;
}

.footer-menu ul li a:hover {
  color: #00baff;
}

.footer-text a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

/* Widget base */
.widget {
  margin-bottom: 50px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget .widget-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  /* margin: 0 0 40px; */
  padding-bottom: 15px;
  position: relative;
}

.widget .widget-title::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 67px;
  left: 0;
  bottom: 0;
  background-color: #00baff;
}

/* Footer responsive */
@media(max-width:991px) {
  .balterra-footer .footer-sidebar:nth-child(2n+1) {
    clear: left;
  }

  .balterra-footer-copy {
    display: block;
    text-align: center;
  }

  .balterra-footer-copy .footer-text {
    justify-content: center;
    text-align: center;
    margin-top: 12px;
  }
}

@media(max-width:767px) {
  .balterra-footer .footer-sidebars {
    padding-top: 48px;
    padding-bottom: 20px;
  }

  .balterra-footer .widget {
    margin-bottom: 28px;
  }

  .balterra-footer .widget-title {
    padding-bottom: 12px;
  }

  .balterra-footer-copy .footer-text {
    display: block;
  }

  .balterra-footer-copy .footer-text a {
    display: block;
    margin-top: 8px;
  }
}


/* ============================================================
   11. OWL CAROUSEL
   ============================================================ */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.owl-nav .owl-prev {
  left: 0;
}

.owl-nav .owl-next {
  right: 0;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background-color: #fff;
}


/* ============================================================
   12. fh-section-title
   ============================================================ */
.fh-section-title h2 {
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  text-transform: uppercase;
}

.fh-section-title h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67px;
  height: 2px;
  background-color: #00baff;
}

.fh-section-title.text-center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.fh-section-title.version-light h2 {
  color: #fff;
  padding-bottom: 0;
}

.fh-section-title.version-light h2::before {
  display: none;
}


/* ============================================================
   13. fh-icon-box
   ============================================================ */
.fh-icon-box {
  margin-bottom: 30px;
  position: relative;
}

.fh-icon-box h4,
.fh-icon-box h4 a,
.fh-icon-box .fh-icon,
.fh-icon-box .img-icon {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 10;
}

.fh-icon-box:hover h4 a {
  color: #00baff;
}

.fh-icon-box:hover .overlay {
  opacity: 1;
}

.fh-icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  padding-top: 15px;
  margin: 0;
}

.fh-icon-box .desc {
  position: relative;
  z-index: 10;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-icon-box .fh-icon {
  font-size: 74px;
  display: block;
  line-height: 1;
  background-color: transparent;
  color: #0c1239;
}

.fh-icon-box .fh-icon i::before {
  font-size: 74px;
}

.fh-icon-box.style-1 {
  padding: 30px;
  border: 1px solid #efefef;
  text-align: center;
}

.fh-icon-box.style-1.no-border {
  border: none;
}

.fh-icon-box.style-2 {
  margin-bottom: 35px;
}

.fh-icon-box.style-2 .fh-icon {
  font-size: 30px;
  color: #0c1239;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #dbdbdb;
  position: relative;
  z-index: 99;
}

.fh-icon-box.style-2 .fh-icon i::before {
  font-size: 30px;
}

.fh-icon-box.style-2:hover .fh-icon {
  background-color: #00baff;
  border-color: #00baff;
  color: #fff;
}

.fh-icon-box.style-2 h4 {
  padding-top: 0;
}

.fh-icon-box.style-2.icon-left h4,
.fh-icon-box.style-2.icon-left .desc {
  padding-left: 100px;
}

.fh-icon-box.style-2.icon-left .fh-icon,
.fh-icon-box.style-2.icon-left .img-icon {
  float: left;
}

.fh-icon-box.style-2.icon-center {
  text-align: center;
}

.fh-icon-box.style-2.icon-center .fh-icon,
.fh-icon-box.style-2.icon-center .img-icon {
  margin: 0 auto 20px;
}

.fh-icon-box.version-light {
  color: #fff;
}

.fh-icon-box.version-light h4,
.fh-icon-box.version-light h4 a,
.fh-icon-box.version-light .fh-icon {
  color: #fff;
}

.fh-icon-box.version-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1239;
  opacity: 0.7;
  z-index: 9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-icon-box.version-light:hover::before {
  background-color: #00baff;
}


/* ============================================================
   14. fh-service-box
   ============================================================ */
.fh-service-box {
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service-box h4,
.fh-service-box h4 a {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service-box h4,
.fh-service-box .desc {
  padding-left: 70px;
}

.fh-service-box h4 {
  margin: 0;
  padding-bottom: 10px;
}

.fh-service-box i {
  font-size: 50px;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service-box i::before {
  font-size: 50px;
}

.fh-service-box .fh-icon,
.fh-service-box .img-icon {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service-box.style-1 {
  padding: 25px 20px;
  border: 1px solid #232951;
}

.fh-service-box.style-1 .fh-icon,
.fh-service-box.style-1 .img-icon {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fh-service-box.style-1:hover {
  border-color: #00baff;
}

.fh-service-box.style-1:hover .fh-icon,
.fh-service-box.style-1:hover .img-icon {
  color: #00baff;
  top: 30px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.fh-service-box.style-1:hover i {
  color: #00baff;
}

.fh-service-box.style-2 {
  color: #555555;
}

.fh-service-box.style-2 .fh-icon,
.fh-service-box.style-2 .img-icon {
  left: 0;
}

.fh-service-box.style-2 h4,
.fh-service-box.style-2 h4 a {
  color: #222;
}

.fh-service-box.style-2 i {
  color: #0c1239;
}

.fh-service-box.style-2:hover h4,
.fh-service-box.style-2:hover h4 a,
.fh-service-box.style-2:hover .fh-icon,
.fh-service-box.style-2:hover i {
  color: #00baff;
}


/* ============================================================
   15. fh-counter
   ============================================================ */
.fh-counter {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.fh-counter .fh-icon {
  display: block;
  padding-bottom: 25px;
}

.fh-counter .fh-icon i,
.fh-counter .fh-icon i::before {
  font-size: 80px;
}

.fh-counter .counter {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.fh-counter h4 {
  color: #fff;
  font-size: 14px;
  margin: 0;
  background-color: #00baff;
  margin-top: 10px;
  padding: 5px 10px;
  font-weight: 600;
}

.fh-counter.icon-left {
  text-align: left;
}

.fh-counter.icon-left .fh-icon {
  float: left;
  padding-bottom: 0;
  margin-top: -10px;
}

.fh-counter.icon-left .fh-icon i,
.fh-counter.icon-left .fh-icon i::before {
  font-size: 60px;
}

.fh-counter.icon-left .counter {
  font-size: 48px;
  font-weight: 300;
  padding-left: 80px;
}

.fh-counter.icon-left h4 {
  font-size: 16px;
  background-color: transparent;
}


/* ============================================================
   16. fh-service (products / services grid)
   ============================================================ */
.fh-service .item-service.col-md-4:nth-child(3n+1),
.fh-service .item-service.col-md-3:nth-child(4n+1) {
  clear: left;
}

.fh-service .entry-title {
  font-size: 20px;
  padding-bottom: 0;
  font-weight: 500;
}

.fh-service .entry-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 0;
}

.fh-service .entry-thumbnail .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: #0c1239;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service .entry-thumbnail .icon {
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #00baff;
  text-align: center;
  line-height: 70px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 100;
}

.fh-service .entry-thumbnail img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.fh-service h2,
.fh-service h2 a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service .read-more {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  color: #00baff;
  font-weight: 500;
}

.fh-service .service-content {
  margin-bottom: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fh-service .service-content:hover .entry-thumbnail .link {
  opacity: 0.7;
}

.fh-service .service-content:hover .entry-thumbnail img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.fh-service .service-content:hover .entry-thumbnail .icon {
  opacity: 1;
}

.fh-service .service-content:hover h2,
.fh-service .service-content:hover h2 a {
  color: #00baff;
}

.fh-service.style-bordered .summary {
  padding: 25px 30px;
  border: 1px solid #f4f4f4;
  border-top-width: 0;
  font-weight: 400;
}

.fh-service.style-bordered .item-service.no-thumb .summary {
  border-top-width: 1px;
}

.fh-service.style-bordered .service-content:hover {
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.07);
}

.fh-service.style-flat {
  text-align: center;
}

.fh-service.style-flat .entry-thumbnail {
  margin-bottom: 22px;
}

.fh-service.style-flat .summary {
  padding: 0 25px;
}

.fh-service.style-flat .entry-title {
  position: relative;
  padding-bottom: 17px;
  margin-bottom: 15px;
}

.fh-service.style-flat .entry-title::after {
  content: '';
  width: 67px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00baff;
}


/* ============================================================
   17. BACK TO TOP
   ============================================================ */
.backtotop {
  display: inline-block;
  position: fixed;
  bottom: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 3px solid #00baff;
  color: #00baff;
  font-size: 30px;
  background-color: #160f09;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 9999;
}

.backtotop .fa {
  color: #00baff;
}

.backtotop.show-scroll {
  opacity: 1;
}


/* ============================================================
   18. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 360px;
  max-width: calc(100% - 40px);
  background: #0c1239;
  color: #fff;
  padding: 20px 60px 20px 20px;
  border-radius: 12px;
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px) scale(0.95);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cookie-banner * {
  pointer-events: auto;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cookie-content {
  position: relative;
  padding-top: 2px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.cookie-content a {
  color: #00baff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

#cookie-accept {
  background: #00baff;
  color: #fff;
}

#cookie-decline {
  background: #ddd;
  color: #000;
}

.cookie-close {
  position: absolute;
  top: -8px;
  right: -40px;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.9;

  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  opacity: 1;
}

@media(max-width:768px) {
  .cookie-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    padding: 15px 50px 15px 15px;
  }

  .cookie-close {
    top: -8px;
    right: -40px;
    font-size: 20px;
  }
}


/* ============================================================
   19. INNER-PAGE TYPOGRAPHY
   ============================================================ */
body.inner-page section h1 {
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.18;
  margin: 0 0 16px;
}

body.inner-page section h2 {
  font-size: clamp(28px, 2.2vw, 34px);
  line-height: 1.22;
  margin: 0 0 14px;
}

body.inner-page section h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.28;
  margin: 0 0 10px;
}

body.inner-page section p {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.78;
  margin: 0 0 14px;
}

body.inner-page section p:last-child {
  margin-bottom: 0;
}

body.inner-page section ul li,
body.inner-page section ol li {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
  margin-bottom: 8px;
}

body.inner-page section ul,
body.inner-page section ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

body.inner-page section p+h2,
body.inner-page section p+h3,
body.inner-page section ul+h2,
body.inner-page section ul+h3,
body.inner-page section ol+h2,
body.inner-page section ol+h3 {
  margin-top: 22px;
}

body.inner-page .gn-regions br {
  display: none;
}

body.inner-page .gn-regions p+p {
  margin-top: 12px;
}


/* ============================================================
   20. HEADER FLEX FIX
   ============================================================ */
.header-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-flex-row .site-logo {
  flex-shrink: 0;
}

.header-flex-row .site-menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.header-flex-row .site-menu .menu {
  display: flex !important;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.header-flex-row .site-menu .menu>li {
  white-space: nowrap;
}

.header-flex-row .site-menu .menu>li>a {
  font-size: 14px;
}


/* ============================================================
   21. MEDIA QUERIES
   ============================================================ */
@media(max-width:992px) {
  section {
    padding: 70px 0;
  }
  }

/* ===============================================================
    PRODUCT DETAIL PAGE HERO SYSTEM
==================================================================*/

.product-hero {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Overlay */
.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10,20,40,0.85) 0%,
        rgba(10,20,40,0.6) 45%,
        rgba(10,20,40,0.2) 100%
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Heading */
.product-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

/* Subtext */
.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

/* BULLETS (UNIFIED SYSTEM) */
.hero-points {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-points span {
    background: rgba(255,255,255,0.18);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.25s ease;
}

.hero-points span:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* CTA BUTTON */
.hero-btn {
    display: inline-block;
    background: #4c6ef5;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.25s ease;
}

.hero-btn:hover {
    background: #3b5bdb;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-hero {
        height: auto;
        padding: 80px 0;
    }

    .product-hero h1 {
        font-size: 30px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-points {
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===============================================================
    HOME PAGE ABOUT SECTION IMAGE HEIGHT FIX
==================================================================*/

/* About section image fix - desktop only */
@media (min-width: 992px) {
  .aboutsec-2 .abotimglft {
    height: 420px; /* increase this */
    overflow: hidden;
    border-radius: 20px;
  }

  .aboutsec-2 .abotimglft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aboutsec-2 .row {
    display: flex;
    align-items: center;
  }

}

/* ===============================================================
   HOME PAGE FEATURE SECTION (FINAL CLEAN VERSION)
=============================================================== */

/* Heading color */
.features-1 .box-title span {
  color: #ffffff;
}

/* Box width */
.features-1 .frs1box {
  max-width: 320px;
  margin: 0 auto;
}

/* Center layout instead of icon-left */
.features-1 .fh-icon-box.icon-left {
  text-align: center;
}

.features-1 .fh-icon-box.icon-left .fh-icon {
  float: none;
  margin: 0 auto 20px;
  display: block;
}

.features-1 .fh-icon-box.icon-left h4,
.features-1 .fh-icon-box.icon-left .desc {
  padding-left: 0;
}

/* Typography */
.features-1 .box-title {
  margin-bottom: 15px;
}

.features-1 .desc p {
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
}
.features-1 .fh-icon {
  font-size: 60px; /* was too big (74px) */
  margin-bottom: 20px;
  color: #6ec1ff;
}

.features-1 .fh-icon-box {
  padding: 20px 10px;
}

.features-1 .box-title {
  margin-bottom: 12px;
  font-weight: 500;
}

.features-1 .desc p {
  margin-top: 10px;
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {
  .features-1 .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center; /* FIXED */
  }

  .features-1 .col-md-4 {
    display: flex;
    justify-content: center;
    padding: 0 30px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .features-1 .fh-icon-box {
    text-align: center;
  }

  .features-1 .desc p {
    max-width: 100%;
    margin: 0 auto;
  }

  /* .features-1 .frs1box {
    margin-bottom: 40px;
  } */
}


/* ==============================
   COMPLIANCE SECTION FIX
============================== */

.contact_servbox .compliance-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Subheading */
.contact_servbox h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* List spacing */
.contact_servlist {
  margin-bottom: 20px;
}

.contact_servlist li {
  margin-bottom: 8px;
}

/* Paragraph spacing */
.contact_servbox p {
  margin-bottom: 25px;
}

.contact_Products {
  display: flex;
  align-items: flex-start; /* 👈 THIS IS THE KEY FIX */
}

/* Push content slightly down from top */
.contact_servbox {
  padding-top: 40px;
}

/* Control max width like premium layout */
.contact_servbox {
  max-width: 520px;
}

.contact_Products.secpadd {
  padding-top: 30px; /* 👈 reduce from 70px */
  padding-bottom: 70px; /* keep bottom same */
}

/* tighten heading spacing */
.compliance-title {
  margin-top: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .contact_servbox .compliance-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .contact_servbox h2 {
    font-size: 20px;
  }
}

/* ==================================================
   HOME PRODUCTS GRID (SYNC WITH PRODUCTS PAGE)
================================================= */

/* Override height for THIS section only */
.about3-grid.products-grid img {
  height: 170px; /* smaller than products page */
  border-radius: 8px;
  object-fit: cover;
}

/* Slight tighter spacing */
.about3-grid.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Keep hover but make it subtle */
.about3-grid.products-grid a::after {
  font-size: 12px;
  padding: 5px 8px;
}



.about3-grid a {
  position: relative;
  display: block;
  overflow: hidden;
}

.about3-grid a::after {
  content: "View Details";
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s ease;
  border-radius: 4px;
}

.about3-grid a:hover::after {
  opacity: 1;
}

/* MOBILE FIX */
@media (max-width: 767px) {

  .about3-grid.products-grid {
    grid-template-columns: 1fr; /* ONE COLUMN */
    gap: 16px;
  }

  .about3-grid.products-grid img {
    width: 100%;
    height: 220px;       
    object-fit: cover;   
    border-radius: 12px;
  }

}