/* ============================================
   POWER ENGINEERS - GLOBAL STYLESHEET
   Modern Industrial Design 2024
   ============================================ */

:root {
  --primary: #001844;
  --primary-dark: #b81a07;
  --primary-light: #ff4422;
  --secondary: #1a1a2e;
  --dark: #0d0d1a;
  --darker: #070710;
  --accent: #f5a623;
  --text-light: #000000;
  --text-muted: #8888aa;
  --white: #ffffff;
  --card-bg: #12122a;
  --border: rgba(255,255,255,0.08);
  --glow: 0 0 30px rgba(232,35,10,0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
/*  font-family: 'Rajdhani', 'Segoe UI', sans-serif;*/
  font-family: "Roboto Condensed", sans-serif;
/*  font-family: "Inter", sans-serif;*/
/*  background: var(--dark);*/
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

body {
  user-select: none;
  -webkit-user-select: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Barlow Condensed', 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0;
  background: var(--darker);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 60px; height: 60px;
  border: 3px solid rgba(232,35,10,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--darker);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.top-bar a {     color: #ffffff;; text-decoration: none; transition: color 0.3s;font-size: 16px; }
.top-bar a:hover { color: var(--primary); }
.top-bar .iso-badge {
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.adww{
   font-size: 15px;
   color: white;
}

/* ---- NAVBAR ---- */
.navbar {
/*  background: rgba(10,10,20,0.95) !important;*/
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0px 0;
  transition: var(--transition);
  position: sticky !important;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  background: white !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-brand img { 
/*  height: 45px; */
/*  filter: brightness(1.1); */
  width: 80%;
}
.navbar-brand .brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1;
}
.navbar-brand .brand-text span { color: var(--primary); }
.navbar-brand .brand-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link {
/*  color: var(--text-light) !important;*/
  color: #000000 !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }

.navbar-toggler {
  border: 1px solid var(--primary);
  padding: 4px 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232,35,10,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO SLIDER ---- */
.hero-section {
  position: relative;
  overflow: hidden;
}
.carousel-item { position: relative; }

.hero-slide {
  height: 620px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width:768px) { .hero-slide { height: 420px; } }

.hero-slide .slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.carousel-item.active .slide-bg { transform: scale(1.0); }

.hero-slide .slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(7,7,16,0.92) 0%,
    rgba(7,7,16,0.7) 50%,
    rgba(7,7,16,0.3) 100%
  );
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 720px;
}
@media (max-width:768px) {
  .hero-slide .slide-content { padding: 0 24px; }
}

.slide-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 16px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  animation: fadeInDown 0.8s ease;
}
.slide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.slide-title span { color: var(--primary); }
.slide-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 520px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.slide-btns { animation: fadeInUp 0.9s ease 0.3s both; }

.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: var(--transition);
  display: inline-block;
  margin-right: 12px;
}
.btn-primary-custom:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.btn-outline-custom {
  background: transparent;
/*  color: white;*/
      color: black;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 11px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-stat-bar {
  background: rgba(7,7,16,0.9);
  border-top: 2px solid var(--primary);
  padding: 18px 0;
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 50px; height: 50px;
  background: rgba(232,35,10,0.8);
  top: 50%; transform: translateY(-50%);
  border-radius: 0;
  opacity: 1;
  width: auto;
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev-icon, .carousel-control-next-icon { width: 20px; height: 20px; }
.carousel-indicators [data-bs-target] {
  width: 30px; height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 0;
}
.carousel-indicators .active { background: var(--primary); }

/* ---- SECTION COMMONS ---- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-head { text-align: center; margin-bottom: 50px; }
.section-head .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 14px;
}
.section-head h2 em {
  color: var(--primary);
  font-style: normal;
}
.section-head p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 16px; }

.section-divider {
  width: 60px; height: 3px;
  background: var(--primary);
  margin: 14px auto 0;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  left: 70px; top: 0;
  width: 10px; height: 3px;
  background: var(--accent);
}

/* ---- ABOUT STRIP ---- */
.about-strip {
/*  background: linear-gradient(135deg, var(--secondary) 0%, var(--card-bg) 100%);*/
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.about-strip .content-col p { 
      line-height: 1.85;
    font-size: 17px;
    font-weight: 600;
    text-align: justify;
        color: black;
}
.about-strip .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 15px;
}
.about-strip .feature-list li .icon {
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}
.cert-badge {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cert-badge .badge-icon { font-size: 28px; }
.cert-badge .badge-text span { display: block; font-size: 12px; color: var(--text-muted); }
.cert-badge .badge-text strong { color: white; font-size: 15px; }

/* ---- PRODUCT CARDS ---- */
.product-card {
/*  background: var(--card-bg);*/
  background: #ffffff;
      border: 1px solid rgb(0 0 0 / 37%);
/*  border: 1px solid var(--border);*/
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,35,10,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card .card-img-wrap {
  overflow: hidden;
/*  height: 220px;*/
  background: #0d0d1e;
  position: relative;
}
.product-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.06); }
.product-card .card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: #d10201;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}
.product-card .card-body { padding: 20px; }
.product-card .card-title {
  font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
  font-weight: 700;
/*  color: white;*/
      color: #001844;
  margin-bottom: 8px;
  line-height: 1.2;
  text-align: center;
}
.product-card .card-text {
  font-size: 16px;
/*      color: #ffffff;*/
color: black;
  margin-bottom: 16px;
}
.product-card .card-footer-custom {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
}
.btn-card-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}
.btn-card-primary:hover { background: var(--primary-light); color: white; }
.btn-card-outline {
/*  background: transparent;*/
      background: #007c95;
  color: white;
  border: 1px solid var(--border);
  padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: var(--transition);
}
.btn-card-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ---- CLIENTS MARQUEE ---- */
.clients-section { background: var(--secondary); }
.client-logo-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  transition: var(--transition);
}
.client-logo-wrap:hover {
  border-color: var(--primary);
  background: rgba(232,35,10,0.05);
}
.client-logo-wrap img {
  max-height: 50px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: var(--transition);
}
.client-logo-wrap:hover img { filter: grayscale(0%) brightness(1); }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-cta-white {
  background: white;
  color: var(--primary);
  border: none;
  padding: 14px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: var(--transition);
  display: inline-block;
}
.btn-cta-white:hover { background: var(--accent); color: var(--dark); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--darker) 0%, var(--secondary) 100%);
/*  padding: 70px 0 50px;*/
  padding: 50px 0 50px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,35,10,0.08) 0%, transparent 70%);
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.0;
}
.page-header h1 span { color: var(--primary); }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-light); font-size: 14px; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ---- PRODUCT PAGE TABS ---- */
.product-tabs .nav-tabs {
  border-bottom: 2px solid var(--border);
  gap: 4px;
}
.product-tabs .nav-link {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-bottom: none;
/*  color: var(--text-light) !important;*/
      color: #ffffff !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 22px !important;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}
.product-tabs .nav-link::after { display: none; }
.product-tabs .nav-link:hover, .product-tabs .nav-link.active {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}

.spec-card {
/*  background: var(--card-bg);*/
      background: #ffffff;
  border: 1px solid #999494;
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.spec-card:hover {
  border-color: rgba(232,35,10,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.spec-card .spec-img {
/*  height: 200px;*/
  overflow: hidden;
  background: #0a0a18;
}
.spec-card .spec-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.spec-card:hover .spec-img img { transform: scale(1.05); }
.spec-card .spec-body { padding: 18px; }
.spec-card .spec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.spec-table { width: 100%; font-size: 13px; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 5px 8px; }
.spec-table td:first-child { 
/*  color: var(--text-muted); width: 45%; */
  color: #000000;
    width: 45%;
    font-weight: bold;
}
.spec-table td:last-child { color: var(--text-light); font-weight: 600; }

.spec-modal-btn {
  background: transparent;
  border: 1px solid black;
  color: black;
  font-size: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}
.spec-modal-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ---- CLIENTS LIST PAGE ---- */
/*.clients-list-section { background: var(--dark); }*/
.client-category {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}
.client-category:hover { border-color: rgba(232,35,10,0.3); }
.client-category h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 14px;
  position: relative;
}
.client-category h4::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--primary);
}
.client-name-list { list-style: none; padding: 0; }
.client-name-list li {
  font-size: 15px;
/*  color: var(--text-muted);*/
  color: #ffffff;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}
.client-name-list li::before {
  content: '▸';
    color: #fdfdfd;
    font-size: 20px;
  flex-shrink: 0;
}
.client-name-list li:hover { color: var(--text-light); padding-left: 4px; }

/* ---- CONTACT PAGE ---- */
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(232,35,10,0.3); }
.contact-card .icon-wrap {
  width: 52px; height: 52px;
  background: rgba(232,35,10,0.1);
  border: 1px solid rgba(232,35,10,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary);
}
.contact-card h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.contact-card p, .contact-card a {
  font-size: 14.5px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.8;
}
.contact-card a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
}
.form-label {
/*  color: var(--text-muted);*/
      color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-control, .form-select {
/*  background: rgba(255,255,255,0.04) !important;*/
  border: 1px solid var(--border) !important;
  color: var(--text-light) !important;
  border-radius: 4px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  transition: var(--transition) !important;
}
/*.form-control:focus, .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(232,35,10,0.15) !important;
  background: rgba(232,35,10,0.04) !important;
  outline: none !important;
}*/
.form-control::placeholder { color: var(--text-muted) !important; opacity: 0.6; }
.form-select option { 
/*  background: var(--secondary); color: var(--text-light);*/
   }

/* ---- ABOUT PAGE ---- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.industry-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
/*  color: var(--text-muted);*/
  color: #ffffff;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}
.industry-item:hover { border-color: var(--primary); color: var(--text-light); background: rgba(232,35,10,0.05); }
/*.industry-item::before { content: '⚡'; font-size: 12px; }*/

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  position: relative;
}
.timeline-dot {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.timeline-content { background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; padding: 16px 18px; flex: 1; }
.timeline-content h5 { color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; }
.timeline-content p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ---- FOOTER ---- */
.footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  font-family: "Lato", sans-serif;
}
.footer-top { 
/*padding: 70px 0 40px; */
padding: 30px 0 10px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { 
/*  height: 50px; */
width: 100%;
background: white;
border-radius: 10px;

}
.footer-about p { color: var(--text-muted); font-size: 14px; line-height: 1.8; font-family: "Lato", sans-serif; }
.footer h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
}
.footer h5::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
      background: #d10201;
/*  background: var(--primary);*/
  margin-top: 6px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: #d10201; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-contact-item .fi-icon {
  color: #d10201;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: var(--text-muted); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  background: var(--dark);
  border-top: 1px solid var(--border);
/*  padding: 16px 0;*/
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { background: #1ebe5d; color: white; transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}


.call-button {
  position: fixed;
  bottom: 95px; left: 30px;
  width: 56px; height: 56px;
  background: #184c99;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.call-button:hover { background: #184c99; color: white; transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}


.mail-button {
  position: fixed;
  bottom: 160px; left: 30px;
  width: 56px; height: 56px;
  background: #bf2130;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.mail-button:hover { background: #184c99; color: white; transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ---- MODAL ---- */
.modal-content {
/*  background: var(--secondary);*/
  border: 1px solid var(--border);
  color: var(--text-light);
}
.modal-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
}
.modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 25px; font-weight: 700; color: white; }
.btn-close { filter: invert(1) brightness(0.6); }
.modal-body table.table {
  font-size: 15px;
  color: var(--text-light);
  font-weight: bold;
  font-family: "Rubik", sans-serif;
  border: 1px solid black;
}
.modal-body .table th { 
      background: var(--card-bg);
    color: #ffffff;
    border-color: var(--border);
    font-size: 16px;
    letter-spacing: 0.5px; 
    border: 1px solid black;
}
.modal-body .table td { border-color: var(--border);border: 1px solid black; }
.modal-body .table td:first-child { color: black;border: 1px solid black; }
.modal-body .table-striped > tbody > tr:nth-of-type(odd) > * { 
  background: rgba(255,255,255,0.02); 
  color: var(--text-light); 
  border: 1px solid black;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---- UTILITIES ---- */
.text-primary-custom { color: var(--primary) !important; }
.bg-dark-custom { background: var(--dark) !important; }
.bg-card { background: var(--card-bg) !important; }
.border-custom { border-color: var(--border) !important; }

/* ---- MAP ---- */
.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 998;
}
#backToTop.show { display: flex; }
#backToTop:hover { background: var(--primary-light); transform: translateY(-3px); }

/* ---- ABOUT IMAGE ---- */
.about-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.about-img-wrap img { width: 100%; border-radius: 6px; display: block; }
.about-img-wrap .exp-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--primary);
  color: white;
  padding: 16px 22px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
}
.about-img-wrap .exp-badge .num { font-size: 48px; font-weight: 800; line-height: 1; }
.about-img-wrap .exp-badge .label { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-slide .slide-content { padding: 0 30px; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .hero-slide { height: 380px; }
  .slide-title { font-size: 32px; }
  .slide-desc { font-size: 14px; }
  .hero-stat-bar .stat-number { font-size: 26px; }
  .btn-primary-custom, .btn-outline-custom { padding: 10px 22px; font-size: 13px; }
}

.mmkkdde{
      padding: 60px 0;
}

.clients-section {
    padding: 50px 0;
    background: #fff;
}

.client-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: "Times New Roman", serif;
}

.client-slider .item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.client-slider .item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.client-slider .item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    object-fit: contain;
/*    filter: grayscale(100%);*/
    transition: .3s;
}

.client-slider .item:hover img {
    filter: grayscale(0%);
}

.about-cmsm p{
  text-align: justify;
}

.mkmek{
  padding: 40px 0;
}





@media (max-width: 991.98px) {
  .navbar > .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .navbar-brand {
    max-width: calc(100% - 70px);
    margin-right: 0;
  }

  .navbar-brand img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    width: 100%;
    flex-basis: 100%;
  }
}



/*@media (max-width: 991.98px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .navbar-brand {
    width: auto;
    max-width: calc(100% - 70px);
  }

  .navbar-brand img {
    max-width: 190px;
    width: 100%;
    height: auto;
  }

  .navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  .navbar-brand img {
    max-width: 165px;
  }
}*/

.tm-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 7px;
  font-weight: bold;
  line-height: 1;
  vertical-align: super;
  position: relative;
  top: -0.5em;
}


.tm-circle-footer{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 7px;
  font-weight: bold;
  line-height: 1;
  vertical-align: super;
  position: relative;
  top: -0.5em;
}

.kmcmks{
  color: #c9860a;
}

.kmcmks1{
      font-size: 16px;
/*    color: #6e1f1f;*/
    color:#c9860a;
/*    text-align: center;*/
}


.h5-slider-area {
  background: rgba(0, 0, 0, 0) url("../img/home5/slider-1.jpg") no-repeat scroll 0 0 / cover;
  padding: 198px 0;
  position: relative;
  z-index: 2;
}

.h5-slider-area::before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.h5-slider-content {
  text-align: center;
}

.h5-slider-content .title {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 35px;
  margin: 0 0 18px;
/*      font-family: Maiandra GD;*/
/*      -webkit-text-stroke: 1px black;*/
}

.h5-slider-content .cd-headline {
      color: #fff;
    font-size: 45px;
    line-height: 56px;
    margin: 0px 0 35px;
}

.h5-slider-content .cd-headline span {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.h5-slider-content .text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin: 0 0 58px;
}

.h5-slider-content .more {
  border: 1px solid #3fb698;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 25px;
  padding: 10px 18px;
}

.h5-slider-content .more:hover {
  background: #3fb698 none repeat scroll 0 0;
}

.h5-slider-content .more span {
  color: #ffffff;
  margin-left: 4px;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: center;
}

.cd-words-wrapper b {
/*  color: #3fb698;*/
  color: #001844;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  white-space: nowrap;
    -webkit-text-stroke: 1px white
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */

.cd-headline.clip span {
  color: #ffffff;
display: inline-block;
  padding: 0;
/*-webkit-text-stroke: 1px black;*/
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 70%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline b.is-visible {
  opacity: 1;
  font-weight: 900;
}

/*----------------------------------------*/

/*  13. Home 6
/*----------------------------------------*/

.h6-slider-area {
  height: 75vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.h6-slider-area::before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  opacity: 0.7;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.h6-slider-area video {
  position: relative;
  z-index: 2;
}

.h6-slider-full {
  left: 50%;
  padding: 4px 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 5;
}


.tm-circle-02{
display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    vertical-align: super;
    position: relative;
    top: -2em;
/*    -webkit-text-stroke: 1px white;*/
}


.horizontal-card{
    display:flex;
    align-items:stretch;
    overflow:hidden;
    height:100%;
}

.horizontal-card .card-img-wrap{
    width:30%;
    min-width:250px;
    position:relative;
    background:#f8f8f8;
}

.horizontal-card .card-img-wrap img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:15px;
}

.horizontal-card .card-content{
    width:70%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:25px;
}

.horizontal-card .card-title{
    margin-bottom:15px;
}

.horizontal-card .card-footer-custom{
    display:flex;
    gap:15px;
    margin-top:20px;
}

/* Mobile */
@media(max-width:768px){
    .horizontal-card{
        flex-direction:column;
    }

    .horizontal-card .card-img-wrap,
    .horizontal-card .card-content{
        width:100%;
    }

    .horizontal-card .card-img-wrap{
        min-width:auto;
        height:250px;
    }
}


.hrenue{
  font-family: 'Barlow Condensed', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}


@media only screen and (min-width: 240px) and (max-width: 480px){

.h6-slider-area{
      height: 50vh !important;
}

.h5-slider-content .title{
  font-size: 16px !important;
  line-height: 30px !important;
}

.h5-slider-content .cd-headline{
  font-size: 25px !important;
    line-height: 35px !important;
}
.h6-slider-area video{
  height: 50vh;
  object-fit: cover;
}

.h6-slider-full{
  width: 100%;
}


}


@media only screen and (min-width: 490px) and (max-width: 767px){

.h6-slider-area{
      height: 40vh !important;
}

.h5-slider-content .title{
  font-size: 20px !important;
  line-height: 30px !important;
}

.h5-slider-content .cd-headline{
  font-size: 25px !important;
    line-height: 35px !important;
}
.h6-slider-area video{
  height: 40vh;
}

.h6-slider-full{
  width: 100%;
}


}


@media only screen and (min-width: 767px) and (max-width: 991px){

.h6-slider-area{
      height: 40vh !important;
}

.h5-slider-content .title{
  font-size: 20px !important;
  line-height: 30px !important;
}

.h5-slider-content .cd-headline{
  font-size: 25px !important;
    line-height: 35px !important;
}
.h6-slider-area video{
  height: 40vh;
}

.h6-slider-full{
  width: 100%;
}


}

.carousel-item img{
  border-radius: 10px;
}

.specification-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin: 25px 0;
    background: #f8f9fa;
    border-left:4px solid #700100;
    border-radius: 8px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.specification-note i {
    color: #0d6efd;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.specification-note strong {
    color: #212529;
}

.spark0kod1{
  font-size: 70px;
  color: #c80301 !important;
}

.spark0kod{
      font-size: 30px;
}
.sparkoemw{
  font-size: 25px;
}

.product-highlights{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.product-highlights span{
        display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: #ca8910;
    border: 1px solid #000000;
    border-radius: 30px;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    transition: all .3s ease;
}

.product-highlights span:hover{
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13,110,253,.25);
}

.product-highlights span i{
    margin-right:8px;
    font-size:13px;
}

@media screen and (min-width: 200px) and (max-width: 480px) {
  
.spark0kod1{
      font-size: 30px !important;
      color: #c80301 !important;
}


}


@media screen and (min-width: 481px) and (max-width: 991px) {
  
.spark0kod1{
      font-size: 45px !important;
      color: #c80301 !important;
}


}






.watermark-container {
    position: relative;
    overflow: hidden;
}

.watermark-container::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../images/water-mark-logo.png');
    background-repeat: repeat;      /* Repeat watermark */
    background-size: 196px;         /* Adjust logo size */
    background-position: 0 0;

    opacity: 0.12;                  /* Watermark visibility */
    transform: rotate(0deg);
    transform-origin: center;

    pointer-events: none;
    z-index: 0;
}

.watermark-container table {
    position: relative;
    z-index: 1;
    background: transparent;
}

.watermark-container table td {
    background: transparent !important;
}



@media screen and (min-width: 201px) and (max-width: 991px) {

.whatsapp-float{
      left: 10px !important;
}
.call-button{
   left: 10px !important;
}
.mail-button{
  left: 10px !important;
}


}