@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bg: #f8f8f8;
  --ink: #17151a;
  --card-dark: #2a0f17;
  --card-dark-2: #1e0a10;
  --card-radius: 20px;
  --card-border: rgba(20, 22, 31, 0.08);
  --cream: #ffffff;
  --text: #000725;
  --text-muted: #494949;
  --accent: #9c040e;
  --accent-hover: #800109;
  --radius-pill: 60px;
  --container-x: clamp(1.25rem, 4vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.accent {
  color: var(--accent) !important;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Urbanist", sans-serif !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none !important;
  color: inherit;
}

p {
  letter-spacing: 1px !important;
}

img {
  max-width: 100%;
  display: block;
}

.container-x {
  width: 100%;
  padding-left: var(--container-x);
  padding-right: var(--container-x);
  margin: 0 auto;
  max-width: 1600px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Type */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

h1 {
  font-weight: 600;
  margin: 0;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  max-width: 620px;
}

.counter-title {
  font-size: 4.5rem;
  line-height: 1.12;
  margin: 0% !important;

  background: radial-gradient(
    199.88% 142.18% at 0 0,
    #ac2a2a 0%,
    #9c0500 19%,
    #f93641 46.5%,
    #ff8f47 95%
  );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  max-width: 100%;
}

.section-pad {
  padding: 4rem 0;
}

/* Buttons */
.btn-pill {
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
}

.about-btn {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease-in-out;
  color: #000;
  margin-bottom: 20px;
}

.about-btn:hover svg {
  color: #800109;
  transition: 0.2s ease-in-out;
  margin-left: 3px;
}

.about-img {
  border-radius: 20px;
}

.btn-pill:hover {
  transform: translateY(-3px);
}

.btn-cream {
  color: #fff;
  background: var(--accent);
}

.btn-cream:hover {
  color: #fff;
  background: var(--accent-hover);
}

.btn-outline-invert {
  color: #fff;
  background: rgba(145, 145, 145, 0.288);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.219);
}

.btn-outline-invert:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* NAVBAR */
#mainNav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.4rem var(--container-x);
  transition: padding 0.4s ease;
}

#mainNav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-links {
  background: rgba(145, 145, 145, 0.192);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.219);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: background 0.4s;
}

#top-contact {
  background-color: #fff;
  color: #000725;
}

#top-contact:hover {
  background-color: var(--accent);
  color: #fff;
}

.nav-links a {
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(244, 242, 236, 0.72);
  transition:
    background 0.3s,
    color 0.3s;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* SERVICES DROPDOWN */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a i {
  font-size: 0.7rem;
  margin-left: 0.35rem;
  transition: transform 0.35s ease;
  vertical-align: 1px;
}

.nav-item-dropdown.open > a i {
  transform: rotate(180deg);
}

/* invisible bridge so the pointer can travel from the link down
       into the panel without the gap registering a mouseleave */
.nav-dropdown-bridge {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 250px;
  background: rgba(20, 21, 28, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 10;
}

.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  white-space: nowrap;
}

.nav-dropdown a i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.nav-dropdown a span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown a .nav-dropdown-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.nav-dropdown a .nav-dropdown-desc {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(244, 242, 236, 0.55);
  white-space: normal;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.counter-label {
  color: rgb(41, 41, 41);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-block: 10px 0px;
}

.nav-toggle {
  display: none;
  background: var(--cream);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #161822;
}

/* Combined <=991px rules: mobile nav panel + services dropdown + hero */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 5.4rem;
    left: var(--container-x);
    right: var(--container-x);
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 11, 16, 0.97);
    padding: 1rem;
    gap: 0.2rem;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-dropdown-bridge {
    display: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 0.2rem;
    opacity: 1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.03);
    max-height: 0;
    padding: 0 0.5rem;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.4s ease;
  }

  .nav-item-dropdown.open .nav-dropdown {
    max-height: 340px;
    padding: 0.5rem;
    pointer-events: auto;
  }

  .nav-dropdown a {
    white-space: normal;
    justify-content: center;
    text-align: left;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .dropdown-toggle-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-desc {
    margin-left: 0;
    margin-top: 2rem;
  }

  .hero-trusted {
    margin-left: 0;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 9rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #071022;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: transform, opacity;
}

.hero-bg video.is-ready {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(7, 16, 34, 0.795) 0%,
    rgba(7, 16, 34, 0.5) 15%,
    rgba(7, 16, 34, 0.22) 30%
  );
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 16, 34, 0.548) 0%,
    rgba(7, 16, 34, 0.5) 45%,
    rgba(7, 16, 34, 0.22) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 5.5rem;
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
  max-width: 20ch;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  will-change: transform;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.hero-desc {
  color: rgba(244, 242, 236, 0.8);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 60ch;
}

/* HERO TRUSTED-BY */
.hero-trusted {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  max-width: 32ch;
  margin-bottom: 1.4rem;
}

.hero-trusted-avatars {
  display: flex;
  flex-shrink: 0;
}

.counter-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.counter-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee7a;
  padding: 10px;
  width: 70px;
  height: 70px;
  border: 1px solid #b6000021;
  border-radius: 10px;
}

.hero-trusted-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin-left: -13px;
  background: #0a0b10;
}

.hero-trusted-avatars img:first-child {
  margin-left: 0;
}

.hero-trusted-label {
  color: #fff;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
}

/* FOOTER */
footer {
  color: #fff !important;
  padding-bottom: 2rem;
  padding-top: 7rem;
  border-top: 1px solid var(--card-border);
  background-color: #071122;
}

/* reveal helpers */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.btl-section {
  position: relative;
  padding: 4rem 0 4rem;
  background-color: #f7f9fa;

  overflow: hidden;
}

.btl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.btl-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.btl-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  max-width: 620px;
}

.btl-nav {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  opacity: 0;
}

.btl-nav-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #000725;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease;
}

.btl-nav-btn:hover {
  border: 1px solid #000725;
  color: #fff;
}

.btl-nav-btn:active {
  transform: scale(0.94);
}

.btl-nav-btn:disabled {
  border: 1px solid #000725 !important;
  color: #000725;
  opacity: 0.6;
  background-color: transparent;
  cursor: default;
}

.btl-nav-btn:disabled:hover {
  background: #e7e4de;
  color: var(--ink);
}

.btl-nav-btn svg {
  width: 20px;
  height: 20px;
}

.btl-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.btl-viewport::-webkit-scrollbar {
  display: none;
}

.btl-viewport.grabbing {
  cursor: grabbing;
}

.btl-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.btl-card {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
  height: 480px;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #ddd;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 575.98px) {
  .btl-card {
    width: 82vw;
    height: 480px;
  }
}

/* Backdrop layer — image gradient or dark solid, same treatment for every card */
.btl-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.btl-card:hover .btl-card-bg {
  transform: scale(1.06);
}

.ph-1 {
  background: linear-gradient(155deg, #cfd9dd 0%, #9fb0b8 45%, #6f818b 100%);
}

.ph-2 {
  background: linear-gradient(155deg, #7c8f6a 0%, #4c5c40 45%, #2c3a24 100%);
}

.ph-3 {
  background: linear-gradient(155deg, #d8cfc2 0%, #b3a58f 45%, #6f6250 100%);
}

.ph-dark {
  background: radial-gradient(
    120% 120% at 15% 0%,
    #3a1420 0%,
    var(--card-dark) 55%,
    var(--card-dark-2) 100%
  );
}

.btl-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(15, 5, 8, 0.35) 70%,
    rgba(15, 5, 8, 0.6) 100%
  );
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.btl-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(10, 3, 6, 0.15) 0%,
    rgba(10, 3, 6, 0.55) 45%,
    rgba(10, 3, 6, 0.88) 100%
  );
}

/* Bottom content panel — grows on hover to reveal the description */
.btl-card-panel {
  position: absolute;
  left: 12px;
  height: auto;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  color: #fff;
  background: rgba(145, 145, 145, 0.192);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.219);
  transition:
    background 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btl-card:hover .btl-card-panel {
  background: rgba(145, 145, 145, 0.192);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.219);
  transform: translateY(-2px);
}

.btl-panel-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}

.btl-panel-body-wrap {
  height: auto;
  opacity: 1;
  overflow: visible;
}

.btl-panel-body {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  max-width: 100%;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.72);
}

.btl-panel-link {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;

  /* Hidden state */
  opacity: 0;
  height: 0;
  margin-top: 0;
  overflow: hidden;
  transform: translateY(6px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    height 0.35s ease,
    margin-top 0.35s ease;
}

.btl-card:hover .btl-panel-link {
  opacity: 1;
  height: 24px; /* button/link ki actual height */
  margin-top: 1rem;
  transform: translateY(0);
}

.btl-panel-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btl-panel-link:hover svg {
  transform: translateX(4px);
}

.btl-panel-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links li a {
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  transition: 0.2s ease;
  letter-spacing: 1px;
}

.footer-links li a:hover {
  color: var(--accent);
  transition: 0.2s ease-in-out;
}

.footer-contact li {
  line-height: 25px;
  padding-bottom: 15px;
  font-size: 16px;
  color: #fff;
  transition: 0.2s ease;
  letter-spacing: 1px;
}

.footer-social a {
  width: 30px;
  color: #fff;
  margin-right: 15px;
  transition: 0.2s ease-in;
}

.footer-social a:hover {
  color: var(--accent);
  transition: 0.2s ease-in-out;
  margin-top: -2px;
}

.footer-bottom span {
  line-height: 25px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
}

.cta-section {
  padding-block: 3.5rem;
}

.cta-wrap {
  border-radius: 1rem;
  min-height: auto;
  overflow: hidden;
}

.cta-image {
  min-height: 310px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)),
    url("../images/about.jpg");
  background-size: cover;
  background-position: center;
}

.cta-content {
  position: relative;
  min-height: 310px;
  padding-inline: 40px;
  background: #071122;
  color: #fff;
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 410px;
}

.cta-text {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  max-width: 620px;
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 767.98px) {
  .cta-wrap {
    min-height: 0;
  }

  .cta-image,
  .cta-content {
    min-height: 260px;
  }

  .cta-content {
    padding: 22px;
  }
}

/* ---------- How It Works ---------- */
.solar-section {
  position: relative;
  overflow: hidden;
  background: url(../images/how-it-works-image.png) center 30% / cover no-repeat;
  padding-top: 50px;
}

/* white sky fading into the photo, plus a soft darkening toward the base
     so the white letters stay readable over the mountains */
.solar-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.solar-section > .container-fluid {
  position: relative;
  z-index: 1;
}

/* ---------- HEADER COPY ---------- */
.solar-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  max-width: 620px;
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
}

.solar-copy {
  color: #fff;
  max-width: 640px;
  margin: 1.25rem auto 1.75rem;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

/* ---------- LETTER ROW ---------- */
.letters-row {
  padding-top: 2.5rem;
}

.letter-col {
  padding: 0 1rem 3rem;
  text-align: center;
  border-right: 1px solid #c5c5c5bd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.letter-col:last-child {
  border-right: none;
}

.letter-col .letter {
  font-weight: 700;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.letter-col .word {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.6vw, 1.15rem);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.letter-col .desc {
  color: rgba(235, 235, 235, 0.9);
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  max-width: 230px;
  margin: 0.65rem 20px 0;
}

.letter-col img {
  width: 35%;
  margin-bottom: 20px;
}






/*---------- Products Section --------*/

.products-section {
  background-color: #f7f9fa;
  padding-block: 3.5rem 4rem;
}

.product-head {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.product-head h2 {
  max-width: 620px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}

.product-card {
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
}

.card-head h3 {
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.card-head p {
  font-size: 15px;
  color: #fff;
}

.product-card a {
  border-radius: var(--radius-pill);
  padding: 10px 30px;
  font-weight: 600;
  font-size: 15px;
  background-color: var(--accent);
  background-color: #fff;
  color: #fff;
  color: var(--accent);
  transition: 0.2s ease-in;
}

.product-card a:hover {
  /* background-color: var(--accent-hover); */
  background-color: var(--accent);
  color: #fff;
  transition: 0.2s ease-in-out;
}

.product-card-1 {
  background: url(../images/stainless-steel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card-2 {
  background: url(../images/steel-cables.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card-3 {
  background: url(../images/tinplate.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card-4 {
  background: url(../images/galvanized-steel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card-5 {
  background: url(../images/pre-painted-steel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card-6 {
  background: url(../images/other-steel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}






@media (max-width: 998px) {
  .nav-links {
    border-radius: 20px;
    margin-top: 20px;
  }
  .nav-dropdown {
    transform: translate(0%, 0) !important;
  }
}

@media (max-width: 767px) {
  .letter-col {
    border-right: none;
    border-bottom: 1px solid #c5c5c5bd;
    padding-bottom: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .letter-col:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(2.4rem, 4vw, 3rem);
  }
  .hero-desc {
    margin-top: 10px;
  }
}
