.resources-hero {
  padding: 60px 24px;
}

.resources-hero-inner {
  max-width: 1200px;
  margin: auto;
  background: #1e3163;
  border-radius: 28px;
  padding: 20px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: inline-block;
  color: #dbe2ff;
  font-size: 14px;
  margin-bottom: 16px;
}

.resources-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.resources-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: #dbe2ff;
  line-height: 1.6;
}

/* Decorative shapes */

.shape {
  position: absolute;
  opacity: 0.25;
}

.shape-star {
  top: 24px;
  right: 120px;
  width: 40px;
  height: 40px;
  background: #fff;
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
}

.shape-cross {
  bottom: 24px;
  left: 32px;
  width: 36px;
  height: 36px;
  background: #fff;
  clip-path: polygon(
    40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%,
    60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%,
    0% 40%, 40% 40%
  );
}

.shape-dots {
  right: 32px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  background:
    radial-gradient(#fff 2px, transparent 2px);
  background-size: 12px 12px;
}

/* Mobile */

@media (max-width: 768px) {
  .resources-hero-inner {
    padding: 80px 24px;
  }

  .resources-hero h1 {
    font-size: 28px;
  }
}
.resources-grid-section {
  padding: 20px 24px 40px;
  background: #fff;
}

.resources-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.resources-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 10px;
}

.resources-desc {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 14px;
  color: #555;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resource-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-decoration: none;
}

.resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0)
  );
}

.resource-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
}

/* Mobile */
@media (max-width: 900px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}
.product-showcase {
  padding: 120px 24px;
  background: #2f2f2f;
  color: #fff;
  text-align: center;
}

.product-showcase h2 {
  font-size: 48px;
  margin: 16px 0 60px;
  font-family: "Playfair Display", serif;
}

.carousel {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
}

.track {
  display: flex;
  gap: 40px;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.card {
  width: 320px;
  background: #1f1f1f;
  border-radius: 20px;
  padding: 24px;
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 8px;
}

.card.active {
  opacity: 1;
  transform: scale(1);
  background: #000;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: 22px;
  cursor: pointer;
}

.nav.prev { left: -20px; }
.nav.next { right: -20px; }
.industry-trust {
  padding: 120px 24px;
}

.industry-trust-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.industry-trust-content h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.industry-trust-content h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 22px;
}

.industry-trust-content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.industry-trust-content li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.industry-trust-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.industry-trust-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .industry-trust-inner {
    grid-template-columns: 1fr;
  }

  .industry-trust-content h2 {
    font-size: 28px;
  }
}
.manufacturing-cta {
  padding: 80px 24px;
}

.cta-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #1e3163; /* Dark blue */
  color: #fff;
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 14px;
  color: #dbe2ff;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-light {
  background: #fff;
  color: #1e3163;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #1e3163;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 24px;
  }
}


/* =========================
   CASE STUDIES
========================= */

.case-section {
  background: #ffffff;
  padding: 50px 100px;
}

/* HEADER */
.case-head {
  text-align: center;
  margin-bottom: 80px;
}

.case-head h2 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 500;
  color: #0f172a;
}

/* GRID */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* CARD */
.case-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
}

/* IMAGE */
.case-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* IMAGE GLOW EFFECT ON HOVER */
.case-card:hover img {
  box-shadow: 0 0 35px rgba(15, 23, 42, 0.45);
  transform: scale(1.03);
}

/* OVERLAY (ALWAYS VISIBLE NOW) */
.case-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; /* Always visible */
}

/* BIGGER TEXT */
.case-overlay h3 {
  color: #ffffff;
  font-size: 24px;   /* Increased from 18px */
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
}
