/* ============================================================
   HERO.CSS — Hero Section
   Kinzi Pharma Landing Page
   ============================================================ */

/* ── Hero Grid — FIXED: equal 1:1 columns with matched heights ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* equal halves */
  gap: 12px;
  padding: 76px 12px 12px;
  background: #fff;
  align-items: stretch;             /* both columns same height */
}

/* ── LEFT Panel ── */
.hl {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--green-card) 55%, #a0e8b8 100%);
  border-radius: 20px;
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
min-height: calc(100vh - 88px);
align-items: flex-start;
}
 .hl::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,124,110,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,124,110,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  border-radius: 20px;
  pointer-events: none;
}


/* Badge */
.hbadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f5c340; border-radius: 50px;
  padding: 7px 14px 7px 10px;
  font-size: 12px; font-weight: 500; color: #5a3e00;
  width: fit-content; margin-bottom: 28px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(16px);
  animation: fU 0.6s ease 0.1s forwards;
}
.hbadge-i {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(90,62,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* Headline */
.hh1 {
  font-family: var(--fd);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08; font-weight: 400;
  color: var(--black); margin-bottom: 16px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(20px);
  animation: fU 0.7s ease 0.25s forwards;
}
.hh1 .mt { color: #4a5a4a; font-style: italic; font-family: var(--fd); }

/* Subtext */
.hsub {
  font-size: 13px; font-weight: 300; line-height: 1.75;
  color: #4a5a4a; max-width: 380px; margin-bottom: 36px;
  position: relative; z-index: 1; text-align: left;
  opacity: 0; transform: translateY(16px);
  animation: fU 0.7s ease 0.4s forwards;
}

/* Email Subscribe Box */
.hsub-box {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(14,124,110,0.2);
  border-radius: 50px;
  padding: 5px 5px 5px 18px;
  max-width: 380px; gap: 8px;
  position: relative; z-index: 1;
  margin-bottom: 10px;
  opacity: 0; transform: translateY(16px);
  animation: fU 0.7s ease 0.52s forwards;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hsub-box:hover {
  border-color: rgba(14,124,110,0.5);
  box-shadow: 0 4px 20px rgba(14,124,110,0.12);
}
.hsub-box input {
  flex: 1; border: none; background: transparent;
  font-family: var(--fb); font-size: 13px; color: var(--black); outline: none;
}
.hsub-box input::placeholder { color: #8a9a8a; }
.hsub-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; flex-shrink: 0;
}
.hsub-btn:hover { background: var(--teal); transform: scale(1.08); }
.hsub-btn svg {
  width: 15px; height: 15px; fill: none;
  stroke: #fff; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Hint text */
.shint {
  font-size: 12px; color: #6a7a6a;
  position: relative; z-index: 1; text-align: left;
  margin-top: 15px;  /* ← yeh add karo */
  opacity: 0;
  animation: fU 0.7s ease 0.6s forwards;
}

/* Action Buttons */
.hacts {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 28px;
  position: relative; z-index: 1;
  opacity: 0;
  animation: fU 0.7s ease 0.68s forwards;
}

/* ── RIGHT Panel — FIXED: matched min-height so it fills equal space ── */
.hr {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: calc(100vh - 88px);   /* matches .hl */
  opacity: 0;
  animation: fI 0.9s ease 0.3s forwards;
}

/* Photo card — takes most of the height */
.hphoto {
  flex: 1;                          /* fills available space */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 0;                    /* flex shrink allowed */
}
.hphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hphoto-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
}

/* Floating badge on photo */
.hphoto-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hpb-icon  { width: 36px; height: 36px; border-radius: 50%; background: #e8500a; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hpb-num   { font-family: var(--fd); font-size: 26px; font-weight: 400; color: var(--black); line-height: 1; }
.hpb-label { font-size: 11px; color: #5a6a5a; margin-top: 2px; }
.hpb-sub   { font-size: 10px; color: #9aaa9a; }

/* Platform info card — fixed height at bottom */
.hplatf {
  flex-shrink: 0;
  height: 140px;                    /* fixed compact card */
  border-radius: 20px;
  background: var(--off2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hplatf-tag   { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.hplatf-title { font-family: var(--fd); font-size: clamp(16px, 1.8vw, 22px); font-weight: 400; color: var(--black); line-height: 1.25; }
.hplatf-icons { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.hpi          { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: transform 0.2s; }
.hpi:hover    { transform: translateY(-4px); }
.hpi-t        { background: rgba(14,124,110,.15); }
.hpi-o        { background: rgba(232,80,10,.12); }
.hpi-b        { background: rgba(59,130,246,.12); }
.hpi-y        { background: rgba(245,195,64,.2);  }

/* ── Ticker ── */
.ticker {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap; width: max-content;
}
.titem { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 400; color: var(--gray); letter-spacing: 0.8px; text-transform: uppercase; }
.tdot  { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ── WhatsApp Float ── */
.wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 50px; height: 50px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  animation: waB 3s ease infinite;
  transition: transform 0.2s;
}
.wa:hover { transform: scale(1.1); }

/* Button bounce animation */
@keyframes bounce {
  0%   { transform: translateY(0) scale(1); }
  10%  { transform: translateY(-8px) scale(1.05); }
  20%  { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-5px) scale(1.03); }
  40%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0) scale(1); }
}

.bdark {
  animation: bounce 3s ease-in-out infinite;
}

.bghost {
  animation: bounce 3s ease-in-out infinite;
  animation-delay: 0.4s;
}

.ncta {
  animation: bounce 3s ease-in-out infinite;
}

/* Subline of Trusted Export Platform for Pharma */
.hplatf-desc {
  font-size: 11px;
  color: #6a7a6a;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* statestical data of the platform */
.ins-hdr {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
  width: 100%;
}

.ins-stats { display: flex; gap: 16px; flex-wrap: wrap; width: 100%; }

.ins-stat {
  background: #f5f5f0;
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  min-width: 120px;
  flex: 1;
}

.ins-num {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
}

.ins-label {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bpill { display: inline-block; padding: 13px 28px; background: var(--black); color: #fff; border-radius: 50px; font-size: 13px; font-weight: 500; transition: background .2s, transform .2s; width: fit-content; animation: bounce 3s ease-in-out infinite; animation-delay: 0.2s; }
.bpill:hover { background: var(--teal); transform: translateY(-2px); }