/* Who We Are Page Dedicated Stylesheet */

/* Page Hero Banner */
.wwa-page-hero {
  padding: 90px 0 80px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(240, 247, 255, 0.88) 100%), url('assets/back.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.wwa-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #1d4ed8;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.wwa-page-hero h1 {
  font-size: 58px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}

.wwa-page-hero p {
  font-size: 21.5px;
  color: #475569;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.65;
}

/* About Emsensing Content Grid */
.who-we-are-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-emsense-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-emsense-text p {
  font-size: 18.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-emsense-text p strong {
  color: #0f172a;
}

/* Founders / Leadership Cards */
.founders-list-wrapper {
  margin-top: 36px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 26px;
}

.founders-list-wrapper h4 {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.leader-item-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.leader-badge-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leader-info strong {
  display: block;
  font-size: 15.5px;
  color: #0f172a;
  line-height: 1.3;
}

.leader-info span {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 600;
}

/* Founder Spotlight Card */
.founder-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 44px 38px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: #93c5fd;
  box-shadow: 0 18px 40px -6px rgba(37, 99, 235, 0.16);
}

.founder-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22);
  margin-bottom: 22px;
}

.founder-quote {
  font-size: 18px;
  font-style: italic;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
}

.founder-name {
  font-size: 22.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 15px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Core Expertise Grid */
.expertise-section {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.expertise-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 26px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
}

.expertise-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.expertise-card h3 {
  font-size: 20.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 16.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Awards & Recognitions Grid */
.awards-section {
  padding: 80px 0;
  background: #ffffff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.award-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  height: 230px;
  border: 1.5px solid #e2e8f0;
}

.award-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.award-item:hover img {
  transform: scale(1.08);
}

.award-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 19, 41, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #ffffff;
}

.award-overlay-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.award-overlay-text span {
  font-size: 14px;
  color: #93c5fd;
}

@media (max-width: 1024px) {
  .about-emsense-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .wwa-page-hero { padding: 48px 16px 36px; text-align: center; }
  .wwa-page-hero h1 { font-size: 30px !important; line-height: 1.25; }
  .about-emsense-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .expertise-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .award-item { height: 185px !important; }
  .award-overlay { padding: 12px !important; }
  .award-overlay-text strong { font-size: 13.5px !important; margin-bottom: 2px !important; }
  .award-overlay-text span { font-size: 11.5px !important; }
  .founder-quote-card { padding: 24px 18px; text-align: center; }
}
