/* Section background and layout */
.explore-offerings-section {
  position: relative;
  background: #e5e7eb;
  padding: 60px 0 40px 0;
  min-height: 60vh;
  overflow: hidden;
}
.explore-offerings-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}
.explore-offerings-container {
  position: relative;
  z-index: 1;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2vw;
}
.explore-offerings-subtitle {
  display: block;
  background: #f3f4f6;
  color: #181818;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 22px;
  padding: 7px 28px;
  margin-bottom: 32px;
  margin-top: 10px;
  letter-spacing: 0.01em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.explore-offerings-title {
  font-size: 4rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 60px;
  margin-top: 0;
  text-align: center;
  line-height: 1.1;
}
.explore-offerings-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 36px;
  margin: 0 auto;
  padding-bottom: 30px;
  overflow-x: auto;
}
.explore-offerings-card {
  background: #26283a;
  border-radius: 18px;
  box-sizing: border-box;
  width: 540px;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 36px;
  min-height: 140px;
  margin-bottom: 0;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: none;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  position: relative;
}
.explore-offerings-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.explore-offerings-card:hover {
  box-shadow: 0 8px 32px rgba(38,40,58,0.13);
  background: #23243a;
}
.explore-offerings-card i {
  font-size: 4rem;
  color: #fff;
  background: none;
  border-radius: 12px;
  padding: 0;
  min-width: 80px;
  text-align: center;
  display: inline-block;
}
.explore-offerings-card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0 0;
  line-height: 1.1;
  text-align: left;
  letter-spacing: 0.01em;
  display: inline-block;
}
@media (max-width: 1500px) {
  .explore-offerings-title { font-size: 3rem; }
  .explore-offerings-card { width: 340px; min-width: 240px; max-width: 340px; padding: 24px 18px; gap: 18px;}
  .explore-offerings-card i { font-size: 2.5rem; min-width: 60px; }
  .explore-offerings-card h4 { font-size: 1.2rem; }
}
@media (max-width: 1200px) {
  .explore-offerings-title { font-size: 2.2rem; }
  .explore-offerings-card { width: 240px; min-width: 180px; max-width: 240px; padding: 18px 10px; gap: 12px;}
  .explore-offerings-card i { font-size: 2rem; min-width: 40px; }
  .explore-offerings-card h4 { font-size: 1rem; }
}
@media (max-width: 900px) {
  .explore-offerings-row {
    gap: 18px;
    margin-left: 0;
    padding-bottom: 18px;
  }
  .explore-offerings-title { font-size: 1.5rem; margin-left: 0; }
  .explore-offerings-subtitle { margin-left: 0; }
  .explore-offerings-card { width: 90vw; min-width: 90vw; max-width: 90vw; }
  .explore-offerings-card i { font-size: 2rem; min-width: 40px; }
  .explore-offerings-card h4 { font-size: 1rem; }
}
@media (max-width: 600px) {
  .explore-offerings-section { padding: 30px 0 0 0; }
  .explore-offerings-title { font-size: 1.1rem; margin-bottom: 24px; }
  .explore-offerings-row { gap: 12px; }
  .explore-offerings-card { width: 98vw; min-width: 98vw; max-width: 98vw; padding: 10px 6px; gap: 8px;}
  .explore-offerings-card i { font-size: 1.2rem; min-width: 28px; }
  .explore-offerings-card h4 { font-size: 0.98rem; }
}
.explore-offerings-row::-webkit-scrollbar {
  display: none;
}
.explore-offerings-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}