@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');




.hero-section {

  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(71, 218, 115, 0.1) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(0, 85, 29, 0.1) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  margin-top: 2rem;
  position: absolute;
  inset: 0;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  background: var(--accent-color);
  width: 500px;
  height: 500px;
  top: -250px;
  right: -100px;
}

.hero-shape-2 {
  background: var(--primary-color);
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
}

.hero-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-heading {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  animation: fadeInUp 1s ease;
}

.hero-paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons-wrapper {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-button {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-button-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 85, 29, 0.2);
}

.hero-button-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 85, 29, 0.3);
}

.hero-button-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.hero-button-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 85, 29, 0.2);
}

.hero-image-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-blob {
  width: 500px;
  height: 500px;
  background: var(--gradient);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobAnimation 20s infinite alternate;
  filter: drop-shadow(0 10px 40px rgba(0, 85, 29, 0.3));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
}

@keyframes blobAnimation {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  25% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  75% {
    border-radius: 60% 40% 50% 50% / 30% 50% 60% 70%;
  }

  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-heading {
    font-size: 4rem;
  }

  .hero-blob {
    width: 450px;
    height: 450px;
  }

  .hero-container {
    margin-top: 10rem;
  }
}

@media (max-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-heading {
    font-size: 3.5rem;
  }

  .hero-buttons-wrapper {
    justify-content: center;
  }

  .hero-blob {
    width: 400px;
    height: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-container {
    margin-top: 10rem;
    padding: 0 1rem;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-paragraph {
    font-size: 1rem;
  }

  .hero-buttons-wrapper {
    flex-direction: column;
  }

  .hero-blob {
    width: 300px;
    height: 300px;
  }

  .hero-button {
    width: 100%;
  }
}