.record-strip {
  background: #f3fbf7; /* light green */
  padding: 90px 20px;
  width: 100% !important;
}

.record-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading animation */
.record-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  animation: slideFade 1s ease;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.record-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
}
.trophy {
  display: inline-block;
  animation: trophyBounce 2s infinite;
}

@keyframes trophyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px) rotate(-5deg); }
}
/* Cards */
.record-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.record-box {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  border-left: 5px solid #1f7a4d;
}

.record-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1f7a4d;
}

.record-box p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* Founder paragraph */
.founder-para {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 16.5px;
  color: #444;
  line-height: 1.8;
}

.exposure-section {
  margin-bottom: 50px;
  text-align: center;
}

.exposure-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

/* underline animation */
.exposure-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #1f7a4d;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  animation: lineGrow 1.2s ease forwards;
}

@keyframes lineGrow {
  to { width: 70%; }
}

/* Gallery layout */
.record-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

/* Images */
.expo-img {
  overflow: hidden;
  border-radius: 16px;
}

.expo-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover effect */
.expo-img:hover img {
  transform: scale(1.06);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .expo-img img {
    height: 180px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .record-heading {
    font-size: 30px;
  }

  .record-cards {
    grid-template-columns: 1fr;
  }

  .record-box {
    padding: 30px;
  }

}
