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

.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;
}

.location-tag {
  display: flex;
  align-items: flex-start;
}

.location-tag p {
  margin: auto 0;
  font-size: 0.8rem;
}

.location-tag .icon {
  margin-right: 0.3rem;
}

@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-list {
    grid-template-columns: repeat(3,
    1fr);
  }
}
/* ==== Hero Component End ==== */

/* ====== Pricing Section Styles ====== */
.pricing-sec {
  padding: 0.8rem;
  margin: 0 auto;
  color: white;
  background: var(--bg-colour-2);
  overflow: hidden;
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

/* Headline */
.pricing-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  margin-top: 1rem;
}

.pricing-accent {
  color: #00bfff;
}

/* ====== Cards ====== */
.pricing-card {
  background: var(--bg-colour-1);
  border-radius: 5px;
  padding: 1.3rem;
  margin-bottom: 4rem;
  position: relative;
}

.pricing-featured {
  border: 1px solid #00bfff;
  box-shadow: 0 0 8px 2px #00bfff55;
}

.pricing-label {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #00bfff;
  color: black;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.3rem;
  border-radius: 5px;
  border: 1px solid #00bfff;
  box-shadow: 0 0 6px 2px #00c3ff65;
  font-family: 'Poppins', sans-serif;
}

.pricing-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-colour-1);
}

.pricing-subtitle {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: #aaa;
}

.pricing-amount {
  font-size: 2.1rem;
  font-weight: 600;
  margin-top: 1.3rem;
  margin-bottom: 1.3rem;
  color: var(--text-colour-1);
  color: white;
}

.pricing-cycle {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-colour-2);
  margin-bottom: 0.9rem;
}

/* ====== Features List ====== */
.pricing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.pricing-list li {
  position: relative;
  padding-right: 1.1rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.pricing-list li::after {
  content: '✓';
  position: absolute;
  right: 0;
  top: 0;
  color: #00bfff;
  font-weight: bold;
}

.not-included {
  color: var(--text-colour-2);
}

.pricing-list .not-included::after {
  content: '✖';
  position: absolute;
  right: 0;
  top: 0;
  color: #747474;
  font-weight: bold;
}

.pricing-cta-button {
  display: inline-block;
  background: #00bfff;
  color: black;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 6px 2px #00c3ff65;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
  width: 100%;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.pricing-cta-button:hover {
  box-shadow:
    0 0 8px var(--main-brand-blue),
    0 0 12px var(--main-brand-blue),
    0 0 16px var(--main-brand-blue);
}

/* ====== Guarantee Box ====== */
.pricing-guarantee {
  border-radius: 5px;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: var(--space-md);
  border: 1px solid var(--main-brand-blue);
  box-shadow: 0 0 6px 2px #00c3ff7c;
}

.pricing-guarantee h3 {
  font-weight: 500;
  padding-bottom: var(--space-sm);
  padding-left: 0.8rem;
}

.pricing-guarantee p {
  opacity: 0.9;
}

.guarantee-icon {
  font-size: 1.25rem;
  color: #00bfff;
  font-size: 1.1rem;
}

.pricing-guaran-row {
  display: flex;
}

@media screen and (min-width: 768px) {
  .pricing-sec-inner {
    margin: 0 auto;
  }

  .pricing-cards-con {
    display: flex;
    justify-content: space-evenly;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    width: 350px;
    display: flex;
    flex-direction: column;
  }

  .pricing-cta-button {
    margin-top: auto;
  }

  .pricing-guarantee {
    width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-heading {
    margin-bottom: 4rem;
    margin-top: 3rem;
  }
}