.about-story-cards {
  padding: 80px 20px;
  text-align: center;
  background: url("Images_About/About_Background.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.about-story-cards h2 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}

.about-subtitle {
  font-size: 15px;
  color: #000;
  max-width: 800px;
  margin: 15px auto 40px auto;
  line-height: 1.5;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* Top glass section */
.card-top {
    background-color: #ffffff33;
  backdrop-filter: blur(4px);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #000;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

.card-top .icon {
  font-size: 36px;
  color: #000000;
  margin-bottom: 10px;
}

.card-top h3 {
  color: #000000;
  font-size: 18px;
  margin: 0;
}

/* Bottom black section */
.card-bottom {
  background: #000;
  color: #fff;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover — mirrors Services cards behaviour */

.card:hover {
  background: #0000009a;
  transform: translateY(-10px);
  border-color: #ffffff;
}

.card:hover h3 {
    color: #ffffff;
}
.card:hover p {
  color: #fff;
}

.card:hover .icon i {
  transform: scale(1.15);
  color: #ffffff;
}

.card:hover .card-bottom {
    color: #ffe401;
}


.about-clients {
  background: #000;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.clients-wrapper {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.clients-page {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.clients-page.active {
  opacity: 1;
  position: relative;
}

.clients-page img {
  max-height: 50px;
  object-fit: contain;
}