/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #0b1018;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ========== COLOR PALETTE ==========
   Dark:   #0b1018
   Navy:   #071b2f
   Accent: #f4b000
   Light:  #f5f5f5
   Blue:   #0f67f2
==================================== */

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========== LAYOUT HELPERS ========== */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* ========== HEADER / NAVBAR ========== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 176, 0, 0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #184F88;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  color: #184F88;
}

.nav-brand span:first-child {
  font-weight: 700;
  font-size: 1rem;
}

.nav-brand span:last-child {
  font-size: 0.75rem;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  color: #184F88;
  font-weight: bold;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
  color: #184F88;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f4b000;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #184F88;
  font-weight: bold;
}

.nav-cta span {
  opacity: 0.8;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 4px;
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #f4b000;
  color: #071b2f;
  font-weight: 600;
}

.btn-primary:hover {
  background: #ffd349;
}

.btn-outline {
  border: 1px solid #f4b000;
  color: #f4b000;
  background: transparent;
}

.btn-outline:hover {
  background: #f4b000;
  color: #071b2f;
}

/* ========== MOBILE NAV TOGGLER ========== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: black;
}
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== HERO SECTION (HOME PAGE) ========== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.65),
      rgba(7, 27, 47, 0.95)
    ),
    url("img/hero-industrial.jpg") center/cover fixed;
  color: #f5f5f5;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffd76c;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title span {
  color: #f4b000;
}

.hero-text {
  font-size: 0.95rem;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-meta-item span:first-child {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd349;
}

.hero-card {
  background: rgba(7, 27, 47, 0.92);
  padding: 22px 22px 18px;
  border-radius: 10px;
  border: 1px solid rgba(244, 176, 0, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-card-title {
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card ul {
  font-size: 0.85rem;
  display: grid;
  gap: 6px;
}

/* ========== CARDS / GRID SECTIONS ========== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #071b2f;
  border-radius: 10px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(244, 176, 0, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 14px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(244, 176, 0, 0.14);
  border: 1px solid rgba(244, 176, 0, 0.6);
  color: #ffd76c;
  margin-bottom: 8px;
}

/* ========== ABOUT / CONTENT LAYOUTS ========== */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

/* ========== LISTS & BULLETS ========== */
.bullet-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}

.bullet-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4b000;
}

/* ========== CLIENT LOGOS ========== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 26px;
}

.client-card {
  border-radius: 10px;
  padding: 0px;
 
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
}

/* ========== CONTACT ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
}

.contact-box {
  background: #071b2f;
  border-radius: 10px;
  padding: 24px 22px;
  border: 1px solid rgba(244, 176, 0, 0.2);
}

.contact-box h3 {
  margin-bottom: 10px;
}

.contact-item {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.contact-item span {
  display: block;
  opacity: 0.7;
  font-size: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 3px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 4px;
  border: 1px solid #283344;
  background: #0b1018;
  color: #f5f5f5;
  font-size: 0.85rem;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f4b000;
}

/* ========== FOOTER ========== */
footer {
  background: #050911;
  border-top: 1px solid #1b2635;
  padding: 18px 0;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner a {
  color: #ffd76c;
  font-weight: 500;
}

/* ========== WHATSAPP / CALL FLOAT BUTTONS ========== */
.float-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.float-buttons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

.float-buttons a.call-btn {
  background: #f4b000;
  color: #071b2f;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 960px) {
  .hero-grid,
  .two-column,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: left;
  }

  .hero-card {
    margin-top: 10px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 58px;
    right: 0;
    background: #071b2f;
    padding: 14px 18px;
    border-left: 1px solid rgba(244, 176, 0, 0.3);
    border-bottom: 1px solid rgba(244, 176, 0, 0.3);
    width: 210px;
  }

  .nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 6px;
  }

  .hero {
    min-height: 70vh;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.nav-logo img {
  width: 60px;
  height: auto;
  object-fit: contain;
}
