/* ================================================
   ABOUT PAGE — KULDEVI FORGE & FITTINGS
   ================================================ */

/* ── ABOUT HERO ── */
.about-hero {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.about-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
}
.about-content > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Feature items */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: all 0.3s;
}
.about-feature:hover {
  border-color: var(--line-accent);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.08);
}
.feat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-subtle);
  color: var(--accent-soft);
  font-size: 20px;
  flex-shrink: 0;
}
.about-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Visual side */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.about-visual img {
  width: min(100%, 400px);
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}
.gst-box {
  padding: 20px 24px;
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.1), transparent 60%),
    var(--bg-card);
  text-align: center;
  width: 100%;
}
.gst-box span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.gst-box strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.gst-box small {
  font-size: 12px;
  color: var(--text-secondary);
}



/* ── OUR STORY ── */
.story-section {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
  background:
    radial-gradient(ellipse at 70% 20%, rgba(37, 99, 235, 0.07) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.story-header {
  text-align: center;
  margin-bottom: 60px;
}
.story-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-lead {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Timeline */
.story-timeline {
  position: relative;
  padding-left: 48px;
  margin-bottom: 64px;
}
.story-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(37,99,235,0.1));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -40px;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 12px rgba(37,99,235,0.5);
}
.tl-year {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.tl-card {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: all 0.3s;
}
.tl-card:hover {
  border-color: var(--line-accent);
  box-shadow: 0 0 30px rgba(37,99,235,0.08);
}
.tl-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Story Values */
.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
  transition: all 0.3s;
}
.sv-card:hover {
  border-color: var(--line-accent);
  box-shadow: 0 0 30px rgba(37,99,235,0.1);
  transform: translateY(-4px);
}
.sv-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-subtle);
  color: var(--accent-soft);
  font-size: 22px;
  margin: 0 auto 16px;
  border: 1px solid var(--line-accent);
}
.sv-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.sv-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual { order: -1; }
  .story-timeline { padding-left: 20px; }
  .story-values { grid-template-columns: 1fr !important; }
}