.hero-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #fff;
}

/* Gradient Glow Background */

.hero-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140,120,255,0.4), transparent);
  top: -100px;
  left: 200px;
  filter: blur(120px);
  z-index: 0;
}

/* Layout */

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  animation: fadeSlide 1s ease forwards;
}

.hero-right {
  flex: 1;
  animation: fadeSlide 1.2s ease forwards;
}

/* Typography */

.hero-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-heading span {
  font-weight: 500;
  font-style: italic;
}

.hero-text {
  font-size: 1.1rem;
  color: #666;
  max-width: 520px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Buttons */

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #444;
}

.btn-outline {
  border: 1px solid #000;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #000;
  color: white;
}

/* Image */

.hero-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transform: rotate(2deg);
  animation: floatImage 5s ease-in-out infinite;
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}

/* Animations */

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(2deg); }
}

/* Responsive */

@media(max-width:900px){
  .hero-wrapper{
    flex-direction: column;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-heading{
    font-size:2.6rem;
  }
}
