body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100%;
  background: linear-gradient(to right, #140826, #0f0131); /* example background gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px; /* creates visible space below the fixed header */
  transform: translateY(60px) !important;
  transition: opacity 1s ease-out, transform 1s ease-out !important;

}

.overlay-shape {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 80%;
  height: 140%;
  background: white;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: 0;
  opacity: 0.15;
  animation: floatShape 6s infinite ease-in-out;
}

.bussiness_button{
    color: #140826;
    font-family: 'Lexend Deca', san-serif;
    font-size: 16px;
    padding: 16px 24px;
    border-radius: 40px;
    border: 2px solid;
    background: none;
    background-size: 250%;
  background-position: right;
  transition: .3s ease-in-out;
  overflow: visible;
}
.hero-image {
  position: relative;
  z-index: 1;
}
h3{
  font-size: xx-larger;
}
.hero-image img {
  max-height: 77vh;
  width: auto;
  object-fit: contain;
  animation: fadeInUp 1s ease-out forwards;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
}

.text-left, .text-right {
  position: absolute;
  top: 10%;
      letter-spacing: 15px;
  font-size: 3.5vw;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 1.2;
  z-index: 2;
  animation: fadeInUp 1s ease-out forwards;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.text-left {
  left: 2rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.text-right {
  right: 2rem;
  writing-mode: vertical-rl;
}
@keyframes verticalFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.text-left,
.text-right {
  animation: verticalFloat 3s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.card-one {
  background-image: url('../assets/section_six_1.png');
}

.card-two {
  background-image: url('../assets/section_six_2.png');
}

.card-three {
  background-image: url('../assets/section_six_3.png');
}

.three-card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 20px;
}

.card {
  flex: 1 1 30%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px !important;
  color: white !important;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  background-color: black !important;
  transform: translateY(50px);
  transition: all 0.6s ease;
}
.card .overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0) !important; /* 20% opacity = lighter overlay */
  z-index: 1;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-content {
  padding: 10% !important;
  border-radius: 8px;
}



@media (max-width: 768px) {
  .three-card-section {
    flex-direction: column;
  }
  .hero{
    padding-top: 46px !important;
  }
  .section_one{
    margin-top:20%;
  }
  .hero-image img {
    max-height: 27vh;
  }
  .text-left .text-right{
    font-size: x-small;
  }
  .card {
    flex: 1 1 100%;
  }
}
