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

body {
  font-family: "Inter", sans-serif;
  color: #172033;
  background: #ffffff;
}

a {
  text-decoration: none;
}

:root {
  --primary: #073b8f;
  --secondary: #0d5bc7;
  --dark: #071d49;
  --light-blue: #eef6ff;
  --red: #e31d2b;
  --text: #555;
}

/* =========================
           TOP BAR
        ========================= */

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
}

.topbar i {
  margin-right: 6px;
}

.topbar a {
  color: #fff;
}

/* =========================
           NAVBAR
        ========================= */

.navbar {
  background: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding: 13px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
}

.logo-text {
  line-height: 1.1;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.logo-title span {
  color: var(--red);
}

.logo-subtitle {
  font-size: 10px;
  color: #777;
  letter-spacing: 0.4px;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #1d2739;
  margin: 0 8px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn-main {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-main:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.btn-outline-main {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.btn-outline-main:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================
           HERO
        ========================= */
/* =========================
   HERO SLIDER
========================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 585px;
  overflow: hidden;
  background: #eef3f8;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Hero Image */

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1.025);
}

/* Dark/White Overlay */

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg, rgba(7, 35, 70, 0.08) 0%, rgba(7, 35, 70, 0.02) 65%, rgba(7, 35, 70, 0.12) 100%);

  z-index: 1;
}

/* Hero Content */

.hero-content {
  position: absolute;

  left: 5%;
  top: 50%;

  transform: translateY(-50%);

  width: min(720px, 58vw);
  max-width: none;

  padding: 38px 44px 36px;
  border: 0;
  border-radius: 2px;
  background: rgba(8, 68, 126, 0.91);
  box-shadow: 0 18px 42px rgba(5, 36, 72, 0.2);

  z-index: 3;
}

.hero-content h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 1.08;

  font-weight: 800;

  color: #fff;

  margin-bottom: 12px;
}

.hero-content h1 span {
  color: #fff;
}

.hero-content p {
  font-size: 16px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.82);

  max-width: 590px;

  margin-bottom: 26px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-eyebrow i {
  color: #fff;
  font-size: 15px;
}

.hero-proof {
  display: none;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  color: #65d6a4;
}

.hero-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.hero-buttons .btn-outline-main {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
}

.hero-buttons .btn-outline-main:hover {
  color: var(--primary);
  background: #fff;
  border-color: #fff;
}

/* =========================
   HERO ARROWS
========================= */

.hero-prev,
.hero-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  border: none;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(6, 54, 105, 0.78);

  color: #fff;

  font-size: 20px;

  cursor: pointer;

  z-index: 10;

  transition: 0.3s;
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--primary);

  color: #fff;
}

/* =========================
   HERO DOTS
========================= */

.hero-dots {
  position: absolute;

  bottom: 25px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 8px;

  z-index: 10;
}

.hero-dot {
  width: 11px;
  height: 11px;

  background: rgba(7, 59, 143, 0.35);

  border-radius: 50%;

  cursor: pointer;

  transition: 0.3s;
}

.hero-dot.active {
  width: 30px;

  border-radius: 10px;

  background: var(--primary);
}

/* =========================
   ADE BADGE
========================= */

.ade-badge {
  display: none;
  position: absolute;

  right: 7%;

  bottom: 34px;

  background: #fff;

  padding: 18px 30px;

  border-radius: 14px;
  border-left: 4px solid var(--red);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);

  text-align: center;

  z-index: 5;
}

.ade-badge small {
  display: block;

  font-size: 11px;

  color: #555;
}

.ade-badge strong {
  color: var(--red);

  font-size: 25px;

  font-weight: 800;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .hero-slider {
    height: 590px;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-slide::after {
    background: rgba(5, 31, 63, 0.16);
  }

  .hero-content {
    left: 5%;
    right: 5%;

    text-align: center;

    width: auto;
    max-width: 100%;
    padding: 28px 22px;
    border-radius: 2px;
    background: rgba(8, 68, 126, 0.93);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
    gap: 8px 12px;
  }

  .hero-eyebrow {
    justify-content: center;
    font-size: 10px;
  }

  .hero-prev,
  .hero-next {
    width: 38px;
    height: 38px;

    font-size: 17px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .ade-badge {
    right: 50%;

    transform: translateX(50%);

    bottom: 46px;

    padding: 12px 20px;
  }
}

/* =========================
           COMMON SECTION
        ========================= */

.section {
  padding: 85px 0;
}

.section-light {
  background: var(--light-blue);
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title .small-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 800;
  margin-top: 8px;
  color: #14213d;
}

.section-title .line {
  width: 55px;
  height: 4px;
  background: var(--primary);
  margin: 14px auto 0;
  border-radius: 5px;
}

/* =========================
           ABOUT
        ========================= */

.about-images {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 12px;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-main-image {
  height: 420px !important;
}

.about-small-images {
  display: grid;
  gap: 12px;
}

.about-small-images img {
  height: 204px;
}

.about-content {
  padding-left: 35px;
}

.about-content .small-title {
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0 18px;
}

.about-content p {
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.about-feature {
  border: 1px solid #dbe4f0;
  padding: 17px 10px;
  text-align: center;
  border-radius: 6px;
}

.about-feature i {
  color: var(--primary);
  font-size: 25px;
  margin-bottom: 10px;
}

.about-feature h6 {
  font-size: 12px;
  margin: 0;
}

/* =========================
           PRODUCT CATEGORY
        ========================= */

.category-card {
  background: #fff;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-image {
  height: 145px;
  padding: 15px;
  background: #fafcff;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card h5 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 8px 18px;
  margin: 0;
}

/* =========================
           FEATURED PRODUCTS
        ========================= */

.product-card {
  background: #fff;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 220px;
  padding: 18px;
  background: #fbfcfe;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 18px;
  text-align: center;
}

.product-body h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-body p {
  color: #777;
  font-size: 12px;
  line-height: 1.6;
  min-height: 40px;
}

.product-body .btn {
  font-size: 11px;
  font-weight: 700;
  padding: 8px 15px;
}

/* =========================
           WHY CHOOSE US
        ========================= */

.why-box {
  text-align: center;
  padding: 20px 15px;
  border-right: 1px solid #cbd9ea;
}

.why-box:last-child {
  border-right: none;
}

.why-box i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-box h5 {
  font-size: 14px;
  font-weight: 800;
}

.why-box p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* =========================
           BRANDS
        ========================= */

.brand-card {
  height: 100px;
  border: 1px solid #e0e5ec;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 15px;
}

.brand-card img {
  max-width: 90%;
  max-height: 55px;
  object-fit: contain;
}

/* =========================
           INDUSTRIES
        ========================= */

.industry-card {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 7px;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.75));
}

.industry-title {
  position: absolute;
  bottom: 18px;
  left: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

/* =========================
           CTA
        ========================= */

.cta {
  background:
    linear-gradient(rgba(4, 38, 91, 0.92), rgba(4, 38, 91, 0.92)),
    url("https://images.unsplash.com/photo-1584982751601-97dcc096659c?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 65px 0;
  color: #fff;
}

.cta h2 {
  font-size: 34px;
  font-weight: 800;
}

.cta p {
  color: #dce8fa;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta .btn-white {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.cta .btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================
           CONTACT
        ========================= */

.contact-info h5 {
  font-weight: 800;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item i {
  color: var(--primary);
  width: 20px;
  margin-top: 3px;
}

.contact-item span {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.map-box {
  height: 300px;
  border-radius: 7px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: #fff;
  padding: 25px;
  border: 1px solid #e0e6ef;
  border-radius: 7px;
}

.contact-form h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}

.form-control {
  min-height: 46px;
  font-size: 13px;
  border-radius: 4px;
}

textarea.form-control {
  min-height: 100px;
}

/* =========================
           FOOTER
        ========================= */

footer {
  background: #061b43;
  color: #fff;
  padding-top: 55px;
}

.footer-logo {
  font-size: 21px;
  font-weight: 800;
}

.footer-logo span {
  color: #ff4757;
}

footer p {
  color: #b9c8df;
  font-size: 13px;
  line-height: 1.8;
}

footer h5 {
  font-size: 15px;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #b9c8df;
  font-size: 13px;
}

footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding: 18px 0;
  font-size: 12px;
  color: #9eafc8;
}

/* =========================
           FLOATING WHATSAPP
        ========================= */

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 991px) {
  .hero {
    min-height: 600px;
    background-position: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .ade-badge {
    right: 20px;
    bottom: 20px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 35px;
  }

  .why-box {
    border-right: none;
    border-bottom: 1px solid #cbd9ea;
    padding: 25px;
  }

  .why-box:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  .logo-title {
    font-size: 17px;
  }

  .hero {
    min-height: 650px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.88)),
      url("https://images.unsplash.com/photo-1586773860418-d37222d8fce3?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .ade-badge {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 35px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    height: 300px !important;
  }

  .about-small-images {
    grid-template-columns: 1fr 1fr;
  }

  .about-small-images img {
    height: 150px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .cta {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .industry-card {
    height: 180px;
  }
}

.brand-mark {
  display: inline-block;
  font-weight: 800;
  line-height: 1;
}

.brand-mark-ade {
  font-size: 28px;
  color: #e31d2b;
}

.brand-mark-seca {
  font-size: 22px;
  color: #194f9b;
}

.brand-mark-ohaus {
  font-size: 25px;
  color: #d71920;
}

.brand-mark-cas {
  font-size: 23px;
  color: #23609d;
}

.brand-mark-accuniq {
  font-size: 18px;
  color: #0067b1;
}

.brand-mark-contec {
  font-size: 21px;
  color: #e31d2b;
}

.brand-mark-yuwell {
  font-size: 21px;
  color: #2457a5;
}

.brand-mark-bpl {
  font-size: 19px;
  color: #0075a9;
}

/* =========================
   PRODUCT COMPANY LOGO
========================== */

.product-company-logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  background: #ffffff;
  border-bottom: 1px solid #edf1f5;
}

.product-company-logo img {
  max-width: 110px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* =========================
   FEATURED PRODUCT BRAND LOGO
========================== */

.product-brand-logo {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #fff;
  border-bottom: 1px solid #edf1f5;
}

.product-brand-logo img {
  max-width: 100px;
  max-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
}
