/* =====================================================
   Infinity Health Organics — Main Stylesheet
   Brand palette derived from logo & product packaging
   ===================================================== */

:root {
  /* Brand Colors */
  --ih-navy: #0c2d52;
  --ih-navy-dark: #071b33;
  --ih-navy-light: #16407a;
  --ih-green: #2e9e4f;
  --ih-green-dark: #1f7a3a;
  --ih-green-light: #55c273;
  --ih-teal: #1a8fc1;
  --ih-sky: #eaf6ff;
  --ih-sky-mid: #d7ecfb;
  --ih-white: #ffffff;
  --ih-ink: #1b2733;
  --ih-muted: #5c6b7a;
  --ih-border: #e1edf5;
  --ih-gold: #f2a900;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #eaf6ff 0%, #cfe9fb 45%, #a9d9f2 100%);
  --grad-navy: linear-gradient(135deg, #0c2d52 0%, #16407a 100%);
  --grad-green: linear-gradient(135deg, #2e9e4f 0%, #55c273 100%);
  --grad-cta: linear-gradient(135deg, #0c2d52 0%, #1a8fc1 60%, #2e9e4f 130%);

  /* Type & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(12, 45, 82, 0.08);
  --shadow-md: 0 12px 32px rgba(12, 45, 82, 0.14);
  --shadow-lg: 0 24px 60px rgba(12, 45, 82, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================== Base =========================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--ih-ink);
  background-color: var(--ih-white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ih-navy);
  font-weight: 700;
  margin-bottom: 0;
}

p { color: var(--ih-muted); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; display: block; }

.container-xl { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

.section-pad { padding: 90px 0; }

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
}

/* Eyebrow / tag labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ih-green-dark);
  background: rgba(46, 158, 79, 0.1);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.eyebrow i { font-size: 0.7rem; }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--ih-muted);
  font-size: 1.05rem;
  max-width: 680px;
}

.text-center-wrap { max-width: 720px; margin: 0 auto; }

.divider-leaf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ih-green);
  margin: 10px 0 20px;
}
.divider-leaf::before,
.divider-leaf::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--ih-green-light);
  display: inline-block;
}

/* =========================== Buttons =========================== */
.btn-ih-primary {
  background: var(--grad-green);
  color: #fff;
  border: none;
  padding: 14px 34px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-ih-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: #fff;
  background: var(--grad-green);
  filter: brightness(1.05);
}

.btn-ih-outline {
  background: transparent;
  color: var(--ih-navy);
  border: 2px solid var(--ih-navy);
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-ih-outline:hover {
  background: var(--ih-navy);
  color: #fff;
  transform: translateY(-3px);
}

.btn-ih-light {
  background: #fff;
  color: var(--ih-navy);
  border: none;
  padding: 14px 34px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.btn-ih-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--ih-green-dark);
}

/* =========================== Top Utility Bar =========================== */
.topbar {
  background: var(--ih-navy-dark);
  color: #d9e8f5;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar a { color: #d9e8f5; }
.topbar a:hover { color: var(--ih-green-light); }
.topbar .divider { opacity: 0.3; margin: 0 10px; }
.topbar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  margin-left: 6px;
  font-size: 0.8rem;
}
.topbar .social-icons a:hover { background: var(--ih-green); }

/* =========================== Navbar =========================== */
.navbar-ih {
  background: rgba(255, 255, 255, 0.97);
  padding: 14px 0;
  transition: var(--transition);
  box-shadow: 0 2px 18px rgba(12,45,82,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-ih.scrolled { padding: 8px 0; box-shadow: 0 4px 22px rgba(12,45,82,0.12); }

.navbar-ih .navbar-brand img {
  height: 54px;
  transition: var(--transition);
}
.navbar-ih.scrolled .navbar-brand img { height: 44px; }

.navbar-ih .nav-link {
  color: var(--ih-navy);
  font-weight: 600;
  padding: 10px 18px !important;
  position: relative;
}
.navbar-ih .nav-link::after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 6px;
  height: 2px;
  width: 0;
  background: var(--ih-green);
  transition: var(--transition);
}
.navbar-ih .nav-link:hover::after,
.navbar-ih .nav-link.active::after { width: calc(100% - 36px); }
.navbar-ih .nav-link:hover,
.navbar-ih .nav-link.active { color: var(--ih-green-dark); }

.navbar-ih .btn-nav-cta {
  background: var(--grad-navy);
  color: #fff;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: var(--shadow-sm);
}
.navbar-ih .btn-nav-cta:hover { transform: translateY(-2px); color: #fff; box-shadow: var(--shadow-md); }

/* =========================== Hero =========================== */
.hero {
  background: var(--grad-hero);
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}
.hero .hero-leaf-decor {
  position: absolute;
  opacity: 0.5;
  animation: float-leaf 6s ease-in-out infinite;
}
@keyframes float-leaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--ih-navy);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero-badge i { color: var(--ih-green); }

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.18;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--ih-green); }

.hero p.lead-text {
  font-size: 1.12rem;
  color: var(--ih-navy-light);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stats .stat-item h3 {
  font-size: 2.1rem;
  color: var(--ih-navy);
  margin-bottom: 2px;
}
.hero-stats .stat-item span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ih-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  text-align: center;
}
.hero-visual img {
  max-height: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(12,45,82,0.25));
  animation: hero-bounce 4.5s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.hero-visual .float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ih-navy);
  animation: float-card 5s ease-in-out infinite;
}
.hero-visual .float-card i { color: var(--ih-green); font-size: 1.3rem; }
.hero-visual .card-tl { top: 10%; left: -6%; }
.hero-visual .card-br { bottom: 8%; right: -6%; animation-delay: 1s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 991px) {
  .hero-visual .float-card { display: none; }
  .hero-visual img { max-height: 380px; }
}

/* =========================== Trust Strip =========================== */
.trust-strip {
  background: var(--ih-navy);
  padding: 22px 0;
}
.trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  justify-content: center;
}
.trust-strip .trust-item i { color: var(--ih-green-light); font-size: 1.3rem; }

/* =========================== About Snapshot =========================== */
.about-snap-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-snap-img img { border-radius: var(--radius-lg); }
.about-snap-badge {
  position: absolute;
  bottom: -26px;
  right: -26px;
  background: var(--grad-green);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-snap-badge h3 { color: #fff; font-size: 2rem; margin-bottom: 0; }
.about-snap-badge span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }

.feature-check-list { list-style: none; padding: 0; margin: 26px 0; }
.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--ih-ink);
  font-weight: 500;
}
.feature-check-list li i {
  color: var(--ih-green);
  background: rgba(46,158,79,0.1);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================== Benefits / Icon Grid =========================== */
.benefit-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-card .benefit-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--grad-navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--grad-green); transform: rotate(-6deg) scale(1.05); }
.benefit-card h4 { font-size: 1.15rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.93rem; margin-bottom: 0; }

/* =========================== Section BG variants =========================== */
.bg-soft { background: var(--ih-sky); }
.bg-navy { background: var(--grad-navy); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: #c7d9ec; }

.section-divider-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
}

/* =========================== Product Cards =========================== */
.products-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  border: 2px solid var(--ih-border);
  background: #fff;
  color: var(--ih-navy);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--grad-green);
  color: #fff;
  border-color: transparent;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-card .product-img-wrap {
  position: relative;
  background: var(--ih-sky);
  padding: 18px;
  text-align: center;
}
.product-card .product-img-wrap img {
  margin: 0 auto;
  max-height: 300px;
  object-fit: contain;
  transition: var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-card .badge-bv {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ih-navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.product-card .badge-cat {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ih-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
}
.product-card .product-body {
  padding: 24px 22px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card .product-body h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.product-card .product-body p.desc {
  font-size: 0.88rem;
  color: var(--ih-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}
.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--ih-border);
  padding-top: 16px;
  margin-top: auto;
}
.product-card .price-row .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--ih-navy);
  font-weight: 700;
}
.product-card .price-row .price small {
  font-size: 0.7rem;
  color: var(--ih-muted);
  font-weight: 500;
  display: block;
  font-family: 'Inter', sans-serif;
}
.product-card .btn-add {
  background: rgba(46,158,79,0.1);
  color: var(--ih-green-dark);
  border: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.product-card .btn-add:hover { background: var(--ih-green); color: #fff; transform: rotate(90deg); }

/* =========================== Why Choose Us / Stats =========================== */
.stats-band {
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 54px 30px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(46,158,79,0.35), transparent 70%);
}
.stat-block { text-align: center; }
.stat-block h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 6px;
}
.stat-block span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a9c3dd;
  font-weight: 600;
}

/* =========================== Testimonials =========================== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.testimonial-card .quote-icon {
  color: var(--ih-green-light);
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.testimonial-card p.quote { font-style: italic; color: var(--ih-ink); margin-bottom: 20px; }
.testimonial-card .author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-card .author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.testimonial-card .author h6 { font-size: 0.95rem; margin-bottom: 2px; color: var(--ih-navy); }
.testimonial-card .author span { font-size: 0.78rem; color: var(--ih-muted); }
.testimonial-card .stars { color: var(--ih-gold); font-size: 0.85rem; margin-bottom: 10px; }

/* =========================== Business Opportunity CTA =========================== */
.cta-opportunity {
  background: var(--grad-cta);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-opportunity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.15"/></svg>');
  opacity: 0.4;
}
.cta-opportunity h2, .cta-opportunity p { color: #fff; position: relative; z-index: 1; }
.cta-opportunity .cta-content { position: relative; z-index: 1; }
.cta-opportunity .price-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* =========================== FAQ Accordion =========================== */
.accordion-ih .accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-ih .accordion-button {
  font-weight: 700;
  color: var(--ih-navy);
  background: #fff;
  padding: 20px 26px;
  font-family: 'Playfair Display', serif;
}
.accordion-ih .accordion-button:focus { box-shadow: none; }
.accordion-ih .accordion-button:not(.collapsed) {
  background: var(--grad-navy);
  color: #fff;
}
.accordion-ih .accordion-button::after { filter: none; }
.accordion-ih .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.accordion-ih .accordion-body {
  color: var(--ih-muted);
  padding: 22px 26px;
  background: #fff;
}

/* =========================== Newsletter =========================== */
.newsletter-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 46px;
  margin-top: -110px;
  position: relative;
  z-index: 5;
}
.newsletter-box .form-control {
  border-radius: 50px;
  padding: 15px 24px;
  border: 2px solid var(--ih-border);
}
.newsletter-box .form-control:focus {
  border-color: var(--ih-green);
  box-shadow: none;
}
@media (max-width: 767px) {
  .newsletter-box { margin-top: 40px; padding: 30px 22px; }
}

/* =========================== Footer =========================== */
.footer-ih {
  background: var(--ih-navy-dark);
  color: #b9cee2;
  padding-top: 140px;
  position: relative;
}
.footer-ih .footer-logo img { height: 56px; margin-bottom: 20px; background: #fff; border-radius: 10px; padding: 6px 10px;}
.footer-ih h5 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.footer-ih p { color: #93a9c0; font-size: 0.92rem; }
.footer-ih ul { list-style: none; padding: 0; }
.footer-ih ul li { margin-bottom: 12px; }
.footer-ih ul li a { color: #b9cee2; font-size: 0.92rem; }
.footer-ih ul li a:hover { color: var(--ih-green-light); padding-left: 4px; }
.footer-ih ul li i { color: var(--ih-green-light); margin-right: 8px; width: 16px; }
.footer-social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-right: 10px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--ih-green); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: #7f96ad;
}
.footer-bottom a { color: #b9cee2; }
.footer-bottom a:hover { color: var(--ih-green-light); }

/* Whatsapp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 1050;
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 46px; height: 46px;
  background: var(--ih-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1050;
  box-shadow: var(--shadow-sm);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--ih-green); color: #fff; }

/* =========================== Page Header (About) =========================== */
.page-header {
  background: var(--grad-navy);
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,158,79,0.3), transparent 70%);
  top: -140px; right: -60px;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-header .breadcrumb-ih { color: #b9cee2; font-size: 0.9rem; }
.page-header .breadcrumb-ih a { color: #fff; font-weight: 600; }
.page-header .breadcrumb-ih i { font-size: 0.7rem; margin: 0 8px; }

/* =========================== Mission / Vision / Values =========================== */
.mv-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--ih-green);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.mv-card .mv-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(46,158,79,0.1);
  color: var(--ih-green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
}

/* Timeline */
.timeline-ih { position: relative; padding-left: 40px; }
.timeline-ih::before {
  content: '';
  position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 3px;
  background: var(--ih-border);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -40px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ih-green);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--ih-green-light);
}
.timeline-item h5 { color: var(--ih-navy); margin-bottom: 8px; }
.timeline-item .year-tag {
  display: inline-block;
  background: var(--ih-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* Team */
.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: #fff;
  border: 1px solid var(--ih-border);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-card .team-img { overflow: hidden; }
.team-card .team-img img { transition: var(--transition); }
.team-card:hover .team-img img { transform: scale(1.08); }
.team-card .team-body { padding: 22px; text-align: center; }
.team-card .team-body h5 { margin-bottom: 4px; }
.team-card .team-body span { color: var(--ih-green-dark); font-weight: 600; font-size: 0.86rem; }

/* Certification badges */
.cert-badge {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ih-border);
  height: 100%;
}
.cert-badge i { font-size: 1.9rem; color: var(--ih-green); }
.cert-badge h6 { color: var(--ih-navy); margin-bottom: 2px; font-family: 'Inter', sans-serif; font-weight: 700; }
.cert-badge span { font-size: 0.8rem; color: var(--ih-muted); }

/* Progress bars (values) */
.value-progress { margin-bottom: 22px; }
.value-progress .vp-label {
  display: flex; justify-content: space-between;
  margin-bottom: 8px; font-weight: 600; color: var(--ih-navy);
  font-size: 0.92rem;
}
.value-progress .progress { height: 8px; border-radius: 20px; background: var(--ih-border); }
.value-progress .progress-bar { background: var(--grad-green); border-radius: 20px; }

/* Utility */
.text-green { color: var(--ih-green); }
.fw-800 { font-weight: 800; }
.rounded-xl { border-radius: var(--radius-lg) !important; }

/* AOS-like fade-in via JS toggling class */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Preloader */
.preloader {
  position: fixed; inset: 0; background: #fff;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader .infinity-spin {
  width: 64px; height: 64px;
  border: 5px solid var(--ih-border);
  border-top-color: var(--ih-green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive tweaks */
@media (max-width: 575px) {
  .hero { padding: 70px 0 40px; }
  .stats-band { padding: 40px 18px; }
  .cta-opportunity { padding: 40px 22px; }
}
