/* ==== 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 ==== */

/* ==== From Clothing Styles Start ==== */
#from-clothing {
  padding: 0.8rem;
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.from-clothing-heading {
  margin-top: 2rem;
  line-height: 130%;
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: var(--space-md);
}

.from-clothing-title-sec {
    max-width: 500px;
    margin: 0 auto;
  }

.from-clothing-title-sec p {
  padding-bottom: var(--space-smmd);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: center;
}

.from-clothing-image-con {
  width: 100%;
  margin: 0 auto;
  max-width: 350px;
}

.from-clothing-image-con img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: var(--space-md);
  height: 350px;
  object-fit: cover;
}

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

@media screen and (min-width: 1024px) {
  .from-clothing-title-sec {
    margin: 0 auto;
    max-width: 1000px;
  }

  .from-clothing-image-con {
    max-width: 400px;
    margin: 0;
  }

  .from-clothing-image-con img {
    margin: 0;
    height: 400px;
  }

  .from-clothing-text-sec {
    max-width: 500px;
  }

  .from-clothing-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}

/* ==== From Clothing Styles End ==== */

/* ==== Run With Discipline Styles Start ==== */
#with-discipline {
  padding: 0.8rem;
  background-color: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.with-discipline-title-sec {
    max-width: 650px;
    margin: 0 auto;
  }

.with-discipline-heading {
  margin-top: 2rem;
  line-height: 130%;
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: var(--space-md);
}

.with-discipline-title-sec p {
  padding-bottom: var(--space-smmd);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: center;
}

.with-discipline-features-sec {
  margin: 0 auto;
  background: var(--bg-colour-2);
  color: #222;
  font-family: 'Inter', sans-serif;
  max-width: 450px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.with-discipline-feature-card {
  background: var(--bg-colour-1);
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.with-discipline-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.with-discipline-title-sec {
  padding-bottom: var(--space-md);
}

/* Icon Circle */
.with-discipline-icon-circle {
  width: 35px;
  height: 35px;
  background: #00c3ff00;
  color: var(--main-brand-blue);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Heading */
.with-discipline-feature-card h3 {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* Text */
.with-discipline-feature-card p {
  color: var(--text-colour-1);
  opacity: 0.9;
}

@media screen and (min-width: 1024px) {
  .with-discipline-title-sec {
    max-width: 750px;
  }

  .with-discipline-features-sec {
    max-width: 950px;
    display: flex;
    flex-direction: row;
    gap: 2rem
  }

  .with-discipline-feature-card {
    width: 290px;
  }
}
/* ==== You'll Never Section Styles End ==== */