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

/* untouched glow styles */
.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;
  max-width: clamp(500px, 70vw, 700px);
  margin: 0 auto;
}

#hero div {
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.main-title {
  padding-bottom: var(--space-smmd);
  padding-top: clamp(5.5rem, 6vw, 7rem);
  text-align: left;
}

.hero-content p {
  text-align: left;
  margin-bottom: var(--space-smmd);
  opacity: 0.9;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.hero-content .about-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.9;
}

.pulse-glow { 
  color: #00bfff; 
  text-shadow: 0 0 8px rgba(0,191,255,.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: clamp(0.8rem, 1.2vw, 0.9rem); 
}
.location-tag .icon { 
  margin-right: 0.3rem; 
}

/* layout-only */
@media screen and (min-width: 1024px) {
  .hero-glow-bg {
    bottom: -50%;
    width: 500px;
    height: 500px;
    filter: blur(60px);
  }
  .hero-glow-bg-2 {
    top: -9rem;
    right: -30rem;
    width: 500px;
    height: 500px;
    filter: blur(60px);
  }
  .main-title { 
    font-weight: 800; 
  }
}
/* ==== Hero End ==== */


/* ==== My Approach Section Styles Start ==== */
#what-is-seo {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.what-is-seo-title-sec {
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: var(--space-sm);
}

.what-is-seo-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.what-is-seo-title-sec p {
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: left;
  margin-bottom: var(--space-smmd);
}

/* Steps wrapper */
.what-is-seo-steps {
  max-width: 850px;
  margin: 0 auto var(--space-md) auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Step card */
.what-is-seo-card {
  background: var(--bg-colour-1);
  padding: clamp(0.9rem, 2vw, 1.1rem);
  border-radius: 6px;
  position: relative;
}

.what-is-seo-badge {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 191, 255, 0.14);
  margin-bottom: 1rem;
}

.what-is-seo-badge span {
  color: var(--main-brand-blue);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.what-is-seo-card h3 {
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--main-brand-blue);
}

.what-is-seo-card p {
  color: var(--text-colour-1);
  opacity: 0.9;
  margin: 0;
}
/* ==== My Approach Section Styles End ==== */


/* ==== technical-seo Section Styles start ==== */
#technical-seo {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.technical-seo-title-sec {
  max-width: 850px;
  margin: 0 auto;
}

.technical-seo-heading {
  margin-top: 2rem;
  text-align: left;
}

.technical-seo-title-sec h3 {
  margin-bottom: var(--space-md);
  margin-top: var(--space-xs);
  font-size: 1.1rem;
  font-weight: 500;
}

.technical-seo-title-sec p {
  padding-bottom: var(--space-sm);
  opacity: 0.9;
  text-align: left;
}

.button-sec {
  max-width: clamp(650px, 92vw, 850px);
  margin: 0 auto;
}

.technical-seo-box {
  background: var(--bg-colour-1);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: var(--space-smmd);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-md);
}

.technical-seo-box h3 {
  margin-bottom: var(--space-smmd);
}

.technical-seo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 900px) {
  .technical-seo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.technical-seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.technical-seo-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: var(--space-sm);
  color: var(--text-colour-1);
  opacity: 0.92;
  line-height: 1.5;
}

.technical-seo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--main-brand-blue);
  line-height: 1;
}
/* ==== technical-seo Section Styles end ==== */


/* ==== on-page-seo Section Styles start ==== */
#on-page-seo {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-1);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.on-page-seo-title-sec {
  max-width: 850px;
  margin: 0 auto;
}

.on-page-seo-heading {
  margin-top: 2rem;
  text-align: left;
}

.on-page-seo-title-sec h3 {
  margin-bottom: var(--space-md);
  margin-top: var(--space-xs);
  font-size: 1.1rem;
  font-weight: 500;
}

.on-page-seo-title-sec p {
  padding-bottom: var(--space-sm);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.button-sec {
  max-width: 850px;
  margin: 0 auto;
}

.on-page-seo-box {
  width: 100%;
  max-width: 850px;
  margin: var(--space-smmd) auto 0 auto;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--bg-colour-2);
  box-shadow: var(--shadow);
  margin-bottom: var(--space-md);
}

.on-page-seo-box > h3 {
  margin-bottom: var(--space-smmd);
}

.on-page-seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.on-page-seo-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  align-items: start;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.on-page-seo-item .icon {
  flex: 0 0 22px;
  color: var(--brand);
}

.on-page-seo-feature-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}
/* ==== on-page-seo Section Styles end ==== */


/* ==== Handle the website Styles Start ==== */
#seo-matters {
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
  background-color: var(--bg-colour-2);
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}

.seo-matters-title-sec {
  max-width: clamp(650px, 92vw, 850px);
  margin: 0 auto;
  padding-bottom: var(--space-sm);
}

.seo-matters-heading {
  margin-top: 2rem;
  text-align: left;
  padding-bottom: var(--space-md);
}

.seo-matters-title-sec p {
  padding-bottom: var(--space-smmd);
  color: var(--text-colour-1);
  opacity: 0.9;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.seo-matters-title-sec .that-means {
  padding-bottom: 0;
  color: var(--main-brand-blue);
  font-weight: 600;
}

.seo-matters-features-sec {
  margin: 0 auto;
  background: var(--bg-colour-2);
  color: #222;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 850px;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.seo-matters-feature-card {
  background: var(--bg-colour-1);
  padding: clamp(0.9rem, 2vw, 1.1rem);
  border-radius: 5px;
  flex: 1 1 calc(50% - 1rem);
  box-sizing: border-box;
}

.seo-matters-feature-card .icon-and-title {
  display: flex;
  gap: .6rem;
}

.seo-matters-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Icon Circle */
.seo-matters-icon-circle {
  width: clamp(28px, 3.2vw, 35px);
  height: clamp(28px, 3.2vw, 35px);
  background: #00c3ff00;
  color: var(--main-brand-blue);
  border-radius: 50%;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Heading */
.seo-matters-feature-card h3 {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: var(--space-xs);
}

/* Text */
.seo-matters-feature-card p {
  color: var(--text-colour-1);
  opacity: 0.9;
  font-size: 0.95rem;
}

.seo-matters-cta-box {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* layout-only breakpoint kept */
@media screen and (min-width: 768px) {
  .seo-matters-features-sec {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* ====I handle the website Section Styles End ==== */