* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: bold;
  font-size: 22px;
  background: #0b5ed7;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.btn-wa {
  background: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

/* HERO */
.hero {
  height: 80vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-content {
  position: relative;
  color: #fff;
  padding-top: 120px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: #0b5ed7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  margin-top: 20px;
  text-decoration: none;
}

/* SECTIONS */
section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  text-align: center;
  font-weight: 600;
}

.why {
  background: #f1f5f9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 40px;
}

.highlight {
  background: #0b5ed7;
  color: #fff;
  padding: 30px;
  border-radius: 14px;
}

.cta {
  background: linear-gradient(135deg,#0b5ed7,#0a58ca);
  color: #fff;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #111;
  color: #ddd;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px;
}

.footer h3, .footer h4 {
  color: #fff;
}

.copyright {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  background: #000;
  font-size: 14px;
}
.services {
  background: #f8fafc;
}

.section-desc {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.services h2 {
  text-align: center;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
  color: #0b5ed7;
}

.service-content p {
  font-size: 14px;
  color: #555;
}


.services {
  background: #f8fafc;
}

.section-desc {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.services h2 {
  text-align: center;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
  color: #0b5ed7;
}

.service-content p {
  font-size: 14px;
  color: #555;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  font-weight: 600;
  font-size: 15px;
  color: #222;
}
/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #f8f9fb;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   HEADER
===================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e8ec;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand img {
  height: 48px;
}

.main-nav a {
  margin-left: 32px;
  font-weight: 500;
  color: #555;
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: #0b5ed7;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #0b5ed7;
  border-radius: 2px;
}

/* =====================
   HERO
===================== */
.hero {
  background: linear-gradient(135deg, #0b5ed7, #0a3f8f);
  color: #ffffff;
  padding: 90px 0;
}

.hero-inner {
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 720px;
  margin: auto;
  opacity: 0.95;
}

/* =====================
   CONTENT
===================== */
.content {
  padding: 80px 0;
}

.service-section {
  background: #ffffff;
  padding: 80px 0;
}

.service-block {
  margin-bottom: 60px;
}

.service-block h2 {
  font-size: 28px;
  color: #0b5ed7;
  margin-bottom: 20px;
}

.service-block p {
  font-size: 16px;
  color: #555;
  max-width: 900px;
}

.service-block.highlight {
  background: #f1f5ff;
  padding: 40px;
  border-radius: 14px;
}

/* =====================
   LIST STYLE
===================== */
.icon-list,
.check-list {
  list-style: none;
  margin-top: 20px;
}

.icon-list li,
.check-list li {
  padding-left: 28px;
  margin-bottom: 14px;
  position: relative;
  color: #444;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b5ed7;
  font-size: 22px;
  line-height: 1;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b5ed7;
  font-weight: bold;
}

/* =====================
   CTA
===================== */
.service-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0b5ed7, #0a3f8f);
  color: #ffffff;
  border-radius: 18px;
}

.service-cta h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.service-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #0b5ed7;
}

.btn-primary:hover {
  background: #e6ecff;
  transform: translateY(-2px);
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #0a0f1c;
  color: #cfd3dc;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-about p,
.footer-contact address {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact address {
  font-style: normal;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 20px 0;
  font-size: 14px;
  background: #070b14;
  color: #9aa0af;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .main-nav a {
    margin-left: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .service-block h2 {
    font-size: 24px;
  }

  .service-cta h3 {
    font-size: 24px;
  }
}
/* === GENERAL SUPPLIES PAGE === */

.service-hero {
  position: relative;
  height: 320px;
  background: url('assets/images/industrial-bg.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.service-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.service-intro {
  padding: 60px 0;
  text-align: center;
}

.service-products {
  background: #f7f9fc;
  padding: 60px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.product-card span {
  font-size: 36px;
}

.service-advantages {
  padding: 60px 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.advantage-grid div {
  background: #eef3f8;
  padding: 15px;
  border-radius: 6px;
}

.service-cta {
  background: #0d2b56;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.service-cta .btn-primary {
  margin-top: 20px;
  display: inline-block;
}
.product-card img {
  width: 100%;
  height: 200px;        /* IDEAL INDUSTRI */
  object-fit: cover;
  border-radius: 8px;
  background-color: #f3f4f6;
}
/* HERO SLIDER */
.service-hero.slider {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.service-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media (max-width: 768px) {
  .service-hero.slider {
    height: 300px;
  }
}
/* PAGE HERO */
.page-hero {
  position: relative;
  height: 280px;
  background-image: url("assets/images/page-hero-industry.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-hero-content {
  position: relative;
  color: #ffffff;
}

.page-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero-content p {
  font-size: 16px;
  max-width: 600px;
  color: #e5e7eb;
}
@media (max-width: 768px) {
  .page-hero {
    height: 220px;
  }

  .page-hero-content h1 {
    font-size: 28px;
  }
}
/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav > a {
  margin-left: 25px;
  font-weight: 500;
  color: #374151;
}

.main-nav a:hover,
.main-nav a.active {
  color: #0f766e;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
  margin-left: 25px;
}

.nav-parent::after {
  content: "▾";
  margin-left: 6px;
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #374151;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #0f766e;
}

/* SHOW DROPDOWN */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
