/* ==== Hero Component Styles ==== */
#hero {
  padding: 1.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--bg-colour-1);
}

.hero-glow-bg {
  content: '';
  position: absolute;
  bottom: -6rem;                                      
  transform: translateX(-50%);  
  width: 300px;
  height: 300px;                
  background: radial-gradient(
    circle,
    #00bfff80,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;  
  animation: floatGlow 7s ease-in-out infinite;       
}

.hero-glow-bg-2 {
  content: '';
  position: absolute;
  top: -9rem;  
  right: -20rem;                                    
  transform: translateX(-50%);  
  width: 300px;
  height: 300px;                
  background: radial-gradient(
    circle,
    #00bfff80,
    transparent 70%
  );
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;   
  animation: floatGlow2 8s ease-in-out infinite reverse;      
}


.hero-content {
  position: relative;
  z-index: 2;
}

#hero div {
  padding-bottom: 1.5rem;
}

.main-title {
  font-size: 2rem;
  padding-bottom: var(--space-smmd);
  padding-top:5.5rem;
  text-align: left;
}

.hero-content p {
  text-align: left;
  margin-bottom: var(--space-smmd);
  opacity: 0.9;
}

.hero-content .about-sub {
  font-size: 1.2rem;
  opacity: 0.9;
}

.pulse-glow {
  color: #00bfff;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.158);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@media screen and (min-width: 768px) {
  .hero-content {
    width: 500px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .hero-glow-bg {
    bottom: -50%;
    width: 500px;
    height: 500px;
    filter: blur(60px)
  }

  .hero-glow-bg-2 {
    content: '';
    position: absolute;
    top: -9rem;  
    right: -30rem;                                    
    transform: translateX(-50%);  
    width: 500px;
    height: 500px;                
    background: radial-gradient(
      circle,
      #00bfff80,
      transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;         
  }
  
  .main-title {
    font-size: 2.2rem;
    padding-top: 7rem;
    font-weight: 800;
  }

  .hero-content {
    width: 700px;
  }
}
/* ==== Hero Component End ==== */

/* ==== Policy Section Start ==== */
.terms-of-service {
  padding: var(--space-xs);
  background-color: var(--bg-colour-3);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.policy-con {
  max-width: 750px;
}

.terms-of-service h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-colour-1);
}

.terms-of-service p, 
.terms-of-service ul {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.terms-of-service ul {
  padding-left: 1.2rem;
}

.terms-of-service li {
  margin-bottom: 0.3rem;
}

.terms-of-service strong {
  font-weight: 600;
}