@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
  --usecase-meta-color:#555555;
}

html{}
body{ font-family: 'Noto Sans', sans-serif; }

h1, h2, h3, h4, h5, h6 { color:#595A5B;}

h2{font-size: 49px;}

.proj_prop li{ font-size: 16pxs;}

header{ padding:0px 0px; background:#F8F8F8; }

.usecase-hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:1.5rem;
  align-items:center;
  font-size:16px;
  font-weight:500;
  color:var(--usecase-meta-color);
}

.usecase-hero__meta-item{
  display:flex;
  align-items:center;
  gap:0.75rem;
}

.usecase-hero__meta-icon{
  width:24px;
  height:24px;
}
.hero-section {
  background: #fff;
  color: #1f1f1f;
}
.hero-content {
  min-height: 80vh;
  justify-content: center;
}
.hero-avatar {
  width: 200px;
  height: 200px;
  flex: 0 0 auto;
}
.hero-avatar__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


.hero-title {
  color: #000;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.hero-subTitle {
  color: #555;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero-bio {
  max-width: 720px;
  color: #4f5661;
  line-height: 1.6;
}
.hero-cta .btn {
  border-radius: 8px;
  font-weight: 600;
}
.hero-btn {
  height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-cta .btn-secondary {
  background: #6d6d6d;
  border: none;
  color: #fff;
}
.hero-cta .btn-secondary:hover {
  background: #5a5a5a;
}
.hero-cta .btn-outline-secondary {
  color: #4f5661;
  border-color: #c5c5c5;
  background: #fff;
}
.hero-cta .btn-outline-secondary:hover {
  color: #0b0b0b;
  border-color: #a5a5a5;
  background: #e9e9e9;
}
.hero-cta .btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
}
.hero-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #c5c5c5;
  color: #4f5661;
  transition: all 0.2s ease;
}
.hero-social .social-icon:hover {
  color: #0b0b0b;
  background: #e9e9e9;
  border-color: #a5a5a5;
}
.hero-social svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 576px) {
  .hero-content {
    min-height: 70vh;
  }
}
