:root {
  --primary-color: #0A4D8C;
  --orange-color: #FF7A00;
  --steel-gray-color: #1E1E1E;
  --iron-gray-color: #2F2F2F;
  --light-color: #F3F4F6;
  --light-blue-color: #4DA3FF;
  --primary-color-rgb: 10, 77, 140;
  --orange-color-rgb: 255, 122, 0;
  --steel-gray-color-rgb: 30, 30, 30;
  --iron-gray-color-rgb: 47, 47, 47;
  --light-color-rgb: 243, 244, 246;
  --light-blue-color-rgb: 77, 163, 255;
  --font-head: Montserrat, sans-serif;
  --font-text: Inter, sans-serif;
  --section-padding: clamp(4rem, 6vw, 6rem);
  --border-radius: 16px;
  --border-radius-lg: 32px;
  --border-radius-sm: 8px;
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  --box-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.55);
  --box-shadow-sm: 0 5px 10px rgba(0, 0, 0, 0.35);
}

.text-cus-primary { color: var(--primary-color) !important; }
.text-cus-orange { color: var(--orange-color) !important; }
.text-cus-steel-gray { color: var(--steel-gray-color) !important; }
.text-cus-light { color: var(--light-color) !important; }
.text-cus-white { color: #fff !important; }
.bg-cus-primary { background-color: var(--primary-color) !important; }
.bg-cus-orange { background-color: var(--orange-color) !important; }
.bg-cus-light { background-color: var(--light-color) !important; }
.bg-cus-steel-gray { background-color: var(--steel-gray-color) !important; }

.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.text-eyebrow {
  display: inline-block;
  padding: 6px 15px;
  background: var(--steel-gray-color);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--light-color);
  border: 1px solid rgba(var(--steel-gray-color-rgb), 0.08);
}

.text-highlight {
  background: linear-gradient(90deg, var(--primary-color), var(--light-blue-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.text-subheadline {
  margin-bottom: 1rem;
  color: rgba(var(--steel-gray-color-rgb), 0.55);
  font-weight: 600;
}

.text-small { font-size: 0.875rem; }

* { box-sizing: border-box; }

body {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--steel-gray-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body ::selection {
  background: var(--orange-color);
  color: var(--light-color);
}

a { text-decoration: none; color: var(--primary-color); transition: color 0.3s; }
a:hover { color: var(--orange-color); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 1rem 0;
}

h1 { font-size: clamp(2.2rem, 2.2rem + (3rem - 2.2rem) * (100vw - 575px) / (1400px - 575px), 3rem); }
h2 { font-size: clamp(1.8rem, 1.8rem + (2.5rem - 1.8rem) * (100vw - 575px) / (1400px - 575px), 2.5rem); }
h3 { font-size: clamp(1.4rem, 1.4rem + (2rem - 1.4rem) * (100vw - 575px) / (1400px - 575px), 2rem); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader .gear {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader .gear::before,
.preloader .gear::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: var(--orange-color);
  border-bottom-color: var(--orange-color);
  animation: spin 3s linear infinite;
}

.preloader .gear::after {
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  animation-direction: reverse;
}

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

/* Scroll Top */
.scroll-top {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  border-radius: 50px;
  background-color: rgba(var(--primary-color-rgb), 0.55);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background-color 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 980;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background-color: var(--orange-color); }

/* Header */
.header-area {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.header-area a { color: var(--light-color); }
.header-area a:hover { color: var(--orange-color); }

/* Navigation */
.nav-main {
  transition: top 0.3s;
  z-index: 990;
}

.nav-main.hide {
  top: -6rem;
}

.nav-main .navbar-brand.title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-main .brand-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}

.nav-main .navbar-brand.title:hover .brand-logo {
  transform: scale(1.05);
}

.nav-main .site-title {
  font-size: 1.3rem;
  color: var(--orange-color);
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 0 0.25rem;
}

.nav-main .sub-site-title {
  font-size: 0.8rem;
  color: rgba(var(--iron-gray-color-rgb), 0.55);
  margin: 0;
}

.nav-main .navbar-center .nav-link {
  position: relative;
  color: var(--primary-color);
  font-weight: 400;
  padding: 1.5rem 0.8rem !important;
}

.nav-main .navbar-center .nav-item:hover .nav-link,
.nav-main .navbar-center .nav-item .nav-link.active {
  color: var(--orange-color);
}

.nav-main .navbar-toggler {
  color: var(--orange-color);
  border: 3px solid var(--primary-color);
}

.nav-main .nav-btn .nav-link {
  background-color: var(--orange-color);
  color: #fff !important;
  padding: 1rem 1.5rem !important;
}

.nav-main .nav-btn .nav-link:hover { color: rgba(255, 255, 255, 0.85) !important; }

@media (min-width: 992px) {
  .nav-main .navbar-center .nav-item:hover .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    border-bottom: 2px solid var(--orange-color);
  }
}

@media (max-width: 991px) {
  .nav-main .offcanvas { background-color: rgba(var(--primary-color-rgb), 0.92); }
  .nav-main .offcanvas .offcanvas-title,
  .nav-main .offcanvas .nav-link { color: var(--light-color); }
}

/* Buttons */
.btn-cus {
  position: relative;
  padding: 0.5rem 2rem;
  border: none;
  background-color: transparent;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.btn-cus-gear {
  background-color: var(--orange-color);
  border: 1px solid var(--orange-color);
  padding: 0.5rem 2rem 0.5rem 3.5rem;
  color: #fff;
  border-radius: 3rem;
  margin-left: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

.hero .overlay-text .btn-cus-gear {
  margin-left: 0;
}

.btn-cus-gear::before {
  font-family: "bootstrap-icons";
  content: "\f3e5";
  position: absolute;
  font-size: 3.5rem;
  color: var(--orange-color);
  left: -1.1rem;
  line-height: 0;
  top: 1.2rem;
  animation: spin 50s linear infinite;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.btn-cus-gear:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.btn-cus-outline-circle {
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  border-radius: 3rem;
  color: var(--primary-color);
  transition: all 0.3s;
}

.btn-cus-outline-circle:hover {
  border-color: var(--orange-color);
  color: var(--orange-color);
}

.btn-cus-gradient {
  border: 0;
  color: #eee;
  border-radius: 3rem;
  overflow: hidden;
  z-index: 0;
}

.btn-cus-gradient::before,
.btn-cus-gradient::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s;
}

.btn-cus-gradient::before {
  background-image: linear-gradient(90deg, var(--primary-color), var(--light-blue-color));
}

.btn-cus-gradient::after {
  background-image: linear-gradient(90deg, var(--light-blue-color), var(--orange-color));
  opacity: 0;
}

.btn-cus-gradient:hover { color: #fff; }
.btn-cus-gradient:hover::before { opacity: 0; }
.btn-cus-gradient:hover::after { opacity: 1; }

.btn-cus-light-led {
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue-color));
  box-shadow: 0 10px 30px rgba(var(--light-blue-color-rgb), 0.35);
  transition: box-shadow 0.35s;
}

.btn-cus-light-led:hover {
  box-shadow: 0 14px 40px rgba(var(--light-blue-color-rgb), 0.5);
  color: #f1f2f3;
}

.btn-cus-text-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--orange-color);
}

.btn-cus-text-cta i { transition: transform 0.3s; }
.btn-cus-text-cta:hover i { transform: translateX(5px); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  height: 87vh;
  min-height: 600px;
}

.hero .layer {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero .layer1 {
  background-image: url("https://images.unsplash.com/photo-1622050756792-5b1180bbb873?w=1920&q=80");
  z-index: 1;
}

.hero .layer2 {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.75), rgba(var(--steel-gray-color-rgb), 0.6));
  z-index: 2;
}

.hero .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 10;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  width: 85%;
  max-width: 900px;
}

.hero .overlay-text.fade-in,
.hero .overlay-text.fade-in.visible {
  transform: translate(-50%, -50%);
}

.scroll-cta {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  bottom: 20px;
  z-index: 99;
  width: 100px;
  height: 100px;
  cursor: pointer;
  display: none;
}

.scroll-cta .mouse {
  width: 28px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
  background-color: rgba(var(--orange-color-rgb), 0.55);
}

.scroll-cta .mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

.scroll-cta .scroll-arrow {
  font-size: 1.5rem;
  margin-top: 10px;
  animation: bounce 1.5s infinite;
  color: var(--orange-color);
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.5; transform: translate(-50%, 10px); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (min-width: 992px) {
  .hero { min-height: 800px; }
  .hero .overlay-text { width: 70%; }
  .scroll-cta { display: block; }
}

/* About */
.cmb-about {
  background-color: var(--iron-gray-color);
  position: relative;
  overflow: hidden;
}

.cmb-about .about-shell {
  background-image: linear-gradient(180deg, rgba(var(--light-color-rgb), 0.9), rgba(var(--light-color-rgb), 0.75));
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(var(--primary-color-rgb), 0.04);
  position: relative;
  z-index: 1;
}

.cmb-about .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cmb-about .chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(180deg, rgba(var(--light-color-rgb), 0.6), rgba(var(--light-color-rgb), 0.12));
  border: 1px solid rgba(var(--light-color-rgb), 0.06);
  color: var(--steel-gray-color);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cmb-about .chip:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-sm);
}

.cmb-about .chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary-color), var(--light-blue-color));
}

.cmb-about .about-right {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: rgba(var(--iron-gray-color-rgb), 0.55);
  box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.04);
}

.cmb-about .visual-photo img {
  width: 100%;
  border-radius: var(--border-radius);
  display: block;
}

.cmb-about .counters {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 12px;
  z-index: 4;
  transform: translateX(-50%);
}

.cmb-about .counter {
  background: rgba(var(--light-color-rgb), 0.16);
  padding: 10px 12px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(var(--light-color-rgb), 0.14);
  color: var(--light-color);
  min-width: 100px;
  text-align: center;
}

.cmb-about .counter .num {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 800;
  display: block;
}

.cmb-about .counter .label {
  opacity: 0.85;
  font-size: 0.875rem;
}

.cmb-about .bg-gear {
  position: absolute;
  right: -30px;
  bottom: -30px;
  animation: spin 30s linear infinite;
  z-index: 0;
  opacity: 0.15;
  font-size: 200px;
  color: var(--orange-color);
}

/* Services */
.cmb-services {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(var(--primary-color-rgb), 0.08), transparent),
    radial-gradient(800px 400px at 90% 90%, rgba(var(--orange-color-rgb), 0.05), transparent),
    var(--steel-gray-color);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.cmb-services .services-wrap {
  background: linear-gradient(180deg, rgba(var(--light-color-rgb), 0.015), transparent);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(var(--light-color-rgb), 0.03);
  box-shadow: var(--box-shadow-lg);
}

.service-card {
  background: rgba(var(--light-color-rgb), 0.03);
  border-radius: var(--border-radius);
  min-height: 170px;
  border: 1px solid hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(6px);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: visible;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--box-shadow);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  background: rgba(var(--light-color-rgb), 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--light-color-rgb), 0.04);
}

.service-card h3 { font-size: 1.3rem; font-weight: 700; }
.service-card p { margin: 0; color: var(--light-color); font-size: 0.9rem; opacity: 0.85; }

.service-card.featured {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card.featured .icon {
  width: 72px;
  height: 72px;
  font-size: 2.5rem;
}

.cmb-services .decor-gear {
  position: absolute;
  right: -50px;
  bottom: -40px;
  opacity: 0.06;
  width: 330px;
  pointer-events: none;
  color: var(--light-color);
}

/* Industries */
.cmb-industries { background-color: var(--light-color); overflow: hidden; }

.industry-card {
  border-radius: var(--border-radius);
  background-image: linear-gradient(to bottom left, var(--light-color), #fff);
  box-shadow: inset -2px 2px #fff, -20px 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  height: 100%;
}

.industry-card:hover { transform: translateY(-10px); }

.industry-card .industry-card-icon {
  font-size: 2.5rem;
  color: var(--orange-color);
  margin-bottom: 1rem;
  text-align: right;
}

.industry-card h3 { font-size: 1.3rem; color: var(--primary-color); }

/* Workflow */
.cmb-workflow {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(var(--primary-color-rgb), 0.08), transparent),
    radial-gradient(800px 400px at 90% 90%, rgba(var(--orange-color-rgb), 0.05), transparent),
    var(--steel-gray-color);
  color: var(--light-color);
}

.cmb-workflow .workflow-wrap {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(var(--light-color-rgb), 0.015), transparent);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(var(--light-color-rgb), 0.03);
  box-shadow: var(--box-shadow-lg);
  position: relative;
}

.cmb-workflow .steps-card {
  background: linear-gradient(180deg, rgba(var(--light-color-rgb), 0.02), rgba(var(--light-color-rgb), 0.01));
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cmb-workflow .timeline {
  position: relative;
  padding-left: 38px;
}

.cmb-workflow .timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(var(--light-blue-color-rgb), 0.12), rgba(var(--orange-color-rgb), 0.08));
}

.cmb-workflow .step {
  position: relative;
  padding: 18px 18px 18px 3.5rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(180deg, rgba(var(--light-color-rgb), 0.015), rgba(var(--light-color-rgb), 0.01));
  transition: transform 0.35s;
}

.cmb-workflow .step.active {
  background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 0.15), rgba(var(--primary-color-rgb), 0.05));
}

.cmb-workflow .step h4 { margin: 0 0 6px; font-size: 1.05rem; }
.cmb-workflow .step p { margin: 0; color: rgba(var(--light-color-rgb), 0.55); font-size: 0.93rem; }

.cmb-workflow .dot {
  position: absolute;
  left: 1rem;
  top: 22px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmb-workflow .dot .inner {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.cmb-workflow .panel-card {
  background: linear-gradient(180deg, rgba(var(--primary-color-rgb), 0.06), rgba(var(--primary-color-rgb), 0.02));
  border-radius: var(--border-radius);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
}

.cmb-workflow .progress-track {
  height: 8px;
  background: rgba(var(--light-color-rgb), 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.cmb-workflow .progress-fill {
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color), var(--orange-color));
  transition: width 0.7s cubic-bezier(0.2, 0.9, 0.25, 1);
}

.cmb-workflow .thumb-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--light-color-rgb), 0.04);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Quality */
.cmb-safety { background-color: var(--light-color); position: relative; }

.cmb-safety .safety-body {
  border-radius: var(--border-radius);
  background: rgba(var(--light-color-rgb), 0.1);
  border-top: 1px solid rgba(var(--light-color-rgb), 0.5);
  backdrop-filter: blur(15px);
  box-shadow: var(--box-shadow-sm);
}

.cmb-safety .list-unordered { list-style: none; margin: 0; padding: 0; }

.cmb-safety .list-unordered li {
  padding: 8px 0;
  clear: both;
}

.cmb-safety .list-unordered li::before {
  font-family: "bootstrap-icons";
  content: "\f272";
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--orange-color);
  float: left;
}

/* Why */
.cmb-wcu {
  background: linear-gradient(90deg, var(--steel-gray-color), var(--iron-gray-color));
  color: var(--light-color);
  overflow: hidden;
  position: relative;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.blueprint-card {
  position: relative;
  border: 1px solid var(--light-blue-color);
  background-color: rgba(var(--steel-gray-color-rgb), 0.75);
  overflow: hidden;
  transition: 0.35s;
  height: 100%;
  box-shadow: 0 0 0 1px rgba(var(--light-blue-color-rgb), 0.05), 0 20px 35px rgba(var(--steel-gray-color-rgb), 0.2);
}

.blueprint-card:hover {
  border-color: var(--light-blue-color);
  box-shadow: 0 0 12px rgba(var(--light-blue-color-rgb), 0.8), 0 12px 35px rgba(var(--light-blue-color-rgb), 0.25);
  transform: translateY(-6px);
}

.blueprint-card .icon-stamp {
  width: 68px;
  height: 68px;
  border: 2px solid var(--light-blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--light-blue-color);
  margin-bottom: 2rem;
  background: rgba(var(--light-blue-color-rgb), 0.05);
}

.blueprint-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--light-color); }
.blueprint-card p { font-size: 0.9rem; opacity: 0.8; color: var(--light-color); }

.blueprint-card .bp-line {
  height: 1px;
  width: 100%;
  background: repeating-linear-gradient(90deg, var(--light-blue-color) 0, var(--light-blue-color) 4px, transparent 4px, transparent 8px);
  opacity: 0.25;
  margin: 14px 0;
}

/* Products / Portfolio */
.cmb-portfolio { background-color: var(--light-color); }

.pf-item {
  display: flex;
}

.pf-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.pf-card:hover { box-shadow: var(--box-shadow-sm); }

.pf-card .pf-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.pf-card .pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.pf-card:hover .pf-thumb img { transform: scale(1.05); }

.pf-card .pf-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.pf-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  padding: 0 1.25rem;
  min-height: 3.25rem;
}

.pf-card .pf-desc {
  font-size: 0.9rem;
  color: rgba(var(--steel-gray-color-rgb), 0.75);
  padding: 0 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
  flex: 1;
  min-height: 4.2rem;
}

.pf-card .pf-tags {
  font-size: 0.875rem;
  color: rgba(var(--iron-gray-color-rgb), 0.55);
  padding: 0 1.25rem 1.25rem;
  margin-top: auto;
}

.pf-card .pf-chip {
  position: absolute;
  top: 60%;
  right: 16px;
  background: rgba(var(--orange-color-rgb), 0.55);
  backdrop-filter: blur(10px);
  color: var(--light-color);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  z-index: 10;
}

.filter-btn {
  border: 1px solid var(--steel-gray-color);
  background: transparent;
  color: var(--steel-gray-color);
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Testimonials */
.cmb-testimonial {
  color: var(--light-color);
  overflow: hidden;
  background: var(--iron-gray-color);
}

.tst-card {
  background: rgba(var(--light-color-rgb), 0.03);
  border: 1px solid rgba(var(--light-color-rgb), 0.06);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  min-height: 220px;
  padding: 1.5rem;
  transition: transform 0.35s, box-shadow 0.35s;
}

.tst-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow);
}

.tst-card .tst-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(var(--light-color-rgb), 0.18);
  margin-bottom: 12px;
}

.tst-card .tst-name { font-weight: 700; font-size: 1.05rem; color: #fff; }
.tst-card .tst-role { font-size: 0.9rem; color: #cbd5df; opacity: 0.75; margin-bottom: 12px; }

.tst-card .tst-comment {
  position: relative;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.tst-card .tst-comment::before {
  font-family: "bootstrap-icons";
  content: "\f6b0";
  font-size: 2.5rem;
  position: absolute;
  left: -0.3rem;
  top: 1.2rem;
  color: rgba(var(--light-color-rgb), 0.15);
  line-height: 0;
}

/* CTA */
.cmb-cta {
  background: linear-gradient(to right, var(--orange-color) 50%, var(--primary-color) 50%);
  color: var(--light-color);
  overflow: hidden;
}

/* FAQs */
.cmb-faqs {
  background: linear-gradient(120deg, rgba(var(--light-blue-color-rgb), 0.05), rgba(var(--light-blue-color-rgb), 0.15));
  position: relative;
  overflow: hidden;
}

.accordion-cus .accordion-item {
  border: none;
  margin-bottom: 20px;
}

.accordion-cus .accordion-button {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: #111;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accordion-cus .accordion-button:not(.collapsed) { color: var(--primary-color); }

.accordion-cus .accordion-button::after {
  font-family: "bootstrap-icons";
  content: "\f3e5";
  font-size: 1.2rem;
  background-image: none;
  width: auto;
  height: auto;
}

.accordion-cus .accordion-body {
  background: rgba(var(--primary-color-rgb), 0.05);
  padding: 1.5rem;
  border-radius: 0 0 12px 12px;
  margin-top: -10px;
}

/* Contact */
.cmb-contact { background-color: var(--light-color); }

.contact-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s;
}

.contact-card:hover { transform: translateY(-5px); }

.contact-card .icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color), var(--light-blue-color));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1px solid rgba(var(--primary-color-rgb), 0.55) !important;
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: 0;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange-color) !important;
  box-shadow: 0 0 0 0.35rem rgba(var(--orange-color-rgb), 0.25) !important;
  outline: none;
}

.map-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  border: none;
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--steel-gray-color);
  color: var(--light-color);
}

footer a { color: var(--light-color); transition: 0.3s; }
footer a:hover { color: var(--orange-color); }

footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--orange-color);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 2px;
  background-color: var(--orange-color);
}

footer .footer-links { list-style: none; padding: 0; }
footer .footer-links li { margin-bottom: 0.3rem; }
footer .footer-links li a:hover { padding-left: 0.5rem; }

.copyright {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 40px;
  color: rgba(var(--light-color-rgb), 0.55);
}

.social-s2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: rgba(var(--light-color-rgb), 0.15);
  color: rgba(var(--light-color-rgb), 0.55);
  transition: 0.3s;
}

.social-s2 a:hover {
  background-color: var(--orange-color);
  color: #fff;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pf-item.hidden { display: none; }
