@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, button {
  font-family: 'Michroma', sans-serif;
}

.blue-metal-section {
  color: #222;
}

.section-block {
  padding: 2rem 2rem;
  text-align: center;
}

.section-grey {
  background: #f1f1f1;
}

.section-light {
 background: linear-gradient(to bottom, #ffffff, #fff308);
}

.section-white {
  background: linear-gradient(to bottom, #807e7eb7, #ffffff);
}

.blue-metal-container {
  max-width: 1000px;
  margin: 0 auto;
}

.blue-metal-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blue-metal-subheading {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
  background: #444;
  transform: scale(1.05);
}

.blue-metal-container h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.blue-metal-container p,
.blue-metal-container ul,
.blue-metal-container ol {
  font-size: 1rem;
  color: #333;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1rem auto;
}
.blue-metal-container .process-list {
  text-align: left;
  padding-left: 0; /* removes default indent */
  list-style-position: inside; /* optional: keeps numbers aligned under text */
  margin-left: 350px;
}


.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}


.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 300px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px; /* or adjust as needed (180px–220px range) */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: #555;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.application-swiper {
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.application-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* remove radius for edge-to-edge look */
  width: 100%;
  height: 400px; /* adjust for reduced height */
  cursor: grab;

}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.overlay-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0.8rem;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  text-align: right;
  transition: background 0.3s ease, transform 0.5s ease;
}

.application-card:hover img {
  transform: scale(1.05);
}

.application-card:hover .overlay-text {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.05);
}

.swiper-pagination-bullet {
  background: #555;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #222;
}
