/* =========================
   Global Variables
========================= */
:root {
  --black: #050505;
  --dark: #0b0c0e;
  --gold: #f3bd13;
  --muted: #b8b8b8;
  --line: rgba(243, 189, 19, 0.45);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   Header / Navigation
========================= */
.topbar {
    background: #000;
    border-bottom: 1px solid rgba(245,189,0,.3);
    padding: 8px 25px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.topbar .container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand img {
    display: block;
    max-height: 50px;
    width: auto;
}

.brand-text strong {
    display: block;
    color: #f5bd00;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1.5px;
}

.brand-text small {
    display: block;
    color: #fff;
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    position: relative;
    display: inline-block;
    padding: 15px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f5bd00;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    color: #f5bd00;
}

/* =========================
   Common Styles
========================= */
.section-pad {
  padding: 54px 34px;
  max-width: 1280px;
  margin: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 60px;
  line-height: 0.92;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 1px;
}
h2 {
  font-size: 43px;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 3px;
  font-weight: 900;
}
h1 span,
h2 span,
.quote-form h3 {
  color: var(--gold);
}
p {
  color: #ddd;
  line-height: 1.55;
}
.section-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7)), var(--bg);
  background-size: cover;
  background-position: center;
}

/* =========================
   Hero Section
========================= */
.hero {
    position: relative;
    height: 620px;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-top: 2px solid #f5bd00;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.95) 0%,
            rgba(0,0,0,.88) 30%,
            rgba(0,0,0,.45) 60%,
            rgba(0,0,0,0) 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,.05) 40%,
        transparent 41%
    );

    clip-path: polygon(
        0 0,
        45% 0,
        75% 100%,
        0 100%
    );
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}


.hero-copy h1 {
    font-size: 76px;
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
}

.hero-copy h1 span {
    color: #f5bd00;
}

.btn {
    background: #f5bd00;
    color: #000;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    border-radius: 0;
}


/* =========================
   About Section
========================= */
.about {
  background: #080808;
}
.about-grid {
  display: grid;
  grid-template-columns: 22% 34% 44%;
  gap: 26px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.logo-card {
  padding: 30px;
  border: 1px solid var(--line);
  text-align: center;
}
.about-text {
  font-size: 14px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stats b {
  color: var(--gold);
  display: block;
}
.stats span {
  font-size: 12px;
  color: #eee;
}

.client-section {
    padding: 22px 60px 55px;
    background: #060606;
}

.client-title h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.client-line {
    width: 95px;
    height: 3px;
    margin-top: 8px;
    background: #f5bd00;
}

.client-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

.client-viewport {
    overflow: hidden;
    width: 100%;
}

.client-track {
    display: flex;
    gap: 26px;
    transition: transform 0.6s ease;
}

.client-card {
    flex: 0 0 calc((100% - 104px) / 5);
    height: 105px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.client-card img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
}

.client-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 55px;
    border: 2px solid #f5bd00;
    background: transparent;
    color: #f5bd00;
    font-size: 48px;
    line-height: 42px;
    cursor: pointer;
}

.client-dots {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.client-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    cursor: pointer;
}

.client-dot.active {
    background: #f5bd00;
}

@media (max-width: 900px) {
    .client-section {
        padding: 22px 20px 45px;
    }

    .client-card {
        flex: 0 0 calc((100% - 26px) / 2);
    }
}

.client-next {
    margin-left: 0;
}

/* =========================
   Services Section
========================= */
.services {
  max-width: none;
  padding-left: 34px;
  padding-right: 34px;
}
.services > h2,
.services > .section-intro {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro {
  max-width: 820px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.service-grid {
  max-width: 1280px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 160px;
  border: 1px solid var(--line);
  padding: 22px;
  background: rgba(0, 0, 0, 0.58);
}
.service-card span,
.supply-card span {
  color: var(--gold);
  font-weight: 900;
}
.service-card h3,
.supply-card h3,
.why-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0;
  color: #fff;
}
.service-card p,
.supply-card p,
.why-card p {
  font-size: 13px;
  color: #cfcfcf;
}

/* =========================
   Supply Section
========================= */
.supply {
  text-align: left;
  background: #060606;
}
.supply h2 {
  text-align: center;
}
.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.supply-card {
  border: 1px solid var(--line);
  background: #0d0d0d;
}
.supply-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.supply-card div {
  padding: 22px;
}

/* =========================
   Why Choose Us Section
========================= */
.why {
  max-width: none;
  text-align: center;
}
.why-grid {
  max-width: 1280px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-card {
  padding: 26px 18px;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 190px;
}
.icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
}

/* =========================
   Contact Section
========================= */
.contact {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}
.contact-info {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}
.contact-buttons {
  display: flex;
  gap: 14px;
}
.outline {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  color: #fff;
}
.quote-form {
  padding-left: 10px;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 4px;
  color: #fff;
  outline: none;
}
.quote-form .two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 8px;
}
.quote-form button {
  margin-top: 18px;
}

/* =========================
   Footer
========================= */
footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding: 34px;
  background: #030303;
  border-top: 1px solid var(--line);
}
footer a,
footer small {
  display: block;
  color: #ccc;
  margin: 8px 0;
}
footer h4 {
  color: var(--gold);
  margin: 0 0 12px;
}

/* =========================
   Responsive CSS
========================= */
@media (max-width: 900px) {
  .topbar {
    height: auto;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
    padding: 18px;
  }
  nav {
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 42px 20px;
  }
  .hero-person {
    height: 300px;
  }
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 34px;
  }
  .stats,
  .service-grid,
  .supply-grid,
  .why-grid,
  footer {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: 0;
    padding-right: 0;
  }
  .quote-form .two {
    grid-template-columns: 1fr;
  }
  .section-pad {
    padding: 42px 20px;
  }
}

.hero {
  min-height: 80vh;
  background-size: cover;
  background-position: center right;
  position: relative;
  border-top: 3px solid #f5bd00;
}

.hero-overlay {
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.88) 30%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.05) 75%
  );
}

.hero-copy {
  width: 48%;
  padding-left: 90px;
  color: #fff;
}

.hero-copy h1 {
  font-size: 70px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 25px;
}

.hero-copy h1 span,
.section-title h2 span {
  color: #f5bd00;
}

.title-line {
  width: 280px;
  height: 5px;
  margin: 12px 0 35px;
  background: linear-gradient(
    90deg,
    #f5bd00 0%,
    #f5bd00 55%,
    rgba(245, 189, 0, 0.45) 75%,
    rgba(245, 189, 0, 0) 100%
  );
}

.hero-copy p {
  font-size: 25px;
  line-height: 1.5;
  max-width: 620px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: #f5bd00;
  color: #111;
  padding: 22px 48px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 35px;
}

.hero-person {
  display: none;
}

/* About title */
.left-title {
  margin-left: 40px;
}

.section-title h2 {
  font-size: 58px;
  color: #fff;
  margin: 0;
  font-weight: 900;
}

/* stats separator line */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 55px;
  min-height: 95px;
  color: #fff;
}

/* .stat-item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 55px;
  width: 160px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(245, 189, 0, 0),
    #f5bd00,
    rgba(245, 189, 0, 0)
  );
} */

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
  color: #f5bd00;
  font-size: 42px;
  min-width: 58px;
  text-align: center;
}

.stat-item b {
  display: block;
  color: #f5bd00;
  font-size: 18px;
  line-height: 1.1;
}

.stat-item span {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.about {
  padding-bottom: 0;
}

.about-grid {
  margin-bottom: 0;
}

