.hero-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

.hero-paragraph {
  max-width: 600px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  top: 60%;
  padding: 20px 0; 
}

.hero-image {
  width: 100%;
  height: 362px;
  object-fit: cover;
  margin-bottom: 30px;
}

.hero-share {
  position: absolute;
  z-index: 10000;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
.hero-share {
     position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: -10px;
  }
}

.hero-share .share-dropdown {
  position: relative;
  display: inline-block;
}

.hero-share .main-share {
  background-color: #000;
  color: #E6E6E6;
  border: none;
  width: 182px;
  height: 42px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
   background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(
      180deg,
      #95D2B7 0%,
      #F1A9CB 32.21%,
      #FED7A0 67.79%,
      #36C7F3 99.99%
    ) border-box;

  border: 2px solid transparent;
}




.hero-share .share-menu {
  position: absolute;
  left: calc(50% + 12px);
  transform: translateX(-50%);
  top: calc(100% + 10px);
  bottom: auto;
  background: #000;
  border: 1px solid rgba(230, 230, 230, 0.15);
  border-radius: 8px;
  width: 235px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: none;
}

.hero-share .share-menu.open {
  display: block;
}

.hero-share .share-menu button,
.hero-share .share-menu a {
  border: none;
  width: 100%;
  height: auto;
  max-width: none;
  margin-left: 0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  background: transparent;
  color: #E6E6E6;
  text-decoration: none;
}

.hero-share .share-menu button:hover,
.hero-share .share-menu a:hover {
  background: rgba(230, 230, 230, 0.08);
}

.hero-share .share-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  background: #000;
  border-left: 1px solid rgba(230, 230, 230, 0.15);
  border-top: 1px solid rgba(230, 230, 230, 0.15);
  transform: translateX(-50%) rotate(45deg);
}

.share-menu .copy-share {
  display: flex;
  align-items: center;
  gap: 4px;
}

.share-menu .input-like {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 6px 8px;
  flex-grow: 1;
  width: 100%;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32.5px;
  width: 32.5px;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.share-menu .copy-share i {
  font-size: 16px;
}

.share-menu .whatsapp-share-button {
  align-items: center;
  display: flex;
  gap: 4px;
}

.share-menu .whatsapp-share-button i {
  font-size: 20px;
}