﻿:root {
  --font-primary: "Cormorant Garamond", Georgia, serif;
  --font-secondary: "Inter", Arial, Helvetica, sans-serif;
  --color-page: #111111;
  --color-panel: #171717;
  --color-field: #080808;
  --color-text: #f6f1ea;
  --color-muted: #b8b8b8;
  --color-soft: #777777;
  --color-line: rgba(255, 255, 255, 0.07);
  --color-gold: #cfab69;
  /* #d8b46a */
  --color-gold-dark: #c9a96e;
  /*  #bd9651 */
  --color-secondary-600: #bc964f;
  /* New added*/
  --container-width: 1010px;
  --header-height: 100px;
  --shadow-menu: 0 20px 70px rgba(0, 0, 0, 0.38);
}

@media (max-width: 1400px) {
  :root {
    --container-width: 1010px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-secondary);
  color: var(--color-text);
  background: var(--color-page);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.leadership-drawer-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.home-hero-button,
.home-portfolio-link,
.home-portfolio-arrows button,
.home-key-facts-arrows button,
.home-group-company-item a,
.portfolio-card-footer a,
.home-timeline-link,
.group-companies-link,
.home-cta-button,
.portfolio-filter-button,
.portfolio-filter-menu button,
.visit-website-button,
.promoters-cta-button,
.about-cta-button,
.history-cta-button,
.submit-button,
.newsletter-field button,
.home-group-a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.home-hero-button::before,
.home-portfolio-link::before,
.home-portfolio-arrows button::before,
.home-key-facts-arrows button::before,
.home-group-company-item a::before,
.portfolio-card-footer a::before,
.home-timeline-link::before,
.group-companies-link::before,
.home-cta-button::before,
.portfolio-filter-button::before,
.portfolio-filter-menu button::before,
.visit-website-button::before,
.promoters-cta-button::before,
.about-cta-button::before,
.history-cta-button::before,
.submit-button::before,
.newsletter-field button::before,
.home-group-a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(141, 141, 141, 0.315);
  transform: translateX(-105%);
  pointer-events: none;
}

.home-hero-button:hover,
.home-portfolio-link:hover,
.home-portfolio-arrows button:hover,
.home-key-facts-arrows button:hover,
.home-group-company-item a:hover,
.portfolio-card-footer a:hover,
.home-timeline-link:hover,
.group-companies-link:hover,
.home-cta-button:hover,
.portfolio-filter-button:hover,
.portfolio-filter-menu button:hover,
.visit-website-button:hover,
.promoters-cta-button:hover,
.about-cta-button:hover,
.history-cta-button:hover,
.submit-button:hover,
.newsletter-field button:hover,
.home-group-a:hover {
  transform: translateY(-2px);
}

.home-hero-button:hover::before,
.home-portfolio-link:hover::before,
.home-portfolio-arrows button:hover::before,
.home-key-facts-arrows button:hover::before,
.home-group-company-item a:hover::before,
.portfolio-card-footer a:hover::before,
.home-timeline-link:hover::before,
.group-companies-link:hover::before,
.home-cta-button:hover::before,
.portfolio-filter-button:hover::before,
.portfolio-filter-menu button:hover::before,
.visit-website-button:hover::before,
.promoters-cta-button:hover::before,
.about-cta-button:hover::before,
.history-cta-button:hover::before,
.submit-button:hover::before,
.newsletter-field button:hover::before,
.home-group-a:hover::before {
  animation: button-white-swipe 620ms ease forwards;
}

.home-hero-button > *,
.home-portfolio-link > *,
.home-portfolio-arrows button > *,
.home-key-facts-arrows button > *,
.home-group-company-item a > *,
.portfolio-card-footer a > *,
.home-timeline-link > *,
.group-companies-link > *,
.home-cta-button > *,
.portfolio-filter-button > *,
.portfolio-filter-menu button > *,
.visit-website-button > *,
.promoters-cta-button > *,
.about-cta-button > *,
.history-cta-button > *,
.submit-button > *,
.newsletter-field button > *,
.home-group-a > * {
  position: relative;
  z-index: 2;
}

.home-portfolio-arrows button:disabled,
.home-key-facts-arrows button:disabled {
  transform: none;
}

.home-portfolio-arrows button:disabled::before,
.home-key-facts-arrows button:disabled::before {
  animation: none;
}

@keyframes button-white-swipe {
  0% {
    transform: translateX(-105%);
  }

  45% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(105%);
  }
}

.container {
  width: min(100% - 48px, var(--container-width));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: var(--header-height);
  background: transparent;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    min-height 220ms ease;
}

body.header-scrolled .site-header {
  position: fixed;
  min-height: 86px;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.header-container {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 220ms ease;
}

body.header-scrolled .header-container {
  min-height: 86px;
}

.site-logo,
.footer-logo,
.side-menu-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  width: auto;
  height: 80px;
  object-fit: contain;
  transition: height 220ms ease;
}

body.header-scrolled .site-logo img {
  height: 66px;
}

.side-menu-logo img,
.footer-logo img {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.menu-toggle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: 68vh;
  max-width: 413px;
  height: 100vh;
  padding: 34px 30px 34px 30px;
  background: #000000ab;
  border-left: 0;
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-menu);
  transform: translateX(105%);
  transition: transform 260ms ease;
  /* overflow-y: auto; */
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .side-menu {
  transform: translateX(0);
}

.leadership-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.leadership-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(100vw, 460px);
  height: 100vh;
  padding: 48px 38px 38px;
  overflow-y: auto;
  background: #1f1f1f;
  box-shadow: var(--shadow-menu);
  transform: translateX(105%);
  transition: transform 280ms ease;
}

body.leadership-drawer-open .leadership-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.leadership-drawer-open .leadership-drawer {
  transform: translateX(0);
}

.leadership-drawer-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
}

.leadership-drawer-close span {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.leadership-drawer-close span:first-child {
  transform: rotate(45deg);
}

.leadership-drawer-close span:last-child {
  transform: rotate(-45deg);
}

.leadership-drawer-image {
  width: 100%;
  aspect-ratio: 0.99 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #121212;
}

.leadership-drawer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leadership-drawer-content {
  padding-top: 22px;
}

.leadership-drawer-content h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.leadership-drawer-role {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}

.leadership-drawer-bio {
  margin: 0;
  color: #c8c8c8;
  font-size: 13px;
  line-height: 1.65;
}

.home-leadership-card,
.leadership-card {
  cursor: pointer;
}

.home-leadership-card:focus-visible,
.leadership-card:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 4px;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 48px;
}

.menu-close {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 0;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.side-nav {
  display: grid;
  justify-items: end;
  gap: 50px;
  padding-top: 0;
}

.side-nav a {
  display: block;
  min-height: auto;
  padding: 0;
  border-bottom: 0;
  color: #b8b8b8;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.side-nav a:hover {
  color: #ffffff;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* .home-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.3) 48%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.6) 100%);
} */

.home-hero-slide > img,
.home-hero-slide > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.03);
  transition: transform 5200ms ease;
}

.home-hero-slide.is-active > img,
.home-hero-slide.is-active > video {
  transform: scale(1);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  transform: translateX(-32px);
  opacity: 0;
  transition:
    opacity 620ms ease 220ms,
    transform 620ms ease 220ms;
}

.home-hero-slide.is-active .home-hero-content {
  transform: translateX(0);
  opacity: 1;
}

.home-hero-content h2 {
  max-width: 460px;
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.05;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.home-hero-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero-button.is-primary {
  /* min-width: 328px; */
  background: var(--color-gold-dark);
  color: #0a0a0a;
}

.home-hero-button.is-secondary {
  /* min-width: 190px; */
  border: 1px solid rgb(255 255 255 / 32%);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  backdrop-filter: blur(5px);
}

.home-hero-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.home-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.home-hero-dots button {
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  transition:
    width 180ms ease,
    background 180ms ease;
}

.home-hero-dots button.is-active {
  width: 54px;
  background: #7a9096;
  /* rgba(255, 255, 255, 0.78) */
}

.home-about-section {
  padding: 110px 0;
  background: #111111;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(310px, 640px) minmax(460px, 820px);
  align-items: center;
  gap: 52px;
}

.home-about-grid.is-reversed {
  grid-template-columns: minmax(460px, 820px) minmax(310px, 640px);
}

.home-about-media {
  overflow: hidden;
}

.home-about-media img {
  width: 100%;
  object-fit: contain;
}

.home-about-kicker {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.home-about-content h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.home-about-content > p:not(.home-about-kicker) {
  max-width: 810px;
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.home-about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.home-about-stats.mt {
  margin-top: 26px;
}

.home-about-stats div {
  display: grid;
  gap: 8px;
}

.home-about-stats strong {
  color: var(--color-secondary-600);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.home-about-stats span {
  color: var(--color-muted);
  font-size: 10px;
}

.home-founder-quote-section {
  padding: 110px 0;
  background: #0a0a0a;
}

.home-founder-quote-section .home-about-content h2 {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(26px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.25;
}

.home-founder-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 24px;
  width: min(100%, 500px);
  margin-top: 26px;
}

.home-founder-principles div {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.home-founder-principles img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.home-founder-principles span {
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-portfolio-section {
  --home-portfolio-card-height: clamp(190px, calc((80vw - 450px) / 4), 315px);
  padding: 132px 0 148px;
  background: #0a0a0a;
}

.home-portfolio-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 44px;
  margin-bottom: 58px;
}

.home-portfolio-heading {
  min-width: 0;
  text-align: center;
}

.home-portfolio-kicker {
  margin: 0 0 24px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.home-portfolio-heading h2 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 2.487vw, 60px);
  font-weight: 400;
  line-height: 1.04;
}

.home-portfolio-tools {
  display: grid;
  justify-items: end;
  gap: 10px;
  padding-top: 0;
}

.home-portfolio-arrows {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-portfolio-arrows button {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.home-portfolio-arrows img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.home-portfolio-arrows button:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.home-portfolio-arrows button:disabled {
  opacity: 0.42;
  cursor: default;
}

.home-portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.home-portfolio-grid .home-portfolio-card {
  flex: 0 1 calc((100% - 64px) / 3);
  max-width: calc((100% - 64px) / 3);
}

.home-portfolio-card {
  position: relative;
  width: 100%;
  height: var(--home-portfolio-card-height);
  min-height: 0;
  overflow: hidden;
  border-radius: 7px;
  user-select: none;
  background: #151515;
  user-select: none;
  display: flex;
  flex-direction: column;
    
    justify-content: space-evenly;
    align-items: center;
  /* transform: translateY(0); */
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.home-portfolio-card .portfolio-card-image-overlay
{
    /* position: absolute; */
    max-width: 70%;
    object-fit: contain;
    height: min-content;
        min-height: 69px;
    width: 100%;
    margin: 0 auto;
    /* z-index: 99; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -60%); */
}

.home-portfolio-card.is-hidden {
  display: none;
}

/* .home-portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.84) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.02) 55%,
      rgba(0, 0, 0, 0.24) 100%
    );
  pointer-events: none;
  transition: opacity 260ms ease;
} */

.home-portfolio-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.home-portfolio-card:hover::after {
  opacity: 0.9;
}

.home-portfolio-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.home-portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 7px;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 420ms ease;
}

/* .home-portfolio-card:hover img:not(.portfolio-card-image-overlay) {
  transform: scale(1.035);
} */

.home-portfolio-card-content {
  /* position: absolute; */
  /* left: 32px; */
  /* right: 50%; */
  /* bottom: 10px; */
  /* z-index: 3; */
  /* transform: translateX(50%); */
  /* transition: transform 260ms ease; */
  width: 85%;
}

.home-portfolio-card-content .portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  /* position: static;
  top: auto; */
  width: 100%;
}

.home-portfolio-card-text {
  min-width: 0;
}

/* .home-portfolio-card:hover .home-portfolio-card-content {
  transform: translate(50%, -8%);
} */

.home-portfolio-card-content h3 {
  margin: 0 0 0px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.08;
}

.home-portfolio-card-content .portfolio-card-category {
  margin: 0;
  color: var(--color-gold);
}

.home-portfolio-card-content p:not(.portfolio-card-category) {
  margin: 0;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-portfolio-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

#portfolio-card-footer-a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(207, 171, 105, 0.25);
}

.home-portfolio-link {
  /* min-width: 302px; */
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.home-portfolio-link:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.05);
}

.home-portfolio-link img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.home-group-section {
  padding: 110px 0;
  background: #151515;
}

.home-group-container {
  width: min(100% - 48px, 1440px);
}

.home-group-section h2 {
  margin: 0 0 46px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  font-weight: 400;
  line-height: 1.13;
  text-align: center;
}

.home-group-panels {
  display: grid;
  gap: 24px;
}

.home-group-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(360px, 0.55fr);
  gap: 32px;
  align-items: start;
  padding: 28px 30px;
  border-radius: 8px;
  background: #242424;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.home-group-panel-chemspec .home-group-image {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}

.home-group-panel-chemspec .home-group-image .logo {
  position: absolute;
  z-index: 9;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  background: white;
  padding: 0.5rem;
  object-fit: contain;
  border-radius: 3px;
  min-height: unset;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: unset;
}

.home-group-panel-healthindia {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  padding: 30px;
}

.home-group-panel:hover {
  background: #282828;
  transform: translateY(-3px);
}

.home-group-image {
  overflow: hidden;
  border-radius: 7px;
  position: relative;
}

.chemspec-logo-img {
  position: absolute;
  width: 100px;
  height: 100px;
  overflow: hidden;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#chemspec-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .home-group-image::after {
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.24) 100%);
} */

.home-group-image img {
  width: 100%;
  min-height: 240px;
  max-height: 240px;
  object-fit: cover;
  object-position: center top;
  transition: transform 360ms ease;
  /* filter: blur(2px); */
}

.home-group-panel:hover .home-group-image img:not(.logo) {
  transform: scale(1.025);
}

.home-group-copy h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.home-group-copy img.logo {
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 240px;
}

.home-group-copy .read-more {
  font-size: 12px;
  display: flex;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.home-group-copy .read-more:hover {
  text-decoration: underline;
}

.home-group-copy p {
  max-width: 680px;
  margin: 0 0 8px 0;
  color: #afafaf;
  font-size: 12px;
  line-height: 1.6;
}

.home-group-companies {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.home-group-companies > p {
  margin: 0 0 20px;
  color: #afafaf;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-group-company-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-group-company-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-items: start;
  padding: 28px;
  border-radius: 8px;
  background: #1a1a1a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: space-between;
}

.home-group-company-item > img {
  width: 85%;
  margin: 0 auto;
  object-fit: contain;
  margin-bottom: 2rem;
}

.home-group-company-item h4 {
  /* min-height: 44px; */
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.group-companies-link
{
  margin: 0 auto;
  grid-column: 1 / -1;
}

.home-group-company-item a,
.group-companies-link {
  min-height: 34px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.home-group-company-item a.center {
  margin: 0 auto;
}

.home-group-company-item a:hover,
.portfolio-card-footer a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-group-company-item a img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.home-key-facts-section {
  --home-key-fact-card-width: calc((100% - 280px) / 3);
  --home-key-facts-edge: max(24px, calc((100vw - var(--container-width)) / 2));
  overflow: hidden;
  padding: 150px 0 160px;
  background: #080808;
}

.home-key-facts-slider {
  width: min(100% - 48px, 1440px);
}

.home-key-facts-header {
  position: relative;
  display: grid;
  justify-items: center;
  margin-bottom: 75px;
  text-align: center;
}

.home-key-facts-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.home-key-facts-arrows {
  display: none;
  align-items: center;
  gap: 18px;
}

.home-key-facts-arrows button {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.home-key-facts-arrows button:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.home-key-facts-arrows button:disabled {
  opacity: 0.42;
  cursor: default;
}

.home-key-facts-arrows img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.home-key-facts-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * var(--home-key-facts-edge));
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.home-key-facts-slider.is-dragging {
  cursor: grabbing;
}

.home-key-facts-slider::before,
.home-key-facts-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--home-key-facts-edge);
  pointer-events: none;
}

.home-key-facts-slider::before {
  left: 0;
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0) 100%);
}

.home-key-facts-slider::after {
  right: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0) 0%, #080808 100%);
}

.home-key-facts-track {
  display: flex;
  gap: 32px;
  padding-left: var(--home-key-facts-edge);
  transition: transform 360ms ease;
  will-change: transform;
}

.home-key-fact-card {
  position: relative;
  flex: 0 0 var(--home-key-fact-card-width);
  aspect-ratio: 0.94 / 1;
  overflow: hidden;
  border-radius: 7px;
  background: #151515;
  user-select: none;
}

.home-key-fact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 42%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0) 52%,
      rgba(0, 0, 0, 0.16) 100%
    );
  pointer-events: none;
}

.home-key-fact-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 420ms ease;
}

.home-key-fact-card:hover > img {
  transform: scale(1.04);
}

.home-key-fact-content {
  position: absolute;
  left: 30px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 0 14px;
  transform: translateY(calc(100% - 30px));
  transition: transform 320ms ease;
}

.home-key-fact-content span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(207, 171, 105, 0.14);
}

.home-key-fact-content span img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.home-key-fact-content h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.08;
}

.home-key-fact-content p {
  grid-column: 1 / -1;
  max-width: 330px;
  margin: 24px 0 0;
  color: #d2d2d2;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 260ms ease 80ms,
    transform 260ms ease 80ms;
}

.home-key-fact-card:hover .home-key-fact-content {
  transform: translateY(0);
}

.home-key-fact-card:hover .home-key-fact-content p {
  opacity: 1;
  transform: translateY(0);
}

.home-timeline-section {
  --home-timeline-card-width: 220px;
  --home-timeline-edge: max(24px, calc((100vw - var(--container-width)) / 2));
  overflow: hidden;
  padding: 86px 0 74px;
  background: #151515;
}

.home-timeline-container {
  width: min(100% - 48px, 1440px);
}

.home-timeline-header {
  margin-bottom: 56px;
  text-align: center;
}

.home-timeline-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.home-timeline-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * var(--home-timeline-edge));
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.home-timeline-slider.is-dragging {
  cursor: grabbing;
}

.home-timeline-slider::before,
.home-timeline-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--home-timeline-edge);
  pointer-events: none;
}

.home-timeline-slider::before {
  left: 0;
  background: linear-gradient(90deg, #151515 0%, rgba(21, 21, 21, 0) 100%);
}

.home-timeline-slider::after {
  right: 0;
  background: linear-gradient(90deg, rgba(21, 21, 21, 0) 0%, #151515 100%);
}

.home-timeline-track {
  min-height: 314px;
  display: flex;
  align-items: flex-start;
  gap: 56px;
  padding-left: var(--home-timeline-edge);
  transition: transform 360ms ease;
  will-change: transform;
}

.home-timeline-card {
  position: relative;
  flex: 0 0 var(--home-timeline-card-width);
  padding-right: 18px;
  text-align: right;
  user-select: none;
  border-right: 1px solid rgba(207, 171, 105, 0.64);
}

.home-timeline-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 56px;
  background: rgba(207, 171, 105, 0.64);
}

.home-timeline-card:nth-child(even) {
  margin-top: 112px;
}

.home-timeline-card h3 {
  margin: 0 0 10px;
  color: rgba(207, 171, 105, 0.28);
  font-family: var(--font-primary);
  font-size: clamp(38px, 3vw, 48px);
  font-weight: 500;
  line-height: 0.9;
}

.home-timeline-card h4 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
}

.home-timeline-card p {
  margin: 0;
  color: #afafaf;
  font-size: 12px;
  line-height: 1.45;
}

.home-timeline-footer {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.home-timeline-link {
  min-width: 206px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  background: var(--color-gold);
  color: #080808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.home-timeline-link:hover {
  background: var(--color-gold-dark);
}

.home-timeline-link img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.home-leadership-section {
  padding: 110px 0;
  background: #080808;
}

.home-leadership-section .container,
.home-leadership-container {
  width: min(100% - 48px, var(--container-width));
  text-align: center;
}

.home-leadership-kicker {
  margin: 0 0 24px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.home-leadership-section .container > h2,
.home-leadership-container > h2 {
  max-width: 760px;
  margin: 0 auto 46px;
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.13;
}

.home-leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.home-leadership-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 7px;
  background: #151515;
}

.home-leadership-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}

.home-leadership-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 0.15rem;
  background: linear-gradient(
    to right,
    rgb(0 0 0 / 0%),
    rgb(255 255 255 / 46%),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.2),
    rgba(0, 0, 0, 0.1)
  );
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.home-leadership-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-leadership-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.home-leadership-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
}

.home-leadership-card-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.home-leadership-card-content p {
  margin: 0;
  color: #7a9096;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-past-investments-section {
  padding: 86px 0 82px;
  background: #151515;
}

.home-past-investments-container {
  /* width: min(100% - 48px, 1120px); */
  text-align: center;
}

.home-past-investments-kicker {
  margin: 0 0 28px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.home-past-investments-container > h2 {
  max-width: 760px;
  margin: 0 auto 46px;
  color: #ffffff;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.14;
}

.home-past-investments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.home-past-investment-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 276px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #101312;
}

.home-past-investment-body {
  padding: 24px 24px 22px;
}

.home-past-investment-heading {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.home-past-investment-heading span {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222219;
}

.home-past-investment-heading span img {
  max-width: 48px;
  max-height: 38px;
  object-fit: contain;
}

.home-group-a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.home-group-a:hover {
  color: #ffffff;
}

.home-group-a img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.home-past-investment-heading h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.home-past-investment-heading p {
  margin: 0;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-past-investment-body > p {
  max-width: 470px;
  margin: 0;
  color: #afafaf;
  font-size: 13px;
  line-height: 1.5;
}

.home-past-investment-footer {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 24px;
  border-top: 1px solid rgba(207, 171, 105, 0.18);
  background: #24241b;
}

.home-past-investment-footer strong {
  color: var(--color-gold);
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.home-past-investment-footer span {
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.35;
}

.home-cta-section {
  padding: 52px 0 56px;
  background: #0a0a0a;
}

.home-cta-section h2 {
  max-width: 830px;
  margin: 0 auto 46px;
  color: #ffffff;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.14;
}

.home-cta-container {
  text-align: center;
}

.home-cta-panel {
  position: relative;
  min-height: 324px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 7px;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.home-cta-partner {
  background-image: url("../Images/home-cta-1.png");
}

.home-cta-quote {
  background-image: url("../Images/Classroom-symmetrical-BW.jpeg");
  align-items: center;
  position: relative;
}

.home-cta-quote::after
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000000ad;
  pointer-events: none;
}

.home-cta-panel-content {
  position: relative;
  z-index: 1;
  width: min(100% - 42px, 430px);
  display: grid;
  justify-items: center;
}

.home-cta-line {
  width: 48px;
  height: 1px;
  display: block;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.home-cta-line-2 {
  width: 48px;
  height: 1px;
  display: block;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.home-cta-panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.home-cta-panel p {
  max-width: 360px;
  margin: 0;
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.45;
}

.home-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.home-cta-button {
  min-width: 146px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.home-cta-button img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.home-cta-button.is-primary {
  background: var(--color-gold);
  color: #060606;
}

.home-cta-button.is-primary:hover {
  background: var(--color-gold-dark);
}

.home-cta-button.is-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.home-cta-button.is-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.home-cta-tagline {
  margin-top: 42px !important;
  color: #b8b8b8 !important;
  font-size: 9px !important;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.5 !important;
  text-transform: uppercase;
}

.home-cta-quote .home-cta-panel-content {
  width: min(100% - 48px, 460px);
}

.home-cta-quote .home-cta-line {
  margin-bottom: 22px;
}

.home-cta-quote blockquote {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.32;
}

.contact-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url("../Images/header/contact.png") center / cover no-repeat;
}

.contact-hero-container {
  padding-top: 18px;
}

.about-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url("../Images/header/about-us.png") center / cover no-repeat;
}

.about-hero-container {
  padding-top: 18px;
}

.promoters-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url("../Images/header/promoters.png") center / cover
    no-repeat;
}

.promoters-hero-container {
  padding-top: 18px;
}

.group-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url("../Images/header/group-companies.png") center / cover no-repeat;
}

.group-hero-container {
  padding-top: 18px;
}

.portfolio-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url("../Images/header/investment-portfolio.png") center / cover
    no-repeat;
}

.portfolio-hero-container {
  padding-top: 18px;
}

.investment-philosophy-section {
  padding: 100px 0 100px;
  background: #111111;
}

.investment-philosophy-container {
  width: min(100% - 48px, 980px);
  text-align: center;
}

.investment-philosophy-container h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.investment-philosophy-container > p {
  max-width: 725px;
  margin: 0 auto 60px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.investment-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
  max-width: 725px;
  margin: 0 auto;
}

.investment-philosophy-item {
  display: grid;
  justify-items: center;
}

.investment-philosophy-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 18px;
}

.investment-philosophy-item h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.investment-philosophy-item span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.current-portfolio-section {
  padding: 132px 0 150px;
  background: #0a0a0a;
}

.current-portfolio-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 60px;
}

.current-portfolio-heading {
  min-width: 0;
  text-align: center;
}

.current-portfolio-kicker {
  margin: 0 0 24px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.current-portfolio-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.portfolio-filter {
  position: relative;
  z-index: 5;
}

.portfolio-filter-button {
  /* min-width: 250px; */
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #161616;
  padding: 12px 25px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portfolio-filter-button .filter-chevron {
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translateY(-3px) rotate(45deg);
}

.portfolio-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  backdrop-filter: blur(12px);
}

.portfolio-filter.is-open .portfolio-filter-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.portfolio-filter-menu button {
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
}

.portfolio-filter-menu button:hover,
.portfolio-filter-menu button.is-active {
  color: var(--color-gold);
}

.portfolio-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.portfolio-card-grid .portfolio-card {
  flex: 0 1 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card > img {
  width: calc(100% - 36px);
  /* aspect-ratio: 2.35; */
  object-fit: cover;
  margin: 18px 18px 0;
}

.portfolio-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 130px;
  padding: 18px;
  justify-items: start;
}

.portfolio-card-body .logo
{
  max-width: 190px;
  width: 100%;
  margin-bottom: 1rem;
}

.portfolio-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
}

.portfolio-card-category {
  margin: 0 0 15px;
  color: #7a9096;
  font-size: 10px;
  line-height: 1.35;
}

.portfolio-card-body > p:not(.portfolio-card-category) {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 8px;
  line-height: 1.35;
}

.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: center; /* space-between */
  gap: 18px;
  /* position: relative;
  top: -42px; */
}

.portfolio-link {
  top: 0;
}

.portfolio-card-footer strong {
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.25;
  text-transform: uppercase;
}

.portfolio-card-footer a {
  min-height: 34px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.portfolio-card-footer a img{
  border-radius: 0;
}

.portfolio-card-footer img {
  width: 10px;
  height: 10px;
  object-fit: contain;
  border-radius: 0;
}

.past-portfolio-section {
  padding: 120px 0 118px;
  background: url("../Images/portfolio-investments-cta-bg.png") center bottom /
    cover no-repeat;
}

/* .past-portfolio-container {
  width: min(100% - 48px, 1440px);
} */

.past-portfolio-kicker {
  margin: 0 0 34px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.past-portfolio-container > h2 {
  margin: 0 0 60px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.past-portfolio-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.past-portfolio-cards .investment-card {
  background: rgba(10, 13, 11, 0.96);
}

.past-portfolio-cards .investment-card-body {
  padding: 34px 32px 28px;
}

.past-portfolio-cards .investment-card-heading {
  grid-template-columns: 75px 1fr;
  gap: 18px;
}

.past-portfolio-cards .investment-icon {
  width: 75px;
  height: 75px;
}

.past-portfolio-cards .investment-icon img {
  max-width: 72px;
  max-height: 56px;
}

.past-portfolio-cards .investment-card h3 {
  font-size: 24px;
}

.past-portfolio-cards .investment-card-body > p {
  font-size: 11px;
}

.past-portfolio-cards .investment-card-footer {
  padding: 18px;
}

.focus-areas-section {
  padding: 138px 0 150px;
  background: #111111;
}

.focus-areas-container {
  text-align: center;
}

.focus-areas-container h2 {
  margin: 0 0 76px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  text-align: left;
}

.focus-area-card {
  min-height: 165px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 180ms ease;
  user-select: none;
}

.focus-area-card:hover {
  background: rgb(201, 169, 110, 0.2);
}

.focus-area-card span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: #2a251d;
}

.focus-area-card img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.focus-area-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1.2;
}

.focus-area-card p {
  max-width: 230px;
  margin: 0;
  color: #8a8f8b;
  font-size: 14px;
  line-height: 1.45;
}

.group-company-detail-section {
  padding: 110px 0;
  background: #111111;
}

.group-company-detail-grid {
  display: grid;
  grid-template-columns: minmax(310px, 640px) minmax(460px, 820px);
  align-items: center;
  gap: 52px;
}

.group-company-media {
  overflow: hidden;
}

.group-company-media img {
  width: 100%;
  object-fit: contain;
}

.group-company-kicker {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.group-company-content h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.group-company-content > p:not(.group-company-kicker) {
  max-width: 810px;
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.group-company-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 52px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.group-company-stats div {
  display: grid;
  gap: 10px;
}

.group-company-stats strong {
  color: var(--color-secondary-600);
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.group-company-stats span {
  color: var(--color-muted);
  font-size: 12px;
}

.group-company-list {
  display: grid;
  gap: 7px;
  margin: 34px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.healthindia-section {
  padding: 110px 0;
  background: url("../Images/group-companies-cta-bg.webp") center / cover
    no-repeat;
}

.healthindia-container {
  width: min(100% - 48px, var(--container-width));
}

.healthindia-feature {
  display: grid;
  grid-template-columns: minmax(460px, 820px) minmax(310px, 520px);
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  margin-bottom: 54px;
}

.group-company-content img.logo,
.healthindia-feature img.logo {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 240px;
}

.healthindia-kicker {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.healthindia-copy h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.healthindia-copy > p:not(.section-eyebrow) {
  max-width: 810px;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.healthindia-copy ul {
  display: grid;
  gap: 7px;
  margin: 30px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.healthindia-main-image img {
  width: 100%;
  object-fit: contain;
}

.healthindia-subsection h3 {
  margin: 0 0 18px;
  color: var(--color-gold-dark);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.healthindia-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.healthindia-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.healthindia-card-image {
  width: 100%;
  aspect-ratio: 2.05;
  object-fit: cover;
  object-position: top;
}

.healthindia-card-body {
  position: relative;
  padding: 28px 18px 20px;
}

.healthindia-card-body img.logo
{
  max-width: 190px;
  width: 100%;
  margin-bottom: 1rem;
}

.healthindia-card-icon {
  position: absolute;
  top: -18px;
  left: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #191919;
  border: 1px solid rgba(216, 180, 106, 0.36);
}

.healthindia-card-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.healthindia-card h4 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.healthindia-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.4;
}

.healthindia-card li::marker {
  color: #9bb0b5;
}

.visit-website-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(216, 180, 106, 0.12);
  color: var(--color-gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-website-button img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.leadership-section {
  padding: 110px 0;
  background: #0a0a0a;
}

.leadership-container {
  width: min(100% - 48px, var(--container-width));
  text-align: center;
}

.leadership-kicker {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.leadership-container h2 {
  margin: 0 0 46px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.leadership-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 7px;
  background: #121212;
}

.leadership-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
}

.leadership-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 0.15rem;
  background: linear-gradient(
    to right,
    rgb(0 0 0 / 0%),
    rgb(255 255 255 / 46%),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.2),
    rgba(0, 0, 0, 0.1)
  );
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.leadership-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.leadership-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.leadership-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
}

.leadership-card-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.leadership-card-content p {
  margin: 0;
  color: #7a9096;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.family-legacy-section {
  padding: 110px 0;
  background: #111111;
}

.family-legacy-container {
  width: min(100% - 48px, 820px);
  text-align: center;
}

.family-legacy-container h2 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.family-legacy-container > p {
  max-width: 475px;
  margin: 0 auto 42px;
  color: var(--color-muted);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
}

.family-legacy-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 54px;
}

.family-legacy-stats div {
  min-width: 180px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.family-legacy-stats strong {
  color: var(--color-gold-dark);
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.family-legacy-stats span {
  color: var(--color-muted);
  font-size: 12px;
}

.promoters-cta-section {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: url("../Images/promoters-leadership-cta-bg.webp") center / cover
    no-repeat;
}

.promoters-cta-container {
  width: min(100% - 48px, 1080px);
  text-align: center;
}

.promoters-cta-line {
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto 58px;
  background: var(--color-gold-dark);
}

.promoters-cta-container h2 {
  max-width: 820px;
  margin: 0 auto 54px;
  color: #ffffff;
  font-size: clamp(58px, 5vw, 82px);
  line-height: 1;
}

.promoters-cta-container > p:not(.promoters-cta-tagline) {
  max-width: 780px;
  margin: 0 auto 72px;
  color: var(--color-muted);
  font-size: 25px;
  line-height: 1.16;
}

.promoters-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

.promoters-cta-button {
  min-width: 230px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.promoters-cta-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.promoters-cta-button.is-primary {
  background: var(--color-gold-dark);
  border: 1px solid var(--color-gold-dark);
  color: #050505;
}

.promoters-cta-button.is-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.promoters-cta-button.is-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.promoters-cta-button.is-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.promoters-cta-tagline {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid #b8b8b8;
  color: var(--color-muted);
  font-size: 15px;
  letter-spacing: 0.38em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-intro-section {
  padding: 110px 0;
  background: #111111;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(310px, 640px) minmax(460px, 820px);
  align-items: center;
  gap: 52px;
}

.about-intro-media {
  /* min-height: 690px; */
  overflow: hidden;
}

.about-intro-media img {
  width: 100%;
  /* height: 100%; */
  /* min-height: 690px; */
  object-fit: contain;
}

.about-intro-content {
  padding-top: 6px;
}

.about-kicker {
  margin-bottom: 24px;
  color: var(--color-secondary-600);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.about-intro-content h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.about-intro-content > p:not(.section-eyebrow) {
  max-width: 810px;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.about-intro-content p a {
  color: var(--color-gold);
}

.about-intro-content p a:hover {
  text-decoration: underline;
}

.about-intro-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-intro-stats div {
  display: grid;
  gap: 8px;
}

.about-intro-stats strong {
  color: var(--color-secondary-600);
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.about-intro-stats span {
  color: var(--color-muted);
  font-size: 12px;
}

.investment-track-section {
  padding: 110px 0;
  background: #0a0a0a;
}

.investment-track-grid {
  display: grid;
  grid-template-columns: minmax(360px, 600px) minmax(495px, 900px);
  gap: 50px;
  align-items: center;
}

.investment-track-copy h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.investment-track-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.investment-card {
  display: grid;
  grid-template-rows: 1fr auto;
  /* min-height: 380px; */
  background: #111312;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.investment-card-body {
  padding: 26px 20px 20px;
}

.investment-card-heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.investment-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242019;
}

.investment-icon img {
  max-width: 44px;
  max-height: 36px;
  object-fit: contain;
}

.investment-card h3 {
  margin: -2px 0 6px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
}

.investment-card-heading p {
  margin: 0;
  color: var(--color-gold-dark);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.55;
  text-transform: uppercase;
}

.investment-card-body > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
}

.investment-card-footer {
  padding: 16px 20px 16px;
  background: rgba(201, 169, 110, 0.1);
  border-top: 1px solid rgba(216, 180, 106, 0.18);
}

.investment-card-footer strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-gold-dark);
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.investment-card-footer span {
  color: var(--color-muted);
  font-size: 12px;
}

.about-cta-section {
  /* min-height: 820px; */
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: url("../Images/Partner-with-us-landing-page.webp") center / cover no-repeat;
  position: relative;
  min-height: 60vh;

}

.about-cta-section::after
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000000ad;
  pointer-events: none;

}

.about-cta-container {
  width: min(100% - 48px, 1080px);
  text-align: center;
      position: relative;
    z-index: 9;
}

.about-cta-line {
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto 58px;
  background: #7a9096;
}

.about-cta-container h2 {
  max-width: 820px;
  margin: 0 auto 38px;
  color: #ffffff;
  font-size: clamp(36px, 3.2vw, 60px);
  line-height: 1;
}

.about-cta-container > p:not(.about-cta-tagline) {
  max-width: 510px;
  margin: 0 auto 54px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.16;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  /* margin-bottom: 38px; */
}

.about-cta-button {
  /* min-width: 230px; */
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 100%;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.about-cta-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.about-cta-button.is-primary {
  background: var(--color-gold-dark);
  border: 1px solid var(--color-gold-dark);
  color: #050505;
}

.about-cta-button.is-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.about-cta-button.is-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.about-cta-button.is-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.about-cta-tagline {
  max-width: 900px;
  margin: 0 auto;
  margin: 0 auto 36px auto;
  padding-bottom: 36px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.06); */
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.38em;
  line-height: 1.45;
  text-transform: uppercase;
}

.history-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background: url("../Images/header/our-journey.png") center / cover no-repeat;
}

.history-hero-container {
  padding-top: 18px;
}

.history-stats-section {
  padding: 110px 0;
  background: #111;
}

.history-stats-container {
  text-align: center;
}

.history-stats-container h2 {
  margin: 0 0 46px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1.13;
}

.history-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.history-stat {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.history-stat strong {
  color: var(--color-gold);
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.history-stat span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.contact-section {
  padding: 160px 0;
  background: var(--color-page);
}

.legal-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.72) 100%),
    url("../Images/header/contact.png") center / cover no-repeat;
}

.legal-hero-container {
  padding-top: 18px;
}

.legal-hero-container .section-eyebrow {
  margin-bottom: 18px;
}

.legal-page-section {
  padding: 110px 0 130px;
  background: #111111;
}

.legal-page-container {
  width: min(100% - 48px, 820px);
}

.legal-page-content {
  display: grid;
  gap: 22px;
}

.legal-page-content h2 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.15;
}

.legal-page-content > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.75;
}

.legal-page-list {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 12px;
}

.legal-page-list li {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.legal-page-list li::marker {
  color: var(--color-gold);
}

.timeline-section {
  padding: 140px 0 118px;
  background: #0a0a0a;
}

.timeline-container {
  width: min(100% - 48px, 1120px);
}

.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.34);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.timeline-media {
  position: absolute;
  top: -26px;
  z-index: 3;
  width: min(20vw, 250px);
  aspect-ratio: 1.55;
  overflow: hidden;
  border: 3px solid rgb(143 143 143);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.86) rotate(3deg);
  transition:
    opacity 260ms ease,
    transform 320ms ease;
}

.timeline-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 0px;
  z-index: 2;
  width: 4px;
  height: 58px;
  background: rgba(201, 169, 110, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0.35);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 280ms ease;
}

.timeline-item:hover .timeline-media,
.timeline-item.is-visible .timeline-media {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(7deg);
}

.timeline-item:hover::after,
.timeline-item.is-visible::after {
  opacity: 1;
  transform: scaleY(1);
}

.timeline-item.is-left {
  align-self: flex-start;
  justify-content: flex-end;
  padding-right: calc(50% + 64px);
  text-align: right;
}

.timeline-item.is-left .timeline-media {
  left: calc(50% + 92px);
}

.timeline-item.is-left::after {
  left: calc(50% - 4px);
}

.timeline-item.is-right {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: calc(50% + 64px);
  text-align: left;
}

.timeline-item.is-right .timeline-media {
  right: calc(50% + 92px);
  transform: translateY(18px) scale(0.86) rotate(-3deg);
}

.timeline-item.is-right:hover .timeline-media,
.timeline-item.is-right.is-visible .timeline-media {
  transform: translateY(0) scale(1) rotate(-7deg);
}

.timeline-item.is-right::after {
  right: calc(50% - 4px);
}

.timeline-item:nth-child(2) {
  margin-top: -2px;
}

.timeline-item:nth-child(3) {
  margin-top: 4px;
}

.timeline-item:nth-child(4) {
  margin-top: 4px;
}

.timeline-item:nth-child(5) {
  margin-top: 4px;
}

.timeline-item:nth-child(6) {
  margin-top: 4px;
}

.timeline-item:nth-child(8) {
  margin-top: 4px;
}

.timeline-item:nth-child(10) {
  margin-top: 4px;
}

.timeline-item:nth-child(12) {
  margin-top: 4px;
}

.timeline-item:nth-child(14) {
  margin-top: 4px;
}

.timeline-content {
  width: min(100%, 360px);
}

.timeline-content h2 {
  margin: 0 0 4px;
  color: rgba(201, 169, 110, 0.5);
  font-size: clamp(48px, 2.634vw, 60px);
  font-weight: 600;
  line-height: 1.15;
}

.timeline-item.is-large .timeline-content h2,
.timeline-item.is-present .timeline-content h2 {
  font-size: clamp(36px, 2.634vw, 60px);
}

.timeline-content h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.timeline-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.history-cta-section {
  padding: 110px 0;
  background: #0a0a0a;
}

.history-cta-container {
  width: min(100% - 48px, 1080px);
  text-align: center;
}

.history-cta-line {
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto 58px;
  background: #7a9096;
}

.history-cta-container h2 {
  max-width: 820px;
  margin: 0 auto 38px;
  color: #ffffff;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 1;
}

.history-cta-container > p:not(.history-cta-tagline) {
  max-width: 450px;
  margin: 0 auto 54px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.16;
}

.history-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 38px;
}

.history-cta-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 100%;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.history-cta-button.is-primary {
  background: var(--color-gold-dark);
  border: 1px solid var(--color-gold);
  color: #050505;
}

.history-cta-button.is-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.history-cta-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.history-cta-button.is-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.history-cta-button.is-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.history-cta-tagline {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.38em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-grid {
  display: flex; /* grid */
  grid-template-columns: minmax(245px, 650px) minmax(min-content, 720px);
  align-items: center; /* start */

  justify-content: center; /* space-between */
  gap: 80px;
}

.section-eyebrow {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  text-align: center; /* new */
}

.contact-info h2 {
  margin-bottom: 56px;
  font-size: clamp(36px, 2.8vw, 60px);
  line-height: 0.95;
  text-align: center; /* new */
}

.contact-methods {
  display: grid;
  /* gap: 32px; */
  max-width: 850px; /* 540 */
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-method {
  gap: 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  border: 1px solid #212121;
  justify-content: flex-start;
}

.contact-method-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-method-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-method:nth-child(2) {
  border-left: 0px;
  border-right: 0px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 180, 106, 0.08);
  border: 1px solid rgba(216, 180, 106, 0.18);
}

.contact-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.contact-label {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center; /* new */
}

.contact-method a,
.contact-method address {
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
  text-align: center; /* new */
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  background: #161616;
  border: 1px solid var(--color-line);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #050505;
  border-radius: 0;
  outline: 0;
  background: #0a0a0a;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a8a8a8;
  opacity: 1;
}

.contact-form select {
  appearance: none;
  color: #a8a8a8;
  background-image:
    linear-gradient(45deg, transparent 50%, #a8a8a8 50%),
    linear-gradient(135deg, #a8a8a8 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 16px,
    calc(100% - 14px) 16px;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px;
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 180, 106, 0.62);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 0 0 1000px var(--color-field) inset;
}

.submit-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 4px;
  padding: 11px 20px;
  background: var(--color-gold);
  color: #060606;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease;
}

.submit-button:hover {
  background: var(--color-gold-dark);
}

.submit-button img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.form-note {
  max-width: 520px;
  margin: 0;
  color: var(--color-soft);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer {
  padding: 56px 0 56px;
  background: #0a0a0a;
  color: #ffffff;
}

.footer-container {
  display: grid;
  gap: 20px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

/* .footer-logo {
  margin-bottom: 38px;
} */

.footer-logo img {
  width: auto;
  height: 80px;
  filter: brightness(0) invert(1);
}

.footer-newsletter {
  width: 100%;
  max-width: 456px;
}

.footer-newsletter label,
.footer-column h3 {
  display: block;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.6px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-newsletter label {
  color: var(--color-gold-dark);
}

.newsletter-field {
  display: grid;
  grid-template-columns: 1fr 72px;
  width: 100%;
}

.newsletter-field input {
  min-width: 0;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 0;
  border-radius: 0;
  outline: 0;
  background: #0f1111;
  color: #ffffff;
  padding: 0 16px;
  font-size: 12px;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.newsletter-field button {
  width: 55px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-dark);
  transition: background 180ms ease;
}

.newsletter-field button:hover {
  background: var(--color-gold-dark);
}

.newsletter-field button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-column {
  display: flex;
    justify-items: start;
    gap: 1rem;
    align-items: center;
    color: #80808082;
    font-size: 12px;
}

.footer-column h3 {
  margin-bottom: 10px;
}

.footer-column a {
  color: #616161;
  font-size: 12px;
  line-height: 1.45;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: #616161;
  font-size: 12px;
}

.footer-bottom p a {
  margin: 0;
  color: #a7a7a7;
  font-size: 12px;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

/* .footer-bottom p:last-child {
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: italic;
} */

@media (max-width: 1200px) {
  :root {
    --header-height: 126px;
  }

  .container {
    width: min(100% - 40px, var(--container-width));
  }

  .site-logo img {
    height: 94px;
  }

  .home-hero-content h2 {
    max-width: 720px;
  }

  .home-about-section {
    padding: 110px 0;
  }

  .home-about-grid {
    grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
    gap: 48px;
  }

  .home-about-grid.is-reversed {
    grid-template-columns: minmax(420px, 1.1fr) minmax(330px, 0.9fr);
  }

  .home-about-media,
  .home-about-media img {
    min-height: 600px;
  }

  .home-about-content > p:not(.home-about-kicker) {
    font-size: 17px;
  }

  .home-founder-quote-section {
    padding: 110px 0;
  }

  .home-group-section {
    padding: 110px 0;
  }

  .home-group-section h2 {
    margin-bottom: 46px;
  }

  .home-group-panel,
  .home-group-panel-healthindia {
    gap: 28px;
    padding: 26px;
  }

  .home-group-copy p {
    font-size: 17px;
  }

  .home-group-copy a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
  }

  .home-group-company-item h4 {
    font-size: 18px;
  }

  .home-key-facts-section {
    padding: 120px 0 130px;
    --home-key-fact-card-width: calc((100% - 32px) / 2);
  }

  .home-key-facts-header {
    margin-bottom: 82px;
  }

  .home-timeline-section {
    padding: 82px 0 70px;
    --home-timeline-card-width: 210px;
  }

  .home-timeline-track {
    min-height: 304px;
    gap: 46px;
  }

  .home-timeline-card:nth-child(even) {
    margin-top: 104px;
  }

  .home-timeline-card h3 {
    font-size: 42px;
  }

  .home-timeline-card h4 {
    font-size: 22px;
  }

  .home-timeline-card p {
    font-size: 12px;
  }

  .home-leadership-section {
    padding: 110px 0;
  }

  .home-leadership-section .container > h2,
  .home-leadership-container > h2 {
    margin-bottom: 46px;
  }

  .home-leadership-grid {
    gap: 20px;
  }

  .home-leadership-card,
  .home-leadership-card img {
    min-height: 350px;
  }

  .home-leadership-card-content {
    left: 22px;
    right: 22px;
  }

  .home-leadership-card-content h3 {
    font-size: 25px;
  }

  .home-past-investments-section {
    padding: 76px 0;
  }

  .home-past-investments-container > h2 {
    margin-bottom: 40px;
  }

  .home-past-investment-heading {
    grid-template-columns: 68px 1fr;
  }

  .home-past-investment-heading span {
    width: 68px;
    height: 68px;
  }

  .home-past-investment-heading h3 {
    font-size: 24px;
  }

  .home-past-investment-heading p {
    letter-spacing: 0.28em;
  }

  .home-cta-panel {
    min-height: 300px;
  }

  .home-cta-panel-content {
    width: min(100% - 36px, 400px);
  }

  .home-cta-panel h2 {
    font-size: 26px;
  }

  .home-cta-actions {
    gap: 14px;
  }

  .home-cta-button {
    min-width: 138px;
    padding-inline: 16px;
  }

  .home-cta-quote blockquote {
    font-size: 22px;
  }

  .contact-section {
    padding: 110px 0;
  }

  .timeline-section {
    padding: 112px 0 96px;
  }

  .history-stats-section {
    padding: 96px 0;
  }

  .about-intro-section {
    padding: 110px 0;
  }

  .leadership-section {
    padding: 110px 0;
  }

  .leadership-container h2 {
    margin-bottom: 46px;
  }

  .leadership-grid {
    gap: 20px;
  }

  .leadership-card {
    min-height: 350px;
  }

  .leadership-card img {
    min-height: 350px;
  }

  .family-legacy-section {
    padding: 110px 0;
  }

  .group-company-detail-section {
    padding: 110px 0;
  }

  .group-company-detail-grid {
    grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
    gap: 48px;
  }

  .group-company-content > p:not(.group-company-kicker) {
    font-size: 17px;
  }

  .group-company-list {
    font-size: 17px;
  }

  .healthindia-section {
    padding: 110px 0;
  }

  .healthindia-feature {
    grid-template-columns: minmax(420px, 1.1fr) minmax(330px, 0.9fr);
    gap: 48px;
  }

  .healthindia-copy > p:not(.section-eyebrow),
  .healthindia-copy ul {
    font-size: 17px;
  }

  .healthindia-card-grid {
    gap: 20px;
  }

  .investment-philosophy-section {
    padding: 112px 0;
  }

  .investment-philosophy-grid {
    gap: 42px;
  }

  .current-portfolio-section {
    padding: 110px 0 118px;
  }

  .portfolio-card-grid {
    gap: 24px;
  }

  .portfolio-card > img {
    width: calc(100% - 40px);
    margin: 20px 20px 0;
  }

  .portfolio-card-body {
    padding: 18px 20px 22px;
  }

  .past-portfolio-section {
    padding: 100px 0;
  }

  .past-portfolio-cards {
    gap: 28px;
  }

  .past-portfolio-cards .investment-card-heading {
    grid-template-columns: 90px 1fr;
  }

  .past-portfolio-cards .investment-icon {
    width: 90px;
    height: 90px;
  }

  .past-portfolio-cards .investment-card h3 {
    font-size: 32px;
  }

  .focus-areas-section {
    padding: 110px 0 118px;
  }

  .focus-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-legacy-container > p {
    margin-bottom: 42px;
    font-size: 17px;
  }

  .promoters-cta-section {
    min-height: 720px;
    padding: 96px 0;
  }

  .promoters-cta-container > p:not(.promoters-cta-tagline) {
    font-size: 22px;
  }

  .about-intro-grid {
    grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
    gap: 48px;
  }

  .about-intro-media,
  .about-intro-media img {
    min-height: 600px;
  }

  .about-intro-content > p:not(.section-eyebrow) {
    font-size: 17px;
  }

  .investment-track-section {
    padding: 112px 0;
  }

  .investment-track-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .investment-track-copy p {
    max-width: 760px;
  }

  .about-cta-section {
    min-height: 720px;
    padding: 96px 0;
  }

  .about-cta-container > p:not(.about-cta-tagline) {
    font-size: 22px;
  }

  .history-stats-container h2 {
    margin-bottom: 46px;
  }

  .history-stats-grid {
    gap: 28px;
  }

  .history-cta-section {
    padding: 96px 0;
  }

  .history-cta-container > p:not(.history-cta-tagline) {
    font-size: 14px;
  }

  .timeline-list {
    row-gap: 58px;
  }

  .timeline-item.is-left {
    padding-right: calc(50% + 48px);
  }

  .timeline-item.is-right {
    padding-left: calc(50% + 48px);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
  }

  .contact-info {
    padding-top: 52px;
  }

  .contact-form {
    padding: 32px;
  }

  .footer-main {
    grid-template-columns: minmax(320px, 1.3fr) repeat(3, minmax(140px, 1fr));
    gap: 44px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 104px;
  }

  .site-logo img {
    height: 78px;
  }

  .home-hero {
    min-height: 100vh;
  }

  .home-hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .home-hero .home-hero-button.is-primary,
  .home-hero .home-hero-button.is-secondary {
    min-width: 0;
  }

  .home-about-section {
    padding: 88px 0;
  }

  .home-about-grid,
  .home-about-grid.is-reversed,
  .home-founder-quote-section .home-about-grid,
  .home-founder-quote-section .home-about-grid.is-reversed {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
  }

  .home-about-grid.is-reversed .home-about-media,
  .home-founder-quote-section .home-about-media {
    order: -1;
    min-width: 0;
  }

  .home-about-grid.is-reversed .home-about-content,
  .home-founder-quote-section .home-about-content {
    min-width: 0;
    order: 0;
  }

  .home-founder-quote-section .home-about-media,
  .home-founder-quote-section .home-about-media img {
    min-height: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .home-about-media,
  .home-about-media img {
    min-height: 520px;
  }

  .home-about-content h2 {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .home-founder-quote-section {
    padding: 88px 0;
    overflow: hidden;
  }

  .home-founder-quote-section .home-about-content h2 {
    max-width: 100%;
    font-size: clamp(22px, 5.8vw, 32px);
    line-height: 1.3;
  }

  .home-founder-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 28px 16px;
    margin-top: 32px;
  }

  .home-portfolio-section {
    padding: 104px 0 112px;
  }

  .home-portfolio-grid .home-portfolio-card {
    flex: 0 1 calc((100% - 32px) / 2);
    max-width: calc((100% - 32px) / 2);
  }

  .home-portfolio-section {
    --home-portfolio-card-height: 300px;
  }

  .home-portfolio-header {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 48px;
  }

  .home-portfolio-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
    gap: 24px;
    padding-top: 0;
  }

  .home-group-section {
    padding: 92px 0;
  }

  .home-group-container {
    width: min(100% - 40px, 900px);
  }

  .home-group-section h2 {
    margin-bottom: 42px;
  }

  .home-group-panel,
  .home-group-panel-healthindia {
    grid-template-columns: 1fr;
  }

  .home-group-panel-healthindia .home-group-image {
    order: -1;
  }

  .home-group-image img {
    min-height: 300px;
  }

  .home-group-copy p {
    max-width: 100%;
  }

  .home-group-company-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* .home-group-company-item,
  .home-group-company-item:first-child {
    min-height: auto;
    padding: 0;
    border-left: 0;
  } */

  .home-key-facts-section {
    padding: 96px 0 108px;
    --home-key-fact-card-width: calc((100% - 32px) / 2);
    --home-key-facts-edge: max(20px, calc((100vw - 900px) / 2));
  }

  .home-key-facts-slider {
    width: min(100% - 40px, 900px);
  }

  .home-key-facts-header {
    margin-bottom: 64px;
  }

  .home-timeline-section {
    padding: 76px 0 68px;
    --home-timeline-card-width: 205px;
    --home-timeline-edge: max(20px, calc((100vw - 900px) / 2));
  }

  .home-timeline-container {
    width: min(100% - 40px, 900px);
  }

  .home-timeline-header {
    margin-bottom: 46px;
  }

  .home-timeline-track {
    min-height: 292px;
    gap: 36px;
  }

  .home-timeline-card:nth-child(even) {
    margin-top: 94px;
  }

  .home-timeline-card h3 {
    font-size: 39px;
  }

  .home-timeline-card h4 {
    font-size: 21px;
  }

  .home-leadership-section {
    padding: 96px 0;
  }

  .home-leadership-section .container,
  .home-leadership-container {
    width: min(100% - 40px, 900px);
  }

  .home-leadership-section .container > h2,
  .home-leadership-container > h2 {
    margin-bottom: 42px;
  }

  .home-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-past-investments-section {
    padding: 68px 0 72px;
  }

  .home-past-investments-container {
    width: min(100% - 40px, 760px);
  }

  .home-past-investments-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-section {
    padding: 46px 0;
  }

  .home-cta-container {
    grid-template-columns: 1fr;
  }

  .home-cta-panel {
    min-height: 300px;
  }

  .contact-hero {
    min-height: 480px;
  }

  .legal-hero {
    min-height: 480px;
  }

  .legal-page-section {
    padding: 96px 0 110px;
  }

  .about-hero {
    min-height: 480px;
  }

  .promoters-hero {
    min-height: 480px;
  }

  .group-hero {
    min-height: 480px;
  }

  .portfolio-hero {
    min-height: 480px;
  }

  .history-hero {
    min-height: 480px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-info {
    padding-top: 0;
  }

  .contact-info h2 {
    margin-bottom: 42px;
  }

  .timeline-container {
    width: min(100% - 40px, 820px);
  }

  .timeline-list {
    row-gap: 46px;
  }

  .timeline-item {
    min-height: 134px;
  }

  .timeline-item.is-left {
    padding-right: calc(50% + 34px);
  }

  .timeline-item.is-right {
    padding-left: calc(50% + 34px);
  }

  .timeline-content h3 {
    font-size: 21px;
  }

  .history-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 28px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-legacy-container {
    width: min(100% - 40px, 820px);
  }

  .group-company-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .group-company-media {
    width: min(100%, 660px);
  }

  .group-company-content h2 {
    margin-bottom: 34px;
  }

  .healthindia-feature {
    grid-template-columns: 1fr;
  }

  .healthindia-main-image {
    max-width: 520px;
  }

  .healthindia-card-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .investment-philosophy-container {
    width: min(100% - 40px, 820px);
  }

  .investment-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .current-portfolio-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 54px;
  }

  .portfolio-card-grid .portfolio-card {
    flex: 0 1 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .past-portfolio-container {
    width: min(100% - 40px, 900px);
  }

  .past-portfolio-cards {
    grid-template-columns: 1fr;
  }

  .focus-areas-container {
    width: min(100% - 40px, 820px);
  }

  .family-legacy-stats {
    gap: 42px;
  }

  .promoters-cta-section {
    min-height: 640px;
  }

  .promoters-cta-container {
    width: min(100% - 40px, 900px);
  }

  .promoters-cta-line {
    margin-bottom: 44px;
  }

  .promoters-cta-container h2 {
    margin-bottom: 38px;
  }

  .promoters-cta-container > p:not(.promoters-cta-tagline) {
    margin-bottom: 50px;
    font-size: 20px;
  }

  .promoters-cta-actions {
    margin-bottom: 42px;
  }

  .about-intro-media {
    width: min(100%, 640px);
  }

  .about-intro-media,
  .about-intro-media img {
    min-height: 520px;
  }

  .about-intro-content h2 {
    margin-bottom: 34px;
  }

  .investment-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .investment-card {
    min-height: auto;
  }

  .about-cta-section {
    min-height: 0;
  }

  .about-cta-container {
    width: min(100% - 40px, 900px);
  }

  .about-cta-line {
    margin-bottom: 44px;
  }

  .about-cta-container h2 {
    margin-bottom: 38px;
  }

  .about-cta-container > p:not(.about-cta-tagline) {
    margin-bottom: 50px;
    font-size: 20px;
  }

  /* .about-cta-actions {
    margin-bottom: 42px;
  } */

  .history-cta-container {
    width: min(100% - 40px, 900px);
  }

  .history-cta-line {
    margin-bottom: 44px;
  }

  .history-cta-container h2 {
    margin-bottom: 38px;
  }

  .history-cta-container > p:not(.history-cta-tagline) {
    font-size: 14px;
  }

  .history-cta-actions {
    margin-bottom: 42px;
  }

  .side-menu {
    width: min(100vw, 520px);
    padding: 46px 36px 60px;
    max-width: 100%;
  }

  .leadership-drawer {
    width: min(100vw, 440px);
    padding: 46px 34px 36px;
  }

  .side-menu-header {
    padding-bottom: 64px;
  }

  .side-nav {
    gap: 54px;
  }

  .side-nav a {
    font-size: 32px;
  }

  .site-footer {
    padding: 56px 0 56px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 52px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(100% - 48px, var(--container-width));
  }

  .site-logo img {
    height: 64px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .side-menu {
    width: 100vw;
    padding: 34px 28px 48px;
  }

  .leadership-drawer {
    width: 100vw;
    padding: 54px 22px 30px;
  }

  .leadership-drawer-close {
    top: 14px;
    right: 14px;
  }

  .leadership-drawer-content h2 {
    font-size: 30px;
  }

  .leadership-drawer-role {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .leadership-drawer-bio {
    font-size: 12px;
  }

  .side-menu-header {
    padding-bottom: 56px;
  }

  .menu-close {
    width: 30px;
    height: 30px;
  }

  .menu-close span {
    width: 30px;
    height: 2px;
  }

  .side-nav {
    gap: 55px;
    justify-items: stretch;
  }

  .side-nav a {
    width: 100%;
    font-size: clamp(27px, 8vw, 30px);
    text-align: right;
    white-space: normal;
  }

  .contact-hero {
    min-height: 400px;
    background-position: center;
  }

  .legal-hero {
    min-height: 400px;
    background-position: center;
  }

  .legal-page-section {
    padding: 72px 0 88px;
  }

  .legal-page-container {
    width: min(100% - 48px, var(--container-width));
  }

  .legal-page-content {
    gap: 18px;
  }

  .legal-page-content h2 {
    margin-top: 12px;
    font-size: 30px;
  }

  .legal-page-content > p,
  .legal-page-list li {
    font-size: 12px;
    line-height: 1.65;
  }

  .about-hero {
    min-height: 400px;
    background-position: center;
  }

  .promoters-hero {
    min-height: 400px;
    background-position: center;
  }

  .group-hero {
    min-height: 400px;
    background-position: center;
  }

  .portfolio-hero {
    min-height: 400px;
    background-position: center;
  }

  .history-hero {
    min-height: 400px;
    background-position: center;
  }

  h1 {
    font-size: 46px;
  }

  .home-hero {
    min-height: 100vh;
  }

  .home-hero-slide {
    padding-top: var(--header-height);
  }

  .home-hero-content h2 {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.1;
  }

  .home-hero-button,
  .home-portfolio-link,
  .home-timeline-link,
  .home-cta-button,
  .promoters-cta-button,
  .about-cta-button,
  .history-cta-button,
  .submit-button,
  .visit-website-button,
  .home-group-company-item a,
  .group-companies-link,
  .portfolio-card-footer a,
  .home-group-a,
  .home-group-copy a,
  .portfolio-filter-button {
    min-width: 0;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    gap: 6px;
  }

  .home-hero-button img,
  .home-portfolio-link img,
  .home-timeline-link img,
  .home-cta-button img,
  .promoters-cta-button img,
  .about-cta-button img,
  .history-cta-button img,
  .submit-button img,
  .visit-website-button img,
  .home-group-company-item a img,
  .home-group-a img,
  .home-group-copy a img,
  .portfolio-card-footer a img {
    width: 14px;
    height: 14px;
  }

  .home-hero-actions,
  .home-cta-actions,
  .promoters-cta-actions,
  .about-cta-actions,
  .history-cta-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .home-hero .home-hero-button,
  .home-cta-button,
  .promoters-cta-button,
  .about-cta-button,
  .history-cta-button {
    width: auto;
    flex: 1 1 0;
    white-space: nowrap;
  }

  .home-hero .home-hero-button
  {
    flex: unset;
  }

  .home-hero-dots {
    bottom: 26px;
  }

  .home-hero-dots button {
    width: 32px;
  }

  .home-hero-dots button.is-active {
    width: 44px;
  }

  .home-about-section {
    padding: 72px 0;
  }

  .home-about-grid,
  .home-about-grid.is-reversed,
  .home-founder-quote-section .home-about-grid,
  .home-founder-quote-section .home-about-grid.is-reversed {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-about-media,
  .home-about-media img {
    min-height: 390px;
  }

  .home-founder-quote-section .home-about-media,
  .home-founder-quote-section .home-about-media img {
    min-height: 0;
    height: auto;
  }

  .home-about-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .home-about-content h2 {
    margin-bottom: 26px;
    font-size: 42px;
    line-height: 1.12;
  }

  .home-about-content > p:not(.home-about-kicker) {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .home-about-stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px 16px;
    margin-top: 38px;
    padding-top: 34px;
  }

  .home-about-stats br {
    display: none;
  }

  .home-about-stats strong {
    font-size: 32px;
  }

  .home-founder-quote-section {
    padding: 72px 0;
  }

  .home-founder-quote-section .home-about-content h2 {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.3;
  }

  .home-founder-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 24px 12px;
    margin-top: 28px;
  }

  .home-founder-principles img {
    width: 30px;
    height: 30px;
  }

  .home-founder-principles span {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .home-portfolio-section {
    padding: 72px 0;
  }

  .home-portfolio-grid .home-portfolio-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .home-portfolio-section {
    --home-portfolio-card-height: auto;
  }

  .home-portfolio-card {
    height: auto;
    min-height: 180px;
    padding: 28px 18px 22px;
    gap: 18px;
    justify-content: center;
  }

  .home-portfolio-card .portfolio-card-image-overlay {
    max-width: 180px;
    min-height: 48px;
    height: auto;
  }

  .home-portfolio-kicker {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .home-portfolio-heading h2 {
    font-size: 42px;
    line-height: 1.1;
  }

  .home-portfolio-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .home-portfolio-arrows {
    justify-content: flex-end;
    order: 2;
  }

  .home-portfolio-arrows button {
    width: 40px;
    height: 40px;
  }

  .home-portfolio-filter {
    order: 1;
  }

  .home-portfolio-card-content {
    left: 24px;
    right: 20px;
    bottom: 24px;
  }

  .home-portfolio-card-content h3 {
    font-size: 26px;
  }

  .home-portfolio-card-content p {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .home-portfolio-footer {
    margin-top: 30px;
  }

  .home-portfolio-link {
    width: auto;
    min-width: 0;
  }

  .home-group-section {
    padding: 72px 0;
  }

  .home-group-container {
    width: min(100% - 48px, var(--container-width));
  }

  .home-group-section h2 {
    margin-bottom: 42px;
    font-size: 42px;
  }

  .home-group-panels {
    gap: 28px;
  }

  .home-group-panel,
  .home-group-panel-healthindia {
    padding: 22px 18px 28px;
    border-radius: 8px;
  }

  .home-group-image {
    border-radius: 7px;
  }

  .home-group-image img {
    min-height: 260px;
  }

  .home-group-copy h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .home-group-copy p {
    font-size: 16px;
  }

  .home-group-companies {
    margin-top: 24px;
  }

  .home-group-companies > p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  /* .home-group-company-item > img {
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
  } */

  .home-group-company-item h4 {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 20px;
  }

  .home-group-company-item a {
    width: auto;
  }

  .home-key-facts-section {
    padding: 72px 0;
    --home-key-fact-card-width: 100%;
    --home-key-facts-edge: 12px;
  }

  .home-key-facts-slider {
    width: min(100% - 48px, var(--container-width));
    overflow: visible;
  }

  .home-key-facts-slider::after {
    background: unset;
  }

  .home-key-facts-header {
    margin-bottom: 42px;
  }

  .home-key-facts-header h2 {
    font-size: 42px;
  }

  .home-key-facts-arrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }

  .home-key-facts-arrows button {
    width: 40px;
    height: 40px;
  }

  .home-key-fact-card .home-key-fact-content {
    transform: translateY(0);
  }

  .home-key-fact-card .home-key-fact-content p {
    opacity: 1;
    transform: translateY(0);
  }

  .home-key-fact-content {
    left: 22px;
    right: 18px;
    bottom: 20px;
    grid-template-columns: 46px 1fr;
    gap: 0 12px;
    transform: translateY(calc(100% - 46px));
  }

  .home-key-fact-content span {
    width: 46px;
    height: 46px;
  }

  .home-key-fact-content span img {
    width: 25px;
    height: 25px;
  }

  .home-key-fact-content h3 {
    font-size: 24px;
  }

  .home-key-fact-content p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 13px;
  }

  .home-timeline-section {
    padding: 64px 0;
    --home-timeline-card-width: min(76vw, 230px);
    --home-timeline-edge: 12px;
  }

  .home-timeline-container {
    width: min(100% - 48px, var(--container-width));
  }

  .home-timeline-header {
    margin-bottom: 40px;
  }

  .home-timeline-header h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .home-timeline-track {
    min-height: 284px;
    gap: 24px;
  }

  .home-timeline-card {
    padding-right: 16px;
  }

  .home-timeline-card::after {
    height: 48px;
  }

  .home-timeline-card:nth-child(even) {
    margin-top: 84px;
  }

  .home-timeline-card h3 {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .home-timeline-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .home-timeline-card p {
    font-size: 12px;
  }

  .home-timeline-footer {
    margin-top: 20px;
  }

  .home-timeline-link {
    width: auto;
    min-width: 0;
  }

  .home-leadership-section {
    padding: 72px 0;
  }

  .home-leadership-section .container,
  .home-leadership-container {
    width: min(100% - 48px, var(--container-width));
  }

  .home-leadership-kicker {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.34em;
  }

  .home-leadership-section .container > h2,
  .home-leadership-container > h2 {
    margin-bottom: 34px;
    font-size: 42px;
  }

  .home-leadership-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-leadership-card,
  .home-leadership-card img {
    min-height: 360px;
  }

  .home-leadership-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .home-leadership-card-content h3 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .home-leadership-card-content p {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .home-past-investments-section {
    padding: 56px 0 60px;
  }

  .home-past-investments-container {
    width: min(100% - 48px, var(--container-width));
  }

  .home-past-investments-kicker {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.3em;
  }

  .home-past-investments-container > h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .home-past-investment-card {
    min-height: auto;
  }

  .home-past-investment-body {
    padding: 20px 18px 22px;
  }

  .home-past-investment-heading {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .home-past-investment-heading span {
    width: 58px;
    height: 58px;
  }

  .home-past-investment-heading span img {
    max-width: 38px;
    max-height: 30px;
  }

  .home-past-investment-heading h3 {
    font-size: 22px;
  }

  .home-past-investment-heading p {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .home-past-investment-body > p {
    font-size: 13px;
  }

  .home-past-investment-footer {
    min-height: 78px;
    padding: 16px 18px;
  }

  .home-past-investment-footer strong {
    font-size: 28px;
  }

  .home-past-investment-footer span {
    font-size: 12px;
  }

  .home-cta-section {
    padding: 36px 0;
  }

  .home-cta-container {
    gap: 18px;
  }

  .home-cta-panel {
    min-height: 286px;
  }

  .home-cta-panel-content,
  .home-cta-quote .home-cta-panel-content {
    width: min(100% - 30px, 420px);
  }

  .home-cta-line {
    margin-bottom: 16px;
  }

  .home-cta-panel h2 {
    font-size: 25px;
  }

  .home-cta-panel p {
    font-size: 12px;
  }

  .home-cta-actions {
    width: 100%;
    margin-top: 20px;
  }

  .home-cta-tagline {
    margin-top: 30px !important;
    font-size: 9px !important;
    letter-spacing: 0.22em;
  }

  .home-cta-quote blockquote {
    font-size: 21px;
    line-height: 1.3;
  }

  .contact-section {
    padding: 72px 0;
  }

  .timeline-section {
    padding: 72px 0 68px;
  }

  .history-stats-section {
    padding: 72px 0;
  }

  .about-intro-section {
    padding: 72px 0;
  }

  .leadership-section {
    padding: 72px 0;
  }

  .leadership-container {
    width: min(100% - 48px, var(--container-width));
  }

  .leadership-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .leadership-container h2 {
    margin-bottom: 34px;
    font-size: 42px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .leadership-card,
  .leadership-card img {
    min-height: 360px;
  }

  .leadership-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .leadership-card-content h3 {
    font-size: 26px;
  }

  .leadership-card-content p {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .family-legacy-section {
    padding: 76px 0;
  }

  .group-company-detail-section {
    padding: 72px 0;
  }

  .group-company-detail-grid {
    gap: 36px;
  }

  .group-company-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .group-company-content h2 {
    font-size: 42px;
    line-height: 1.1;
  }

  .group-company-content > p:not(.group-company-kicker) {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .group-company-stats {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .group-company-list {
    margin-top: 34px;
    font-size: 16px;
  }

  .healthindia-section {
    padding: 72px 0;
  }

  .healthindia-container {
    width: min(100% - 48px, var(--container-width));
  }

  .healthindia-feature {
    gap: 36px;
    margin-bottom: 44px;
  }

  .healthindia-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .healthindia-copy h2 {
    margin-bottom: 26px;
    font-size: 42px;
  }

  .healthindia-copy > p:not(.section-eyebrow) {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .healthindia-copy ul {
    margin-top: 28px;
    font-size: 16px;
  }

  .healthindia-subsection h3 {
    font-size: 13px;
    line-height: 1.4;
  }

  .healthindia-card-body {
    padding: 28px 16px 20px;
  }

  .healthindia-card h4 {
    font-size: 18px;
  }

  .healthindia-card ul {
    font-size: 13px;
  }

  .investment-philosophy-section {
    padding: 72px 0;
  }

  .investment-philosophy-container {
    width: min(100% - 48px, var(--container-width));
  }

  .investment-philosophy-container h2 {
    font-size: 42px;
  }

  .investment-philosophy-container > p {
    margin-bottom: 52px;
    font-size: 16px;
  }

  .investment-philosophy-item img {
    margin-bottom: 14px;
  }

  .current-portfolio-section {
    padding: 72px 0;
  }

  .current-portfolio-container {
    width: min(100% - 48px, var(--container-width));
  }

  .current-portfolio-kicker {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .current-portfolio-header h2 {
    font-size: 42px;
  }

  .portfolio-filter-button {
    min-width: 0;
    width: auto;
  }

  .portfolio-filter {
    width: 100%;
  }

  .portfolio-card-grid {
    gap: 22px;
  }

  .portfolio-card-grid .portfolio-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .portfolio-card > img {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
  }

  .portfolio-card-body {
    padding: 18px 16px 22px;
  }

  .portfolio-card h3 {
    font-size: 25px;
  }

  .portfolio-card-footer strong {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .past-portfolio-section {
    padding: 72px 0;
  }

  .past-portfolio-container {
    width: min(100% - 48px, var(--container-width));
  }

  .past-portfolio-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .past-portfolio-container > h2 {
    margin-bottom: 42px;
    font-size: 42px;
  }

  .past-portfolio-cards .investment-card-body {
    padding: 28px 22px 22px;
  }

  .past-portfolio-cards .investment-card-heading {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .past-portfolio-cards .investment-icon {
    width: 54px;
    height: 54px;
  }

  .past-portfolio-cards .investment-icon img {
    max-width: 38px;
    max-height: 32px;
  }

  .past-portfolio-cards .investment-card h3 {
    font-size: 26px;
  }

  .past-portfolio-cards .investment-card-body > p {
    font-size: 15px;
  }

  .focus-areas-section {
    padding: 72px 0;
  }

  .focus-areas-container {
    width: min(100% - 48px, var(--container-width));
  }

  .focus-areas-container h2 {
    margin-bottom: 44px;
    font-size: 42px;
  }

  .focus-areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .focus-area-card {
    min-height: auto;
    padding: 28px;
  }

  .focus-area-card h3 {
    font-size: 23px;
  }

  .focus-area-card p {
    font-size: 17px;
  }

  .family-legacy-container {
    width: min(100% - 48px, var(--container-width));
  }

  .family-legacy-container h2 {
    margin-bottom: 24px;
    font-size: 42px;
  }

  .family-legacy-container > p {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.6;
  }

  .family-legacy-stats {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .family-legacy-stats div {
    min-width: 0;
  }

  .family-legacy-stats strong {
    font-size: 32px;
  }

  .family-legacy-stats span {
    font-size: 12px;
  }

  .promoters-cta-section {
    min-height: 590px;
    padding: 76px 0;
  }

  .promoters-cta-container {
    width: min(100% - 48px, var(--container-width));
  }

  .promoters-cta-line {
    width: 72px;
    margin-bottom: 34px;
  }

  .promoters-cta-container h2 {
    margin-bottom: 28px;
    font-size: 42px;
  }

  .promoters-cta-container > p:not(.promoters-cta-tagline) {
    margin-bottom: 36px;
    font-size: 18px;
    line-height: 1.35;
  }

  .promoters-cta-actions {
    margin-bottom: 36px;
  }

  .promoters-cta-tagline {
    padding-top: 34px;
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .about-intro-grid {
    gap: 36px;
  }

  .about-intro-media,
  .about-intro-media img {
    min-height: 390px;
  }

  .about-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .about-intro-content h2 {
    font-size: 42px;
    line-height: 1.12;
  }

  .about-intro-content > p:not(.section-eyebrow) {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .about-intro-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
    padding-top: 34px;
  }

  .about-intro-stats strong {
    font-size: 32px;
  }

  .investment-track-section {
    padding: 72px 0;
  }

  .investment-track-grid {
    gap: 36px;
  }

  .investment-track-copy h2 {
    margin-bottom: 22px;
    font-size: 42px;
  }

  .investment-track-copy p {
    font-size: 16px;
  }

  .investment-card-body {
    padding: 28px 22px 22px;
  }

  .investment-card-heading {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .investment-icon {
    width: 54px;
    height: 54px;
  }

  .investment-icon img {
    max-width: 38px;
    max-height: 32px;
  }

  .investment-card h3 {
    font-size: 26px;
  }

  .investment-card-heading p {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .investment-card-body > p {
    font-size: 15px;
  }

  .investment-card-footer {
    padding: 24px 22px 22px;
  }

  .investment-card-footer strong {
    font-size: 36px;
  }

  .investment-card-footer span {
    font-size: 14px;
  }

  .about-cta-section {
    min-height: 45vh;
    padding: 48px 0;
  }

  .about-cta-container {
    width: min(100% - 48px, var(--container-width));
  }

  .about-cta-line {
    width: 72px;
    margin-bottom: 20px;
  }

  .about-cta-container h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .about-cta-container > p:not(.about-cta-tagline) {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
  }

  .about-cta-tagline {
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .history-stats-container h2 {
    margin-bottom: 34px;
    font-size: 42px;
  }

  .history-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .history-stat strong {
    font-size: 32px;
  }

  .history-stat span {
    font-size: 12px;
  }

  .history-cta-section {
    padding: 76px 0;
  }

  .history-cta-container {
    width: min(100% - 48px, var(--container-width));
  }

  .history-cta-line {
    width: 72px;
    margin-bottom: 34px;
  }

  .history-cta-container h2 {
    margin-bottom: 28px;
    font-size: 42px;
  }

  .history-cta-container > p:not(.history-cta-tagline) {
    margin-bottom: 36px;
    font-size: 14px;
    line-height: 1.35;
  }

  .history-cta-actions {
    margin-bottom: 36px;
  }

  .history-cta-tagline {
    padding-top: 34px;
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .timeline-container {
    width: min(100% - 48px, var(--container-width));
  }

  .timeline-list {
    grid-template-columns: 1fr;
    row-gap: 46px;
    padding-left: 5px;
  }

  .timeline-list::before {
    left: 0;
    transform: none;
  }

  .timeline-item,
  .timeline-item.is-left,
  .timeline-item.is-right {
    width: 100%;
    grid-column: 1;
    align-self: stretch;
    flex-direction: column;
    min-height: auto;
    justify-content: flex-start;
    margin-top: 0;
    padding-left: 24px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-media {
    position: static;
    order: -1;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0 0 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .timeline-item.is-left .timeline-media,
  .timeline-item.is-right .timeline-media,
  .timeline-item.is-left:hover .timeline-media,
  .timeline-item.is-right:hover .timeline-media,
  .timeline-item.is-left.is-visible .timeline-media,
  .timeline-item.is-right.is-visible .timeline-media {
    opacity: 1;
    transform: none;
  }

  .timeline-item::after {
    display: block;
    top: 0;
    left: -4px;
    right: auto;
    opacity: 1;
    transform: scaleY(1);
    transition: none;
  }

  .timeline-item.is-left::after,
  .timeline-item.is-right::after {
    left: -4px;
    right: auto;
  }

  .timeline-content {
    width: 100%;
    max-width: 100%;
  }

  .timeline-content h2,
  .timeline-item.is-large .timeline-content h2,
  .timeline-item.is-present .timeline-content h2 {
    font-size: 42px;
  }

  .timeline-content h3 {
    font-size: 22px;
  }

  .timeline-content p {
    max-width: 390px;
    font-size: 12px;
  }

  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .contact-info h2 {
    font-size: 46px;
  }

  .contact-method {
    min-height: auto;
    padding: 24px 16px;
    justify-content: space-around;
  }

  .contact-method-head {
    gap: 12px;
  }

  .contact-method-body {
    gap: 8px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-method a,
  .contact-method address {
    font-size: 15px;
  }

  .contact-form {
    gap: 22px;
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form label span {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .site-footer {
    padding: 58px 0 44px;
  }

  .footer-container {
    gap: 46px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-logo {
    /* margin-bottom: 30px; */
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo img {
    height: 96px;
  }

  .footer-newsletter label,
  .footer-column h3 {
    font-size: 11px;
    letter-spacing: 0.34em;
  }

  .newsletter-field {
    grid-template-columns: 1fr 40px;
  }

  .newsletter-field input,
  .newsletter-field button {
    height: 34px;
  }

  .newsletter-field button {
    width: 40px;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-bottom {
    padding-top: 28px;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.5;
  }
}

.home-hero-button,
.home-portfolio-link,
.home-portfolio-arrows button,
.home-key-facts-arrows button,
.home-group-company-item a,
.portfolio-card-footer a
.home-timeline-link,
.home-cta-button,
.portfolio-filter-button,
.portfolio-filter-menu button,
.visit-website-button,
.promoters-cta-button,
.about-cta-button,
.history-cta-button,
.submit-button,
.newsletter-field button,
.home-group-a {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

section[class$="-section"] {
  padding-top: 75px;
  padding-bottom: 75px;
}

section[class$="-section"] h2 {
  font-size: clamp(20px, 2.5vw, 32px);
}

section[class$="-section"] p:not(.section-eyebrow) {
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  section[class$="-section"] {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .section-eyebrow,
  [class$="-kicker"] {
    margin: 0 0 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  section[class$="-section"]
    :is(
      .home-about-content,
      .home-portfolio-heading,
      .home-key-facts-header,
      .home-timeline-header,
      .contact-info,
      .home-past-investments-container,
      .home-leadership-container,
      .leadership-container,
      .family-legacy-container,
      .group-company-content,
      .healthindia-copy,
      .investment-philosophy-container,
      .current-portfolio-header,
      .current-portfolio-heading,
      .past-portfolio-container,
      .promoters-cta-container,
      .about-intro-content,
      .history-stats-container,
      .history-cta-container,
      .investment-track-copy,
      .focus-areas-container,
      .about-cta-container,
      .home-group-container
    )
    > h2,
  section[class$="-section"] > .container > h2,
  section.home-founder-quote-section .home-about-content > h2,
  .home-group-section > .container > h2 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(26px, 6.5vw, 32px);
    line-height: 1.15;
  }
}

@media (max-width: 660px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
}
