:root {
  --pink: #b8066f;
  --blue: #051284;
  --muted: #6b7280;
  --container: 1200px;
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
  padding: 70px 20px;
  background:
    radial-gradient(600px at 10% 10%, rgba(184,6,111,0.1), transparent 60%),
    radial-gradient(600px at 90% 90%, rgba(5,18,132,0.12), transparent 60%),
    #ffffff;
  overflow: hidden;
}

.hero-container {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
================================ */
.hero-kicker {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(5,18,132,0.08);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 700;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  margin: 14px 0;
}

.hero-sub {
  display: block;
  font-size: 18px;
  color: var(--pink);
  margin-top: 6px;
  font-weight: 700;
}

.hero-tagline {
  font-size: 18px;
  color: var(--muted);
  margin: 18px 0;
  min-height: 26px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-btn {
  background: linear-gradient(90deg, #051284, #b8066f);
  color: #fff;
  box-shadow: 0 12px 30px rgba(5,18,132,0.18);
}

.primary-btn:hover {
  transform: translateY(-4px);
}

.outline-btn {
  border: 1px solid rgba(5,18,132,0.3);
  color: var(--blue);
}

.trust-row {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.rating,
.location-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.rating {
  background: rgba(5,18,132,0.06);
}

.location-pill {
  background: rgba(184,6,111,0.06);
}

/* ===============================
   IMAGE SIDE
================================ */
.hero-right {
  position: relative;
  height: 400px;
}

.img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-main-img {
  height: 360px;
  animation: floatImg 6s ease-in-out infinite;
}

/* FLOAT */
@keyframes floatImg {
  50% { transform: translateY(-12px); }
}

/* BLOBS */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.blob1 {
  width: 260px;
  height: 260px;
  background: #b8066f33;
  top: -40px;
  left: -40px;
}
.blob2 {
  width: 200px;
  height: 200px;
  background: #05128433;
  bottom: -30px;
  right: -30px;
}
.blob3 {
  width: 120px;
  height: 120px;
  background: #b8066f22;
  top: 120px;
  right: 120px;
}

/* ===============================
   ANIMATIONS
================================ */
.fade-in { animation: fadeIn 1s ease forwards; }
.fade-in-delay { animation: fadeIn 1s ease 0.3s forwards; }
.fade-in-delay-2 { animation: fadeIn 1s ease 0.6s forwards; }
.slide-up { animation: slideUp 1s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ===============================
   RESPONSIVE ORDER FIX
================================ */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* MOBILE: IMAGE FIRST */
  .hero-right {
    order: 1;
    height: 320px;
  }

  .hero-left {
    order: 2;
  }

  .hero-buttons {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-main-img {
    height: 280px;
  }

  .hero-title {
    font-size: 36px;
  }
}



:root{
  --primary:#051284;
  --accent:#b8066f;
  --text:#1f2937;
  --muted:#6b7280;
}

/* SECTION */
.arthritis-about{
  padding:100px 0;
  background:
    radial-gradient(circle at top left, rgba(5,18,132,.06), transparent 45%),
    radial-gradient(circle at bottom right, rgba(184,6,111,.06), transparent 45%),
    #ffffff;
}

/* GRID */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(5,18,132,.18);
}

/* CONTENT */
.about-tag{
  display:inline-block;
  color:var(--accent);
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:10px;
}

.about-content h2{
  font-size:42px;
  color:var(--primary);
  margin-bottom:20px;
}

.about-content p{
  color:var(--text);
  line-height:1.8;
  margin-bottom:16px;
}

.about-points{
  margin-top:20px;
  padding-left:0;
  list-style:none;
}

.about-points li{
  padding-left:26px;
  margin-bottom:12px;
  position:relative;
  color:var(--text);
}

.about-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
}

/* ANIMATIONS */
.fade-left{
  opacity:0;
  transform:translateX(-40px);
  animation:fadeLeft 1s ease forwards;
}

.fade-right{
  opacity:0;
  transform:translateX(40px);
  animation:fadeRight 1s ease forwards;
}

@keyframes fadeLeft{
  to{opacity:1; transform:none;}
}

@keyframes fadeRight{
  to{opacity:1; transform:none;}
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-grid{
    grid-template-columns:1fr;
  }
  .about-content h2{
    font-size:34px;
  }
}




