* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2e7d32;
  --primary-light: #66bb6a;
  --primary-dark: #1b5e20;
  --accent: #ffa726;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header h1 {
  font-size: 1.5rem;
  color: var(--primary);
}

.name {
  color: var(--accent);
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.toggle-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: inline-block;
  overflow: hidden;
}

.animated-text {
  display: inline-block;
}

.animated-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterReveal 0.3s ease forwards;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  opacity: 0;
  animation: revealText 1.5s ease forwards 0.6s;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure the hero-content animations don't interfere */
.hero-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: inline-block;
  overflow: hidden;
}

@keyframes revealText {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

@keyframes fadeIn {
  to {
    opacity: 0.9;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-button {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  opacity: 0;
  animation: bounceIn 0.8s ease forwards 1.2s;
}

.btn:first-child {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 167, 38, 0.4);
  animation-delay: 1.2s;
}

.btn:first-child:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 167, 38, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  animation-delay: 1.4s;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Solar Animation in Hero */
.solar-animation {
  position: relative;
  width: 400px;
  height: 400px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.5s;
}

.theSun {
  opacity: 1;
  box-shadow: 0px 0px 15px 3px yellow;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: sunpulse 2s alternate infinite;
  border-radius: 50%;
  background: yellow;
}

@keyframes sunpulse {
  from {
    box-shadow: 0 0 100px #ff0, 0 0 100px #ff0;
  }
  to {
    box-shadow: 0 0 25px #ff0, 0 0 75px #ff0;
  }
}

/* Sun rays */
.ray_box {
  position: absolute;
  margin: auto;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 140px;
  animation: ray_anim 120s linear infinite;
}

.ray {
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-left: 20px;
  border-radius: 80% 80% 0 0;
  position: absolute;
  opacity: 0.3;
}

.ray1 {
  height: 340px;
  width: 60px;
  transform: rotate(180deg);
  top: -350px;
  left: 30px;
}

.ray2 {
  height: 200px;
  width: 16px;
  transform: rotate(220deg);
  top: -180px;
  left: 150px;
}

.ray3 {
  height: 340px;
  width: 100px;
  transform: rotate(250deg);
  top: -160px;
  left: 200px;
}

.ray4 {
  height: 240px;
  width: 28px;
  transform: rotate(305deg);
  top: 60px;
  left: 200px;
}

.ray5 {
  height: 280px;
  width: 60px;
  transform: rotate(-15deg);
  top: 120px;
  left: 80px;
}

.ray6 {
  height: 180px;
  width: 100px;
  transform: rotate(30deg);
  top: 120px;
  left: -80px;
}

.ray7 {
  height: 360px;
  width: 20px;
  transform: rotate(70deg);
  top: -70px;
  left: -80px;
}

.ray8 {
  height: 240px;
  width: 60px;
  transform: rotate(100deg);
  top: -90px;
  left: -180px;
}

.ray9 {
  height: 160px;
  width: 20px;
  transform: rotate(120deg);
  top: -130px;
  left: -120px;
}

.ray10 {
  height: 380px;
  width: 46px;
  transform: rotate(150deg);
  top: -370px;
  left: -120px;
}

@keyframes ray_anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* About Section */
.about-preview {
  padding: 100px 0;
  background: var(--light);
}

.about-content {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-content h2 {
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-item {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.features p {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-light);
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-30px);
}

.features p.visible {
  opacity: 1;
  transform: translateX(0);
}

.features p:hover {
  border-left-color: var(--accent);
  transform: translateX(10px);
}

.features span {
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

/* Services Section */
#services {
  padding: 100px 0;
  background: var(--white);
}

.service-container h2:first-child {
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.service-container h2:nth-child(2) {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 60px;
}

.service-holder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  opacity: 0;
  transform: scale(0.9);
}

.service-card.visible {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* .service-card::before {
  content: "";
  display: block;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
} */

.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-img:hover {
  transform: scale(1.2);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Gallery Section */
.gallery-preview {
  padding: 100px 0;
  background: var(--light);
}

.gallery-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 60px;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-preview-img {
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s;
}

.gallery-preview-img.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s;
}

.gallery-preview-img:hover img {
  transform: scale(1.2);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-header h4 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-title-wrapper h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.testimonial-title-wrapper p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.slider-container {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  max-width: 700px;
  padding: 50px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.8;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-light);
}

.profile-info {
  text-align: left;
}

.profile-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
}

.profile-info small {
  color: #666;
}

.stars {
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ffd700;
}

.stars i {
  font-size: 1.3rem;
}

.stars span {
  margin-left: 10px;
  color: var(--dark);
  font-weight: 600;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* FAQ Section */
.faq-preview {
  padding: 100px 0;
  background: var(--light);
}

.faq-preview h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 60px;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-header {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-header:hover {
  background: var(--light);
}

.faq-question {
  font-weight: 600;
  color: var(--dark);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: all 0.4s;
  color: #666;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 25px 25px;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-info h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links i {
  font-size: 1.5rem;
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}

.social-links i:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.social-links a {
  text-decoration: none;
}
.links ul {
  list-style: none;
}

.links li {
  margin-bottom: 12px;
}

.links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.links a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    transition: right 0.3s;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px;
  }

  .toggle-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero .container {
    flex-direction: column;
  }

  .solar-animation {
    width: 300px;
    height: 300px;
  }

  .theSun {
    width: 150px;
    height: 150px;
  }

  .ray_box {
    width: 100px;
  }

  .ray1 {
    height: 255px;
    width: 45px;
    top: -262.5px;
    left: 22.5px;
  }

  .ray2 {
    height: 150px;
    width: 12px;
    top: -135px;
    left: 112.5px;
  }

  .ray3 {
    height: 255px;
    width: 75px;
    top: -120px;
    left: 150px;
  }

  .ray4 {
    height: 180px;
    width: 21px;
    top: 45px;
    left: 150px;
  }

  .ray5 {
    height: 210px;
    width: 45px;
    top: 90px;
    left: 60px;
  }

  .ray6 {
    height: 135px;
    width: 75px;
    top: 90px;
    left: -60px;
  }

  .ray7 {
    height: 270px;
    width: 15px;
    top: -52.5px;
    left: -60px;
  }

  .ray8 {
    height: 180px;
    width: 45px;
    top: -67.5px;
    left: -135px;
  }

  .ray9 {
    height: 120px;
    width: 15px;
    top: -97.5px;
    left: -90px;
  }

  .ray10 {
    height: 285px;
    width: 34.5px;
    top: -277.5px;
    left: -90px;
  }

  .service-holder,
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }
}

/*  */

/* Celestial Background System */
.celestial-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.sky-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background 3s ease-in-out;
}

/* Time-based sky colors */
.sky-gradient.dawn {
  background: linear-gradient(to bottom, #ff9a56 0%, #ff6b95 50%, #a8508f 100%);
}

.sky-gradient.morning {
  background: linear-gradient(to bottom, #87ceeb 0%, #b4d9f2 50%, #e0f2ff 100%);
}

.sky-gradient.afternoon {
  background: linear-gradient(to bottom, #4a90e2 0%, #7ab8f5 50%, #b8d9f8 100%);
}

.sky-gradient.dusk {
  background: linear-gradient(to bottom, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
}

.sky-gradient.night {
  background: linear-gradient(to bottom, #0c1445 0%, #1a237e 50%, #283593 100%);
}

/* Stars */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.stars-container.visible {
  opacity: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
  animation: starTwinkle 3s ease-in-out infinite;
}

.star:nth-child(1) {
  width: 2px;
  height: 2px;
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}
.star:nth-child(2) {
  width: 3px;
  height: 3px;
  top: 25%;
  left: 70%;
  animation-delay: 0.5s;
}
.star:nth-child(3) {
  width: 2px;
  height: 2px;
  top: 40%;
  left: 10%;
  animation-delay: 1s;
}
.star:nth-child(4) {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 80%;
  animation-delay: 1.5s;
}
.star:nth-child(5) {
  width: 2px;
  height: 2px;
  top: 70%;
  left: 30%;
  animation-delay: 0.3s;
}
.star:nth-child(6) {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 90%;
  animation-delay: 0.8s;
}
.star:nth-child(7) {
  width: 2px;
  height: 2px;
  top: 10%;
  left: 85%;
  animation-delay: 1.2s;
}
.star:nth-child(8) {
  width: 3px;
  height: 3px;
  top: 35%;
  left: 45%;
  animation-delay: 0.6s;
}
.star:nth-child(9) {
  width: 2px;
  height: 2px;
  top: 50%;
  left: 60%;
  animation-delay: 1.8s;
}
.star:nth-child(10) {
  width: 3px;
  height: 3px;
  top: 90%;
  left: 15%;
  animation-delay: 0.9s;
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Celestial Moon */
.celestial-moon {
  position: absolute;
  width: 80px;
  height: 80px;
  transition: all 2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.celestial-moon.visible {
  opacity: 1;
}

.moon-core {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #f5f5f5, #e0e0e0, #bdbdbd);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(245, 245, 245, 0.4);
  position: relative;
}

.crater {
  position: absolute;
  background: #9e9e9e;
  border-radius: 50%;
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.3);
}

.crater-1 {
  width: 8px;
  height: 8px;
  top: 25%;
  left: 35%;
}
.crater-2 {
  width: 12px;
  height: 12px;
  top: 45%;
  left: 55%;
}
.crater-3 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 25%;
}

/* Celestial Sun */
.celestial-sun {
  position: absolute;
  width: 100px;
  height: 100px;
  transition: all 2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.celestial-sun.visible {
  opacity: 1;
}

.sun-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    #ffd700 0%,
    #ffed4e 40%,
    rgba(255, 237, 78, 0) 70%
  );
  border-radius: 50%;
  animation: celestialSunPulse 4s ease-in-out infinite;
  box-shadow: 0 0 40px #ffed4e, 0 0 80px rgba(255, 215, 0, 0.5);
}

@keyframes celestialSunPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

/* Make hero sction background transparent */
.hero {
  background: transparent !important;
  position: relative;
}

.hero::before {
  background: rgba(102, 126, 234, 0.1) !important;
}
