/*
font-family: 'Cabinet Grotesk Regular';
font-family: 'Cabinet Grotesk Thin';
font-family: 'Cabinet Grotesk Extralight';
font-family: 'Cabinet Grotesk Light';
font-family: 'Cabinet Grotesk Medium';
font-family: 'Cabinet Grotesk Bold';
font-family: 'Cabinet Grotesk Extrabold';
font-family: 'Cabinet Grotesk Black';
*/
@font-face {
  font-family: 'Cabinet Grotesk Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Regular'), url('../fonts/CabinetGrotesk-Regular.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Thin';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Thin'), url('../fonts/CabinetGrotesk-Thin.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Extralight';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Extralight'), url('../fonts/CabinetGrotesk-Extralight.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Light';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Light'), url('../fonts/CabinetGrotesk-Light.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Medium'), url('../fonts/CabinetGrotesk-Medium.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Bold'), url('../fonts/CabinetGrotesk-Bold.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Extrabold';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Extrabold'), url('../fonts/CabinetGrotesk-Extrabold.woff') format('woff');
}


@font-face {
  font-family: 'Cabinet Grotesk Black';
  font-style: normal;
  font-weight: normal;
  src: local('Cabinet Grotesk Black'), url('../fonts/CabinetGrotesk-Black.woff') format('woff');
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:root {
  /*--navy: #09274F;*/
  --navy: #000000;
  --navy-deep: #0f1a32;
  --navy-light: #2D4769;
  --orange: #eb5919;
  --orange-light: #f08040;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --gray: #222;
  --light-gray: #e5e7eb;
  --text: #1f2937;
  --nav-h: 100px;
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabinet Grotesk Regular';
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
}

section {
  padding: 60px 5%;
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 2;
  object-fit: contain;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-spinner {
  width: 110px;
  height: 110px;
  border: 3px solid transparent;
  border-top-color: var(--navy);
  border-radius: 50%;
  position: relative;
  animation: spin 1.2s linear infinite;
}

.loader-spinner::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 3px solid transparent;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/*.container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
}*/

#main-nav {
  background: #fff;
  padding: 5px 5%;
}



/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin: 40px 5%;*/
  /* border-radius: 20px;*/
  /* padding: 10px 50px;*/
  background: #fff;
  transition: all ease-in-out 0.4s;
}

nav.scrolled {
  background: #fff;
  margin: 0;
  padding: 12px 5%;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-img img {
  max-height: 84px;
  object-fit: contain;
}

nav.scrolled .nav-logo-text {
  color: var(--navy);
}

nav.scrolled .nav-logo-img img {
  max-height: 60px;
}

.nav-center {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Medium';
  font-weight: normal;
  position: relative;
  transition: color 0.2s;
  padding-bottom: 4px;
}

/*.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #eb5919;
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
*/
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active,
.nav-links a:hover {
  color: #eb5919;
  /*font-weight: 600;*/
}

/*nav.scrolled .nav-links a.active {
  color: var(--navy);
}

nav.scrolled .nav-links a:hover {
  color: var(--navy);
}*/

.nav-cta {
  background: linear-gradient(90deg, #000 0%, #4c4c4c 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 6px;

  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Medium';
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(90deg, #ff8314 0%, #d64e19 100%);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

nav.scrolled .hamburger span {
  background: var(--navy);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  display: flex;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 100%;
}

.mobile-menu ul {
  list-style: none;
  /* padding: 8px 0;*/
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--light-gray);
}

.mobile-menu ul li:last-child {
  border: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 24px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--orange);
  background: var(--off-white);
}

.mobile-menu-cta {
  padding: 8px 24px 24px;
}

.mobile-menu-cta .nav-cta {
  width: 100%;
  justify-content: center;
}

/* ===== DROPDOWN SUBMENU (Desktop) ===== */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .has-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.07);
  min-width: 260px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 2000;
  border-top: 3px solid var(--orange);
}

.nav-links .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--orange);
  border-top: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.nav-links .dropdown-menu li:last-child {
  border-bottom: none;
}

.nav-links .dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  color: #2d2d2d;
  text-decoration: none;
  font-family: 'Cabinet Grotesk Regular';
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-links .dropdown-menu li a i {
  color: var(--orange);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.nav-links .dropdown-menu li a:hover {
  background: #fff8f5;
  color: var(--orange);
  padding-left: 26px;
}

/* ===== MOBILE DROPDOWN SUBMENU ===== */
.mobile-has-dropdown {
  border-bottom: 1px solid var(--light-gray);
}

.mobile-has-dropdown:last-child {
  border: none;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-toggle>a {
  display: block;
  padding: 16px 24px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  flex: 1;
}

.mobile-dropdown-toggle>a:hover,
.mobile-dropdown-toggle>a.active {
  color: var(--orange);
}

.mobile-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 20px 16px 8px;
  color: var(--text);
  font-size: 0.85rem;
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
}

.mobile-toggle-btn.open {
  transform: rotate(180deg);
  color: var(--orange);
}

.mobile-submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafafa;
  /*border-top: 1px solid var(--light-gray);*/
}

.mobile-submenu.open {
  max-height: 500px;
}

.mobile-submenu li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px 13px 36px;
  font-size: 1.05rem;
  color: #444;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.mobile-submenu li a i {
  color: var(--orange);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-submenu li a:hover {
  color: var(--orange);
  background: #fff5f0;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 1023px) {

  .nav-center,
  nav>.nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}



/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.99) 0%, rgba(10, 20, 45, 0.59) 50%, rgba(0, 0, 0, 0.91) 100%);

}

.slide-1 {
  background-image: url(../images/slide1.jpg);
}

.slide-2 {
  background-image: url(../images/slide2.jpg);
}

.slide-3 {
  background-image: url(../images/slide3.jpg);
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-content {
  position: absolute;
  text-align: center;
  color: white;
  max-width: 980px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease 0.35s, transform 0.9s ease 0.35s;
  pointer-events: none;
}

.hero-slide-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slide-content h2,
.hero-slide-content h1 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1.16;
  font-weight: normal;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide-content h1 span,
.hero-slide-content h2 span {
  color: #ff8314;
}

.hero-slide-content p {
  font-size: clamp(0.88rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 960px;
  margin: 0 auto 36px;
  line-height: 1.50;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(90deg, #000 0%, #363636 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid #828282 !important;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff8314 0%, #d64e19 100%);
  border: 1px solid #d64e19 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 108, 44, 0.45);
}


.btn-secondary {
  background: linear-gradient(90deg, #ff8314 0%, #d64e19 100%);
  border: 1px solid #d64e19 !important;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;

  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #000 0%, #363636 100%);
  border: 1px solid #828282 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 108, 44, 0.45);
}

.btn-white {
  background: #fff;
  color: #222;
  padding: 15px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 108, 44, 0.45);
  color: #fff;




}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hero-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

/* ===== ABOUT ===== */
.about-wrap {
  margin: 0;
  /*padding: 96px 5%;*/
  background: url(../images/bg-about.jpg) 0 0 repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-image-box {
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
}

.about-image-box img {
  width: 100%;
  border-radius: 24px;
  height: 500px;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: #fff;
  border-radius: 15px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
  animation: float 4s ease-in-out infinite;
  font-size: 18px;
  font-family: 'Cabinet Grotesk Medium';
}

.about-box {
  right: auto;
  left: -24px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-img-badge .num {

  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Cabinet Grotesk bold';
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff9f49 0%, #ffebe3 100%);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
  font-family: 'Cabinet Grotesk Medium';
  position: relative;
  z-index: 1;
}

.section-header h2 {
  letter-spacing: 1px;
  font-family: 'Cabinet Grotesk Medium';
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.section-header h2 span {
  color: var(--orange);
}

.text-center {
  text-align: center;
}

/*

.section-header h2 {
  letter-spacing: 1px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.25;
}

.section-header h2 span {
  color: var(--orange);
}
*/
/*
.about-content p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
*/
.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.badge {
  /*padding: 5px 20px;*/
  border-left: 3px solid var(--orange);
  border: 1px solid #e0e4ef;
  padding: 14px;
  border-radius: 10px;
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #fff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8314 0%, #d64e19 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 24px;
}

.badge:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.badge h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.badge p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  margin-top: 8px;
}

.btn-navy:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 1.2rem;

  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 8px;
}

.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.btn-outline:hover img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* ===== STATS ===== */
.stats {
  /*  padding: 68px 5% 74px;*/
  background: var(--white);
}

.stats-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  /* max-width: 1560px; */
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  background: url(../images/some-facts-about-us-bg.png), linear-gradient(90deg, #d75019 0%, #d75019 52%, #fb7e13 100%);
  box-shadow: 0 26px 52px rgba(16, 21, 55, 0.18);
}

/* .stats-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(225deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 18% 112%, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 82% -18%, rgba(255, 255, 255, 0.12), transparent 22%);
  opacity: 0.65;
  pointer-events: none;
} */

.stat-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 30px 26px;
  min-height: 160px;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-content {
  min-width: 0;
}

.stat-icon-box {
  width: 82px;
  height: 82px;
  border-radius: 10px;
  background: linear-gradient(180deg, #000 0%, #4c4c4c 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  box-shadow: none;
  color: #fff;
}

.stat-icon-box img {
  filter: brightness(0) invert(1);
  width: 40px;
}

.stat-icon-box i {
  color: white;
  font-size: 2.1rem;
}

.stat-number {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 0px 0;
  letter-spacing: -0.04em;
}

.stat-number-text {
  font-size: clamp(1.8rem, 2.8vw, 2.85rem);
}

.stat-label {
  font-family: 'Cabinet Grotesk Medium';
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
}

/* ===== STRENGTHS ===== */
.strengths {

  position: relative;
  overflow: hidden;
  background: url(../images/our-products-bg.png) !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.strengths::after {
  background: #000000ed;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
}


/*.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.strength-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.35s;
}

.strength-card:hover {
  transform: translateY(-10px);
}

.strength-icon-box {
  width: 80px;
  height: 80px;

  background: linear-gradient(180deg, #143B71 33.17%, #1559B5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.strength-icon-box i {
  color: var(--orange);
  font-size: 1.2rem;
}

.strength-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.strength-card p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.learn-link {
  font-size: 1.4rem;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.2s;
}

.learn-link:hover {
  gap: 22px;
}*/

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto 48px;
}

/*.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.product-card {
  background: white;
  border-radius: 12px ;
  padding: 0px; 
  overflow: hidden;
  transition: all 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.product-img {
    height: 300px;
    overflow: hidden;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-body {
    padding: 22px 20px;
}

.product-body h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-body p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;}

*/
/* ===== MINERALS ===== */
.minerals {
  /*padding: 96px 5%;*/
  /*background: #F3F3F3;*/
  background: url(../images/bg1.png) center / cover no-repeat;
}

/*.minerals .section-header h2 {
  color: var(--navy);
}*/

.minerals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0 auto 48px;
}

.mineral-card {
  background: #10100f;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #474747;
  overflow: hidden;
  transition: all 0.35s;
}

.mineral-card:hover {
  transform: translateY(-0px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.mineral-img {
  height: 300px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #000;
}

.mineral-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.mineral-card:hover .mineral-img img {
  transform: scale(1.06);
}

.mineral-body {
  padding: 22px 0;
}

.mineral-body h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.mineral-body p {
  font-size: 1.2rem;
  color: #adadad;
  line-height: 1.65;
  margin-bottom: 16px;
}

.btn-read {
  display: inline-block;
  padding: 12px 30px;
  border: 1.5px solid #ff4e006b;
  border-radius: 6px;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}

.btn-read:hover {
  background: var(--navy);
  color: white;
}

.minerals-cta {
  text-align: center;
}

/* ===== INDUSTRIES SHOWCASE (Homepage) ===== */
.industries-showcase {
  position: relative;
  /* padding: 84px 5% 90px; */
  background:
    radial-gradient(circle at top center, rgba(235, 89, 25, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  overflow: hidden;
}

.industries-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9, 39, 79, 0.03) 25%, transparent 25%),
    linear-gradient(225deg, rgba(9, 39, 79, 0.03) 25%, transparent 25%);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
}

.industries-showcase .section-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.industries-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.industry-showcase-card {
  background: #fff;
  border: 1px solid rgba(9, 39, 79, 0.08);
  border-radius: 16px;
  padding: 14px 14px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.industry-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 89, 25, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.industry-showcase-media {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  background: linear-gradient(180deg, #f5f7fb 0%, #eceff5 100%);
}

.industry-showcase-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: transform 0.35s ease;
  height: 262px;
}

.industry-showcase-icon {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 62px;
  height: 60px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f47515;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(9, 39, 79, 0.08);
}

.industry-showcase-icon i {
  font-size: 32px;
  line-height: 1;
}

.industry-showcase-card h3 {
  margin-top: 32px;
  text-align: center;
  font-family: 'Cabinet Grotesk bold';
  font-size: 1.3rem;
  line-height: 1.35;
  color: #121212;
  font-weight: normal;
}

.industry-showcase-card:hover .industry-showcase-icon {
  color: #fff;
  background: linear-gradient(180deg, #ff8314 0%, #d64e19 100%);
  /* border-color: var(--orange); */
}

.industry-showcase-card:hover .industry-showcase-media img {
  transform: scale(1.04);
}

.btn-all {
  background: var(--navy);
  color: white;
  padding: 13px 36px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-all:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(230, 126, 34, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex: 0 0 64px;
}

.cert-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cert-card p {
  text-align: left;
}

.cert-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--orange);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0 auto 0px;
}

h4 {
  font-size: 22px;
}

.cert-card {
  background: #fff;
  border: 1px solid #e0e4ef;
  border-radius: 14px;
  padding: 25px;
  min-width: 160px;
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
  gap: 20px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}







/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url(../images/bg-form.jpg) left/cover;
  background-size: 50% 100%;
  background-repeat: no-repeat;
}

.contact-box {
  position: relative;
  z-index: 2;
  max-width: 50%;
  width: 100%;
  background: white;
  padding: 100px 5%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  background: url(../images/bg-about.png) 0 0 repeat;
}

.contact-box h2 {
  letter-spacing: 1px;
  font-family: 'Cabinet Grotesk Medium';
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 18px;
}

.contact-box h2 span {
  color: var(--orange);
}

.contact-box p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 14px;
  position: relative;
}

.form-group .fi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 0.82rem;
  width: 16px;
  text-align: center;
  pointer-events: none;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 14px 15px 40px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Regular';
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
  background: white;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row .form-group:first-child {
  flex: 0 0 105px;
}

.phone-row .form-group:last-child {
  flex: 1;
}

.display-block {
  width: 100%;
}

/* ===== CAPTCHA ===== */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.captcha-img-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.captcha-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  border: 1.5px solid var(--light-gray);
  display: block;
}

.captcha-refresh {
  background: var(--navy);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.captcha-refresh:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.captcha-refresh.spinning {
  animation: captcha-spin 0.5s ease;
}

@keyframes captcha-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.captcha-row input[name="captcha"] {
  flex: 1;
  min-width: 0;
}

/* Captcha inside contact-box (index/about CTA) */
.contact-box .captcha-row {
  margin-bottom: 14px;
}

.contact-box .captcha-img {
  height: 48px;
  border-color: var(--light-gray);
}

.contact-box .captcha-row input[name="captcha"] {
  padding: 15px 14px 15px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: 'Cabinet Grotesk Regular';
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-box .captcha-row input[name="captcha"]:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
  background: white;
}

/* Captcha inside contact-form-side (contact page) */
.contact-form-side .captcha-row {
  margin-bottom: 0;
}

.contact-form-side .captcha-img {
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.contact-form-side .captcha-row input[name="captcha"] {
  padding: 18px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.contact-form-side .captcha-row input[name="captcha"]:focus {
  border-color: var(--navy);
  background: #fff;
  outline: none;
  box-shadow: 0 10px 30px rgba(9, 39, 79, 0.05);
}



/* ===== FOOTER ===== */
footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 10, 20, 0.92), rgba(10, 18, 34, 0.84) 45%, rgba(235, 89, 25, 0.22)),
    url('../images/footer-img.jpg') center/cover no-repeat;

  /* background: linear-gradient(135deg, rgba(5, 10, 20, 0.85), rgba(10, 18, 34, 0.85) 45%, rgba(0, 0, 0, 0.85)), url('../images/footer-img.jpg') center/cover no-repeat; */

  color: white;
  padding: 72px 5% 0;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.28), rgba(8, 14, 28, 0.42));
  pointer-events: none;
}

footer>* {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.footer-logo-img {
  /* width: 200px; */
  height: 140px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.footer-logo-img img {
  max-height: 114px;
  object-fit: contain;
}

.footer-logo-wrap span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.footer-brand>p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-left: 0;
  margin-bottom: 20px;
  /*justify-content: center;*/
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.04);
}

.social-link:hover {
  background: var(--orange);
  color: white;
}

.footer-col h4 {
  font-family: 'Cabinet Grotesk Regular';
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-col h4 span {
  color: #ff8314;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.contact-item {
  display: flex;
  gap: 15px;
  /* align-items: baseline; */
  margin-bottom: 25px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item p {
  font-size: 1.2rem;
  color: white;
  line-height: 1.5;
}

.contact-item a {
  color: #fff;
  text-decoration: none
}

.contact-item a:hover {
  color: var(--orange)
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyRight {
  display: flex;
  justify-content: space-between
}

.copyRight a {
  color: #fff;
  text-decoration: none
}

.copyRight a:hover {
  color: var(--orange)
}

/* ===== FLOATING BUTTONS ===== */
.wa-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wapulse 2.2s ease infinite;
}

@keyframes wapulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7
  }

  60% {
    transform: scale(1.55);
    opacity: 0
  }
}

.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  opacity: 0;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}















/* =============================================
   ABOUT US PAGE
   ============================================= */

/* --- Inner Banner (about) --- */
.inner-banner {
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.about-banner {
  background-image: url('../images/slide1.jpg');
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 39, 79, 0.68);
}

.inner-banner .container {
  position: relative;
  z-index: 1;
  padding: 145px 15px 45px;
}

.inner-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  font-family: 'Cabinet Grotesk Bold';
  margin: 0;
}

.inner-banner h1 span {
  color: var(--orange);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

/* --- Who We Are section --- */
.about-who {
  /*padding: 96px 5%;*/
  background: var(--white);
}

.about-who-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;

}

.about-who-inner p,
.about-content p {
  padding-bottom: 15px;
}

/*
.about-who-content h2,
.about-who-title {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-who-content h2 span,
.about-who-title span {
  color: var(--orange);
}
*/

.about-who-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 12px;
}


.about-who-image {
  position: relative;
}

.about-who-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  max-height: 480px;
}

.about-trust-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: white;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-trust-badge-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-trust-badge-text strong {
  display: block;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.about-trust-badge-text span {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
}

/* --- Stats (about page, navy bg) --- */
.about-stats {
  background: var(--navy);
  padding: 56px 5%;
}

.about-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

.about-stats-inner .stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  position: relative;
}

.about-stats-inner .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.about-stats-inner .stat-number {
  color: white;
}

.about-stats-inner .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Vision & Mission --- */
.about-vm {
  /* padding: 96px 5%;*/
  background: var(--off-white);
}



.about-vm-header {
  text-align: center;
  margin-bottom: 60px;
}

/*.about-vm-header h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}

.about-vm-header h2 span {
  color: var(--orange);
}*/

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.vm-card-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 20px 0 100%;
}

.vm-card-deco.navy {
  background: linear-gradient(135deg, rgba(9, 39, 79, 0.05), transparent);
}

.vm-card-deco.orange {
  background: linear-gradient(135deg, rgba(232, 108, 44, 0.05), transparent);
}

.vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.vm-icon.navy-bg {
  background: linear-gradient(180deg, #000 0%, #4c4c4c 100%);
}

.vm-icon.orange-bg {
  background: linear-gradient(180deg, #ff8314 0%, #d64e19 100%);
}

.vm-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.vm-label.navy-text {
  color: var(--navy);
}

.vm-label.orange-text {
  color: var(--orange);
}

.vm-card h3 {
  font-size: 1.6rem;
  line-height: 1.25;
}

/*.vm-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.vm-card p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}*/

/* --- Core Values --- */
.about-values {
  /*padding: 96px 5%;*/
  background: radial-gradient(circle at top center, rgba(235, 89, 25, 0.08), transparent 42%), linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.about-values-inner {

  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.about-values-heading {
  position: sticky;
  top: 120px;
}

.about-values-heading h2 {

  margin-bottom: 24px;
}


.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.value-card:hover {
  transform: translateX(6px);
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(9, 39, 79, 0.08);
}

.value-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #000 0%, #4c4c4c 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon i {
  color: #fff;
  font-size: 30px;
}

.value-icon i {
  font-size: 30px;
  color: #fff;
}

/*
.value-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
*/
/*.value-card p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}*/

/* --- Industries --- */
.about-industries {
  /*padding: 96px 5%;*/
  background: var(--off-white);
}

.about-industries-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.about-industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-industries-header h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}

.about-industries-header h2 span {
  color: var(--orange);
}

.about-industries-header p {
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.75;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--navy);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, #143B71, #1559B5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.about-industries-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- Minerals Page Clean Content-First Design --- */
.minerals-page {
  padding: 80px 0;
  background: var(--white);
}

.mineral-card-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
  padding: 40px;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s;
}

.mineral-card-row:hover {
  border-color: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.mineral-card-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image Side (40%) */
.mineral-image-side {
  flex: 0.4;
  min-width: 0;
}

.mineral-image-side img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Content Side (60%) */
.mineral-content-side {
  flex: 0.6;
  min-width: 0;
}

.m-badge-small {
  display: inline-block;
  padding: 4px 12px;
  background: #f3f3f3;
  color: #666;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mineral-content-side h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.mineral-content-side h2 span {
  color: var(--orange);
}

.m-desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.m-desc:last-of-type {
  margin-bottom: 28px;
}

/* Inquire Button */
.btn-wa-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-wa-alt:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}



/* =============================================
   STRENGTHS PAGE
   ============================================= */
.strengths-page {
  padding: 90px 0;
  background: #fff;
}

.strengths-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.strengths-intro h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.strengths-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strength-item {
  background: var(--off-white);
  padding: 50px 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
}

.strength-item:hover {
  background: #fff;
  border-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(9, 39, 79, 0.1);
}

.strength-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.strength-icon svg {
  color: var(--orange);
}

.strength-item h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.strength-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .strengths-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .strengths-showcase {
    grid-template-columns: 1fr;
  }

  .strengths-intro h2 {
    font-size: 2.2rem;
  }

  .strengths-page {
    padding: 40px 0;
  }

}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page {
  padding: 80px 0;
  background: #fff;
}

.gallery-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 39, 79, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(232, 108, 44, 0.4);
  z-index: 5;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.4rem;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-overlay h4 {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery-grid-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .gallery-card {
    height: 170px;
  }

  .gallery-page {
    padding: 40px 0;
  }
}

/* =============================================
   UNIFIED CONTACT PAGE
   ============================================= */
.contact-main {

  background: url(../images/bg-about.jpg) 0 0 repeat;
}

.contact-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-details {
  flex: 0.8;
}

.contact-title {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-title span {
  color: var(--orange);
}

.contact-form-side {
  flex: 1.2;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.detail-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #000 0%, #4c4c4c 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  color: #fff;
  font-size: 1.3rem;
}




.detail-text a {
  font-size: 1.15rem;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.detail-text a:hover {
  color: var(--orange);
}

.form-title {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 30px;
}

.contact-form-side form {
  display: grid;
  gap: 20px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-side input,
.contact-form-side select,
.contact-form-side textarea {
  width: 100%;
  padding: 18px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
  border-color: var(--navy);
  background: #fff;
  outline: none;
  box-shadow: 0 10px 30px rgba(9, 39, 79, 0.05);
}

@media (max-width: 1024px) {


  .contact-details,
  .contact-form-side {
    flex: 1;
    width: 100%;
  }

  .contact-form-side {
    padding: 40px 25px;
  }
}

/* --- intlTelInput styling fixes --- */
.iti {
  width: 100%;
  display: block;
  margin-bottom: 0;
}

.iti__flag-container {
  z-index: 5;
}

.iti input,
.iti input:focus {
  padding-left: 95px !important;
}

.form-group .iti__flag-container {
  left: 0 !important;
}

.contact-form-side .iti input {
  padding-left: 95px !important;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.contact-box .iti input {
  padding-left: 95px !important;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid #d4d7df;
}



/* ===== OWL CAROUSEL CUSTOM STYLING ===== */
.product-owl-carousel {
  margin-top: 40px;
}

.product-owl-carousel .owl-stage-outer {
  /*overflow: visible !important; */
  /* Optional: if you want transitions or cards to not be clipped, but overflow: hidden is standard for slider. Let's keep it overflow: hidden or visible depending on design. Since there's card shadow and animation, let's use standard owl carousel visible container or hidden. Default is hidden. Let's keep default. */
}

/* Override default Owl Carousel dots styles to match banner dots */
.product-owl-carousel.owl-theme .owl-dots {
  margin-top: 40px !important;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
}


/* Style the nav arrows to match design or hide if not needed */
.product-owl-carousel.owl-theme .owl-nav {
  margin-top: 20px;
}

.product-owl-carousel.owl-theme .owl-nav [class*='owl-'] {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  margin: 0 8px !important;
  padding: 0 !important;
  font-size: 0.9rem !important;
}

.product-owl-carousel.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* ==============================================
   INNER PAGES - SHARED STYLES
   ============================================== */

/* ---- Breadcrumb Bar ---- */
.breadcrumb-bar {
  background: var(--off-white);
  padding: 14px 5%;
  border-bottom: 1px solid var(--light-gray);
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #888;
}

.breadcrumb-bar a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar a:hover {
  color: var(--orange);
}

.breadcrumb-bar i {
  font-size: 0.7rem;
  color: #bbb;
}

.breadcrumb-bar span {
  color: var(--orange);
  font-weight: 600;
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.banner-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0.85;
}

.banner-breadcrumb a:hover {
  color: var(--orange);
  opacity: 1;
}

.banner-breadcrumb i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.banner-breadcrumb span {
  color: var(--orange);
  font-weight: 600;
}

/* ---- Inner Banner Variants ---- */
.products-banner {
  background-image: url('../images/slide1.jpg');
}

.services-banner {
  background-image: url('../images/slide3.jpg');
}

.industries-banner {
  background-image: url('../images/industrial4.jpg');
}

.contact-banner {
  background-image: url('../images/bg-form.jpg');
}

/* ---- Inner CTA Section ---- */
.inner-cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #d04a11 100%);
  text-align: center;
}

.inner-cta-box {
  max-width: 860px;
  margin: 0 auto;
}

.inner-cta-box h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.inner-cta-box h2 span {
  color: var(--navy);
}

.inner-cta-box p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  font-family: 'Cabinet Grotesk Medium';
}

.btn-white:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 1.2rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabinet Grotesk Medium';
}

.btn-white-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

/* ==============================================
   ABOUT US PAGE — ADDITIONAL
   ============================================== */

/* Why Choose Us */
.about-why-section {
  background: url(../images/bg-about.png) 0 0 repeat;

}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(9, 39, 79, 0.10);
  border-color: var(--orange);
}

.why-icon {
  width: 68px;
  height: 68px;
  /*background: linear-gradient(135deg, var(--navy), #2D4769);*/
  background: rgba(230, 126, 34, .1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.why-icon i {
  color: var(--orange);
  font-size: 40px;
}

/*.why-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { font-size: 1.05rem; color: #555; line-height: 1.65; margin: 0; }*/
@media(max-width:1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   PRODUCTS PAGE
   ============================================== */

.products-intro-section {

  background: url(../images/bg-about.jpg) 0 0 repeat;
}

.prod-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

.prod-intro-text .section-tag {
  margin-bottom: 14px;
}

.prod-intro-text h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.prod-intro-text h2 span {
  color: var(--orange);
}

.prod-intro-text p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.prod-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pi-stat {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.pi-stat:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.pi-stat-num {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.pi-stat-label {
  font-size: 1rem;
  color: #777;
}

.products-page-section {
  background: #fff;
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.product-page-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}

.product-page-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  transform: translateY(-6px);
  border-color: var(--orange);
}

.ppc-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
}

.ppc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.product-page-card:hover .ppc-img img {
  transform: scale(1.06);
}

.ppc-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ppc-cat {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 8px;
}

.ppc-body h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ppc-body p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ppc-features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.ppc-features li {
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ppc-features li i {
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ppc-body .btn-navy {
  margin-top: auto;
  align-self: flex-start;
}

/* Quality Section */
.quality-section {
  background: var(--off-white);
}

.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quality-steps {
  margin-top: 36px;
}

.qs-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.qs-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #000 0%, #4c4c4c 100%);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1rem;
  flex-shrink: 0;
}

.qs-text h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.qs-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.quality-img {
  position: relative;
}

.quality-img img {
  width: 100%;
  border-radius: 20px;
  height: 500px;
  object-fit: cover;
  display: block;
}

.quality-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.quality-badge i {
  font-size: 2rem;
  color: var(--orange);
}

.quality-badge strong {
  display: block;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.2rem;
}

.quality-badge span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

@media(max-width:1024px) {


  .quality-img img {
    height: 320px;
  }

  .quality-badge {
    left: 10px;
    bottom: 10px;
  }

  .ppc-body {
    padding: 20px;
  }
}

@media(max-width:900px) {
  .quality-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width:768px) {
  .prod-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ppc-features {
    grid-template-columns: 1fr;
  }

  .prod-intro-stats {
    grid-template-columns: 1fr 1fr;
  }
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}


}

/* ==============================================
   SERVICES PAGE
   ============================================== */

.services-intro {
  background: url(../images/bg-about.jpg) 0 0 repeat;
}

.serv-intro-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.serv-intro-left h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.serv-intro-left h2 span {
  color: var(--orange);
}

.serv-intro-left p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 22px;
}

.serv-highlights {
  margin-bottom: 28px;
}

.sh-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #333;
  padding: 7px 0;
  border-bottom: 1px solid var(--light-gray);
}

.sh-item:last-child {
  border: none;
}

.sh-item i {
  color: var(--orange);
}

.serv-intro-right {
  position: relative;
}

.serv-intro-right img {
  width: 100%;
  border-radius: 20px;
  height: 480px;
  object-fit: cover;
  display: block;
}

.serv-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(235, 89, 25, 0.25);
}

.serv-badge strong {
  display: block;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1rem;
}

.serv-badge span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.core-services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(9, 39, 79, 0.09);
  border-color: var(--navy);
}

.sc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #000 0%, #4c4c4c 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.sc-icon i {
  color: #fff;
  font-size: 1.5rem;
}

/*.service-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 18px; }*/
.sc-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.sc-list li {
  font-size: 1rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Cabinet Grotesk Medium';
  font-size: 1rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.sc-link:hover {
  color: var(--orange);
  gap: 14px;
}

/* Process Section */
.process-section {
  background: url(../images/bg-about.png) 0 0 repeat;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.ps-circle {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1rem;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step:hover .ps-circle {
  background: var(--orange);
}

.ps-content h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.ps-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
}

@media(max-width:1100px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .serv-badge {
    right: 10px;
    bottom: 10px;
  }
}

@media(max-width:640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   INDUSTRIES PAGE
   ============================================== */

.industries-intro {
  background: #fff;
}

.ind-intro-wrap {
  display: grid;
  /*grid-template-columns: 1.3fr 1fr;
  gap: 80px;*/
  align-items: center;
}

.ind-intro-text h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.ind-intro-text h2 span {
  color: var(--orange);
}

.ind-intro-text p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.ind-intro-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ind-stat-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.ind-stat-card:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}

.isc-icon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.isc-icon i {
  color: var(--orange);
  font-size: 1.3rem;
}

.isc-num {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}

.isc-label {
  font-size: 1rem;
  color: #777;
}

.industries-detailed {
  background: var(--off-white);
}

.ind-detail-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding: 48px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.ind-detail-row:last-child {
  margin-bottom: 0;
}

.ind-detail-row:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border-color: var(--orange);
}

.ind-detail-row-rev {
  grid-template-columns: 1.2fr 1fr;
}

.ind-detail-row-rev .ind-detail-img {
  order: 2;
}

.ind-detail-row-rev .ind-detail-content {
  order: 1;
}

.ind-detail-img {
  position: relative;
}

.ind-detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.ind-detail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(235, 89, 25, 0.35);
}

.ind-detail-badge i {
  color: #fff;
  font-size: 1.3rem;
}

.ind-cat-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 8px;
}

.ind-detail-content h2 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ind-detail-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 24px;
}

.ind-specs {
  margin-bottom: 28px;
}

.ind-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ind-spec:last-child {
  border: none;
}

.ind-spec i {
  color: var(--orange);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.other-industries {
  background: #fff;
}

.other-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.oi-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}

.oi-card:hover {
  background: #fff;
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.oi-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #ff8314 0%, #d64e19 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.oi-icon i {
  color: #fff;
  font-size: 1.3rem;
}

.oi-card h3 {
  font-family: 'Cabinet Grotesk Bold';
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.oi-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media(max-width:1100px) {
  .ind-intro-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }


  .ind-detail-row-rev .ind-detail-img,
  .ind-detail-row-rev .ind-detail-content {
    order: unset;
  }

  .ind-detail-row {
    padding: 28px;
  }

 
}

@media(max-width:992px) {
  .ind-detail-row,
  .ind-detail-row-rev {
    grid-template-columns: 1fr;
    gap: 36px;
  }
   .other-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .other-ind-grid {
    grid-template-columns: 1fr;
  }

  .ind-detail-img img {
    height: 220px;
  }
}

/* ==============================================
   CONTACT PAGE — ADDITIONAL
   ============================================== */

.contact-info-strip {
  background: #fff;
}

.cis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cis-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
  text-align: center;
}

.cis-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.cis-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #ff8314 0%, #d64e19 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.cis-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.cis-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.cis-card a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.cis-card a:hover {
  color: var(--orange);
}

.map-section {
  background: #fff;
}

.map-section iframe {
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

@media(max-width:1024px) {
  .cis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .cis-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   RESPONSIVE MEDIA — INNER PAGES GLOBAL
   ============================================== */

@media(max-width:768px) {

  /* .inner-cta-section { padding: 70px 5%; }*/
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-white,
  .btn-white-outline {
    width: 260px;
    text-align: center;
    justify-content: center;
  }

  /*.quality-section, .products-page-section, .products-intro-section { padding: 70px 5%; }*/
  /*.services-intro, .core-services, .process-section { padding: 70px 5%; }*/
  /*.industries-intro, .industries-detailed, .other-industries { padding: 70px 5%; }*/

}


/* ===== PRODUCT TAG (carousel) ===== */
.product-tag {
  position: absolute;
  top: 34px;
  left: 34px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 5px;
  z-index: 2;
}





/* ===== RESPONSIVE ===== */
@media (max-width: 1599px) {
  section {
    padding: 60px 35px;
  }
}

@media (max-width: 1199px) {

  nav,
  nav.scrolled {
    margin: 0;
    padding: 10px 20px;
    border-radius: 0
  }

  .contact-box {
    padding: 5%;
  }

  .footer-logo-img img {
    max-height: 70px;

  }

  .cert-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .cert-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--orange);
  }

  .cert-card {

    padding: 15px;

  }

/*  .nav-logo-img img {
    width: 320px;
  }*/
.nav-links {  
  gap: 20px;  
}

}

/* --- About page responsive --- */
@media (max-width: 1024px) {


  .about-values-heading {
    position: static;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-showcase {
    /* padding: 74px 5% 80px; */
  }

  .industries-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .about-trust-badge {
    left: 0;
    bottom: -20px;
    right: 0;
    width: fit-content;
  }

  .stats-inner {
    gap: 5px;
  }

  .stat-item {
    min-height: auto;
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 600;
  }

  .nav-logo-img img {
    width: 120px;
  }

  .nav-links {
    gap: 20px
  }




  /*inner*/

  .mineral-card-row,
  .mineral-card-row:nth-child(even) {
    flex-direction: column;
    padding: 25px;
    gap: 30px;
  }

  .mineral-image-side,
  .mineral-content-side {
    flex: 1;
    width: 100%;
  }

  .mineral-image-side img {
    height: 280px;
  }

  .mineral-content-side h2 {
    font-size: 2rem;
  }

  .btn-wa-alt {
    width: 100%;
    justify-content: center;
  }


}

@media (max-width: 1023px) {
  .contact-box {
    padding: 5%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero {
    height: auto;
  }


  section,
  .stats {
    padding: 40px 15px;
  }

  .minerals-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 900px) {

  .nav-center,
  .nav-cta {
    display: none;
  }

  .mobile-menu-cta .nav-cta {
    display: block
  }

  .hamburger {
    display: flex;
  }

  .about-img-badge {
    right: -8px;
  }

  .about-box {
    right: auto;
    left: -8px;
  }

  .nav-links {
    gap: 30px;
  }


  .nav-logo-img img {
    max-height: 60px
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image-box img {
    height: 300px;
  }

  .strengths-grid {
    grid-template-columns: 1fr 1fr;
  }


  .about-image-box img {
    height: auto;
    width: 100%
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item:not(:last-child)::after {
    width: 0px;
  }

  .about-stats-inner {
    flex-direction: column;
  }

  .about-stats-inner .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-who-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-logo-img img {
    max-height: 70px;

  }

  .products-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .serv-intro-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cert-card {

    padding: 25px;

  }

  .contact-wrapper {
    flex-direction: column;
    gap: 60px;
  }

}

@media (max-width: 768px) {
  :root {
    --nav-h: 56px;
  }

  #main-nav {

    padding: 5px 15px;
  }

  .nav-center,
  .nav-cta {
    display: none;
  }

  .mobile-menu-cta .nav-cta {
    display: block
  }

  .hamburger {
    display: flex;
  }

  .stats-inner {
    flex-direction: column;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    max-width: 100%;
  }

  .phone-row {
    flex-direction: column;
    gap: 0;
  }

  .phone-row .form-group:first-child {
    flex: auto;
  }

  .hero-arrow {
    display: none;
  }

  .hero-slide-content h2,
  .hero-slide-content h1 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .about-badges {
    grid-template-columns: 1fr 1fr;
  }

  .mineral-img {
    height: 220px;
  }

  .copyRight {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  /* Inner pages */


  .content-section {
    padding: 70px 5%;
    background: #f9f9f9;
  }

  .content-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .content-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--navy);
  }

  .content-section h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--navy);
  }

  .content-section p,
  .content-section ul,
  .content-section li {
    color: var(--gray);
    line-height: 1.75;
  }

  .content-section ul {
    list-style: disc;
    padding-left: 1.35rem;
    margin-bottom: 20px;
  }

  .page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 28px;
  }

  .page-grid article {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  }

  .page-grid article h3 {
    color: var(--navy);
    margin-bottom: 8px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 24px;
  }

  .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
  }

  .contact-form-inner {
    display: grid;
    gap: 14px;
    margin-top: 20px;
  }

  .contact-form-inner label {
    font-weight: 600;
    margin-top: 8px;
  }

  .contact-form-inner input,
  .contact-form-inner textarea {
    width: 100%;
    border: 1px solid #d3d6dc;
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 1rem;
  }

  .contact-form .contact-info {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  .about-img-badge {
    display: none;
  }

  .contact-bg {
    background-size: 100% 100%;
  }

  .contact-section {
    padding: 64px 5%;
  }


  /*inner */

  .inner-banner {
    min-height: 220px;
  }

  .inner-banner .container {
    padding: 115px 15px 30px;
  }

  .about-stats-inner {
    flex-direction: column;
  }

  .about-stats-inner .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-stats-inner .stat-item:not(:last-child)::after {
    display: none;
  }


  .about-who-btns {
    flex-direction: column;
  }

  .about-who-btns a {
    text-align: center;
  }

  .vm-card,
  .value-card {
    padding: 20px;
  }

  .ppc-body {
    padding: 20px;
  }


}


@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-showcase {
    padding: 64px 5% 70px;
  }

  .industries-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-showcase-card {
    padding: 12px 12px 16px;
  }

  .industry-showcase-media img {
    aspect-ratio: 1.75 / 1;
  }

  .about-trust-badge {
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .about-who-image {
    overflow: visible;
  }


  /*inner*/
  .minerals-page {
    padding: 40px 0
  }


  .about-vm-grid {
    grid-template-columns: 1fr;
  }

  .about-values-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }


  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* 1st column full width */
  .footer-top> :nth-child(1) {
    grid-column: 1 / -1;
  }

  /* 2nd & 3rd columns in same row */
  .footer-top> :nth-child(2),
  .footer-top> :nth-child(3) {
    grid-column: auto;
  }

  /* 4th column full width */
  .footer-top> :nth-child(4) {
    grid-column: 1 / -1;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 30px;
  }

}





@media (max-width: 540px) {

  .minerals-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  /*.footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }*/
  .footer-bottom {
    padding: 30px 30px 30px 0;
  }

  .about-badges {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 48px 15px 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a {
    width: 210px;
    text-align: center;
  }

  .hero-slide-content h2,
  .hero-slide-content h1 {
    font-size: 1.75rem;
  }

  .strength-card h3 {
    font-size: 1.6rem;
  }

  .footer-logo-img {
    width: 100%;
  }

/*  .social-links {
    justify-content: center;
  }*/


}


@media (max-width: 480px) {
  .captcha-row {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-img-wrap {
    justify-content: center;
  }

  .captcha-img {
    height: 44px;
  }
}

@media (max-width:414px) {

  .stats-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/*furnace-oil */


.product-detail-content h3 {
  font-size: 1.6rem;
  line-height: 1.25;
}

.product-features-list {
  list-style: none;
  margin: 20px 0 35px;
}

.product-features-list li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
  /*display: flex;
  align-items: flex-start;*/
  gap: 12px;
  position: relative;padding-left: 26px;
}

.product-features-list li i {
  color: var(--orange);
  margin-top: 5px;
  flex-shrink: 0;
  position: absolute;
  left: 0;

}


/* Specifications Table */

.product-specs-section h3 {
  font-family: 'Cabinet Grotesk Bold', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-specs-section h3 span {
  color: var(--orange);
  font-weight: normal;
  font-size: 1.5rem;
}


.product-specs-section p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .specs-table {
    min-width: 650px;
  }
}


/*.product-specs-section p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}*/

.specs-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Cabinet Grotesk Bold', sans-serif;
  font-weight: normal;
  text-align: left;
  padding: 16px 20px;
  font-size: 1.05rem;
}

.specs-table th:first-child {
  border-top-left-radius: 8px;
}

.specs-table th:last-child {
  border-top-right-radius: 8px;
}

.specs-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  color: #444;
  font-size: 1.05rem;
}

.specs-table tr:hover {
  background: #fff9f6;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td strong {
  color: var(--navy);
}

/* Responsive details */
@media(max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-sticky-box {
    position: static;
  }
  
  .sidebar-product-img img {
    height: 340px;
  }
}

@media(max-width: 640px) {
  .applications-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .sidebar-product-img img {
    height: 240px;
  }
}

.tagline {
    font-size: 28px;
    padding-bottom: 10px;
    line-height: 1.5;
    font-weight: 600;
}
.tagline span {
    color: #ff8314;
   
}

.tagline-p{font-size: 18px !important;}