/**
 * ThinkOnline.IN — about.css
 * Extracted stylesheet for About Us page to enforce 0-inline CSS compliance.
 */

.about-container {
  max-width: 1100px;
  padding: 40px 24px 80px;
}
.about-sec-head-mb {
  margin-bottom: 20px;
}

.about-hero {
  background: linear-gradient(135deg, #030a5a 0%, #061288 60%, #0096c7 100%);
  color: white;
  padding: 80px 24px 60px;
  text-align: center;
  border-radius: 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.about-hero-inner {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #90e0ef;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin: 0 0 16px 0;
  color: #ffffff;
  line-height: 1.2;
}
.about-hero p {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.about-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px auto;
}
.about-section-head h2 {
  font-size: 1.8rem;
  color: #0f1a3e;
  font-weight: 800;
  margin: 0 0 8px 0;
}
.about-section-head p {
  font-size: 0.95rem;
  color: #5a6890;
  margin: 0;
  line-height: 1.6;
}

.story-card {
  background: #ffffff;
  border: 1px solid rgba(6,18,136,0.08);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(6,18,136,0.04);
  margin-bottom: 50px;
}
.story-card h2 {
  font-size: 1.7rem;
  color: #0f1a3e;
  font-weight: 800;
  margin: 0 0 16px 0;
}
.story-card p {
  font-size: 0.975rem;
  color: #3a4a70;
  line-height: 1.85;
  margin-bottom: 16px;
}
.story-card p:last-child {
  margin-bottom: 0;
}

.founder-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(6,18,136,0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(6,18,136,0.05);
  margin-bottom: 50px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #061288 0%, #0096c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(6,18,136,0.2);
  flex-shrink: 0;
}
.founder-info {
  flex: 1;
  min-width: 280px;
}
.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f1a3e;
  margin: 0 0 4px 0;
}
.founder-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0096c7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}
.founder-bio p {
  font-size: 0.95rem;
  color: #5a6890;
  line-height: 1.65;
  margin-bottom: 14px;
}
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px 0;
}
.cred-badge {
  background: rgba(6,18,136,0.06);
  color: #061288;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(6,18,136,0.12);
}
.founder-quote {
  background: rgba(0,150,199,0.06);
  border-left: 4px solid #0096c7;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 16px;
}
.founder-quote p {
  font-size: 0.92rem;
  font-style: italic;
  color: #0f1a3e;
  margin: 0;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(6,18,136,0.08);
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(6,18,136,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6,18,136,0.08);
}
.value-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1a3e;
  margin: 0 0 8px 0;
}
.value-card p {
  font-size: 0.86rem;
  color: #5a6890;
  margin: 0;
  line-height: 1.55;
}

.specs-card {
  background: #ffffff;
  border: 1px solid rgba(6,18,136,0.08);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(6,18,136,0.04);
  margin-bottom: 50px;
}
.specs-table-wrap {
  overflow-x: auto;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.specs-table th, .specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(6,18,136,0.06);
  font-size: 0.9rem;
}
.specs-table th {
  background: rgba(6,18,136,0.03);
  color: #0f1a3e;
  font-weight: 700;
}
.specs-table td {
  color: #5a6890;
}
.specs-table td strong {
  color: #0f1a3e;
}

.about-cta {
  background: linear-gradient(135deg, #030a5a 0%, #061288 60%, #0096c7 100%);
  color: #ffffff;
  padding: 44px 36px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.about-cta-text h3 {
  margin: 0 0 6px 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}
.about-cta-text p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.about-cta-btn {
  background: #ffffff;
  color: #061288;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
