/* ======================================================
   CORPORATE GIFTS (SINGLE IMAGE CREATIVE)
   ====================================================== */

.corporate-gifts{
  padding: 100px 0;
}

.corporate-wrapper{
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LEFT */
.corporate-content{
  flex: 1;
}

.corporate-tag{
  display: inline-block;
  background: rgba(207,175,107,0.2);
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.corporate-content h2 span{
  color: var(--color-primary);
}

.corporate-content p{
  margin: 20px 0;
  font-size: 17px;
}

.corporate-features{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.corporate-features div{
  border: 1px solid #2f5a3f;
  color: #2f5a3f;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* RIGHT VISUAL */
.corporate-visual{
  flex: 1;
  display: flex;
  justify-content: center;
}

/* IMAGE WRAPPER (CREATIVE EFFECT) */
.corporate-image-wrapper{
  position: relative;
  width: 340px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Background layer effect */
.corporate-image-wrapper::before{
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(
    135deg,
    var(--color-soft-green),
    var(--color-bamboo)
  );
  z-index: -1;
  border-radius: 25px;
  opacity: 0.3;
}

/* IMAGE */
.corporate-image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGES */
.image-badge{
  position: absolute;
  background: var(--color-white);
  border: 1px solid #2f5a3f; /* green visible now */
  color: #2f5a3f;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: var(--shadow-soft);
  font-weight: 500;
}

.badge-1{
  top: 20px;
  left: 20px;
}

.badge-2{
  bottom: 20px;
  right: 20px;
}


/* Floating leaves (unchanged) */
.leaf{
  position:absolute;
  width:60px;
  height:60px;
  background:url('/assets/images/leaf.png') no-repeat center/contain;
  opacity:.45;
  animation:floatLeaf 7s ease-in-out infinite;
  z-index:1;
}

/* LEFT SIDE LEAVES */
.corporate-gifts-leaf-left-1{
  top:270%;
  left:15%;
  animation-delay:0s;
}

.corporate-gifts-leaf-left-2{
  top:345%;
  left:52%;
  animation-delay:2s;
}


@keyframes floatLeaf{
  0%{
    transform:translateY(0) rotate(0deg);
  }

  50%{
    transform:translateY(-20px) rotate(12deg);
  }

  100%{
    transform:translateY(0) rotate(0deg);
  }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media(max-width: 992px){

  .corporate-wrapper{
    flex-direction: column;
    text-align: center;
  }

  .corporate-features{
    justify-content: center;
  }

  .corporate-visual{
    margin-top: 40px;
  }

}