.vdclabel{
  font-weight: 500;
font-style: Medium;
font-size: 12px;
 color: #809AB1;
line-height: 150%;
letter-spacing: 0px;
 
 
}

.vdc-title{
        
font-weight: 700;
font-style: Bold;
font-size: 60px;
 color: #111111;
 
letter-spacing: 0px;
vertical-align: middle;
}

.section-style{
      background: #FAFAFA;
}

/* SECTION */
.hero-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 3% 3%;
  background: #FAFAFA;
}

/* WRAPPER */
.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  gap: 60px;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-label {
  font-size: 14px;
  font-weight: 600;
  color: #6D6D88;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  color: #111111;
  margin: 20px 0;
}

.hero-title .highlight {
  color: #191970;
}

.hero-text {
  font-size: 20px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 520px;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  max-width: 500px;
}

.image-wrapper img {
  width: 398px;
  height: 154px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ANIMATIONS (Framer Motion Replacement) */
.animate-left {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-right {
    display: none; /* same as hidden lg:flex */
  }
}