/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 240, 0.9) 100%), url("assets/images/hero-bg-pattern.png");
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--themeprimaryclr), var(--themesecondaryclr), var(--themeprimaryclr));
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 103, 31, 0.1);
  color: var(--themeprimaryclr);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 103, 31, 0.2);
}

.main-heading {
  font-family: var(--secondaryfont);
  font-size: 3rem;
  font-weight: 700;
  color: var(--themethirdclr);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 103, 31, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 103, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 103, 31, 0);
  }
}
.hero-image {
  position: relative;
}

.image-frame {
  background: linear-gradient(135deg, var(--plainclr), var(--lightbg));
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow3);
  position: relative;
  overflow: hidden;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to bottom, var(--themeprimaryclr), var(--themesecondaryclr));
}

.vivekananda-quote {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow1);
  max-width: 400px;
}

.vivekananda-quote blockquote {
  font-family: var(--secondaryfont);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--themethirdclr);
  margin-bottom: 15px;
  line-height: 1.4;
}

.vivekananda-quote cite {
  font-size: 1rem;
  color: var(--themeprimaryclr);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .main-heading {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .main-heading {
    font-size: 2rem;
  }
  .vivekananda-quote blockquote {
    font-size: 1.1rem;
  }
  .image-frame {
    height: 250px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=hero-section.css.map */