/* ==========================================================================
   SHRAMIK PORTAL - ABOUT US PAGE UPGRADE STYLES
   ========================================================================== */

:root {
  --sh-ab-primary: #0b2545;
  --sh-ab-primary-light: #134074;
  --sh-ab-accent: #e06d10;
  --sh-ab-accent-hover: #c45a05;
  --sh-ab-accent-light: #fff3ea;
  --sh-ab-gold: #ffb703;
  --sh-ab-success: #10b981;
  --sh-ab-success-bg: #ecfdf5;
  --sh-ab-bg-soft: #f4f6fa;
  --sh-ab-card-bg: #ffffff;
  --sh-ab-border: #e2e8f0;
  --sh-ab-border-light: #f1f5f9;
  --sh-ab-text: #0f172a;
  --sh-ab-text-muted: #64748b;
  --sh-ab-radius-sm: 8px;
  --sh-ab-radius-md: 14px;
  --sh-ab-radius-lg: 20px;
  --sh-ab-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --sh-ab-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --sh-ab-shadow-lg: 0 20px 35px -10px rgba(11, 37, 69, 0.16);
}

/* --------------------------------------------------------------------------
   1. HERO BANNER
   -------------------------------------------------------------------------- */
.sh-about-hero {
  position: relative;
  background: linear-gradient(135deg, #07192f 0%, #0b2545 60%, #134074 100%);
  color: #ffffff;
  padding: 50px 0 60px;
  overflow: hidden;
  border-bottom: 3px solid var(--sh-ab-accent);
}

.sh-about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(224, 109, 16, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(255, 183, 3, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.sh-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.sh-about-badge i {
  color: var(--sh-ab-gold);
}

.sh-about-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.sh-about-title span {
  color: var(--sh-ab-gold);
}

.sh-about-subtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.65;
}

.sh-about-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 18px;
  border-radius: 20px;
}

.sh-about-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sh-about-breadcrumbs a:hover {
  color: var(--sh-ab-gold);
}

.sh-about-breadcrumbs span.sep {
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   2. WELCOME / MISSION SHOWCASE
   -------------------------------------------------------------------------- */
.sh-about-showcase-section {
  padding: 70px 0 60px;
  background-color: #ffffff;
}

.sh-showcase-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--sh-ab-accent);
  background: var(--sh-ab-accent-light);
  border: 1px solid #fed7aa;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sh-showcase-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--sh-ab-primary);
  line-height: 1.3;
  margin-bottom: 18px;
}

.sh-showcase-heading span {
  color: var(--sh-ab-accent);
}

.sh-showcase-text {
  font-size: 15px;
  color: var(--sh-ab-text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.sh-showcase-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 10px;
}

.sh-stat-card {
  background: var(--sh-ab-bg-soft);
  border: 1px solid var(--sh-ab-border);
  border-radius: var(--sh-ab-radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}

.sh-stat-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.sh-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sh-ab-primary) 0%, var(--sh-ab-primary-light) 100%);
  color: var(--sh-ab-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sh-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--sh-ab-primary);
  line-height: 1.2;
}

.sh-stat-label {
  font-size: 12px;
  color: var(--sh-ab-text-muted);
  font-weight: 600;
}

/* Image Visual Frame */
.sh-image-frame-wrapper {
  position: relative;
  padding: 10px;
}

.sh-image-frame {
  border-radius: var(--sh-ab-radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-ab-shadow-lg);
  border: 3px solid #ffffff;
  position: relative;
}

.sh-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.sh-image-frame:hover img {
  transform: scale(1.02);
}

.sh-image-floating-badge {
  position: absolute;
  bottom: 22px;
  left: 24px;
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sh-image-floating-badge i {
  color: var(--sh-ab-gold);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   3. WELFARE PILLARS / OBJECTIVES (उद्देश्य)
   -------------------------------------------------------------------------- */
.sh-pillars-section {
  padding: 65px 0 75px;
  background-color: var(--sh-ab-bg-soft);
}

.sh-pillars-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.sh-pillars-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--sh-ab-primary);
  margin-bottom: 10px;
}

.sh-pillars-header p {
  font-size: 14.5px;
  color: var(--sh-ab-text-muted);
  line-height: 1.6;
}

.sh-pillar-card {
  background: #ffffff;
  border: 1px solid var(--sh-ab-border);
  border-radius: var(--sh-ab-radius-md);
  padding: 26px 22px;
  height: 100%;
  box-shadow: var(--sh-ab-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.sh-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sh-ab-primary) 0%, var(--sh-ab-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sh-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-ab-shadow-md);
  border-color: #cbd5e1;
}

.sh-pillar-card:hover::before {
  opacity: 1;
}

.sh-pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.sh-pillar-card:hover .sh-pillar-icon-box {
  transform: scale(1.08);
}

.sh-pillar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--sh-ab-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.sh-pillar-card p {
  font-size: 13.5px;
  color: var(--sh-ab-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   4. WELFARE IN ACTION SHOWCASE (WITH SECOND ART)
   -------------------------------------------------------------------------- */
.sh-action-showcase-section {
  padding: 70px 0;
  background: #ffffff;
}

.sh-action-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.sh-action-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.sh-action-item:last-child {
  margin-bottom: 0;
}

.sh-action-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sh-ab-success-bg);
  border: 1px solid #a7f3d0;
  color: var(--sh-ab-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sh-action-text h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--sh-ab-primary);
  margin-bottom: 3px;
}

.sh-action-text p {
  font-size: 13.5px;
  color: var(--sh-ab-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   5. CORE VALUES CARDS
   -------------------------------------------------------------------------- */
.sh-values-section {
  padding: 65px 0 75px;
  background: linear-gradient(180deg, #f8fafc 0%, var(--sh-ab-bg-soft) 100%);
}

.sh-value-box {
  background: #ffffff;
  border: 1px solid var(--sh-ab-border);
  border-radius: var(--sh-ab-radius-md);
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  box-shadow: var(--sh-ab-shadow-sm);
  transition: all 0.3s ease;
}

.sh-value-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-ab-shadow-md);
  border-color: var(--sh-ab-accent);
}

.sh-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sh-ab-accent-light);
  color: var(--sh-ab-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.sh-value-box h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--sh-ab-primary);
  margin-bottom: 8px;
}

.sh-value-box p {
  font-size: 13px;
  color: var(--sh-ab-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. CALL TO ACTION STRIP
   -------------------------------------------------------------------------- */
.sh-about-cta-section {
  padding: 0 0 65px;
  background-color: var(--sh-ab-bg-soft);
}

.sh-about-cta-card {
  background: linear-gradient(135deg, #07192f 0%, #0b2545 60%, #134074 100%);
  border-radius: var(--sh-ab-radius-lg);
  padding: 40px 36px;
  color: #ffffff;
  box-shadow: var(--sh-ab-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.sh-about-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 109, 16, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.sh-cta-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.sh-cta-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  max-width: 600px;
}

.sh-cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sh-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--sh-ab-accent) 0%, #d05f08 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(224, 109, 16, 0.35);
  transition: all 0.25s ease;
}

.sh-cta-btn-primary:hover {
  background: linear-gradient(135deg, var(--sh-ab-accent-hover) 0%, #b85002 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 109, 16, 0.45);
}

.sh-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sh-cta-btn-outline:hover {
  background: #ffffff;
  color: var(--sh-ab-primary);
  border-color: #ffffff;
}

/* --------------------------------------------------------------------------
   7. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .sh-about-title {
    font-size: 28px;
  }

  .sh-showcase-heading {
    font-size: 24px;
  }

  .sh-about-cta-card {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .sh-about-hero {
    padding: 34px 0 46px;
  }

  .sh-about-title {
    font-size: 22px;
  }

  .sh-about-subtitle {
    font-size: 13.5px;
  }

  .sh-showcase-stats-grid {
    grid-template-columns: 1fr;
  }

  .sh-about-cta-card {
    text-align: center;
    justify-content: center;
  }

  .sh-cta-buttons {
    justify-content: center;
    width: 100%;
  }

  .sh-cta-btn-primary,
  .sh-cta-btn-outline {
    width: 100%;
    justify-content: center;
  }
}
