/* ---- Google Fonts ---- */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Ã¢â€â‚¬Ã¢â€â‚¬ Primary brand blue (exact match from screenshots) Ã¢â€â‚¬Ã¢â€â‚¬ */
  --blue: #3366ff;
  --blue-light: #4d80ff;
  --blue-dark: #1a4fd6;

  --blue2: #1e4db7;
  --blue2-mid: #2563eb;
  --blue2-light: #dbeafe;

  --primary: #1a3a5c;
  --accent: #2563eb;
  --accent-light: #dbeafe;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(26, 58, 92, 0.1);

  --primary-new: #0a162b;

  --navy: #1a3461;
  --navy-dark: #152a52;

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Dark backgrounds Ã¢â€â‚¬Ã¢â€â‚¬ */
  --dark: #0a0e17;
  /* hero / navbar deep dark */
  --dark-2: #111827;
  /* section headings text */
  --dark-3: #1a2233;

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Text Ã¢â€â‚¬Ã¢â€â‚¬ */
  --text-white: #ffffff;
  --text-muted: #9ca3af;
  --text-body: #d1d5db;

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Light section backgrounds Ã¢â€â‚¬Ã¢â€â‚¬ */
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --section-bg: #f1f5f9;

  /* Ã¢â€â‚¬Ã¢â€â‚¬ CTA section (navy dark from screenshot) Ã¢â€â‚¬Ã¢â€â‚¬ */
  --cta-bg: #0f1e3d;
  --cta-bg-2: #0a1428;

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Navbar Ã¢â€â‚¬Ã¢â€â‚¬ */
  --nav-bg: rgba(15, 30, 80, 0.96);
  --nav-border: rgba(51, 102, 255, 0.35);

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬ */
  --footer-bg-1: #1e3a6e;
  --footer-bg-2: #162d58;
  --footer-accent: #3366ff;

  --font-main: "Manrope", sans-serif;

  --padding-sec: 100px;

  --input-bg: #f8fafc;

  /* Typography */
  --body-size: 0.875rem;
  --body-line-height: 1.65;

  /* Text Colors */
  --muted-color: #64748B;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif !important;
  background: #fff;
  color: #1e293b;
}

/* For WebKit-based browsers */
::-webkit-scrollbar {
  width: 5px;
  /* Width of the vertical scrollbar */
}

::-webkit-scrollbar-track {
  background-color: #002256;
  /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
  /* Color of the scrollbar thumb */
}

/* =========================================================
   NAVBAR Ã¢â‚¬â€ COLOR & HOVER OVERRIDES
   ========================================================= */

.fixed-nav {
  /* background: rgba(26, 54, 110, 0.97) !important; */
  background: transparent !important;
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25); */
  /* backdrop-filter: blur(12px); */
  -webkit-backdrop-filter: blur(12px);
  /* border-bottom: 1px solid rgba(51, 102, 255, 0.35) !important; */
}

.uper-nav {
  /* background: #162d58; */
  background: transparent;
  /* border-bottom: 1px solid rgba(51, 102, 255, 0.30); */
}

.uper-nav a:hover {
  color: #7ba7ff !important;
  text-decoration: none !important;
}

.menu-container {
  width: 100%;
  /* background: #162d58; */
  background: transparent;
  /* border-bottom: 1px solid rgba(51, 102, 255, 0.32); */
  position: static;
  /* must be static so mega-menu positions from .fixed-nav not here */
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
  font-family: var(--font-main);
}

.menu>ul>li a {
  font-family: var(--font-main);
  font-size: 13.5px;
  padding: 18px 16px;
  letter-spacing: 0.015em;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.main-hero.hero {
  background: var(--dark);
  border-radius: 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  border-radius: 10px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8, 12, 22, 0.9) 40%,
      rgba(8, 12, 22, 0.55) 100%),
    url("../images/hero-carousel-3.jpg") center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  padding: 0 80px;
  animation: fadeUp 0.9s ease both;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

.hero__title span {
  color: var(--blue);
  font-weight: bold;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 36px;
  text-align: center;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__container .btn-primary {
  background: #3366ff;
}

.btn-primary {
  background: #3366ff;
  background: var(--primary-new);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.btn-primary:hover {
  background: #4d80ff;
  box-shadow: 0 6px 20px rgba(51, 102, 255, 0.4);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 12px 26px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ STATS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.stats {
  background: #fff;
  padding: var(--padding-sec) 0;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e2e8f0;
}

.stat {
  text-align: center;
}

.stat__num {
  font-size: 2rem;
  /* font-weight: 800; */
  color: #3366ff;
  /* color: var(--primary-new); */
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 6px;
  line-height: 1.4;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPERTISE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.expertise {
  background: #f1f5f9;
  padding: var(--padding-sec) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.12);
}

.card__img-placeholder {
  width: 100%;
  height: 155px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.card-construction .card__img-placeholder {
  background:
    linear-gradient(160deg, #4a3520, #8b6040),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-manufacturing .card__img-placeholder {
  background:
    linear-gradient(160deg, #1a2a3c, #2d5080),
    url("https://images.unsplash.com/photo-1565514020179-026b92b84bb6?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-telecom .card__img-placeholder {
  background:
    linear-gradient(160deg, #1a1040, #6633cc),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-mining .card__img-placeholder {
  background:
    linear-gradient(160deg, #1e2a14, #3a6020),
    url("https://images.unsplash.com/photo-1578328819058-b69f3a3b0f6b?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-aero .card__img-placeholder {
  background:
    linear-gradient(160deg, #0d1624, #1e3264),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-energy .card__img-placeholder {
  background:
    linear-gradient(160deg, #0e2010, #1a5c28),
    url("https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-oil .card__img-placeholder {
  background:
    linear-gradient(160deg, #101820, #1a4060),
    url("https://images.unsplash.com/photo-1580674285054-bed31e145f59?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card-production .card__img-placeholder {
  background:
    linear-gradient(160deg, #201410, #604028),
    url("https://images.unsplash.com/photo-1601599561213-832382fd07ba?w=400&q=70") center/cover no-repeat;
  background-blend-mode: multiply;
}

.card__body {
  padding: 16px 18px;
}

.card__tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.card__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3366ff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card__link:hover {
  color: #4d80ff;
}

.card__link::after {
  content: " Ã¢â€ â€™";
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ WHY TPG Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.why {
  background: #fff;
  padding: var(--padding-sec) 0;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.why__text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark-2);
  margin-bottom: 14px;
}

.why__text>p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature__icon {
  width: 50px;
  height: 50px;
  background: rgba(77, 163, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon i {
  color: #4da3ff;
  color: var(--primary-new);
  font-size: 30px;
}

.feature__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-2);
}

.feature__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
}

/* Right side image card */
.why__visual {
  position: relative;
}

.why__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  background:
    linear-gradient(to bottom, rgba(15, 20, 35, 0.2), rgba(15, 20, 35, 0.5)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=80") center/cover no-repeat;
}

.why__quote {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: #3366ff;
  color: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  max-width: 240px;
  font-size: 0.85rem;
  line-height: 1.55;
  box-shadow: 0 8px 32px rgba(51, 102, 255, 0.4);
}

.why__quote span {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.cta {
  background: var(--blue);
  padding: var(--padding-sec) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top,
      rgba(51, 102, 255, 0.12) 0%,
      transparent 65%);
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 25px;
}

/* CTA primary Ã¢â‚¬â€ white background, dark text (matches screenshot) */
.cta .btn-primary {
  background: #ffffff !important;
  color: #0f1e3d;
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.cta .btn-primary:hover {
  background: #e8eeff;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: #0a1428;
  text-decoration: none;
}

/* CTA outline Ã¢â‚¬â€ white border, white text, proper padding */
.cta .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  text-decoration: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ANIMATIONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 900px) {
  .hero__content {
    padding: 0 32px;
  }

  .stats {
    padding: 32px;
  }

  .expertise,
  .why,
  .cta {
    padding: 60px 32px;
  }

  .why__inner {
    grid-template-columns: 1fr;
  }

  .why__visual {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   FOOTER Ã¢â‚¬â€ BASE STYLES
   ========================================================= */
.bg-footer {
  background: #0a182f !important;
  /* border-top: 2px solid rgba(51, 102, 255, 0.45); */
  position: relative;
  overflow: hidden;
}

.bg-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(51, 102, 255, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
}

.bg-footer .row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.2rem;
}

/* ---- Column heading label (section title) ---- */
.coption-link {
  font-size: 10.5px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffffd9 !important;
  padding-bottom: 14px !important;
  margin-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid rgba(51, 102, 255, 0.22) !important;
  font-family: var(--font-main);
}

/* ---- Fast-link columns ---- */
.fast-link {
  padding: 0 16px 0 4px;
}

/* Section title link (e.g. "ABOUT US", "INDUSTRIES") */
.fast-link .nav-link.hvr-icon-forward.fs-5 {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fffffff5 !important;
  padding: 0 0 10px 0 !important;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(51, 102, 255, 0.22);
  font-family: var(--font-main);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
}

.fast-link .nav-link.hvr-icon-forward.fs-5:hover {
  color: #3366ff !important;
  text-decoration: none !important;
}

.fast-link .nav-link.hvr-icon-forward.fs-5 i {
  color: #3366ff !important;
  font-size: 13px;
  margin-right: 6px;
  transition: all 0.25s ease;
}

/* Sub-links (e.g. "About us", "Construction" Ã¢â‚¬Â¦) */
.fast-link .nav-link {
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 12.5px !important;
  padding: 4px 0 4px 4px !important;
  transition: all 0.25s ease;
  line-height: 1.6;
  display: block;
}

.fast-link .nav-link:hover {
  color: #3366ff !important;
  padding-left: 10px !important;
  text-decoration: none !important;
}

/* ---- Section headings (h5 inside subscribe area) ---- */
.bg-footer h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ba7ff !important;
  margin-bottom: 6px;
  font-family: var(--font-main);
}

/* ---- Description text ---- */
.bg-footer .col-md-6 p.text-white,
.bg-footer p.text-white {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52) !important;
  margin-bottom: 14px;
}

/* ---- Newsletter / email input ---- */
.bg-footer .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 13px;
  padding: 10px 14px !important;
  transition: all 0.25s ease;
}

.bg-footer .form-control:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #3366ff !important;
  box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.18) !important;
  outline: none;
}

.bg-footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

/* ---- Subscribe / CTA button ---- */
.buttons {
  border: 1.5px solid #3366ff !important;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1b2a45, #0a162b) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.buttons i {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.buttons:hover {
  background: linear-gradient(135deg, #4d80ff, #3366ff) !important;
  box-shadow: 0 6px 20px rgba(51, 102, 255, 0.45);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none !important;
}

.buttons:hover i {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(3px);
}

/* ---- Social icons row ---- */
.header-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 0;
}

/* Override Bootstrap m-3 on squr-social */
.header-social .squr-social {
  margin: 0 !important;
}

.squr-social {
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.squr-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Icon inside social button Ã¢â‚¬â€ override Bootstrap fs-3 */
.squr-social i,
.squr-social .fab,
.squr-social .fa-brands {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 17px !important;
  margin: 0 !important;
  transition: all 0.25s ease;
  line-height: 1;
}

.squr-social:hover {
  background: #3366ff !important;
  border-color: #3366ff !important;
  box-shadow: 0 4px 16px rgba(51, 102, 255, 0.45);
  transform: translateY(-3px);
}

.squr-social:hover i,
.squr-social:hover .fab,
.squr-social:hover .fa-brands {
  color: #fff !important;
}

/* ---- Bottom copyright bar ---- */
.bg-footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  padding-top: 16px !important;
  margin-top: 8px;
  align-items: center;
}

.bg-footer .border-top p,
.bg-footer .border-top span {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.bg-footer .border-top a {
  color: rgba(255, 255, 255, 0.52) !important;
  transition: all 0.25s ease;
}

.bg-footer .border-top a:hover {
  color: #7ba7ff !important;
  text-decoration: none !important;
}

/* ---- Generic footer fallback ---- */
.footer {
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  color: #6c757d;
}

/* =========================================================
   FOOTER Ã¢â‚¬â€ RESPONSIVE (tablet Ã¢â€°Â¤ 991px)
   ========================================================= */
@media (max-width: 991px) {

  .bg-footer .col-md-2,
  .bg-footer .col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bg-footer .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .fast-link {
    padding-right: 12px;
  }
}

/* =========================================================
   FOOTER Ã¢â‚¬â€ RESPONSIVE (mobile Ã¢â€°Â¤ 575px)
   ========================================================= */
@media (max-width: 575px) {

  /* Ã˜Â¹Ã™â€¦Ã™Ë†Ã˜Â¯Ã™Å Ã™â€  Ã˜Â¬Ã™â€ Ã˜Â¨ Ã˜Â¨Ã˜Â¹Ã˜Â¶ */
  .bg-footer .col-md-2,
  .bg-footer .col-xl-2,
  .bg-footer .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bg-footer .col-sm-2,
  .bg-footer .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bg-footer .fast-link {
    padding: 0 8px;
  }

  .bg-footer .fast-link.h-100 {
    height: auto !important;
  }

  .bg-footer .d-flex:not(.justify-content-between) {
    flex-wrap: wrap;
    gap: 10px;
  }

  .bg-footer .d-flex .form-control {
    width: 100% !important;
  }

  .bg-footer .d-flex.justify-content-between {
    flex-direction: column;
    gap: 6px;
  }

  .header-social {
    justify-content: center;
    padding: 8px 0;
  }
}

.bg-footer .border-end {
  border-right: none !important;
}

/* =========================================================
   EXTRACTED INLINE STYLES Ã¢â‚¬â€ moved from HTML
   ========================================================= */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO inline overrides Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero {
  min-height: 100vh;
  background: #0a0e17;
  overflow: hidden;
  aspect-ratio: 16/7;
}

.hero__bg-img {
  z-index: 0;
  opacity: 0.35;
}

.main-hero.hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.hero__overlay {
  z-index: 1;
  background: linear-gradient(to right, rgb(8 12 22 / 30%) 40%, rgb(8 12 22 / 30%) 100%);
}

.hero__container {
  z-index: 2;
}

.hero__container {
  z-index: 2;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPERTISE SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.expertise-section {
  /* background: #f1f5f9; */
  background: #fff;
  padding: var(--padding-sec) 0;
}

.expertise-subtitle {
  max-width: 540px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPERTISE CARDS (new design matching screenshot) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.exp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.12);
}

.exp-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.exp-card__img {
  width: 100%;
  height: 190px;
  object-fit: fill;
  display: block;
}

.exp-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}

.exp-card__body {
  padding: 14px 16px 16px;
}

/*.exp-card__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}*/
.exp-card__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 10px;
}

.exp-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3366ff;
  color: var(--primary-new);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.exp-card__link:hover {
  color: #4d80ff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ WHY SECTION inline overrides Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.why__heading {
  color: #111827;
}

.why__img {
  height: 380px;
}

.why__visual {
  position: relative;
}

.why__quote {
  background: #3366ff;
  background: var(--primary-new);
  max-width: 240px;
  font-size: 0.85rem;
  line-height: 1.55;
  bottom: -20px;
  left: -24px;
  padding: 20px 22px;
}

.why__quote-author {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA inline overrides Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.cta {
  background: #3366ff;
  background: #0a182f;
}

.cta__container {
  z-index: 1;
}

.cta__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  line-height: 1.7;
}

.btn-cta-primary {
  background: #fff;
  color: #0f1e3d;
  border: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.btn-cta-primary:hover {
  background: #e8eeff;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: #0a1428;
  text-decoration: none;
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 13px 30px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  text-decoration: none;
}

/* ABOUT PAGE */
/* Ã¢â€â‚¬Ã¢â€â‚¬ Page Hero Ã¢â€â‚¬Ã¢â€â‚¬ */
.about-hero {
  background: linear-gradient(135deg, #0a0e17 0%, #0f1e3d 60%, #1a2d5a 100%);
  padding: 220px 0 220px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center/cover no-repeat;
  opacity: 0.08;
}

.about-hero .breadcrumb-wrap {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-hero p.lead {
  color: #a0b3d6;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.breadcrumb-trail {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: #7ba7ff;
  font-size: 0.88rem;
  margin-top: 18px;
}

.breadcrumb-trail a {
  color: #7ba7ff;
  text-decoration: none;
}

.breadcrumb-trail a:hover {
  color: #fff;
}

.breadcrumb-trail span {
  color: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Mission / Vision Ã¢â€â‚¬Ã¢â€â‚¬ */
.mv-section {
  background: #fff;
  padding: 90px 0;
}

.mv-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.mv-section .section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: 12px;
}

.mv-section .section-header p {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.mv-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 40px 36px;
  height: 100%;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.mv-card:hover {
  box-shadow: 0 12px 40px rgba(51, 102, 255, 0.12);
  transform: translateY(-4px);
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #3366ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.mv-icon i {
  color: #fff;
  font-size: 1.3rem;
}

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1e3d;
  margin-bottom: 14px;
}

.mv-card p {
  color: #64748b;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Core Values Ã¢â€â‚¬Ã¢â€â‚¬ */
.values-section {
  background: #f1f5f9;
  padding: 90px 0;
}

.values-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.values-section .section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: 12px;
}

.values-section .section-header p {
  color: #64748b;
  font-size: 1rem;
}

.value-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.value-card:hover {
  box-shadow: 0 10px 32px rgba(51, 102, 255, 0.12);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eff4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  color: #3366ff;
  font-size: 1.4rem;
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1e3d;
  margin-bottom: 10px;
}

.value-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Multi-Disciplinary Team Ã¢â€â‚¬Ã¢â€â‚¬ */
.team-section {
  background: #fff;
  padding: 90px 0;
}

.team-section .team-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-section .team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: 16px;
  line-height: 1.3;
}

.team-section .team-desc {
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.97rem;
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 32px 0;
}

.expert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
}

.expert-item i {
  color: #3366ff;
  font-size: 0.85rem;
}

.global-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-left: 3px solid #3366ff;
  background: #f8faff;
  border-radius: 0 12px 12px 0;
}

.global-badge .badge-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #eff4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-badge .badge-icon i {
  color: #3366ff;
  font-size: 1.1rem;
}

.global-badge h5 {
  font-weight: 700;
  color: #0f1e3d;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.global-badge p {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* who-we-are-section */

.who-we-are-section {
  background: #fff;
  padding: 40px 0;
}

.who-we-are-content {
  padding-left: 20px;
}

.who-we-are-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: 8px;
  line-height: 1.2;
}

.who-we-are-section p {
  color: #64748b;
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CEO Section Ã¢â€â‚¬Ã¢â€â‚¬ */
.ceo-section {
  background: #f8faff;
  padding: 90px 0;
}

.ceo-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  max-height: 520px;
}

.ceo-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.ceo-content {
  display: flex;
  flex-direction: column;
}

/* Leadership */
.ceo-content>.ceo-label {
  order: 1;
}

/* Name */
.ceo-content>h2 {
  order: 2;
}

/* Credentials title */
.ceo-content>h5:nth-of-type(2) {
  order: 3;
}

/* Credentials tags */
.ceo-content>h5:nth-of-type(2)+p {
  order: 4;
  padding-bottom: 18px;
}

/* First description */
.ceo-content>p:first-of-type {
  order: 5;
}

/* Areas of Expertise title */
.ceo-content>h5:nth-of-type(1) {
  order: 6;
}

/* Expertise paragraphs */
.ceo-content>p:not(:first-of-type) {
  order: 7;
}

.ceo-content {
  padding-left: 20px;
}

.ceo-label {
  display: inline-block;
  background: #3366ff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: 115px;
}

.ceo-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ceo-title {
  color: #3366ff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}

.ceo-content p {
  color: #64748b;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.ceo-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.credential-tag {
  background: #eff4ff;
  color: #3366ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #d4e0ff;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 60px;
  }

  .ceo-content {
    padding-left: 0;
    margin-top: 32px;
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .mv-section,
  .values-section,
  .team-section,
  .ceo-section {
    padding: 60px 0;
  }
}

/* Industries Page */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Page-level layout Ã¢â€â‚¬Ã¢â€â‚¬ */
.industries-page {
  padding-top: 50px;
  min-height: 100vh;
  background: #f8fafc;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Sidebar Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 24px 0 16px;
  /* position: sticky;
    top: 25px; */
  margin-bottom: 24px;
}

.ind-sidebar__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #64748b;
  padding: 0 20px 14px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 8px;
}

.ind-sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  border-radius: 0;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}

.ind-sidebar__item i {
  font-size: 15px;
  color: #94a3b8;
  width: 18px;
  flex-shrink: 0;
  transition: color 0.18s;
}

.ind-sidebar__item:hover {
  background: #f1f5f9;
  color: #3366ff;
}

.ind-sidebar__item:hover i {
  color: #3366ff;
}

.ind-sidebar__item.active {
  background: #3366ff;
  background: var(--primary-new);
  color: #fff;
  border-radius: 0;
}

.ind-sidebar__item.active i {
  color: #fff;
}

.ind-sidebar__item .arrow {
  margin-left: auto;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.18s;
}

.ind-sidebar__item.active .arrow,
.ind-sidebar__item:hover .arrow {
  opacity: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Industry panel Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-panel {
  display: none;
}

.ind-panel.active {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Industry Header Card Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-header {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px;
  margin-bottom: 10px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.ind-header__left {
  flex: 1;
}

.ind-header__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3366ff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ind-header__tag::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #3366ff;
}

.ind-header__title {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ind-header__subtitle {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px !important;
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.ind-header__btn {
  display: inline-block;
  background: #3366ff;
  background: var(--primary-new);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s;
}

.ind-header__btn:hover {
  background: #1a4fd6;
  color: #fff;
}

.ind-header__img {
  width: 40%;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.ind-header__img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Overview Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-overview {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px;
  margin-bottom: 10px;
}

.ind-overview h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.ind-overview p {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Key Offerings Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-offerings {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px;
  margin-bottom: 24px;
}

.ind-offerings h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.offering-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #f8fafc;
}

.offering-item i {
  color: #3366ff;
  font-size: 14px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Right sidebar cards Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-cta-card {
  background: #3366ff;
  background: var(--primary-new);
  border-radius: 12px;
  padding: 28px;
  color: #fff;
  margin-bottom: 24px;
}

.ind-cta-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ind-cta-card p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px !important;
}

.ind-cta-card .btn-consult {
  display: block;
  width: 100%;
  background: #fff;
  color: #3366ff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
}

.ind-cta-card .btn-consult:hover {
  background: #e8eeff;
}

.ind-related {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 24px;
}

.ind-related h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: color 0.18s;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.related-item:last-child {
  border-bottom: none;
}

.related-item:hover {
  color: #3366ff;
}

.related-item i {
  color: #3366ff;
  font-size: 12px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Page hero banner Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-hero-banner {
  background: linear-gradient(135deg, #0f1e3d 0%, #1a3a6e 100%);
  padding: 48px 0 40px;
  margin-bottom: 0;
}

.ind-hero-banner h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.ind-hero-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  max-width: 520px;
}

.ind-hero-banner .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 14px;
}

.ind-hero-banner .breadcrumb-item,
.ind-hero-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-decoration: none;
}

.ind-hero-banner .breadcrumb-item.active {
  color: #fff;
}

.ind-hero-banner .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Full-width header wrapper Ã¢â€â‚¬Ã¢â€â‚¬ */
#ind-header-full-wrapper .ind-header {
  margin-bottom: 0;
}

/* Hide the original header inside each panel */
.ind-panel .ind-header {
  display: none !important;
}

@media (max-width: 991px) {
  .ind-header {
    flex-direction: column;
  }

  .ind-header__img {
    width: 100%;
    height: 200px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .ind-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ INVESTMENT STRATEGIES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.investment-strategies {
  background: #f1f5f9;
  padding: 80px 0 20px;
}

#key-offerings {
  padding: 0;
}

.investment-strategies .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.investment-strategies .section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.investment-strategies .section-header p {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

#key-offerings .strategies-grid {
  grid-template-columns: repeat(3, 1fr);
}

.strategy-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 32px;
}

.investment-section .strategy-card {
  padding: 0 !important;
}

.strategy-card .img-box {
  border-radius: 14px 14px 0 0;
  height: 200px;
}

.strategy-card .img-box img {
  border-radius: 14px 14px 0 0;
  height: 100%;
}

.strategy-card .container-box {
  padding: 28px 24px 32px;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(51, 102, 255, 0.13);
  border-color: rgba(51, 102, 255, 0.25);
}

.strategy-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(51, 102, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.strategy-card__icon-wrap i {
  color: #1a4fd6;
  color: var(--primary-new);
}

.strategy-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.strategy-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  color: var(--muted-color);
}

/* Responsive */
@media (max-width: 992px) {
  .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .strategies-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   INDUSTRIES PAGE Ã¢â‚¬â€ NEW SECTIONS
   ========================================================= */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SHARED: Section Heading with Green Accent Line Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.ind-section-accent {
  display: block;
  width: 50px;
  height: 3px;
  background: #16a34a;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.ind-section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ENERGY: Target Sectors Section Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.target-sectors-section {
  background: #f1f5f9;
  padding: 80px 0;
}

.target-sectors-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.target-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sector-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 40px 20px 28px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.1);
  border-color: #c7d8ff;
}

.sector-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-card__icon svg {
  width: 40px;
  height: 40px;
}

.sector-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

/* Row 2: only 3 cards Ã¢â‚¬â€ center them */
.target-sectors-grid .sector-card:nth-child(n + 5) {
  /* keep natural flow for 4+3 layout */
}

.target-sectors-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 835px;
  margin: 20px auto 0;
  padding: 0 24px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ERO: Target Markets + Comprehensive Services Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ero-target-markets-section {
  background: #f1f5f9;
  padding: 80px 0;
}

.ero-target-markets-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.market-cards-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.market-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 0 20px;
  text-align: center;
  width: 190px;
  flex-shrink: 0;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  overflow: hidden;
  cursor: pointer;
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(51, 102, 255, 0.1);
}

.market-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  padding: 20px;
  border-radius: 30px;
}

.market-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  padding: 0 12px;
}

.market-card__desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.55;
  padding: 0 12px;
}

/* ERO Comprehensive Services */
.ero-services-section {
  background: #fff;
  padding: 80px 0;
}

.ero-services-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.1);
}

.service-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 20px;
}

.service-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.service-card__desc {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 14px;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__list li {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__list li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #3366ff;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%233366ff' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MINING: Industries We Serve Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mining-industries-section {
  background: #f8fafc;
  padding: 80px 0;
}

.mining-industries-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.industries-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ind-serve-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.ind-serve-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.ind-serve-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.ind-serve-card__desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ind-serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ind-serve-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 4px 10px;
  background: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ OIL & GAS: Sales & Marketing Support Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.oil-sales-section {
  background: #fff;
  padding: 80px 0;
}

.oil-sales-section .ind-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  /* padding: 0 24px; */
}

.oil-sales-icon-wrap {
  width: 52px;
  height: 52px;
  background: #fff7ed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oil-sales-icon-wrap i {
  color: #ea8c2a;
  font-size: 1.3rem;
}

.oil-sales-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 3px;
}

.oil-sales-subheading {
  font-size: 0.88rem;
  color: #64748b;
}

.oil-sales-intro-wrap {
  max-width: 1100px;
  margin: 0 auto 28px;
  /* padding: 0 24px; */
}

.oil-sales-intro {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px 28px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.oil-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.oil-product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 22px;
}

.oil-product-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.oil-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oil-product-list li {
  font-size: 0.83rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oil-product-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 992px) {
  .target-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target-sectors-row-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 580px;
  }

  .industries-serve-grid,
  .services-cards-row,
  .oil-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-cards-row {
    gap: 12px;
  }

  .market-card {
    width: 160px;
  }
}

@media (max-width: 576px) {

  .target-sectors-grid,
  .target-sectors-row-2,
  .industries-serve-grid,
  .services-cards-row,
  .oil-products-grid {
    grid-template-columns: 1fr;
  }

  .market-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .market-card {
    width: 100%;
    max-width: 320px;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   EXTRA SECTIONS INSIDE ind-panel  (industries.html)
   The panel lives inside col-lg-8 (Ã¢â€°Ë† 66% of col-xl-9 Ã¢â€°Ë† 75% page)
   so effective viewport is much narrower than the full page.
   All breakpoints here are container-aware, not page-wide.
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Wrapper Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-extra-section {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Card-style backgrounds Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-extra-section.ero-target-markets-section,
.ind-extra-section.target-sectors-section,
.ind-extra-section.mining-industries-section {
  background: #ffffff;
  padding: 20px 24px;
  border: 1px solid #e2e8f0;
}

.ind-extra-section.ero-services-section,
.ind-extra-section.oil-sales-section {
  background: #fff;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Section header Ã¢â€â‚¬Ã¢â€â‚¬ */
.ind-extra-section .section-header {
  text-align: center;
  margin-bottom: 22px;
}

.ind-extra-section .ind-section-title {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  margin-bottom: 0;
}

.ind-extra-section .ind-section-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: #3366ff;
  border-radius: 2px;
  margin: 8px auto 10px;
}

.ind-extra-section .ind-section-subtitle {
  font-size: 0.82rem;
  color: #64748b;
  margin: auto;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   CARD STYLING Ã¢â‚¬â€ layout handled by Bootstrap row/col
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Market Cards */
.ero-target-markets-section .row {
  align-items: stretch;
  justify-content: center;
}

.ero-target-markets-section .row>[class*="col-"] {
  display: flex;
}

.ind-extra-section .market-card {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  min-width: 0 !important;
  flex-shrink: 1 !important;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.ind-extra-section .market-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  flex-shrink: 0;
  margin-bottom: 0;
}

.ind-extra-section .market-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 0 12px 0;
}

.ind-extra-section .market-card__desc {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.5;
  padding: 4px 12px 14px;
  flex: 1;
}

/* Service Cards */
.ind-extra-section .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ind-extra-section .service-card__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.ind-extra-section .service-card__body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.ind-extra-section .service-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ind-extra-section .service-card__list {
  margin: 0 0 10px 0;
}

.ind-extra-section .service-card__list li {
  font-size: 0.78rem;
  margin-bottom: 3px;
}

.ind-extra-section .service-card__desc {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 20px;
}

/* Sector Cards */
.ind-extra-section .sector-card {
  padding: 20px 12px 16px;
  height: 100%;
  border-radius: 14px !important;
}

.ind-extra-section .sector-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
}

.ind-extra-section .sector-card__icon svg {
  width: 34px;
  height: 34px;
}

.ind-extra-section .sector-card__name {
  font-size: 0.78rem;
}

/* Industries-Serve Cards */
.ind-extra-section .ind-serve-card {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  height: 100%;
}

.ind-extra-section .ind-serve-card__title {
  font-size: 0.88rem;
}

.ind-extra-section .ind-serve-card__desc {
  font-size: 0.78rem;
  flex: 1;
  margin-bottom: 12px;
}

.ind-extra-section .ind-serve-tags {
  margin-top: auto;
}

.ind-extra-section .ind-serve-tag {
  display: inline-block;
  background: #eff4ff;
  color: #3366ff;
  border: 1px solid #c7d8ff;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  margin: 2px 2px 0;
}

/* Oil & Gas */
.ind-extra-section.oil-sales-section .oil-sales-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #eff4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-extra-section.oil-sales-section .oil-sales-icon-wrap i {
  color: #3366ff;
  font-size: 1.05rem;
}

.ind-extra-section.oil-sales-section .oil-sales-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}

.ind-extra-section.oil-sales-section .oil-sales-subheading {
  font-size: 0.78rem;
  color: #64748b;
}

.ind-extra-section .oil-sales-intro-wrap {
  margin-bottom: 18px;
}

.ind-extra-section .oil-sales-intro {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.65;
  line-height: var(--body-line-height);
  color: var(--muted-color);

  /* ---- Google Fonts ---- */
  @import url("https: //fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

  root {
    /* Ã¢â€â‚¬Ã¢â€â‚¬ Primary brand blue (exact match from screenshots) Ã¢â€â‚¬Ã¢â€â‚¬ */
    --blue: #3366ff;
    --blue-light: #4d80ff;
    --blue-dark: #1a4fd6;
    --blue2: #1e4db7;
    --blue2-mid: #2563eb;
    --blue2-light: #dbeafe;
    --primary: #1a3a5c;
    --accent: #2563eb;
    --accent-light: #dbeafe;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(26, 58, 92, 0.1);
    --primary-new: #0a162b;
    --navy: #1a3461;
    --navy-dark: #152a52;

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Dark backgrounds Ã¢â€â‚¬Ã¢â€â‚¬ */
    --dark: #0a0e17;
    /* hero / navbar deep dark */
    --dark-2: #111827;
    /* section headings text */
    --dark-3: #1a2233;

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Text Ã¢â€â‚¬Ã¢â€â‚¬ */
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --text-body: #d1d5db;

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Light section backgrounds Ã¢â€â‚¬Ã¢â€â‚¬ */
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --section-bg: #f1f5f9;

    /* Ã¢â€â‚¬Ã¢â€â‚¬ CTA section (navy dark from screenshot) Ã¢â€â‚¬Ã¢â€â‚¬ */
    --cta-bg: #0f1e3d;
    --cta-bg-2: #0a1428;

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Navbar Ã¢â€â‚¬Ã¢â€â‚¬ */
    --nav-bg: rgba(15, 30, 80, 0.96);
    --nav-border: rgba(51, 102, 255, 0.35);

    /* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬ */
    --footer-bg-1: #1e3a6e;
    --footer-bg-2: #162d58;
    --footer-accent: #3366ff;
    --font-main: "Manrope", sans-serif;
    --padding-sec: 100px;
    --input-bg: #f8fafc;

    /* Typography */
    --body-size: 0.875rem;
    --body-line-height: 1.65;

    /* Text Colors */
    --muted-color: #64748B;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Manrope", sans-serif !important;
    background: #fff;
    color: #1e293b;
  }

  /* For WebKit-based browsers */
  ::-webkit-scrollbar {
    width: 5px;
    /* Width of the vertical scrollbar */
  }

  ::-webkit-scrollbar-track {
    background-color: #002256;
    /* Background color of the scrollbar track */
  }

  ::-webkit-scrollbar-thumb {
    background-color: #ccc;
    /* Color of the scrollbar thumb */
  }

  /* =========================================================
   NAVBAR Ã¢â‚¬â€ COLOR & HOVER OVERRIDES
   ========================================================= */

  .fixed-nav {
    /* background: rgba(26, 54, 110, 0.97) !important; */
    background: transparent !important;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25); */
    /* backdrop-filter: blur(12px); */
    -webkit-backdrop-filter: blur(12px);
    /* border-bottom: 1px solid rgba(51, 102, 255, 0.35) !important; */
  }

  .uper-nav {
    /* background: #162d58; */
    background: transparent;
    /* border-bottom: 1px solid rgba(51, 102, 255, 0.30); */
  }

  .uper-nav a:hover {
    color: #7ba7ff !important;
    text-decoration: none !important;
  }

  .menu-container {
    width: 100%;
    /* background: #162d58; */
    background: transparent;
    /* border-bottom: 1px solid rgba(51, 102, 255, 0.32); */
    position: static;
    /* must be static so mega-menu positions from .fixed-nav not here */
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
    font-family: var(--font-main);
  }

  .menu>ul>li a {
    font-family: var(--font-main);
    font-size: 13.5px;
    padding: 18px 16px;
    letter-spacing: 0.015em;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .main-hero.hero {
    background: var(--dark);
    border-radius: 0;
  }

  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    border-radius: 10px;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right,
        rgba(8, 12, 22, 0.9) 40%,
        rgba(8, 12, 22, 0.55) 100%),
      url("../images/hero-carousel-3.jpg") center/cover no-repeat;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    padding: 0 80px;
    animation: fadeUp 0.9s ease both;
  }

  .hero__title {
    font-size: clamp(2rem, 4vw, 2.3rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero__title span {
    color: var(--blue);
    font-weight: bold;
  }

  .hero__desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 36px;
    text-align: center;
  }

  .hero__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .hero__container .btn-primary {
    background: #3366ff;
  }

  .btn-primary {
    background: #3366ff;
    background: var(--primary-new);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
      background 0.2s,
      transform 0.15s,
      box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
  }

  .btn-primary:hover {
    background: #4d80ff;
    box-shadow: 0 6px 20px rgba(51, 102, 255, 0.4);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
  }

  .btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 12px 26px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
      background 0.2s,
      border-color 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    backdrop-filter: blur(4px);
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ STATS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .stats {
    background: #fff;
    padding: var(--padding-sec) 0;
    display: flex;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e8f0;
  }

  .stat {
    text-align: center;
  }

  .stat__num {
    font-size: 2rem;
    /* font-weight: 800; */
    color: #3366ff;
    /* color: var(--primary-new); */
    line-height: 1;
  }

  .stat__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.4;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPERTISE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .expertise {
    background: #f1f5f9;
    padding: var(--padding-sec) 0;
  }

  .section-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
  }

  .section-header p {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
    cursor: pointer;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.12);
  }

  .card__img-placeholder {
    width: 100%;
    height: 155px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
  }

  .card-construction .card__img-placeholder {
    background:
      linear-gradient(160deg, #4a3520, #8b6040),
      url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-manufacturing .card__img-placeholder {
    background:
      linear-gradient(160deg, #1a2a3c, #2d5080),
      url("https://images.unsplash.com/photo-1565514020179-026b92b84bb6?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-telecom .card__img-placeholder {
    background:
      linear-gradient(160deg, #1a1040, #6633cc),
      url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-mining .card__img-placeholder {
    background:
      linear-gradient(160deg, #1e2a14, #3a6020),
      url("https://images.unsplash.com/photo-1578328819058-b69f3a3b0f6b?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-aero .card__img-placeholder {
    background:
      linear-gradient(160deg, #0d1624, #1e3264),
      url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-energy .card__img-placeholder {
    background:
      linear-gradient(160deg, #0e2010, #1a5c28),
      url("https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-oil .card__img-placeholder {
    background:
      linear-gradient(160deg, #101820, #1a4060),
      url("https://images.unsplash.com/photo-1580674285054-bed31e145f59?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card-production .card__img-placeholder {
    background:
      linear-gradient(160deg, #201410, #604028),
      url("https://images.unsplash.com/photo-1601599561213-832382fd07ba?w=400&q=70") center/cover no-repeat;
    background-blend-mode: multiply;
  }

  .card__body {
    padding: 16px 18px;
  }

  .card__tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
  }

  .card__desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card__link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3366ff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .card__link:hover {
    color: #4d80ff;
  }

  .card__link::after {
    content: " Ã¢â€ â€™";
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ WHY TPG Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .why {
    background: #fff;
    padding: var(--padding-sec) 0;
  }

  .why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
  }

  .why__text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 14px;
  }

  .why__text>p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
  }

  .feature {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .feature__icon {
    width: 50px;
    height: 50px;
    background: rgba(77, 163, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature__icon i {
    color: #4da3ff;
    color: var(--primary-new);
    font-size: 30px;
  }

  .feature__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feature__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-2);
  }

  .feature__desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
  }

  /* Right side image card */
  .why__visual {
    position: relative;
  }

  .why__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    background:
      linear-gradient(to bottom, rgba(15, 20, 35, 0.2), rgba(15, 20, 35, 0.5)),
      url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=80") center/cover no-repeat;
  }

  .why__quote {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: #3366ff;
    color: #fff;
    border-radius: 12px;
    padding: 20px 22px;
    max-width: 240px;
    font-size: 0.85rem;
    line-height: 1.55;
    box-shadow: 0 8px 32px rgba(51, 102, 255, 0.4);
  }

  .why__quote span {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 0.78rem;
    opacity: 0.85;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .cta {
    background: var(--blue);
    padding: var(--padding-sec) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top,
        rgba(51, 102, 255, 0.12) 0%,
        transparent 65%);
    pointer-events: none;
  }

  .cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  .cta p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .cta__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: 25px;
  }

  /* CTA primary Ã¢â‚¬â€ white background, dark text (matches screenshot) */
  .cta .btn-primary {
    background: #ffffff !important;
    color: #0f1e3d;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition:
      background 0.2s,
      transform 0.15s,
      box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
  }

  .cta .btn-primary:hover {
    background: #e8eeff;
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    color: #0a1428;
    text-decoration: none;
  }

  /* CTA outline Ã¢â‚¬â€ white border, white text, proper padding */
  .cta .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
      background 0.2s,
      border-color 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
  }

  .cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
    text-decoration: none;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ANIMATIONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  @media (max-width: 900px) {
    .hero__content {
      padding: 0 32px;
    }

    .stats {
      padding: 32px;
    }

    .expertise,
    .why,
    .cta {
      padding: 60px 32px;
    }

    .why__inner {
      grid-template-columns: 1fr;
    }

    .why__visual {
      display: none;
    }

    .features {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 560px) {
    .cards-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* =========================================================
   FOOTER Ã¢â‚¬â€ BASE STYLES
   ========================================================= */
  .bg-footer {
    background: #0a182f !important;
    /* border-top: 2px solid rgba(51, 102, 255, 0.45); */
    position: relative;
    overflow: hidden;
  }

  .bg-footer::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(51, 102, 255, 0.06) 0%,
        transparent 70%);
    pointer-events: none;
  }

  .bg-footer .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.2rem;
  }

  /* ---- Column heading label (section title) ---- */
  .coption-link {
    font-size: 10.5px !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffffd9 !important;
    padding-bottom: 14px !important;
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid rgba(51, 102, 255, 0.22) !important;
    font-family: var(--font-main);
  }

  /* ---- Fast-link columns ---- */
  .fast-link {
    padding: 0 16px 0 4px;
  }

  /* Section title link (e.g. "ABOUT US", "INDUSTRIES") */
  .fast-link .nav-link.hvr-icon-forward.fs-5 {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fffffff5 !important;
    padding: 0 0 10px 0 !important;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(51, 102, 255, 0.22);
    font-family: var(--font-main);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
  }

  .fast-link .nav-link.hvr-icon-forward.fs-5:hover {
    color: #3366ff !important;
    text-decoration: none !important;
  }

  .fast-link .nav-link.hvr-icon-forward.fs-5 i {
    color: #3366ff !important;
    font-size: 13px;
    margin-right: 6px;
    transition: all 0.25s ease;
  }

  /* Sub-links (e.g. "About us", "Construction" Ã¢â‚¬Â¦) */
  .fast-link .nav-link {
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 12.5px !important;
    padding: 4px 0 4px 4px !important;
    transition: all 0.25s ease;
    line-height: 1.6;
    display: block;
  }

  .fast-link .nav-link:hover {
    color: #3366ff !important;
    padding-left: 10px !important;
    text-decoration: none !important;
  }

  /* ---- Section headings (h5 inside subscribe area) ---- */
  .bg-footer h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7ba7ff !important;
    margin-bottom: 6px;
    font-family: var(--font-main);
  }

  /* ---- Description text ---- */
  .bg-footer .col-md-6 p.text-white,
  .bg-footer p.text-white {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52) !important;
    margin-bottom: 14px;
  }

  /* ---- Newsletter / email input ---- */
  .bg-footer .form-control {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-size: 13px;
    padding: 10px 14px !important;
    transition: all 0.25s ease;
  }

  .bg-footer .form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #3366ff !important;
    box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.18) !important;
    outline: none;
  }

  .bg-footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.38);
  }

  /* ---- Subscribe / CTA button ---- */
  .buttons {
    border: 1.5px solid #3366ff !important;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1b2a45, #0a162b) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    letter-spacing: 0.03em;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-decoration: none !important;
  }

  .buttons i {
    background: rgba(255, 255, 255, 0.22);
    color: #fff !important;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 50%;
    transition: all 0.25s ease;
  }

  .buttons:hover {
    background: linear-gradient(135deg, #4d80ff, #3366ff) !important;
    box-shadow: 0 6px 20px rgba(51, 102, 255, 0.45);
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none !important;
  }

  .buttons:hover i {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(3px);
  }

  /* ---- Social icons row ---- */
  .header-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 0;
  }

  /* Override Bootstrap m-3 on squr-social */
  .header-social .squr-social {
    margin: 0 !important;
  }

  .squr-social {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
  }

  .squr-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  /* Icon inside social button Ã¢â‚¬â€ override Bootstrap fs-3 */
  .squr-social i,
  .squr-social .fab,
  .squr-social .fa-brands {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 17px !important;
    margin: 0 !important;
    transition: all 0.25s ease;
    line-height: 1;
  }

  .squr-social:hover {
    background: #3366ff !important;
    border-color: #3366ff !important;
    box-shadow: 0 4px 16px rgba(51, 102, 255, 0.45);
    transform: translateY(-3px);
  }

  .squr-social:hover i,
  .squr-social:hover .fab,
  .squr-social:hover .fa-brands {
    color: #fff !important;
  }

  /* ---- Bottom copyright bar ---- */
  .bg-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
    padding-top: 16px !important;
    margin-top: 8px;
    align-items: center;
  }

  .bg-footer .border-top p,
  .bg-footer .border-top span {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.35) !important;
  }

  .bg-footer .border-top a {
    color: rgba(255, 255, 255, 0.52) !important;
    transition: all 0.25s ease;
  }

  .bg-footer .border-top a:hover {
    color: #7ba7ff !important;
    text-decoration: none !important;
  }

  /* ---- Generic footer fallback ---- */
  .footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #6c757d;
  }

  /* =========================================================
   FOOTER Ã¢â‚¬â€ RESPONSIVE (tablet Ã¢â€°Â¤ 991px)
   ========================================================= */
  @media (max-width: 991px) {

    .bg-footer .col-md-2,
    .bg-footer .col-sm-2 {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .bg-footer .col-md-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .fast-link {
      padding-right: 12px;
    }
  }

  /* =========================================================
   FOOTER Ã¢â‚¬â€ RESPONSIVE (mobile Ã¢â€°Â¤ 575px)
   ========================================================= */
  @media (max-width: 575px) {

    /* Ã˜Â¹Ã™â€¦Ã™Ë†Ã˜Â¯Ã™Å Ã™â€  Ã˜Â¬Ã™â€ Ã˜Â¨ Ã˜Â¨Ã˜Â¹Ã˜Â¶ */
    .bg-footer .col-md-2,
    .bg-footer .col-xl-2,
    .bg-footer .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .bg-footer .col-sm-2,
    .bg-footer .col-sm-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    .bg-footer .fast-link {
      padding: 0 8px;
    }

    .bg-footer .fast-link.h-100 {
      height: auto !important;
    }

    .bg-footer .d-flex:not(.justify-content-between) {
      flex-wrap: wrap;
      gap: 10px;
    }

    .bg-footer .d-flex .form-control {
      width: 100% !important;
    }

    .bg-footer .d-flex.justify-content-between {
      flex-direction: column;
      gap: 6px;
    }

    .header-social {
      justify-content: center;
      padding: 8px 0;
    }
  }

  .bg-footer .border-end {
    border-right: none !important;
  }

  /* =========================================================
   EXTRACTED INLINE STYLES Ã¢â‚¬â€ moved from HTML
   ========================================================= */

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO inline overrides Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .hero {
    min-height: 100vh;
    background: #0a0e17;
    overflow: hidden;
    aspect-ratio: 16/7;
  }

  .hero__bg-img {
    z-index: 0;
    opacity: 0.35;
  }

  .main-hero.hero img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .hero__overlay {
    z-index: 1;
    background: linear-gradient(to right, rgb(8 12 22 / 30%) 40%, rgb(8 12 22 / 30%) 100%);
  }

  .hero__container {
    z-index: 2;
  }

  .hero__container {
    z-index: 2;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPERTISE SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .expertise-section {
    /* background: #f1f5f9; */
    background: #fff;
    padding: var(--padding-sec) 0;
  }

  .expertise-subtitle {
    max-width: 540px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPERTISE CARDS (new design matching screenshot) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .exp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
    cursor: pointer;
  }

  .exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.12);
  }

  .exp-card__img-wrap {
    position: relative;
    overflow: hidden;
  }

  .exp-card__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
  }

  .exp-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  }

  .exp-card__body {
    padding: 14px 16px 16px;
  }

  /*.exp-card__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}*/
  .exp-card__desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .exp-card__link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3366ff;
    color: var(--primary-new);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .exp-card__link:hover {
    color: #4d80ff;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ WHY SECTION inline overrides Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .why__heading {
    color: #111827;
  }

  .why__img {
    height: 380px;
  }

  .why__visual {
    position: relative;
  }

  .why__quote {
    background: #3366ff;
    background: var(--primary-new);
    max-width: 240px;
    font-size: 0.85rem;
    line-height: 1.55;
    bottom: -20px;
    left: -24px;
    padding: 20px 22px;
  }

  .why__quote-author {
    font-size: 0.78rem;
    opacity: 0.85;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA inline overrides Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .cta {
    background: #3366ff;
    background: #0a182f;
  }

  .cta__container {
    z-index: 1;
  }

  .cta__desc {
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    line-height: 1.7;
  }

  .btn-cta-primary {
    background: #fff;
    color: #0f1e3d;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition:
      background 0.2s,
      transform 0.15s,
      box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
  }

  .btn-cta-primary:hover {
    background: #e8eeff;
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    color: #0a1428;
    text-decoration: none;
  }

  .btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    padding: 13px 30px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
      background 0.2s,
      border-color 0.2s;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
  }

  .btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
    text-decoration: none;
  }

  /* ABOUT PAGE */
  /* Ã¢â€â‚¬Ã¢â€â‚¬ Page Hero Ã¢â€â‚¬Ã¢â€â‚¬ */
  .about-hero {
    background: linear-gradient(135deg, #0a0e17 0%, #0f1e3d 60%, #1a2d5a 100%);
    padding: 200px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero.jpg") center/cover no-repeat;
    opacity: 0.08;
  }

  .about-hero .breadcrumb-wrap {
    position: relative;
    z-index: 2;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 5vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .about-hero p.lead {
    color: #a0b3d6;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.7;
  }

  .breadcrumb-trail {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #7ba7ff;
    font-size: 0.88rem;
    margin-top: 18px;
  }

  .breadcrumb-trail a {
    color: #7ba7ff;
    text-decoration: none;
  }

  .breadcrumb-trail a:hover {
    color: #fff;
  }

  .breadcrumb-trail span {
    color: #fff;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Mission / Vision Ã¢â€â‚¬Ã¢â€â‚¬ */
  .mv-section {
    background: #fff;
    padding: 90px 0;
  }

  .mv-section .section-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .mv-section .section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f1e3d;
    margin-bottom: 12px;
  }

  .mv-section .section-header p {
    color: #64748b;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .mv-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 40px 36px;
    height: 100%;
    transition:
      box-shadow 0.3s,
      transform 0.3s;
  }

  .mv-card:hover {
    box-shadow: 0 12px 40px rgba(51, 102, 255, 0.12);
    transform: translateY(-4px);
  }

  .mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #3366ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .mv-icon i {
    color: #fff;
    font-size: 1.3rem;
  }

  .mv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 14px;
  }

  .mv-card p {
    color: #64748b;
    line-height: 1.75;
    font-size: 0.95rem;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Core Values Ã¢â€â‚¬Ã¢â€â‚¬ */
  .values-section {
    background: #f1f5f9;
    padding: 90px 0;
  }

  .values-section .section-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .values-section .section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f1e3d;
    margin-bottom: 12px;
  }

  .values-section .section-header p {
    color: #64748b;
    font-size: 1rem;
  }

  .value-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition:
      box-shadow 0.3s,
      transform 0.3s;
  }

  .value-card:hover {
    box-shadow: 0 10px 32px rgba(51, 102, 255, 0.12);
    transform: translateY(-4px);
  }

  .value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .value-icon i {
    color: #3366ff;
    font-size: 1.4rem;
  }

  .value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 10px;
  }

  .value-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Multi-Disciplinary Team Ã¢â€â‚¬Ã¢â€â‚¬ */
  .team-section {
    background: #fff;
    padding: 90px 0;
  }

  .team-section .team-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .team-section .team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .team-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #0f1e3d;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .team-section .team-desc {
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 28px;
    font-size: 0.97rem;
  }

  .experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin: 32px 0;
  }

  .expert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
  }

  .expert-item i {
    color: #3366ff;
    font-size: 0.85rem;
  }

  .global-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-left: 3px solid #3366ff;
    background: #f8faff;
    border-radius: 0 12px 12px 0;
  }

  .global-badge .badge-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #eff4ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .global-badge .badge-icon i {
    color: #3366ff;
    font-size: 1.1rem;
  }

  .global-badge h5 {
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 4px;
    font-size: 0.95rem;
  }

  .global-badge p {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.5;
  }

  /* who-we-are-section */

  .who-we-are-section {
    background: #fff;
    padding: 60px 0;
  }

  .who-we-are-content {
    padding-left: 20px;
  }

  .who-we-are-section h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0f1e3d;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .who-we-are-section p {
    color: #64748b;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 500;
    line-height: var(--body-line-height);
    color: var(--muted-color);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ CEO Section Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ceo-section {
    background: #f8faff;
    padding: 90px 0;
  }

  .ceo-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    max-height: 520px;
  }

  .ceo-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  .ceo-content {
    padding-left: 20px;
  }

  .ceo-label {
    display: inline-block;
    background: #3366ff;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
  }

  .ceo-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0f1e3d;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .ceo-title {
    color: #3366ff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .ceo-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: var(--body-line-height);
    color: var(--muted-color);
  }

  .ceo-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }

  .credential-tag {
    background: #eff4ff;
    color: #3366ff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #d4e0ff;
  }

  @media (max-width: 768px) {
    .about-hero {
      padding: 120px 0 60px;
    }

    .ceo-content {
      padding-left: 0;
      margin-top: 32px;
    }

    .experts-grid {
      grid-template-columns: 1fr;
    }

    .mv-section,
    .values-section,
    .team-section,
    .ceo-section {
      padding: 60px 0;
    }
  }

  /* Industries Page */

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Page-level layout Ã¢â€â‚¬Ã¢â€â‚¬ */
  .industries-page {
    padding-top: 50px;
    min-height: 100vh;
    background: #f8fafc;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Sidebar Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 24px 0 16px;
    /* position: sticky;
    top: 25px; */
    margin-bottom: 24px;
  }

  .ind-sidebar__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #64748b;
    padding: 0 20px 14px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 8px;
  }

  .ind-sidebar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition:
      background 0.18s,
      color 0.18s;
    border-radius: 0;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
  }

  .ind-sidebar__item i {
    font-size: 15px;
    color: #94a3b8;
    width: 18px;
    flex-shrink: 0;
    transition: color 0.18s;
  }

  .ind-sidebar__item:hover {
    background: #f1f5f9;
    color: #3366ff;
  }

  .ind-sidebar__item:hover i {
    color: #3366ff;
  }

  .ind-sidebar__item.active {
    background: #3366ff;
    background: var(--primary-new);
    color: #fff;
    border-radius: 0;
  }

  .ind-sidebar__item.active i {
    color: #fff;
  }

  .ind-sidebar__item .arrow {
    margin-left: auto;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.18s;
  }

  .ind-sidebar__item.active .arrow,
  .ind-sidebar__item:hover .arrow {
    opacity: 1;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Industry panel Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-panel {
    display: none;
  }

  .ind-panel.active {
    display: block;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Industry Header Card Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-header {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 32px;
    margin-bottom: 10px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }

  .ind-header__left {
    flex: 1;
  }

  .ind-header__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3366ff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .ind-header__tag::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #3366ff;
  }

  .ind-header__title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .ind-header__subtitle {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px !important;
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    color: var(--muted-color);
  }

  .ind-header__btn {
    display: inline-block;
    background: #3366ff;
    background: var(--primary-new);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s;
  }

  .ind-header__btn:hover {
    background: #1a4fd6;
    color: #fff;
  }

  .ind-header__img {
    width: 40%;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
  }

  .ind-header__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Overview Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-overview {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 32px;
    margin-bottom: 10px;
  }

  .ind-overview h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
  }

  .ind-overview p {
    color: #475569;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
    line-height: var(--body-line-height);
    color: var(--muted-color);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Key Offerings Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-offerings {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 32px;
    margin-bottom: 24px;
  }

  .ind-offerings h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
  }

  .offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .offering-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background: #f8fafc;
  }

  .offering-item i {
    color: #3366ff;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Right sidebar cards Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-cta-card {
    background: #3366ff;
    background: var(--primary-new);
    border-radius: 12px;
    padding: 28px;
    color: #fff;
    margin-bottom: 24px;
  }

  .ind-cta-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .ind-cta-card p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px !important;
  }

  .ind-cta-card .btn-consult {
    display: block;
    width: 100%;
    background: #fff;
    color: #3366ff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s;
  }

  .ind-cta-card .btn-consult:hover {
    background: #e8eeff;
  }

  .ind-related {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 24px;
  }

  .ind-related h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
  }

  .related-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: color 0.18s;
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
  }

  .related-item:last-child {
    border-bottom: none;
  }

  .related-item:hover {
    color: #3366ff;
  }

  .related-item i {
    color: #3366ff;
    font-size: 12px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Page hero banner Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-hero-banner {
    background: linear-gradient(135deg, #0f1e3d 0%, #1a3a6e 100%);
    padding: 48px 0 40px;
    margin-bottom: 0;
  }

  .ind-hero-banner h1 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
  }

  .ind-hero-banner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    max-width: 520px;
  }

  .ind-hero-banner .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 14px;
  }

  .ind-hero-banner .breadcrumb-item,
  .ind-hero-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
  }

  .ind-hero-banner .breadcrumb-item.active {
    color: #fff;
  }

  .ind-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Full-width header wrapper Ã¢â€â‚¬Ã¢â€â‚¬ */
  #ind-header-full-wrapper .ind-header {
    margin-bottom: 0;
  }

  /* Hide the original header inside each panel */
  .ind-panel .ind-header {
    display: none !important;
  }

  @media (max-width: 991px) {
    .ind-header {
      flex-direction: column;
    }

    .ind-header__img {
      width: 100%;
      height: 200px;
    }

    .offerings-grid {
      grid-template-columns: 1fr;
    }

    .ind-sidebar {
      position: relative;
      top: 0;
      margin-bottom: 24px;
    }
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ INVESTMENT STRATEGIES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .investment-strategies {
    background: #f1f5f9;
    padding: 80px 0 20px;
  }

  #key-offerings {
    padding: 0;
  }

  .investment-strategies .section-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .investment-strategies .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
  }

  .investment-strategies .section-header p {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .strategies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  #key-offerings .strategies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .strategy-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px 32px;
  }

  .investment-section .strategy-card {
    padding: 0 !important;
  }

  .strategy-card .img-box {
    border-radius: 14px 14px 0 0;
  }

  .strategy-card .img-box img {
    border-radius: 14px 14px 0 0;
  }

  .strategy-card .container-box {
    padding: 28px 24px 32px;
  }

  .strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(51, 102, 255, 0.13);
    border-color: rgba(51, 102, 255, 0.25);
  }

  .strategy-card__icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(51, 102, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }

  .strategy-card__icon-wrap i {
    color: #1a4fd6;
    color: var(--primary-new);
  }

  .strategy-card__title {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
  }

  .strategy-card__desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.65;
    color: var(--muted-color);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .strategies-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .strategies-grid {
      grid-template-columns: 1fr;
    }
  }

  /* =========================================================
   INDUSTRIES PAGE Ã¢â‚¬â€ NEW SECTIONS
   ========================================================= */

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SHARED: Section Heading with Green Accent Line Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
  }

  .ind-section-accent {
    display: block;
    width: 50px;
    height: 3px;
    background: #16a34a;
    border-radius: 2px;
    margin: 0 auto 16px;
  }

  .ind-section-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ENERGY: Target Sectors Section Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .target-sectors-section {
    background: #f1f5f9;
    padding: 80px 0;
  }

  .target-sectors-section .section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .target-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .sector-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 40px 20px 28px;
    text-align: center;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
    cursor: pointer;
  }

  .sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.1);
    border-color: #c7d8ff;
  }

  .sector-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sector-card__icon svg {
    width: 40px;
    height: 40px;
  }

  .sector-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
  }

  /* Row 2: only 3 cards Ã¢â‚¬â€ center them */
  .target-sectors-grid .sector-card:nth-child(n + 5) {
    /* keep natural flow for 4+3 layout */
  }

  .target-sectors-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 835px;
    margin: 20px auto 0;
    padding: 0 24px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ERO: Target Markets + Comprehensive Services Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ero-target-markets-section {
    background: #f1f5f9;
    padding: 80px 0;
  }

  .ero-target-markets-section .section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .market-cards-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .market-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 0 20px;
    text-align: center;
    width: 190px;
    flex-shrink: 0;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
    overflow: hidden;
    cursor: pointer;
  }

  .market-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(51, 102, 255, 0.1);
  }

  .market-card__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    margin-bottom: 14px;
    padding: 20px;
    border-radius: 30px;
  }

  .market-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    padding: 0 12px;
  }

  .market-card__desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.55;
    padding: 0 12px;
  }

  /* ERO Comprehensive Services */
  .ero-services-section {
    background: #fff;
    padding: 80px 0;
  }

  .ero-services-section .section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .services-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
    cursor: pointer;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.1);
  }

  .service-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .service-card__body {
    padding: 20px;
  }

  .service-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
  }

  .service-card__desc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 14px;
  }

  .service-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .service-card__list li {
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-card__list li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #3366ff;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%233366ff' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MINING: Industries We Serve Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .mining-industries-section {
    background: #f8fafc;
    padding: 80px 0;
  }

  .mining-industries-section .section-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .industries-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .ind-serve-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    transition:
      transform 0.25s,
      box-shadow 0.25s;
  }

  .ind-serve-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  }

  .ind-serve-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
  }

  .ind-serve-card__desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .ind-serve-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .ind-serve-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 4px 10px;
    background: #fff;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ OIL & GAS: Sales & Marketing Support Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .oil-sales-section {
    background: #fff;
    padding: 80px 0;
  }

  .oil-sales-section .ind-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    /* padding: 0 24px; */
  }

  .oil-sales-icon-wrap {
    width: 52px;
    height: 52px;
    background: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .oil-sales-icon-wrap i {
    color: #ea8c2a;
    font-size: 1.3rem;
  }

  .oil-sales-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3px;
  }

  .oil-sales-subheading {
    font-size: 0.88rem;
    color: #64748b;
  }

  .oil-sales-intro-wrap {
    max-width: 1100px;
    margin: 0 auto 28px;
    /* padding: 0 24px; */
  }

  .oil-sales-intro {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px 28px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
  }

  .oil-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .oil-product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 22px;
  }

  .oil-product-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
  }

  .oil-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .oil-product-list li {
    font-size: 0.83rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .oil-product-list li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-light);
    flex-shrink: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  @media (max-width: 992px) {
    .target-sectors-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .target-sectors-row-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 580px;
    }

    .industries-serve-grid,
    .services-cards-row,
    .oil-products-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .market-cards-row {
      gap: 12px;
    }

    .market-card {
      width: 160px;
    }
  }

  @media (max-width: 576px) {

    .target-sectors-grid,
    .target-sectors-row-2,
    .industries-serve-grid,
    .services-cards-row,
    .oil-products-grid {
      grid-template-columns: 1fr;
    }

    .market-cards-row {
      flex-direction: column;
      align-items: center;
    }

    .market-card {
      width: 100%;
      max-width: 320px;
    }
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   EXTRA SECTIONS INSIDE ind-panel  (industries.html)
   The panel lives inside col-lg-8 (Ã¢â€°Ë† 66% of col-xl-9 Ã¢â€°Ë† 75% page)
   so effective viewport is much narrower than the full page.
   All breakpoints here are container-aware, not page-wide.
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Wrapper Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-extra-section {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Card-style backgrounds Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-extra-section.ero-target-markets-section,
  .ind-extra-section.target-sectors-section,
  .ind-extra-section.mining-industries-section {
    background: #ffffff;
    padding: 20px 24px;
    border: 1px solid #e2e8f0;
  }

  .ind-extra-section.ero-services-section,
  .ind-extra-section.oil-sales-section {
    background: #fff;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Section header Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ind-extra-section .section-header {
    text-align: center;
    margin-bottom: 22px;
  }

  .ind-extra-section .ind-section-title {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    margin-bottom: 0;
  }

  .ind-extra-section .ind-section-accent {
    display: block;
    width: 40px;
    height: 3px;
    background: #3366ff;
    border-radius: 2px;
    margin: 8px auto 10px;
  }

  .ind-extra-section .ind-section-subtitle {
    font-size: 0.82rem;
    color: #64748b;
    margin: auto;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   CARD STYLING Ã¢â‚¬â€ layout handled by Bootstrap row/col
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  /* Market Cards */
  .ero-target-markets-section .row {
    align-items: stretch;
    justify-content: center;
  }

  .ero-target-markets-section .row>[ class*="col-"] {
    display: flex;
  }

  .ind-extra-section .market-card {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
  }

  .ind-extra-section .market-card__img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .ind-extra-section .market-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 5px;
    padding: 0 12px 0;
  }

  .ind-extra-section .market-card__desc {
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.5;
    padding: 4px 12px 14px;
    flex: 1;
  }

  /* Service Cards */
  .ind-extra-section .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .ind-extra-section .service-card__img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .ind-extra-section .service-card__body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }

  .ind-extra-section .service-card__title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .ind-extra-section .service-card__list {
    margin: 0 0 10px 0;
  }

  .ind-extra-section .service-card__list li {
    font-size: 0.78rem;
    margin-bottom: 3px;
  }

  .ind-extra-section .service-card__desc {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 20px;
  }

  /* Sector Cards */
  .ind-extra-section .sector-card {
    padding: 20px 12px 16px;
    height: 100%;
    border-radius: 14px !important;
  }

  .ind-extra-section .sector-card__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
  }

  .ind-extra-section .sector-card__icon svg {
    width: 34px;
    height: 34px;
  }

  .ind-extra-section .sector-card__name {
    font-size: 0.78rem;
  }

  /* Industries-Serve Cards */
  .ind-extra-section .ind-serve-card {
    display: flex;
    flex-direction: column;
    padding: 20px 18px;
    height: 100%;
  }

  .ind-extra-section .ind-serve-card__title {
    font-size: 0.88rem;
  }

  .ind-extra-section .ind-serve-card__desc {
    font-size: 0.78rem;
    flex: 1;
    margin-bottom: 12px;
  }

  .ind-extra-section .ind-serve-tags {
    margin-top: auto;
  }

  .ind-extra-section .ind-serve-tag {
    display: inline-block;
    background: #eff4ff;
    color: #3366ff;
    border: 1px solid #c7d8ff;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    margin: 2px 2px 0;
  }

  /* Oil & Gas */
  .ind-extra-section.oil-sales-section .oil-sales-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #eff4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ind-extra-section.oil-sales-section .oil-sales-icon-wrap i {
    color: #3366ff;
    font-size: 1.05rem;
  }

  .ind-extra-section.oil-sales-section .oil-sales-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
  }

  .ind-extra-section.oil-sales-section .oil-sales-subheading {
    font-size: 0.78rem;
    color: #64748b;
  }

  .ind-extra-section .oil-sales-intro-wrap {
    margin-bottom: 18px;
  }

  .ind-extra-section .oil-sales-intro {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.65;
  }

  .ind-extra-section .oil-product-card {
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    height: 100%;
  }

  .ind-extra-section .oil-product-card__title {
    font-size: 0.84rem;
    margin-bottom: 10px;
  }

  .ind-extra-section .oil-product-list {
    flex: 1;
  }

  .ind-extra-section .oil-product-list li {
    font-size: 0.78rem;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Fix grids inside 8-col panel (narrower than full page) Ã¢â€â‚¬Ã¢â€â‚¬ */

  /* Service cards: 2 cols always inside the panel */
  /* .ero-services-section .row>[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
} */
  @media (max-width: 680px) {
    .ero-services-section .row>[class*="col-"] {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

  /* Override industries-serve-grid & oil-products-grid: 2 cols inside the panel */
  .ind-extra-section .industries-serve-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .ind-extra-section .oil-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  @media (max-width: 991.9px) {

    .ind-extra-section .industries-serve-grid,
    .ind-extra-section .oil-products-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media (max-width: 768px) {

    .ind-extra-section .industries-serve-grid,
    .ind-extra-section .oil-products-grid {
      grid-template-columns: 1fr !important;
    }
  }

  /* Target sectors: 3 cols inside the panel */
  .target-sectors-section .row>.col-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  @media (max-width: 680px) {
    .target-sectors-section .row>.col-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  /* Target markets: 1 col full-width on small screens, 2 cols on md+ */
  @media (max-width: 767px) {
    .ero-target-markets-section .row>[class*="col-"] {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      width: 100% !important;
    }
  }

  /* @media (min-width: 768px) {
    .ero-target-markets-section .row>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
} */
  @media (max-width: 580px) {
    .market-card {
      margin: auto;
    }
  }

  /* Ã¢â€¢ÂÃ¢â€¢Â PLATFORM PAGE INNER STYLES Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  /* Push content below fixed navbar */
  /* .platform-page-wrapper {
  padding-top: 120px;
}

@media (max-width: 991.9px) {
  .platform-page-wrapper {
    padding-top: 60px;
  }
} */

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Inner Navbar (Platform tabs) Ã¢â€â‚¬Ã¢â€â‚¬ */
  .platform-inner-nav {
    background: #fff;
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .platform-inner-nav .inner-nav-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .platform-inner-nav .inner-nav-container::-webkit-scrollbar {
    height: 5px;
  }

  .platform-inner-nav .brand-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    padding: 14px 0;
    margin-right: 40px;
  }

  .platform-inner-nav .tab-links {
    display: flex;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    gap: 2px;
  }

  @media (min-width: 768px) {
    .platform-inner-nav .tab-links {
      flex-wrap: wrap !important;
    }
  }

  .platform-inner-nav .tab-links>li {
    flex: 1;
  }

  .platform-inner-nav .tab-links a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    padding: 16px 16px;
    border-bottom: 3px solid transparent;
    transition:
      color 0.2s,
      border-color 0.2s;
    white-space: nowrap;
  }

  @media (max-width: 991.9px) {
    .platform-inner-nav .tab-links a {
      background: #1712ff0d;
    }

    .sec-divider {
      width: 100% !important;
    }
  }

  .platform-inner-nav .tab-links a:hover {
    color: #1e293b;
    border-bottom-color: #929496;
  }

  .platform-inner-nav .tab-links a.active {
    color: #3366ff;
    border-bottom-color: #3366ff;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Tab content visibility Ã¢â€â‚¬Ã¢â€â‚¬ */
  .tab-section {
    display: none;
  }

  .tab-section.active {
    display: block;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Section Divider Ã¢â€â‚¬Ã¢â€â‚¬ */
  .sec-divider {
    border: none;
    border-top: 1px solid #9f9f9f;
    margin: auto;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Page Hero Ã¢â€â‚¬Ã¢â€â‚¬ */
  .page-hero {
    text-align: center;
    padding: 72px 40px 60px;
    /* max-width: 860px; */
    margin: 0 auto;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .page-hero p {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.75;
    /* max-width: 680px; */
    margin: 0 auto;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Content Section Ã¢â€â‚¬Ã¢â€â‚¬ */
  .content-section {
    padding: 30px 0;
    /* max-width: 1140px; */
    margin: 0 auto;
    /* padding-left: 60px;
  padding-right: 60px; */
  }

  .section-heading {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .section-sub {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    /* max-width: 600px; */
    margin-bottom: 20px !important;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Feature Cards Ã¢â€â‚¬Ã¢â€â‚¬ */
  .feat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
  }

  .feat-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 20px;
  }

  .feat-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
    cursor: default;
  }

  .feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.11);
    border-color: rgba(51, 102, 255, 0.25);
  }

  .feat-card h3 {
    font-size: 0.93rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
  }

  .feat-card p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
  }

  .feat-card ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
  }

  .feat-card ul li {
    font-size: 0.82rem;
    color: #64748b;
    padding: 3px 0;
  }

  .feat-card ul li i {
    color: #3366ff;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Tag Pills (region tags) Ã¢â€â‚¬Ã¢â€â‚¬ */
  .tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .tag-pill {
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    padding: 11px 22px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #334155;
    background: #fff;
    transition:
      background 0.2s,
      border-color 0.2s,
      color 0.2s,
      transform 0.18s;
    cursor: default;
    flex: 1;
    text-align: center;
  }

  .tag-pill:hover {
    background: #eff4ff;
    border-color: #c7d8ff;
    color: #3366ff;
    transform: translateY(-2px);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Category 2-col grid Ã¢â€â‚¬Ã¢â€â‚¬ */
  .cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .cat-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 0.86rem;
    font-weight: 500;
    color: #334155;
    background: #fff;
    transition:
      background 0.2s,
      border-color 0.2s,
      color 0.2s,
      transform 0.18s;
    cursor: default;
  }

  .cat-item:hover {
    background: #f8faff;
    border-color: #c7d8ff;
    color: #3366ff;
    transform: translateY(-2px);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Quote box Ã¢â€â‚¬Ã¢â€â‚¬ */
  .quote-box {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 26px 30px;
    background: #f8fafc;
    margin-top: 20px;
  }

  .quote-box p {
    font-size: 0.87rem;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 12px;
  }

  .quote-box p:last-child {
    margin-bottom: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ 3-col partner columns Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partner-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
  }

  .partner-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }

  .partner-col p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.65;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ CTA Block Ã¢â€â‚¬Ã¢â€â‚¬ */
  .cta-block {
    text-align: center;
    padding: 40px;
  }

  .cta-block h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }

  .cta-block p {
    font-size: 0.93rem;
    color: #64748b;
    /* max-width: 520px; */
    margin: 0 auto 28px !important;
    line-height: 1.7;
  }

  .cta-block .btn-group-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Buttons Ã¢â€â‚¬Ã¢â€â‚¬ */
  .btn-dark-solid {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition:
      background 0.2s,
      transform 0.15s,
      box-shadow 0.2s;
  }

  .btn-dark-solid:hover {
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
  }

  .btn-outline-light {
    background: #fff;
    color: #1e293b;
    border: 1.5px solid #cbd5e1;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .btn-outline-light:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    text-decoration: none;
    color: #1e293b;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Home services arrow card Ã¢â€â‚¬Ã¢â€â‚¬ */
  .svc-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    /* padding: 24px; */
    background: #fff;
    cursor: pointer;
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      border-color 0.22s ease;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.11);
    border-color: rgba(51, 102, 255, 0.25);
    color: inherit;
    text-decoration: none;
  }

  .svc-card .img-box {
    border-radius: 10px 10px 0 0;
  }

  .svc-card .img-box img {
    border-radius: 10px 10px 0 0;
  }

  .svc-card .container-box {
    padding: 24px;
  }

  .svc-card .svc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .svc-card .svc-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
  }

  .svc-card .svc-arrow {
    font-size: 1rem;
    color: #94a3b8;
    transition:
      color 0.2s,
      transform 0.2s;
  }

  .svc-card:hover .svc-arrow {
    color: #3366ff;
    transform: translateX(3px);
  }

  .svc-card p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
  @media (max-width: 900px) {

    .feat-grid-3,
    .partner-cols {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .platform-inner-nav {
      top: 0;
    }

    .platform-inner-nav .inner-nav-container {
      padding: 0 12px;
      overflow-x: auto;
    }

    .content-section {
      padding: 40px 20px;
    }

    .feat-grid-3,
    .feat-grid-2,
    .partner-cols {
      grid-template-columns: 1fr;
    }

    .cat-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Platform sidebar sticky on desktop Ã¢â€â‚¬Ã¢â€â‚¬ */
  .platform-page-wrapper .industries-page {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .platform-sidebar {
    position: sticky;
    top: 20px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Tab sections inside right column Ã¢â€â‚¬Ã¢â€â‚¬ */
  .platform-page-wrapper .tab-section {
    display: none;
  }

  .platform-page-wrapper .tab-section.active {
    display: block;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Remove old page-hero top padding since we have sidebar now Ã¢â€â‚¬Ã¢â€â‚¬ */
  .platform-page-wrapper .page-hero {
    padding-top: 20px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ On small screens sidebar appears above content Ã¢â€â‚¬Ã¢â€â‚¬ */
  @media (max-width: 991.9px) {
    .platform-page-wrapper .industries-page {
      padding-top: 20px;
    }

    .platform-sidebar {
      position: relative;
      top: 0;
    }
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         NAVBAR LAYOUT Ã¢â‚¬â€ tpg-portal page
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  /* @media (min-width:992px) {
  .tpg-portal-body .container {
    width: 1000px !important;
  }
} */
  @media (min-width: 1200px) {
    .tpg-portal-body .container {
      width: 1000px !important;
    }
  }

  .fixed-nav {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1100 !important;
  }

  .menu>ul>li>ul,
  .signIn-dropdown {
    z-index: 1200 !important;
    display: none !important;
  }

  body {
    padding-top: 0 !important;
  }

  /* Compensate for fixed navbar so portal-header is not hidden underneath */
  /* Navbar total height ~ 110px (upper-nav ~50px + menu-container ~50px) */
  /* .portal-header {
  margin-top: 118px;
} */

  /* @media (max-width: 958.9px) {
  .portal-header {
    margin-top: 60px !important;
  }
} */

  .portal-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 12px rgba(26, 58, 92, 0.1);
    height: 64px;
    display: flex;
    align-items: center;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Portal nav logo Ã¢â€â‚¬Ã¢â€â‚¬ */
  .portal-nav-logo {
    font-weight: 700;
    font-size: 17px;
    color: var(--primary);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Portal nav links Ã¢â€â‚¬Ã¢â€â‚¬ */
  .portal-nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .portal-nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition:
      color 0.2s,
      background 0.2s;
    padding: 7px 18px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .portal-nav-links a:hover {
    color: var(--accent);
    background: var(--accent-light);
  }

  .portal-nav-links a.active {
    color: #fff !important;
    background: var(--accent) !important;
    font-weight: 600;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         SPACING & SECTIONS
         Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  /* Kill min-height:100vh from new-style.css on the portal hero */
  #page-home .hero,
  .page .hero {
    min-height: unset !important;
    display: block !important;
    align-items: unset !important;
  }

  .hero {
    padding: 72px 0 60px !important;
  }

  .features {
    padding: 60px 0 !important;
  }

  .cta-section {
    padding: 64px 0 !important;
  }

  .page-header {
    padding: 56px 0 36px;
  }

  .portfolio-grid {
    gap: 20px;
    padding-bottom: 56px;
  }

  .portfolio-card {
    padding: 26px 22px 20px;
  }

  .card-desc {
    margin-bottom: 20px;
  }

  .portfolio-cta {
    padding: 56px 32px;
    margin-bottom: 56px;
  }

  .detail-wrap {
    padding: 40px 0 16px;
  }

  .section-title {
    margin-top: 44px;
    margin-bottom: 18px;
  }

  .inv-grid {
    gap: 20px;
    margin-bottom: 12px;
  }

  .inv-card {
    padding: 24px 26px;
  }

  .inv-row {
    margin-bottom: 16px;
  }

  .metrics-grid {
    gap: 16px;
    margin-bottom: 12px;
  }

  .metric-card {
    padding: 22px 20px;
  }

  .status-card {
    padding: 24px 26px;
    gap: 40px;
    margin-bottom: 12px;
  }

  .interest-cta {
    padding: 44px 32px;
    margin: 40px 0 56px;
  }

  .contact-page {
    padding: 56px 0 72px;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-form-card {
    padding: 40px 44px;
  }

  .form-row {
    gap: 22px;
    margin-bottom: 22px;
  }

  .form-group {
    margin-bottom: 22px;
  }

  .form-divider {
    margin: 28px 0;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         MOBILE  Ã¢â€°Â¤768px
         Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  @media (max-width: 768px) {
    .fixed-nav .hide-sm {
      display: none !important;
    }

    .portal-nav {
      height: auto;
      min-height: 54px;
      padding: 6px 0;
    }

    .portal-nav-logo {
      font-size: 14px;
    }

    .portal-nav-links {
      gap: 3px;
    }

    .portal-nav-links a {
      font-size: 12.5px;
      padding: 6px 10px;
    }

    .feature-icon {
      font-size: 30px;
      margin-bottom: 8px;
    }

    .hero {
      padding: 48px 0 44px;
    }

    .features {
      padding: 44px 0;
    }

    .cta-section {
      padding: 48px 0;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .portfolio-grid {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .page-header {
      padding: 36px 0 24px;
    }

    .page-header h1 {
      font-size: 28px;
    }

    .inv-grid {
      grid-template-columns: 1fr;
    }

    .metrics-grid {
      grid-template-columns: 1fr 1fr;
    }

    .status-card {
      flex-direction: column;
      gap: 20px;
    }

    .contact-form-card {
      padding: 24px 18px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .projects-grid {
      grid-template-columns: 1fr;
    }

    .detail-title {
      font-size: 24px;
    }

    .detail-image {
      max-height: 155px !important;
    }
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         MOBILE  Ã¢â€°Â¤480px
         Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  @media (max-width: 480px) {
    .portal-nav-links a {
      padding: 5px 10px;
      font-size: 12.5px;
    }

    .portfolio-grid {
      grid-template-columns: 1fr;
    }

    .metrics-grid {
      grid-template-columns: 1fr;
    }

    .hero h1 {
      font-size: 28px;
    }

    .cta-btns {
      flex-direction: column;
      align-items: center;
    }

    .cta-btns .btn {
      width: 100%;
      justify-content: center;
    }

    .contact-form-card {
      padding: 20px 14px;
    }
  }

  .page {
    display: none;
  }

  .page.active {
    display: block;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    background: var(--primary-new);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 26px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
      background 0.2s,
      transform 0.15s;
    font-family: inherit;
  }

  .btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    color: #fff;
  }

  .btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
  }

  .btn-outline:hover {
    background: #000;
    transform: translateY(-1px);
  }

  .hero {
    background: linear-gradient(120deg, #e8f0fb 0%, #f0f4ff 60%, #f8fafc 100%);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -60px;
    width: 520px;
    height: 420px;
    background: radial-gradient(ellipse at 60% 40%,
        rgba(37, 99, 235, 0.1) 0%,
        transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    margin: 0 20px;
  }

  .hero h1 {
    /* font-family: "Playfair Display", serif; */
    font-size: clamp(36px, 5vw, 52px);
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 18px;
    margin-top: 40px;
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 18px !important;
  }

  .hero-desc {
    color: var(--muted);
    margin-bottom: 12px !important;
    font-size: 14.5px;
  }

  .hero-desc2 {
    color: var(--muted);
    margin-bottom: 32px !important;
    font-size: 14.5px;
  }

  #page-home .features {
    padding: 60px 0;
    /* background: var(--white); */
    grid-template-columns: repeat(1, 1fr);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .features-grid div {
    text-align: center;
  }

  @media (max-width: 991.9px) {
    #page-home .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767.9px) {
    #page-home .features-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .feature-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary);
  }

  .feature-desc {
    color: var(--muted);
    font-size: 13.5px;
  }

  .cta-section {
    background: var(--bg);
    padding: 64px 0;
    text-align: center;
  }

  .cta-section h2 {
    /* font-family: "Playfair Display", serif; */
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 14px;
  }

  .cta-section p {
    color: var(--muted);
    margin-bottom: 28px !important;
    font-size: 15px;
  }

  .cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .page-header {
    padding: 48px 0 32px;
  }

  .page-header h1 {
    /* font-family: "Playfair Display", serif; */
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 14px;
  }

  .page-header p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-bottom: 48px;
  }

  @media (max-width: 991.9px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 767.9px) {
    .portfolio-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  @media (min-width: 992px) and (max-width: 1199.9px) {
    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1200px) and (max-width: 1400px) {
    .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .portfolio-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px 18px;
    background: var(--white);
    cursor: pointer;
    transition:
      box-shadow 0.2s,
      transform 0.2s;
  }

  .portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(51, 102, 255, 0.11);
    border-color: rgba(51, 102, 255, 0.25);
  }

  .card-icon {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .card-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--primary);
  }

  .card-category {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 12px;
  }

  .card-desc {
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
  }

  .portfolio-cta {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 48px 24px;
    text-align: center;
    margin-bottom: 48px;
  }

  .portfolio-cta h3 {
    /* font-family: "Playfair Display", serif; */
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .portfolio-cta p {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 14.5px;
  }

  .detail-back {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--muted);
    font-size: 13.5px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
    margin-bottom: 20px;
    transition: color 0.15s;
  }

  .detail-back:hover {
    color: var(--accent);
  }

  .detail-wrap {
    padding: 32px 0 0;
  }

  .detail-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
  }

  .detail-icon {
    font-size: 32px;
  }

  .detail-title {
    /* font-family: "Playfair Display", serif; */
    font-size: 32px;
    color: var(--primary);
  }

  .detail-category {
    color: var(--muted);
    font-size: 14px;
  }

  .detail-image {
    width: 100%;
    max-height: 380px;
    object-fit: fill;
    border-radius: var(--radius);
    margin-bottom: 36px;
    display: block;
  }

  .section-title {
    /* font-family: "Playfair Display", serif; */
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
    margin-top: 36px;
  }

  .detail-overview {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.75;
  }

  .inv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
  }

  @media (max-width: 767.9px) {
    .inv-grid {
      grid-template-columns: 1fr;
    }
  }

  .inv-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
  }

  .inv-card-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 14px;
  }

  .inv-row {
    margin-bottom: 12px;
  }

  .inv-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .inv-value {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
  }

  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
  }

  .metric-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px;
  }

  .metric-label {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .mv-blue {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
  }

  .mv-dark {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
  }

  .status-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .status-left {
    flex: 1;
    min-width: stretch;
  }

  .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .progress-label {
    font-size: 12px;
    color: var(--muted);
  }

  .progress-pct {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }

  .progress-bar-bg {
    background: #e2e8f0;
    border-radius: 99px;
    height: 8px;
  }

  .progress-bar-fill {
    background: var(--accent);
    border-radius: 99px;
    height: 8px;
  }

  .risk-label {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .risk-value {
    font-weight: 600;
    font-size: 14.5px;
  }

  .interest-cta {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    margin: 32px 0 48px;
  }

  .interest-cta h3 {
    /* font-family: "Playfair Display", serif; */
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .interest-cta p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px !important;
  }

  .contact-page {
    padding: 48px 0 64px;
  }

  .contact-header {
    margin-bottom: 36px;
  }

  .contact-header h1 {
    /* font-family: "Playfair Display", serif; */
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
  }

  .contact-header p {
    color: var(--muted);
    font-size: 15px;
  }

  .contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    /* padding: 36px 40px; */
  }

  .form-section-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 20px;
  }

  .form-note {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
  }

  .req {
    color: var(--accent);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  @media (max-width: 767.9px) {

    .projects-grid,
    .form-row {
      grid-template-columns: 1fr;
    }
  }

  .project-checkbox {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition:
      border-color 0.2s,
      background 0.2s;
    user-select: none;
  }

  .project-checkbox input {
    accent-color: var(--accent);
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex: 0;
    margin: 0;
  }

  .project-checkbox:hover {
    border-color: var(--accent);
    background: var(--accent-light);
  }

  .project-icon {
    font-size: 16px;
  }

  .project-name {
    font-weight: 500;
    font-size: 13px;
    color: var(--primary);
  }

  .project-cat {
    font-size: 11.5px;
    color: var(--muted);
  }

  .form-submit {
    margin-top: 28px;
  }

  .form-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
  }

  .bank-pargraph h4 {
    color: #002256;
    font-size: 16px;
    height: 55px;
  }

  .btn:hover {
    transition: 0.3s !important;
  }

  .btn:active {
    background-color: #193fa7 !important;
    background-color: var(--primary-new) !important;
    color: #fff !important;
  }

  .metal-services {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
    padding: 0 !important;
  }

  .metal-services .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 !important;
    gap: 15px;
  }

  @media (max-width: 767.9px) {
    .metal-services .strategies-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  .metal-services .section-header-main {
    background: #3366ff;
    background: var(--primary-new);
    color: #fff;
    text-align: center;
    padding: 30px;
  }

  .metal-services .section-header h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }

  .metal-services .section-header p {
    font-size: 0.8rem;
  }

  .metal-services .section-header-main h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px;
  }

  .metal-services .section-header-main p {
    font-size: 0.95rem;
    color: #eee;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .ourServicesSection {
    padding: 32px;
  }

  .comprehensiveDefense {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 32px;
    margin-bottom: 24px;
  }

  /* .bg-icon {
  width:30px;
  height:30px;
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  border-radius: 10px;
} */

  .comprehensiveDefense .section-header h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }

  .comprehensiveDefense .section-header p {
    font-size: 0.8rem;
  }

  .oil-services-section {
    padding: 0 !important;
  }

  .oil-services-section .container-box {
    padding: 28px 24px;
  }

  .oil-services-section .section-header-main {
    background: #3366ff;
    color: #fff;
    text-align: center;
    padding: 30px;
  }

  .oil-services-section .section-header-main h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
  }

  .oil-services-section .section-header-main p {
    font-size: 0.8rem;
  }

  .oil-services-section .oil-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .oil-services-section .oil-products-grid .oil-product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px;
  }

  @media (max-width: 991.9px) {
    .oil-services-section .oil-products-grid .oil-product-list {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  @media (max-width: 767.9px) {
    .oil-services-section .oil-products-grid .oil-product-list {
      grid-template-columns: repeat(1, 1fr) !important;
    }
  }

  .training-development-section .oil-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }

  @media (max-width: 767.9px) {
    .training-development-section .oil-products-grid {
      grid-template-columns: repeat(1, 1fr) !important;
    }
  }

  @media (max-width: 767.9px) {
    #page-portfolio2 .portfolio-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  @media (min-width: 768px) and (max-width: 1199.9px) {
    #page-portfolio2 .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1200px) {
    #page-portfolio2 .portfolio-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  #page-portfolio2 .portfolio-grid .card-img {
    border-radius: 10px;
  }

  #page-portfolio2 .portfolio-grid .card-img img {
    border-radius: 10px;
  }

  #page-portfolio2 .portfolio-grid .card-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }

  #page-portfolio2 .portfolio-grid .card-links>button {
    justify-content: center;
    background-color: #1d4ed8;
    color: #fff;
    padding: 7px;
    margin-bottom: 8px;
    transition: 0.3s;
    border-radius: 3px;
  }

  #page-portfolio2 .portfolio-grid .card-links>button:last-child {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
  }

  #page-portfolio2 .portfolio-grid .card-links>button:first-child:hover {
    background-color: #183da1;
  }

  #page-portfolio2 .portfolio-grid .card-links>button:last-child:hover {
    background-color: rgb(190, 190, 190);
  }

  #page-portfolio2 .portfolio-grid .card-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
  }

  #page-portfolio2 .portfolio-grid .card-info span:last-child {
    color: #0447ff;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   INNER DETAIL TABS
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .dtab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
  }

  .dtab-tag {
    background: #f0f4f8;
    color: #334155;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
  }

  .dtab-progress-wrap {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 16px 0 0;
  }

  .dtab-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .dtab-progress-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dtab-pct {
    color: #1e40af;
    font-weight: 700;
    font-size: 14px;
  }

  .dtab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8edf2;
    margin: 24px 0 0;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dtab-nav::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

  .dtab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    margin-bottom: -2px;
    white-space: nowrap;
    transition:
      color 0.2s,
      border-color 0.2s;
  }

  .dtab-btn:hover {
    color: #1e3a5f;
  }

  .dtab-btn.active {
    color: #1e3a5f;
    border-bottom-color: #1e3a5f;
    font-weight: 600;
  }

  .dtab-panel {
    display: none;
    padding-top: 8px;
  }

  .dtab-panel.active {
    display: block;
  }

  .dtab-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0 12px;
  }

  .dtab-sum-card {
    background: #f8fafc;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 16px 18px;
  }

  .dtab-sum-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }

  .dtab-sum-value {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
  }

  .dtab-roi {
    color: #1e40af;
  }

  .dtab-inv-table {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .dtab-inv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
  }

  .dtab-inv-row:last-child {
    border-bottom: none;
  }

  .dtab-inv-label {
    color: #64748b;
    font-weight: 500;
  }

  .dtab-inv-val {
    color: #1e293b;
    font-weight: 600;
    text-align: right;
  }

  .dtab-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px 0 24px;
  }

  .dtab-cta-row .btn {
    flex: 1;
    min-width: 180px;
    text-align: center;
    justify-content: center;
  }

  /* Team tab */
  .team-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
  }

  .team-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    padding: 20px 22px;
  }

  .team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .team-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
  }

  .team-role {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
  }

  .team-bio {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
  }

  /* Documents tab */
  .docs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }

  .doc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    padding: 14px 18px;
  }

  .doc-icon {
    font-size: 22px;
    color: #e03131;
    flex-shrink: 0;
  }

  .doc-info {
    flex: 1;
    min-width: 0;
  }

  .doc-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .doc-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
  }

  .doc-dl-btn {
    background: #f0f4f8;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .doc-dl-btn:hover {
    background: #dbeafe;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .dtab-summary-grid {
      grid-template-columns: 1fr;
    }

    .dtab-btn {
      padding: 10px 12px;
      font-size: 13px;
    }

    .dtab-cta-row {
      flex-direction: column;
    }
  }

  .investment-section {
    background: #f9f9f9d6;
    padding: 80px 0 0;
  }

  .cap-home .strategies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  @media (max-width: 767.9px) {
    .cap-home .strategies-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    #cap-home .ind-header__title,
    #cap-home .ind-header__subtitle {
      width: 100% !important;
    }
  }

  @media (min-width: 768px) and (max-width: 1199.9px) {
    .cap-home .strategies-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   Investment Strategies Ã¢â‚¬â€ Strategy Tabs
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  /* Tab nav bar */
  .inv-strat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 0;
  }

  .inv-strat-tab {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 7px 7px 0 0;
    padding: 9px 18px;
    font-size: 0.83rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition:
      background 0.18s,
      color 0.18s,
      border-color 0.18s,
      transform 0.15s;
    font-family: inherit;
    flex: 1;
  }

  @media (max-width: 767.9px) {
    .inv-strat-tab {
      min-width: 25%;
    }
  }

  @media (min-width: 768px) and (max-width: 1199.9px) {
    .inv-strat-tab {
      min-width: 20%;
    }
  }

  .inv-strat-tab:hover {
    background: #eff4ff;
    border-color: #c7d8ff;
    color: #3366ff;
    transform: translateY(-1px);
  }

  .inv-strat-tab.active {
    background: #3366ff;
    border-color: #3366ff;
    color: #fff;
    box-shadow: 0 4px 14px rgba(51, 102, 255, 0.28);
  }

  /* Panels */
  .inv-strat-panel {
    display: none;
  }

  .inv-strat-panel.active {
    display: block;
  }

  /* Strategy header with stats */
  .inv-strat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .inv-strat-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #3366ff;
    margin-bottom: 8px;
  }

  /* Stats cluster */
  .inv-strat-stats {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    flex-wrap: wrap;
  }

  .inv-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    flex: 1;
  }

  .inv-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .inv-stat-label {
    font-size: 0.71rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
  }

  /* "Our Approach" subheading */
  .inv-approach-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
  }

  /* Icon inside feat-card */
  .inv-card-icon {
    font-size: 18px;
    color: #3366ff;
    margin-bottom: 12px;
    display: block;
  }

  /* Fund highlight bar */
  .inv-fund-highlight {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #f0f4ff;
    border: 1px solid #c7d8ff;
    border-radius: 8px;
    padding: 14px 24px;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  .inv-fund-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
  }

  .inv-fund-size {
    font-size: 1.15rem;
    font-weight: 800;
    color: #3366ff;
    letter-spacing: -0.01em;
  }

  /* Responsive */
  @media (max-width: 767.9px) {
    .inv-strat-header {
      flex-direction: column;
      gap: 20px;
    }

    .inv-strat-stats {
      width: 100%;
      justify-content: space-between;
    }

    .inv-stat-item {
      flex: 1;
      min-width: 45%;
    }

    .inv-strat-nav {
      gap: 6px;
    }

    .inv-strat-tab {
      padding: 7px 12px;
      font-size: 0.78rem;
    }
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Page wrapper Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-wrapper {
    padding: 40px 0 80px;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       SIDEBAR
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-sidebar {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 0 16px;
    position: sticky;
    top: 24px;
  }

  .partners-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
  }

  .partners-sidebar__brand .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
  }

  .partners-sidebar__brand span {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1.6px;
    text-transform: uppercase;
  }

  .partners-sidebar__title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 20px 10px;
  }

  .partners-sidebar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    cursor: pointer;
    transition:
      background 0.18s,
      color 0.18s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
  }

  .partners-sidebar__item i.icon {
    font-size: 14px;
    color: #94a3b8;
    width: 18px;
    flex-shrink: 0;
    transition: color 0.18s;
  }

  .partners-sidebar__item .arrow {
    margin-left: auto;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.18s;
    color: inherit;
  }

  .partners-sidebar__item:hover {
    background: var(--section-bg);
    color: var(--blue);
  }

  .partners-sidebar__item:hover i.icon {
    color: var(--blue);
  }

  .partners-sidebar__item.active {
    background: var(--blue);
    background: var(--primary-new);
    color: #fff;
  }

  .partners-sidebar__item.active i.icon {
    color: #fff;
  }

  .partners-sidebar__item.active .arrow,
  .partners-sidebar__item:hover .arrow {
    opacity: 1;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       TAB PANELS
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-page .tab-panel {
    display: none;
  }

  .partners-page .tab-panel.active {
    display: block;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Shared card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .tpg-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 30px;
    height: 100%;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Page hero block Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .page-hero {
    border-radius: var(--radius);
    padding: 40px 36px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .partners-page .page-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    display: block;
  }

  .partners-page .page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(26, 58, 92, 0.88) 0%,
        rgba(26, 79, 214, 0.75) 100%);
    background: linear-gradient(135deg,
        rgba(40, 68, 125, 0.9) 0%,
        rgb(10 22 43) 100%);
    z-index: -1;
  }

  .partners-page .page-hero::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
  }

  .partners-page .page-hero__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 14px;
    margin-bottom: 14px;
  }

  .partners-page .page-hero h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #fff;
  }

  .partners-page .page-hero p {
    font-size: 14.5px;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #a5a9af;
  }

  .partners-page .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--blue);
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.18s;
  }

  .partners-page .btn-hero:hover {
    opacity: 0.9;
    color: var(--blue-dark);
  }

  .partners-page .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s;
  }

  .partners-page .btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Section titles Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
    text-align: center;
  }

  .partners-page .section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 8px;
  }

  .partners-page .section-subtitle {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px !important;
    text-align: center !important;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Feature card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .feat-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 22px;
    height: 100%;
    transition:
      box-shadow 0.2s,
      transform 0.2s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .partners-page .feat-card:hover {
    box-shadow: 0 8px 28px rgba(51, 102, 255, 0.1);
    transform: translateY(-2px);
  }

  .partners-page .feat-card__icon {
    min-width: 44px;
    max-width: 50px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    margin-bottom: 14px;
  }

  .partners-page .feat-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
  }

  .partners-page .feat-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA strip Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .cta-strip {
    background: linear-gradient(135deg, var(--cta-bg) 0%, var(--cta-bg-2) 100%);
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .partners-page #tab-consulting .cta-strip {
    justify-content: center;
  }

  .partners-page .cta-strip h3 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
  }

  .partners-page .cta-strip p {
    font-size: 13.5px;
    color: #94a3b8;
  }

  .partners-page .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s;
    flex-shrink: 0;
  }

  .partners-page .btn-cta:hover {
    background: var(--blue-light);
    color: #fff;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       CONSULTING PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-page .consulting-grid .feat-card__icon {
    background: #eff6ff;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       MEMBERSHIP PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-page .membership-cards .mem-card {
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    height: 100%;
    transition:
      box-shadow 0.2s,
      transform 0.2s;
  }

  .partners-page .membership-cards .mem-card:hover {
    box-shadow: 0 8px 28px rgba(51, 102, 255, 0.1);
    transform: translateY(-3px);
  }

  .partners-page .membership-cards .mem-card.featured {
    border-color: var(--blue);
    box-shadow: 0 4px 24px rgba(51, 102, 255, 0.18);
  }

  .partners-page .mem-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 40px;
  }

  .partners-page .mem-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .partners-page .mem-card__price {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-2);
    line-height: 1;
    margin-bottom: 2px;
  }

  .partners-page .mem-card__price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
  }

  .partners-page .mem-card__desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    margin-top: 8px;
  }

  .partners-page .mem-card__list {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    padding: 0 10px;
  }

  .partners-page .mem-card__list li {
    font-size: 13.5px;
    color: var(--text);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-bottom: 1px solid var(--border);
  }

  .partners-page .mem-card__list li:last-child {
    border-bottom: none;
  }

  .partners-page .mem-card__list li i {
    color: var(--blue);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .partners-page .btn-mem {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
      background 0.18s,
      color 0.18s;
  }

  .partners-page .btn-mem-primary {
    background: var(--blue);
    background: var(--primary-new);
    color: #fff;
    border: none;
  }

  .partners-page .btn-mem-primary:hover {
    background: var(--blue-light);
    color: #fff;
  }

  .partners-page .btn-mem-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
  }

  .partners-page .btn-mem-outline:hover {
    background: var(--blue);
    color: #fff;
  }

  /* Standard features */
  .partners-page .std-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }

  .partners-page .std-feat:last-child {
    border-bottom: none;
  }

  .partners-page .std-feat__icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 16px;
    flex-shrink: 0;
  }

  .partners-page .std-feat h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 3px;
  }

  .partners-page .std-feat p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       INCENTIVE PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-page .commission-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, #1e55a8 100%);
    background: linear-gradient(135deg, rgba(40, 68, 125, 0.9) 0%, rgb(10 22 43) 100%);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .partners-page .commission-highlight .rate {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
  }

  .partners-page .commission-highlight .rate-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.75;
    margin-bottom: 6px;
  }

  .partners-page .commission-highlight .rate-desc {
    font-size: 13.5px;
    opacity: 0.75;
    font-style: italic;
    max-width: 400px;
    margin: 10px auto 0;
  }

  .partners-page .step-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .partners-page .step-num {
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }

  .partners-page .step-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
  }

  .partners-page .step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
  }

  .partners-page .incentive-pillar {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .partners-page .incentive-pillar__icon {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 17px;
    flex-shrink: 0;
  }

  .partners-page .incentive-pillar h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 5px;
  }

  .partners-page .incentive-pillar p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       CONTACT PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-page .contact-form-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 30px;
  }

  .partners-page .form-group-tpg {
    margin-bottom: 18px;
  }

  .partners-page .form-group-tpg label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
  }

  .partners-page .form-group-tpg input,
  .partners-page .form-group-tpg textarea,
  .form-group-tpg select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.18s;
  }

  .partners-page .form-group-tpg input:focus,
  .partners-page .form-group-tpg textarea:focus {
    border-color: var(--blue);
    background: #fff;
  }

  .partners-page .form-group-tpg textarea {
    resize: vertical;
    min-height: 110px;
  }

  .partners-page .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--blue);
    background: var(--primary-new);
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.18s;
  }

  .partners-page .btn-submit:hover {
    background: var(--blue-light);
  }

  .partners-page .contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    padding: 22px 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .partners-page .contact-info-card__icon {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 16px;
  }

  .partners-page .contact-info-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
  }

  .partners-page .contact-info-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-2);
  }

  .partners-page .presence-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4fd6 100%);
    background: linear-gradient(135deg, rgba(40, 68, 125, 0.9) 0%, rgb(10 22 43) 100%);
    border-radius: var(--radius);
    padding: 24px 24px;
    color: #fff;
  }

  .partners-page .presence-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .partners-page .presence-card p {
    font-size: 13.5px;
    opacity: 0.8;
    line-height: 1.65;
    margin-bottom: 16px !important;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       HOME PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .partners-page .home-service-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 20px 20px;
    height: 100%;
    transition:
      box-shadow 0.2s,
      transform 0.2s;
  }

  .partners-page .home-service-card:hover {
    box-shadow: 0 8px 28px rgba(51, 102, 255, 0.1);
    transform: translateY(-2px);
  }

  .partners-page .home-service-card__icon {
    width: 42px;
    height: 42px;
    background: var(--accent-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 17px;
    margin-bottom: 12px;
  }

  .partners-page .home-service-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 6px;
  }

  .partners-page .home-service-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .partners-page .home-service-card a {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .partners-page .home-service-card a:hover {
    color: var(--blue-dark);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Platform Promo Ã¢â‚¬â€ new two-column layout Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .platform-promo {
    background: linear-gradient(135deg, var(--primary) 0%, #1a4fd6 100%);
    background: linear-gradient(135deg,
        rgba(40, 68, 125, 0.9) 0%,
        rgb(10 22 43) 100%);
    border-radius: var(--radius);
    padding: 40px 36px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  @media (max-width: 1399.9px) {
    .partners-page .platform-promo {
      grid-template-columns: 1fr;
    }
  }

  .partners-page .platform-promo::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
  }

  /* LEFT side */
  .partners-page .platform-promo__left {
    display: flex;
    flex-direction: column;
  }

  .partners-page .platform-promo__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 4px 13px;
    margin-bottom: 18px;
    width: fit-content;
  }

  .partners-page .platform-promo__heading {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px !important;
    letter-spacing: -0.01em;
  }

  .partners-page .platform-promo__desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 24px !important;
  }

  /* two small cards row */
  .partners-page .platform-promo__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .partners-page .platform-promo__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .partners-page .platform-promo__card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(51, 102, 255, 0.5);
  }

  .partners-page .platform-promo__card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px !important;
  }

  .partners-page .platform-promo__card p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    margin-bottom: 0 !important;
    flex: 1;
  }

  .partners-page .platform-promo__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    padding: 8px 14px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .partners-page .platform-promo__card-btn:hover {
    border-color: var(--blue);
    background: rgba(51, 102, 255, 0.15);
    color: #fff;
    text-decoration: none;
  }

  /* RIGHT side Ã¢â‚¬â€ image card */
  .partners-page .platform-promo__right {
    position: relative;
  }

  .partners-page .platform-promo__img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  }

  .partners-page .platform-promo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .partners-page .platform-promo__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(5, 8, 18, 0.9) 0%, transparent 100%);
  }

  .partners-page .platform-promo__img-label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px !important;
  }

  .partners-page .platform-promo__img-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 !important;
  }

  /* responsive */
  @media (max-width: 767px) {
    .partners-page .platform-promo {
      grid-template-columns: 1fr;
      padding: 28px 20px;
    }

    .partners-page .platform-promo__img-card {
      height: 220px;
    }
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Our Commitment section Ã¢â€â‚¬Ã¢â€â‚¬ */
  .partners-page .our-commitment {
    /* background: var(--section-bg); */
    padding: 10px 0;
    /* margin-top: 10px; */
  }

  .partners-page .our-commitment__inner {
    background: #fff;
    border-radius: var(--radius);
    padding: 52px 48px;
    text-align: center;
    box-shadow: var(--shadow);
  }

  .partners-page .our-commitment__heading {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .partners-page .our-commitment__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 30px !important;
  }

  .partners-page .our-commitment__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .partners-page .btn-commitment-solid {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue);
    background: var(--primary-new);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 7px;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
      background 0.2s,
      transform 0.15s;
  }

  .partners-page .btn-commitment-solid:hover {
    background: #1e293b;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
  }

  .partners-page .btn-commitment-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: #1e293b;
    border: 1.5px solid #cbd5e1;
    padding: 11px 26px;
    border-radius: 7px;
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .partners-page .btn-commitment-outline:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #1e293b;
    text-decoration: none;
  }

  @media (max-width: 575px) {
    .partners-page .our-commitment__inner {
      padding: 36px 20px;
    }

    .partners-page .our-commitment__btns {
      flex-direction: column;
      align-items: center;
    }
  }

  /* spacing helpers */
  .partners-page .mb-20 {
    margin-bottom: 20px;
  }

  .partners-page .mb-24 {
    margin-bottom: 24px;
  }

  .partners-page .mb-28 {
    margin-bottom: 28px;
  }

  .partners-page .tab-panel .section-title {
    margin-top: 10px !important;
    position: relative;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .partners-page .tab-panel .section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-top: 7px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }

  .partners-page .bg-section {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 30px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ TOP HEADER Ã¢â€â‚¬Ã¢â€â‚¬ */
  .portal-header {
    background: var(--navy);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    /* margin-top: 118px;  */
  }

  .portal-header .logo-box {
    width: 38px;
    height: 38px;
    background: var(--blue2-mid);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }

  .portal-header .brand-text h1 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .portal-header .brand-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ STEPPER Ã¢â€â‚¬Ã¢â€â‚¬ */
  .stepper-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 40px;
  }

  .stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  @media (max-width: 575px) {
    .stepper {
      flex-wrap: wrap;
      gap: 10px;
    }

    .step-connector {
      display: none;
    }
  }

  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
  }

  /* connector line sits between icons with a gap on each side */
  .step-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-top: 17px;
    /* align with center of 36px icon */
    transition: background 0.3s;
  }

  .step-connector.done {
    background: var(--blue2-mid);
  }

  .step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.25s;
  }

  .step-item.active .step-icon {
    background: var(--blue2-mid);
    border-color: var(--blue2-mid);
    color: #fff;
  }

  .step-item.done .step-icon {
    background: var(--blue2-mid);
    border-color: var(--blue2-mid);
    color: #fff;
  }

  .step-label {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
  }

  .step-item.active .step-label {
    color: var(--blue2-mid);
    font-weight: 600;
  }

  .step-item.done .step-label {
    color: var(--blue2-mid);
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ MAIN CONTENT Ã¢â€â‚¬Ã¢â€â‚¬ */
  /* The form tag itself needs full width so form-card inside can stretch */
  form#regForm {
    width: 100%;
    max-width: 1000px;
  }

  /* Success page card Ã¢â‚¬â€ same width as form */
  #pageSuccess {
    width: 100%;
    max-width: 1000px;
  }

  .main-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 40px 56px;
  }

  @media (max-width: 768px) {
    .portal-header {
      padding: 14px 20px;
    }

    .main-content {
      padding: 28px 20px 40px;
    }

    .summary-grid {
      grid-template-columns: 1fr !important;
      gap: 20px;
    }
  }

  .form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(26, 52, 97, 0.08);
    /* padding: 48px 56px; */
    padding: 40px;
    width: 100%;
    max-width: 1000px;
  }

  .step-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .step-badge .num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue2-mid);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-badge .lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .form-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }

  .form-card .subtitle {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 28px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ FORM FIELDS Ã¢â€â‚¬Ã¢â€â‚¬ */
  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 10px;
  }

  .field-row.full {
    grid-template-columns: 1fr;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .field-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
  }

  .field-group label .req {
    color: #e53e3e;
    margin-left: 2px;
  }

  .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-wrap .inp-icon {
    position: absolute;
    left: 13px;
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
  }

  .input-wrap input,
  .input-wrap select {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 40px !important;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--input-bg);
    outline: none;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
  }

  /* select: custom arrow + enough right padding so text doesn't touch it */
  .input-wrap select {
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
  }

  .input-wrap input:focus,
  .input-wrap select:focus {
    border-color: var(--blue2-mid);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background-color: #fff;
  }

  .input-wrap input.is-invalid,
  .input-wrap select.is-invalid {
    border-color: #e53e3e;
  }

  .input-wrap input::placeholder {
    color: #a0aec0;
  }

  .field-error {
    font-size: 12px;
    color: #e53e3e;
    display: none;
    margin-top: 3px;
  }

  .field-error.show {
    display: block;
  }

  /* password eye toggle */
  .input-wrap .eye-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 14px;
    padding: 0;
    height: 44px;
    display: flex;
    align-items: center;
  }

  /* input with eye button: right padding so text clears the icon */
  .input-wrap:has(.eye-btn) input {
    padding-right: 38px;
  }

  .pw-strength {
    margin-top: 8px;
  }

  .pw-strength-bar {
    height: 4px;
    display: flex;
    gap: 4px;
  }

  .pw-strength-bar span {
    flex: 1;
    border-radius: 4px;
    background: var(--border);
    transition: background 0.25s;
  }

  /* Bar colors */
  .pw-strength-bar span.weak {
    background: #ef4444;
  }

  .pw-strength-bar span.fair {
    background: #f97316;
  }

  .pw-strength-bar span.moderate {
    background: #f59e0b;
  }

  .pw-strength-bar span.strong {
    background: #22c55e;
  }

  /* Label */
  .pw-strength-label {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
  }

  .lbl-weak {
    color: #ef4444;
  }

  .lbl-fair {
    color: #f97316;
  }

  .lbl-moderate {
    color: #f59e0b;
  }

  .lbl-strong {
    color: #22c55e;
  }

  /* no-icon inputs */
  .input-plain input,
  .input-plain select {
    padding-left: 14px !important;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ SECTOR BUTTONS (Step 4) Ã¢â€â‚¬Ã¢â€â‚¬ */
  .sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }

  .sector-btn {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    padding: 14px 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    text-align: center;
    transition:
      border-color 0.2s,
      background 0.2s,
      color 0.2s;
  }

  .sector-btn:hover {
    border-color: var(--blue2-mid);
    color: var(--blue2-mid);
  }

  .sector-btn.selected {
    border-color: var(--blue2-mid);
    background: var(--blue2-light);
    color: var(--blue2-mid);
    font-weight: 600;
  }

  .sector-divider {
    font-size: 13px;
    color: var(--muted);
    margin: 12px 0 8px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ PRODUCTS step 5 Ã¢â€â‚¬Ã¢â€â‚¬ */
  .products-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .prod-panel {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .prod-panel-header {
    background: var(--navy);
    color: #fff;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .prod-panel-header .badge-count {
    background: var(--blue2-mid);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .prod-panel-body {
    background: #fff;
    min-height: 260px;
    max-height: 340px;
    overflow-y: auto;
  }

  /* category accordion */
  .cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue2-mid);
    border-bottom: 1px solid var(--border);
    user-select: none;
  }

  .cat-header:hover {
    background: var(--blue2-light);
  }

  .cat-header i {
    font-size: 12px;
    transition: transform 0.2s;
  }

  .cat-header.open i {
    transform: rotate(180deg);
  }

  .cat-items {
    display: none;
  }

  .cat-items.open {
    display: block;
  }

  /* available item row */
  .prod-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 10px 26px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.15s;
  }

  .prod-item:hover:not(.selected) {
    background: #f0f6ff;
  }

  /* item already selected Ã¢â€ â€™ strikethrough + muted + no-entry icon */
  .prod-item.selected {
    color: #94a3b8;
    text-decoration: line-through;
    cursor: default;
    background: #fafafa;
  }

  .prod-item .add-btn {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #bfdbfe;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue2-mid);
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    transition:
      border-color 0.15s,
      color 0.15s;
  }

  .prod-item:hover:not(.selected) .add-btn {
    border-color: var(--blue2-mid);
    background: var(--blue2-light);
  }

  .prod-item.selected .add-btn {
    border-color: #e2e8f0;
    color: #cbd5e1;
    font-size: 13px;
    /* show a block symbol */
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ selected panel Ã¢â€â‚¬Ã¢â€â‚¬ */
  .sel-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 260px;
    color: #cbd5e1;
    font-size: 13px;
    gap: 8px;
  }

  .sel-empty i {
    font-size: 30px;
  }

  /* each selected item: bordered row with Ãƒâ€” on right Ã¢â‚¬â€ matches screenshot */
  .sel-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 10px;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: #fff;
    transition: border-color 0.15s;
  }

  .sel-tag:hover {
    border-color: #fca5a5;
  }

  .sel-tag button {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1;
    padding: 0 2px;
    flex-shrink: 0;
    transition: color 0.15s;
  }

  .sel-tag button:hover {
    color: #e53e3e;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ BUTTONS Ã¢â€â‚¬Ã¢â€â‚¬ */
  .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
  }

  .actions.end {
    justify-content: flex-end;
  }

  .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    text-decoration: none;
    transition:
      border-color 0.2s,
      background 0.2s;
  }

  .btn-back:hover {
    border-color: var(--blue2-mid);
    color: var(--blue2-mid);
    background: var(--blue2-light);
  }

  .btn-next,
  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 26px;
    border-radius: var(--radius);
    background: var(--navy);
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-next:hover,
  .btn-submit:hover {
    background: var(--blue2-mid);
  }

  .btn-next i,
  .btn-submit i {
    font-size: 13px;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ SUCCESS PAGE Ã¢â€â‚¬Ã¢â€â‚¬ */
  .success-wrap {
    text-align: center;
    padding: 10px 0 20px;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .success-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .success-wrap p {
    font-size: 14px;
    color: var(--muted);
  }

  .summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0;
    text-align: left;
  }

  .sum-card {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
  }

  .sum-card .sum-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }

  .sum-card .sum-title i {
    color: var(--blue2-mid);
  }

  .sum-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
  }

  .sum-card span {
    font-size: 13px;
    color: var(--blue2-mid);
  }

  .confirm-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .confirm-box i {
    color: var(--blue2-mid);
    margin-top: 1px;
    flex-shrink: 0;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
  .portal-footer {
    text-align: center;
    padding: 16px;
    font-size: 12.5px;
    color: var(--muted);
  }

  /* hidden */
  .step-page {
    display: none;
  }

  .step-page.active {
    display: block;
  }

  @media (max-width: 600px) {
    .form-card {
      padding: 24px 18px;
      max-width: 100%;
    }

    .field-row {
      grid-template-columns: 1fr;
    }

    .sector-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .products-layout {
      grid-template-columns: 1fr;
    }

    .stepper-wrap {
      padding: 12px 16px;
      overflow-x: auto;
    }

    .step-label {
      font-size: 9.5px;
    }
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Override call-style.css conflicts Ã¢â€â‚¬Ã¢â€â‚¬ */
  .btn-submit {
    width: auto !important;
  }

  body:not(:has(.about-hero)):not(:has(.main-hero)) .fixed-nav {
    background: #f8fafc !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1100 !important;
  }

  body:not(:has(.about-hero)):not(:has(.main-hero)) .menu>ul>li>a,
  body:not(:has(.about-hero)):not(:has(.main-hero)) .hide-sm a {
    color: #162d58 !important;
  }

  body:not(:has(.about-hero)):not(:has(.main-hero)) .menu>ul>li>a:hover,
  body:not(:has(.about-hero)):not(:has(.main-hero)) .hide-sm a:hover {
    color: #03a9f4 !important;
  }

  .modern-text-wrapper {
    /* max-width: 850px; */
    margin: 20px;
    padding: 50px 25px 0px;
    text-align: left;
  }

  .modern-text-wrapper span {
    cursor: auto !important;
  }

  .editorial-lead {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    /* border-left: 4px solid #3b82f6; */
  }


  .accent-glow {
    color: #3b82f6;
    font-weight: 700;
  }


  .editorial-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #64748b;
    padding-left: 20px;
    margin: 0;
  }

  .logo-slider-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    padding: 20px 10px;
    user-select: none;
  }

  .logo-slider-track::-webkit-scrollbar {
    display: none;
  }

  .logo-slider-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }

  .logo-slider-track .owel-images {
    flex: 0 0 auto;
    width: calc((100% - 160px) / 5);
    min-width: 120px;
    height: 90px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
  }

  .logo-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .logo-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }

  .logo-slider-dots span.active {
    background: #3366ff;
  }


  /* =========================
   Pin container
========================= */

  .africa,
  .asia,
  .Europe,
  .south-america,
  .north-america,
  .Australia,
  .Middle-East,
  .Russia {
    position: absolute;
    cursor: pointer;
    z-index: 100;
    transition: .3s ease;
  }


  /* =========================
   Icon style
========================= */

  .africa i,
  .asia i,
  .Europe i,
  .south-america i,
  .north-america i,
  .Australia i,
  .Middle-East i,
  .Russia i {
    font-size: 32px !important;
    color: #fff !important;
    transition: .3s ease;
    position: relative;
    z-index: 10;
  }


  /* =========================
   Hover animation
========================= */

  .africa:hover,
  .asia:hover,
  .Europe:hover,
  .south-america:hover,
  .north-america:hover,
  .Australia:hover,
  .Middle-East:hover,
  .Russia:hover {

    transform: translateY(-8px) scale(1.2);
    z-index: 999;
  }


  /* =========================
   Change pin color
========================= */

  .africa:hover i,
  .asia:hover i,
  .Europe:hover i,
  .south-america:hover i,
  .north-america:hover i,
  .Australia:hover i,
  .Middle-East:hover i,
  .Russia:hover i {

    color: #0d6efd !important;
  }

  .fa-location-dot {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 1));
  }

  /* =========================
   Tooltip
========================= */

  .africa::after,
  .asia::after,
  .Europe::after,
  .south-america::after,
  .north-america::after,
  .Australia::after,
  .Middle-East::after,
  .Russia::after {
    position: absolute;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%);
    background: #fff;
    color: #222;
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    text-shadow: none;
  }


  /* =========================
   Names
========================= */

  .africa::after {
    content: "Africa";
  }

  .asia::after {
    content: "Asia";
  }

  .Europe::after {
    content: "Europe";
  }

  .south-america::after {
    content: "South America";
  }

  .north-america::after {
    content: "North America";
  }

  .Australia::after {
    content: "Australia";
  }

  .Middle-East::after {
    content: "Middle East";
  }

  .Russia::after {
    content: "Russia";
  }



  /* =========================
   Show title
========================= */

  .africa:hover::after,
  .asia:hover::after,
  .Europe:hover::after,
  .south-america:hover::after,
  .north-america:hover::after,
  .Australia:hover::after,
  .Middle-East:hover::after,
  .Russia:hover::after {

    opacity: 1;
    visibility: visible;
    bottom: 35px;
  }



  /* =========================
   Active after click
========================= */

  .africa:active i,
  .asia:active i,
  .Europe:active i,
  .south-america:active i,
  .north-america:active i,
  .Australia:active i,
  .Middle-East:active i,
  .Russia:active i {
    color: #ff5722 !important;
    transform: scale(1.3);
  }

  a:focus .africa i,
  a:focus .asia i,
  a:focus .Europe i,
  a:focus .south-america i,
  a:focus .north-america i,
  a:focus .Australia i,
  a:focus .Middle-East i,
  a:focus .Russia i {
    color: #ff5722 !important;
    transform: scale(1.3);
  }

  .col-lg-5 {
    align-self: flex-start;
  }

  section:has(.map) .row.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  section:has(.map) .col-sm-10 {
    width: 100%;
  }

  .editorial-lead,
  .editorial-lead p,
  .editorial-lead span {
    font-weight: 700 !important;
    color: #111827 !important;
    font-family: var(--font-main) !important;
  }

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEWS EDITORIAL SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
  .news-editorial {
    background: #f8fafc;
    padding: var(--padding-sec) 0;
    position: relative;
  }

  .news-editorial__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    padding: 0 24px;
  }

  .news-editorial__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #3366ff;
    margin-bottom: 14px;
  }

  .news-editorial__label::before,
  .news-editorial__label::after {
    content: "";
    width: 24px;
    height: 2px;
    background: #3366ff;
    border-radius: 2px;
  }

  .news-editorial__header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #0f1e3d;
    line-height: 1.25;
  }

  /* â”€â”€ Article block â”€â”€ */
  .news-article {
    max-width: 950px;
    margin: 0 auto 90px;
    padding: 0 24px;
    position: relative;
  }

  .news-article:last-child {
    margin-bottom: 0;
  }

  /* Ø§Ù„Ø±Ù‚Ù… Ø§Ù„ÙƒØ¨ÙŠØ± Ø§Ù„Ø´ÙØ§Ù ÙÙŠ Ø§Ù„Ø®Ù„ÙÙŠØ© */
  .news-article__index {
    position: absolute;
    top: -50px;
    right: 10px;
    font-size: 160px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(51, 102, 255, 0.15);
    z-index: 0;
    user-select: none;
    pointer-events: none;
  }

  .news-article:nth-child(even) .news-article__index {
    right: auto;
    left: 10px;
  }

  .news-article__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }

  .news-article__icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: #0a162b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
  }

  .news-article__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3366ff;
    margin-bottom: 4px;
  }

  .news-article__title {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    color: #0f1e3d;
    line-height: 1.3;
  }

  /* ØµÙˆØ±Ø© Ø¹Ø§Ø¦Ù…Ø© Ø¬ÙˆÙ‡ Ø§Ù„Ù†Øµ */
  .news-article__body {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.95;
  }

  .news-article__float-img {
    float: left;
    width: 300px;
    margin: 4px 28px 16px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 30, 61, 0.15);
  }

  .news-article:nth-child(even) .news-article__float-img {
    float: right;
    margin: 4px 0 16px 28px;
  }

  .news-article__float-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }

  /* Drop cap Ù„Ù„Ø­Ø±Ù/Ø§Ù„ÙƒÙ„Ù…Ø© Ø§Ù„Ø£ÙˆÙ„Ù‰ */
  .news-article__body p:first-of-type::first-letter {
    font-size: 3.4rem;
    font-weight: 800;
    color: #3366ff;
    float: left;
    line-height: 0.8;
    margin: 6px 8px 0 0;
    font-family: var(--font-main);
  }

  .news-article__body p {
    margin-bottom: 16px;
  }

  .news-article__body p:last-child {
    margin-bottom: 0;
  }

  /* ÙØ§ØµÙ„ Ø²Ø®Ø±ÙÙŠ Ø¨ÙŠÙ† Ø§Ù„Ù…Ù‚Ø§Ù„Ø§Øª */
  .news-article+.news-article::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3366ff, transparent);
    border-radius: 3px;
    margin: 0 auto 90px;
    position: relative;
    top: -90px;
  }

  /* clearfix Ø¹Ø´Ø§Ù† Ø§Ù„Ù€ float */
  .news-article::after {
    content: "";
    display: table;
    clear: both;
  }

  /* â”€â”€ Responsive â”€â”€ */
  @media (max-width: 768px) {
    .news-article__index {
      font-size: 100px;
      top: -30px;
    }

    .news-article__float-img,
    .news-article:nth-child(even) .news-article__float-img {
      float: none;
      width: 100%;
      margin: 0 0 20px;
    }

    .news-article__body p:first-of-type::first-letter {
      font-size: 2.6rem;
    }
  }

  @media (max-width: 576px) {
    .news-editorial {
      padding: 60px 0;
    }

    .news-article {
      margin-bottom: 60px;
    }

    .news-article__top {
      gap: 12px;
    }

    .news-article__icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      font-size: 16px;
    }
  }

  body:not(:has(.about-hero)):not(:has(.main-hero)) .logo {
    filter: brightness(0) saturate(100%) invert(18%) sepia(35%) saturate(1200%) hue-rotate(180deg);
  }

  /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INDUSTRY INSIGHTS SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
  .insights-section {
    padding: 20px 0;
    background: #fff;
    margin-bottom: 20px;
  }

  .insights-section__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
    padding: 0 24px;
  }

  .insights-section__header h2 {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 800;
    color: #0f1e3d;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
  }

  .insights-section__header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: #3366ff;
    border-radius: 3px;
  }

  .insights-section__header p {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 6px;
  }

  /* card */
  .insights-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 48px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 30, 61, 0.04);
  }

  .insights-card__title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 32px;
  }

  .insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    row-gap: 28px;
  }

  .insight-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f1e3d;
    margin-bottom: 8px;
  }

  .insight-item p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
  }

  /* footer note */
  .insights-section__note {
    max-width: 750px;
    margin: 28px auto 0;
    padding: 0 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
  }

  /* â”€â”€ Responsive â”€â”€ */
  @media (max-width: 768px) {
    .insights-card {
      padding: 32px 24px;
    }

    .insights-grid {
      grid-template-columns: 1fr;
      row-gap: 24px;
    }
  }

  @media (max-width: 576px) {
    .insights-section {
      padding: 50px 0;
    }

    .insights-card {
      margin: 0 16px;
      padding: 28px 20px;
    }
  }

  .hero__container span {
    cursor: auto !important;
  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â Support page additions Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
  .support-hero {
    text-align: center;
    padding: 10px !important;
    min-height: 20vh !important;
  }

  .support-hero .hero-inner {
    margin: 0 auto;
    max-width: 700px;
  }

  .support-search {
    max-width: 520px;
    margin: 0 auto 28px;
    position: relative;
  }

  .support-search input {
    width: 100%;
    padding: 14px 20px 14px 46px;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .support-search input:focus {
    outline: none;
    border-color: var(--accent);
  }

  .support-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
  }

  .support-search-results {
    max-width: 520px;
    margin: -14px auto 20px;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
  }

  .support-search-results.show {
    display: block;
  }

  .support-search-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text);
    transition: background 0.15s;
  }

  .support-search-result:last-child {
    border-bottom: none;
  }

  .support-search-result:hover {
    background: var(--bg);
  }

  .support-search-result .cat-chip {
    font-size: 11px;
    color: var(--muted);
    flex-shrink: 0;
  }

  .support-search-empty {
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--muted);
  }

  .support-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .support-resource-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .support-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 99px;
    /* margin-bottom: 24px; */
    transition: background 0.15s, color 0.15s;
  }

  .support-back-link:hover {
    background: var(--bg);
    color: var(--primary);
  }

  .support-cat-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 8px;
  }

  .support-cat-header .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 13px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    background: var(--primary-new);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .support-cat-header .icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  .support-cat-header h1 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
  }

  .support-cat-header p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 0;
  }

  .support-cat-meta {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 12.5px;
    margin: 14px 2px 22px;
  }

  .support-cat-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: auto !important;
  }

  .article-icon-blue {
    color: var(--accent) !important;
  }

  .support-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .support-article-meta {
    display: flex;
    gap: 20px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .support-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .support-article-body ol,
  .support-article-body ul {
    margin: 10px 0 20px;
    padding-left: 22px;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.75;
    list-style-type: auto;
  }

  .support-article-body li {
    margin-bottom: 8px;
  }

  .support-article-body p.detail-overview {
    margin-bottom: 16px;
  }

  .support-helpful {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--muted);
  }

  .support-helpful a {
    color: var(--accent) !important;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }

  .support-helpful a:hover {
    text-decoration: underline;
  }

  .ind-sidebar__item small {
    display: block;
    font-weight: 400;
    opacity: 0.7;
    font-size: 11px;
  }

  @media (max-width: 767.9px) {
    .support-cat-header {
      flex-direction: column;
      text-align: center;
    }
  }

  .support-hero h1 {
    margin: 20px 0 !important;
  }

  .support-categories-section {
    padding: 70px 0;
  }

  .support-subtitle {
    text-align: center;
    color: var(--muted);
    margin: 10px 0 40px;
    font-size: 15px;
  }

  .support-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .support-category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 9px 22px 2px;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
  }

  .support-category-card:hover {

    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-color: rgba(37, 99, 235, .2);
  }

  .support-category-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .support-category-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #f3f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    overflow: hidden;
  }

  .support-category-icon img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  .support-category-left h4 {

    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }

  .support-category-left span {

    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
  }

  .support-arrow {
    font-size: 17px;
    color: var(--text);
    transition: .3s;
  }

  .support-category-card:hover .support-arrow {

    transform: translateX(6px);
    color: var(--accent);
  }

  @media(max-width:991px) {

    .support-categories-grid {

      grid-template-columns: repeat(2, 1fr);
    }

  }

  @media(max-width:767px) {

    .support-categories-grid {

      grid-template-columns: 1fr;
    }

  }

  /* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â Browse by Category page (Knowledge Base / Technical Support) Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

  .browse-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .browse-category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
  }

  .browse-category-card:hover {

    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-color: rgba(37, 99, 235, .2);
  }

  .browse-category-media {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #f3f6fb;
  }

  .browse-category-media img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
  }

  .browse-category-card:hover .browse-category-media img {

    transform: scale(1.06);
  }

  .browse-category-body {
    padding: 18px 20px 20px;
  }

  .browse-category-body h4 {

    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text);
  }

  .browse-category-body p {

    margin: 0 0 12px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
  }

  .browse-category-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 12.5px;
  }

  .browse-category-meta span {

    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .browse-category-meta i {

    color: var(--accent);
    font-size: 12px;
  }

  @media(max-width:991px) {

    .browse-categories-grid {

      grid-template-columns: repeat(2, 1fr);
    }

  }

  @media(max-width:767px) {

    .browse-categories-grid {

      grid-template-columns: 1fr;
    }

  }

  .ceo-content strong {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
  }

  .ind-overview div {
    line-height: var(--body-line-height);
    color: var(--muted-color);
  }

  .strategy-card span,
  .strategy-card p {
    line-height: var(--body-line-height);
    color: var(--muted-color);
  }
}

.ind-extra-section .oil-product-card {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  height: 100%;
}

.ind-extra-section .oil-product-card__title {
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.ind-extra-section .oil-product-list {
  flex: 1;
}

.ind-extra-section .oil-product-list li {
  font-size: 0.78rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Fix grids inside 8-col panel (narrower than full page) Ã¢â€â‚¬Ã¢â€â‚¬ */

/* Service cards: 2 cols always inside the panel */
/* .ero-services-section .row>[class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
} */

@media (max-width: 680px) {
  .ero-services-section .row>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Override industries-serve-grid & oil-products-grid: 2 cols inside the panel */
.ind-extra-section .industries-serve-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.ind-extra-section .oil-products-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  padding: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 991.9px) {

  .ind-extra-section .industries-serve-grid,
  .ind-extra-section .oil-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {

  .ind-extra-section .industries-serve-grid,
  .ind-extra-section .oil-products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Target sectors: 3 cols inside the panel */
.target-sectors-section .row>.col-6 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

@media (max-width: 680px) {
  .target-sectors-section .row>.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Target markets: 1 col full-width on small screens, 2 cols on md+ */
@media (max-width: 767px) {
  .ero-target-markets-section .row>[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* @media (min-width: 768px) {
    .ero-target-markets-section .row>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
} */
@media (max-width: 580px) {
  .market-card {
    margin: auto;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢Â PLATFORM PAGE INNER STYLES Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Push content below fixed navbar */
/* .platform-page-wrapper {
  padding-top: 120px;
}

@media (max-width: 991.9px) {
  .platform-page-wrapper {
    padding-top: 60px;
  }
} */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Inner Navbar (Platform tabs) Ã¢â€â‚¬Ã¢â€â‚¬ */
.platform-inner-nav {
  background: #fff;
  border-bottom: 2px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.platform-inner-nav .inner-nav-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.platform-inner-nav .inner-nav-container::-webkit-scrollbar {
  height: 5px;
}

.platform-inner-nav .brand-label {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  padding: 14px 0;
  margin-right: 40px;
}

.platform-inner-nav .tab-links {
  display: flex;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  gap: 2px;
}

@media (min-width: 768px) {
  .platform-inner-nav .tab-links {
    flex-wrap: wrap !important;
  }
}

.platform-inner-nav .tab-links>li {
  flex: 1;
}

.platform-inner-nav .tab-links a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 16px 16px;
  border-bottom: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

@media (max-width: 991.9px) {
  .platform-inner-nav .tab-links a {
    background: #1712ff0d;
  }

  .sec-divider {
    width: 100% !important;
  }
}

.platform-inner-nav .tab-links a:hover {
  color: #1e293b;
  border-bottom-color: #929496;
}

.platform-inner-nav .tab-links a.active {
  color: #3366ff;
  border-bottom-color: #3366ff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tab content visibility Ã¢â€â‚¬Ã¢â€â‚¬ */
.tab-section {
  display: none;
}

.tab-section.active {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Section Divider Ã¢â€â‚¬Ã¢â€â‚¬ */
.sec-divider {
  border: none;
  border-top: 1px solid #9f9f9f;
  margin: auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Page Hero Ã¢â€â‚¬Ã¢â€â‚¬ */
.page-hero {
  text-align: center;
  padding: 72px 40px 60px;
  /* max-width: 860px; */
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-hero p {
  font-size: 0.97rem;
  color: #64748b;
  line-height: 1.75;
  /* max-width: 680px; */
  margin: 0 auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Content Section Ã¢â€â‚¬Ã¢â€â‚¬ */
.content-section {
  padding: 30px 0;
  /* max-width: 1140px; */
  margin: 0 auto;
  /* padding-left: 60px;
  padding-right: 60px; */
}

.section-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  /* max-width: 600px; */
  margin-bottom: 20px !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Feature Cards Ã¢â€â‚¬Ã¢â€â‚¬ */
.feat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.feat-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.feat-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  cursor: default;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.11);
  border-color: rgba(51, 102, 255, 0.25);
}

.feat-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  /* line-height: var(--body-line-height); */
  /* color: var(--muted-color); */
}

.feat-card p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.feat-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.feat-card ul li {
  font-size: 0.82rem;
  color: #64748b;
  padding: 3px 0;
}

.feat-card ul li i {
  color: #3366ff;
  font-size: 14px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tag Pills (region tags) Ã¢â€â‚¬Ã¢â€â‚¬ */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag-pill {
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #334155;
  background: #fff;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.18s;
  cursor: default;
  flex: 1;
  text-align: center;
}

.tag-pill:hover {
  background: #eff4ff;
  border-color: #c7d8ff;
  color: #3366ff;
  transform: translateY(-2px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Category 2-col grid Ã¢â€â‚¬Ã¢â€â‚¬ */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.cat-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #334155;
  background: #fff;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.18s;
  cursor: default;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.cat-item:hover {
  background: #f8faff;
  border-color: #c7d8ff;
  color: #3366ff;
  transform: translateY(-2px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Quote box Ã¢â€â‚¬Ã¢â€â‚¬ */
.quote-box {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 26px 30px;
  background: #f8fafc;
  margin-top: 20px;
}

.quote-box p {
  font-size: 0.87rem;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 12px;
}

.quote-box p:last-child {
  margin-bottom: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ 3-col partner columns Ã¢â€â‚¬Ã¢â€â‚¬ */
.partner-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.partner-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.partner-col p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.65;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CTA Block Ã¢â€â‚¬Ã¢â€â‚¬ */
.cta-block {
  text-align: center;
  padding: 40px;
}

.cta-block h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-block p {
  font-size: 0.93rem;
  color: #64748b;
  /* max-width: 520px; */
  margin: 0 auto 28px !important;
  line-height: 1.7;
}

.cta-block .btn-group-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Buttons Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn-dark-solid {
  background: #0f172a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn-dark-solid:hover {
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.btn-outline-light {
  background: #fff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-outline-light:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  text-decoration: none;
  color: #1e293b;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Home services arrow card Ã¢â€â‚¬Ã¢â€â‚¬ */
.svc-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  /* padding: 24px; */
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.11);
  border-color: rgba(51, 102, 255, 0.25);
  color: inherit;
  text-decoration: none;
}

.svc-card .img-box {
  border-radius: 10px 10px 0 0;
  height: 250px;
}

.svc-card .img-box img {
  border-radius: 10px 10px 0 0;
  height: 100%;
}

.svc-card .container-box {
  padding: 24px;
}

.svc-card .svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.svc-card .svc-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.svc-card .svc-arrow {
  font-size: 1rem;
  color: #94a3b8;
  transition:
    color 0.2s,
    transform 0.2s;
}

.svc-card:hover .svc-arrow {
  color: #3366ff;
  transform: translateX(3px);
}

.svc-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 900px) {

  .feat-grid-3,
  .partner-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .platform-inner-nav {
    top: 0;
  }

  .platform-inner-nav .inner-nav-container {
    padding: 0 12px;
    overflow-x: auto;
  }

  .content-section {
    padding: 40px 20px;
  }

  .feat-grid-3,
  .feat-grid-2,
  .partner-cols {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Platform sidebar sticky on desktop Ã¢â€â‚¬Ã¢â€â‚¬ */
.platform-page-wrapper .industries-page {
  padding-top: 40px;
  padding-bottom: 60px;
}

.platform-sidebar {
  position: sticky;
  top: 20px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tab sections inside right column Ã¢â€â‚¬Ã¢â€â‚¬ */
.platform-page-wrapper .tab-section {
  display: none;
}

.platform-page-wrapper .tab-section.active {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Remove old page-hero top padding since we have sidebar now Ã¢â€â‚¬Ã¢â€â‚¬ */
.platform-page-wrapper .page-hero {
  padding-top: 20px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ On small screens sidebar appears above content Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 991.9px) {
  .platform-page-wrapper .industries-page {
    padding-top: 20px;
  }

  .platform-sidebar {
    position: relative;
    top: 0;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         NAVBAR LAYOUT Ã¢â‚¬â€ tpg-portal page
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* @media (min-width:992px) {
  .tpg-portal-body .container {
    width: 1000px !important;
  }
} */
@media (min-width: 1200px) {
  .tpg-portal-body .container {
    width: 1000px !important;
  }
}

.fixed-nav {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1100 !important;
}

.menu>ul>li>ul,
.signIn-dropdown {
  z-index: 1200 !important;
  display: none !important;
}

body {
  padding-top: 0 !important;
}

/* Compensate for fixed navbar so portal-header is not hidden underneath */
/* Navbar total height ~ 110px (upper-nav ~50px + menu-container ~50px) */
/* .portal-header {
  margin-top: 118px;
} */

/* @media (max-width: 958.9px) {
  .portal-header {
    margin-top: 60px !important;
  }
} */

.portal-nav {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(26, 58, 92, 0.1);
  height: 64px;
  display: flex;
  align-items: center;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Portal nav logo Ã¢â€â‚¬Ã¢â€â‚¬ */
.portal-nav-logo {
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Portal nav links Ã¢â€â‚¬Ã¢â€â‚¬ */
.portal-nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: nowrap;
}

.portal-nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.2s,
    background 0.2s;
  padding: 7px 18px;
  border-radius: 8px;
  white-space: nowrap;
}

.portal-nav-links a:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.portal-nav-links a.active {
  color: #fff !important;
  background: var(--accent) !important;
  font-weight: 600;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         SPACING & SECTIONS
         Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Kill min-height:100vh from new-style.css on the portal hero */
#page-home .hero,
.page .hero {
  min-height: unset !important;
  display: block !important;
  align-items: unset !important;
}

.hero {
  padding: 72px 0 60px !important;
}

.features {
  padding: 60px 0 !important;
}

.cta-section {
  padding: 64px 0 !important;
}

.page-header {
  padding: 56px 0 36px;
}

.portfolio-grid {
  gap: 20px;
  padding-bottom: 56px;
}

.portfolio-card {
  padding: 26px 22px 20px;
}

.card-desc {
  margin-bottom: 20px;
}

.portfolio-cta {
  padding: 56px 32px;
  margin-bottom: 56px;
}

.detail-wrap {
  padding: 40px 0 16px;
}

.section-title {
  margin-top: 44px;
  margin-bottom: 18px;
}

.inv-grid {
  gap: 20px;
  margin-bottom: 12px;
}

.inv-card {
  padding: 24px 26px;
}

.inv-row {
  margin-bottom: 16px;
}

.metrics-grid {
  gap: 16px;
  margin-bottom: 12px;
}

.metric-card {
  padding: 22px 20px;
}

.status-card {
  padding: 24px 26px;
  gap: 40px;
  margin-bottom: 12px;
}

.interest-cta {
  padding: 44px 32px;
  margin: 40px 0 56px;
}

.contact-page {
  padding: 56px 0 72px;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-form-card {
  padding: 40px 44px;
}

.form-row {
  gap: 22px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 22px;
}

.form-divider {
  margin: 28px 0;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         MOBILE  Ã¢â€°Â¤768px
         Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 768px) {
  .fixed-nav .hide-sm {
    display: none !important;
  }

  .portal-nav {
    height: auto;
    min-height: 54px;
    padding: 6px 0;
  }

  .portal-nav-logo {
    font-size: 14px;
  }

  .portal-nav-links {
    gap: 3px;
  }

  .portal-nav-links a {
    font-size: 12.5px;
    padding: 6px 10px;
  }

  .feature-icon {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .hero {
    padding: 48px 0 44px;
  }

  .features {
    padding: 44px 0;
  }

  .cta-section {
    padding: 48px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .page-header {
    padding: 36px 0 24px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .inv-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .status-card {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .detail-title {
    font-size: 24px;
  }

  .detail-image {
    max-height: 155px !important;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
         MOBILE  Ã¢â€°Â¤480px
         Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 480px) {
  .portal-nav-links a {
    padding: 5px 10px;
    font-size: 12.5px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 20px 14px;
  }
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  background: var(--primary-new);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  font-family: inherit;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: #000;
  transform: translateY(-1px);
}

.hero {
  background: linear-gradient(120deg, #e8f0fb 0%, #f0f4ff 60%, #f8fafc 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse at 60% 40%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

.hero-inner {
  margin: 0 20px;
}

.hero h1 {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(36px, 5vw, 52px);
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 18px;
  margin-top: 40px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 18px !important;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.hero-desc {
  color: var(--muted);
  margin-bottom: 12px !important;
  font-size: 14.5px;
}

.hero-desc2 {
  color: var(--muted);
  margin-bottom: 32px !important;
  font-size: 14.5px;
}

#page-home .features {
  padding: 60px 0;
  /* background: var(--white); */
  grid-template-columns: repeat(1, 1fr);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.features-grid div {
  text-align: center;
}

@media (max-width: 991.9px) {
  #page-home .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.9px) {
  #page-home .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-desc {
  color: var(--muted);
  font-size: 13.5px;
}

.cta-section {
  background: var(--bg);
  padding: 64px 0;
  text-align: center;
}

.cta-section h2 {
  /* font-family: "Playfair Display", serif; */
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--muted);
  margin-bottom: 28px !important;
  font-size: 15px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-header {
  padding: 48px 0 32px;
}

.page-header h1 {
  /* font-family: "Playfair Display", serif; */
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 14px;
}

.page-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-bottom: 48px;
}

@media (max-width: 991.9px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.9px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  background: var(--white);
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 102, 255, 0.11);
  border-color: rgba(51, 102, 255, 0.25);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1rem;
  /* font-weight: 800; */
  color: #111827;
  /* margin-bottom: 12px; */
}

.card-category {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.card-desc {
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.portfolio-cta {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 48px;
}

.portfolio-cta h3 {
  /* font-family: "Playfair Display", serif; */
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
}

.portfolio-cta p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 14.5px;
}

.detail-back {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--muted);
  font-size: 13.5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  margin-bottom: 20px;
  transition: color 0.15s;
}

.detail-back:hover {
  color: var(--accent);
}

.detail-wrap {
  padding: 32px 0 0;
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.detail-icon {
  font-size: 32px;
}

.detail-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 32px;
  color: var(--primary);
}

.detail-category {
  color: var(--muted);
  font-size: 14px;
}

.detail-image {
  width: 100%;
  max-height: 380px;
  object-fit: fill;
  border-radius: var(--radius);
  margin-bottom: 36px;
  display: block;
}

.section-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
  margin-top: 36px;
}

.detail-overview {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.75;
}

.inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

@media (max-width: 767.9px) {
  .inv-grid {
    grid-template-columns: 1fr;
  }
}

.inv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.inv-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 14px;
}

.inv-row {
  margin-bottom: 12px;
}

.inv-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.inv-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
}

.metric-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.mv-blue {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.mv-dark {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.status-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.status-left {
  flex: 1;
  min-width: stretch;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label {
  font-size: 12px;
  color: var(--muted);
}

.progress-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.progress-bar-bg {
  background: #e2e8f0;
  border-radius: 99px;
  height: 8px;
}

.progress-bar-fill {
  background: var(--accent);
  border-radius: 99px;
  height: 8px;
}

.risk-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.risk-value {
  font-weight: 600;
  font-size: 14.5px;
}

.interest-cta {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  margin: 32px 0 48px;
}

.interest-cta h3 {
  /* font-family: "Playfair Display", serif; */
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}

.interest-cta p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px !important;
}

.contact-page {
  padding: 48px 0 64px;
}

.contact-header {
  margin-bottom: 36px;
}

.contact-header h1 {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-header p {
  color: var(--muted);
  font-size: 15px;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* padding: 36px 40px; */
}

.form-section-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 20px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 767.9px) {

  .projects-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

.project-checkbox {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color 0.2s,
    background 0.2s;
  user-select: none;
}

.project-checkbox input {
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex: 0;
  margin: 0;
}

.project-checkbox:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.project-icon {
  font-size: 16px;
}

.project-name {
  font-weight: 500;
  font-size: 13px;
  color: var(--primary);
}

.project-cat {
  font-size: 11.5px;
  color: var(--muted);
}

.form-submit {
  margin-top: 28px;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.bank-pargraph h4 {
  color: #002256;
  font-size: 16px;
  height: 55px;
}

.btn:hover {
  transition: 0.3s !important;
}

.btn:active {
  background-color: #193fa7 !important;
  background-color: var(--primary-new) !important;
  color: #fff !important;
}

.metal-services {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  margin-bottom: 10px;
  padding: 0 !important;
}

.metal-services .strategies-grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 0 !important;
  gap: 15px;
}

@media (max-width: 767.9px) {
  .metal-services .strategies-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.metal-services .section-header-main {
  background: #3366ff;
  background: var(--primary-new);
  color: #fff;
  text-align: center;
  padding: 30px;
}

.metal-services .section-header h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.metal-services .section-header p {
  font-size: 0.8rem;
}

.metal-services .section-header-main h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.metal-services .section-header-main p {
  font-size: 0.95rem;
  color: #eee;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.ourServicesSection {
  padding: 32px;
}

.comprehensiveDefense {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px;
  margin-bottom: 24px;
}

/* .bg-icon {
  width:30px;
  height:30px;
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  border-radius: 10px;
} */

.comprehensiveDefense .section-header h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.comprehensiveDefense .section-header p {
  font-size: 0.8rem;
}

.oil-services-section {
  padding: 0 !important;
}

.oil-services-section .container-box {
  padding: 28px 24px;
}

.oil-services-section .section-header-main {
  background: #3366ff;
  color: #fff;
  text-align: center;
  padding: 30px;
}

.oil-services-section .section-header-main h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
}

.oil-services-section .section-header-main p {
  font-size: 0.8rem;
}

.oil-services-section .oil-products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
}

.oil-services-section .oil-products-grid .oil-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px;
}

@media (max-width: 991.9px) {
  .oil-services-section .oil-products-grid .oil-product-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767.9px) {
  .oil-services-section .oil-products-grid .oil-product-list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.training-development-section .oil-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px;
}

@media (max-width: 767.9px) {
  .training-development-section .oil-products-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 767.9px) {
  #page-portfolio2 .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199.9px) {
  #page-portfolio2 .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  #page-portfolio2 .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#page-portfolio2 .portfolio-grid .card-img {
  border-radius: 10px;
  height: 200px;
}

#page-portfolio2 .portfolio-grid .card-img img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
}

#page-portfolio2 .portfolio-grid .card-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

#page-portfolio2 .portfolio-grid .card-links>button {
  justify-content: center;
  background-color: #1d4ed8;
  color: #fff;
  padding: 7px;
  margin-bottom: 8px;
  transition: 0.3s;
  border-radius: 3px;
}

#page-portfolio2 .portfolio-grid .card-links>button:last-child {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
}

#page-portfolio2 .portfolio-grid .card-links>button:first-child:hover {
  background-color: #183da1;
}

#page-portfolio2 .portfolio-grid .card-links>button:last-child:hover {
  background-color: rgb(190, 190, 190);
}

#page-portfolio2 .portfolio-grid .card-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

#page-portfolio2 .portfolio-grid .card-info span:last-child {
  color: #0447ff;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   INNER DETAIL TABS
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.dtab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.dtab-tag {
  background: #f0f4f8;
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.dtab-progress-wrap {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0 0;
}

.dtab-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.dtab-progress-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dtab-pct {
  color: #1e40af;
  font-weight: 700;
  font-size: 14px;
}

.dtab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e8edf2;
  margin: 24px 0 0;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dtab-nav::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.dtab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  margin-bottom: -2px;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.dtab-btn:hover {
  color: #1e3a5f;
}

.dtab-btn.active {
  color: #1e3a5f;
  border-bottom-color: #1e3a5f;
  font-weight: 600;
}

.dtab-panel {
  display: none;
  padding-top: 8px;
}

.dtab-panel.active {
  display: block;
}

.dtab-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 12px;
}

.dtab-sum-card {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 16px 18px;
}

.dtab-sum-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.dtab-sum-value {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.dtab-roi {
  color: #1e40af;
}

.dtab-inv-table {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.dtab-inv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}

.dtab-inv-row:last-child {
  border-bottom: none;
}

.dtab-inv-label {
  color: #64748b;
  font-weight: 500;
}

.dtab-inv-val {
  color: #1e293b;
  font-weight: 600;
  text-align: right;
}

.dtab-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 24px;
}

.dtab-cta-row .btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
  justify-content: center;
}

/* Team tab */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.team-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 20px 22px;
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}

.team-role {
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.team-bio {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* Documents tab */
.docs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.doc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 14px 18px;
}

.doc-icon {
  font-size: 22px;
  color: #e03131;
  flex-shrink: 0;
}

.doc-info {
  flex: 1;
  min-width: 0;
}

.doc-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* font-size: 1rem; */
  /* font-weight: 800; */
  color: #111827;
  /* margin-bottom: 12px; */
}

.doc-meta {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.doc-dl-btn {
  background: #f0f4f8;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a5f;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.doc-dl-btn:hover {
  background: #dbeafe;
}

/* Responsive */
@media (max-width: 600px) {
  .dtab-summary-grid {
    grid-template-columns: 1fr;
  }

  .dtab-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .dtab-cta-row {
    flex-direction: column;
  }
}

.investment-section {
  background: #f9f9f9d6;
  padding: 80px 0 0;
}

.cap-home .strategies-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767.9px) {
  .cap-home .strategies-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  #cap-home .ind-header__title,
  #cap-home .ind-header__subtitle {
    width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 1199.9px) {
  .cap-home .strategies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   Investment Strategies Ã¢â‚¬â€ Strategy Tabs
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Tab nav bar */
.inv-strat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.inv-strat-tab {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 7px 7px 0 0;
  padding: 9px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s,
    transform 0.15s;
  font-family: inherit;
  flex: 1;
}

@media (max-width: 767.9px) {
  .inv-strat-tab {
    min-width: 25%;
  }
}

@media (min-width: 768px) and (max-width: 1199.9px) {
  .inv-strat-tab {
    min-width: 20%;
  }
}

.inv-strat-tab:hover {
  background: #eff4ff;
  border-color: #c7d8ff;
  color: #3366ff;
  transform: translateY(-1px);
}

.inv-strat-tab.active {
  background: #3366ff;
  border-color: #3366ff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(51, 102, 255, 0.28);
}

/* Panels */
.inv-strat-panel {
  display: none;
}

.inv-strat-panel.active {
  display: block;
}

/* Strategy header with stats */
.inv-strat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.inv-strat-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #3366ff;
  margin-bottom: 8px;
}

/* Stats cluster */
.inv-strat-stats {
  display: flex;
  gap: 20px;
  flex-grow: 1;
  flex-wrap: wrap;
}

.inv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  flex: 1;
}

.inv-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.inv-stat-label {
  font-size: 0.71rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* "Our Approach" subheading */
.inv-approach-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}

/* Icon inside feat-card */
.inv-card-icon {
  font-size: 18px;
  color: #3366ff;
  margin-bottom: 12px;
  display: block;
}

/* Fund highlight bar */
.inv-fund-highlight {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #f0f4ff;
  border: 1px solid #c7d8ff;
  border-radius: 8px;
  padding: 14px 24px;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.inv-fund-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.inv-fund-size {
  font-size: 1.15rem;
  font-weight: 800;
  color: #3366ff;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 767.9px) {
  .inv-strat-header {
    flex-direction: column;
    gap: 20px;
  }

  .inv-strat-stats {
    width: 100%;
    justify-content: space-between;
  }

  .inv-stat-item {
    flex: 1;
    min-width: 45%;
  }

  .inv-strat-nav {
    gap: 6px;
  }

  .inv-strat-tab {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Page wrapper Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-wrapper {
  padding: 40px 0 80px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       SIDEBAR
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-sidebar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 0 16px;
  position: sticky;
  top: 24px;
}

.partners-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.partners-sidebar__brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.partners-sidebar__brand span {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.partners-sidebar__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 20px 10px;
}

.partners-sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}

.partners-sidebar__item i.icon {
  font-size: 14px;
  color: #94a3b8;
  width: 18px;
  flex-shrink: 0;
  transition: color 0.18s;
}

.partners-sidebar__item .arrow {
  margin-left: auto;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.18s;
  color: inherit;
}

.partners-sidebar__item:hover {
  background: var(--section-bg);
  color: var(--blue);
}

.partners-sidebar__item:hover i.icon {
  color: var(--blue);
}

.partners-sidebar__item.active {
  background: var(--blue);
  background: var(--primary-new);
  color: #fff;
}

.partners-sidebar__item.active i.icon {
  color: #fff;
}

.partners-sidebar__item.active .arrow,
.partners-sidebar__item:hover .arrow {
  opacity: 1;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       TAB PANELS
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-page .tab-panel {
  display: none;
}

.partners-page .tab-panel.active {
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Shared card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .tpg-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  height: 100%;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Page hero block Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .page-hero {
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.partners-page .page-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  display: block;
}

.partners-page .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(26, 58, 92, 0.88) 0%,
      rgba(26, 79, 214, 0.75) 100%);
  background: linear-gradient(135deg,
      rgba(40, 68, 125, 0.9) 0%,
      rgb(10 22 43) 100%);
  z-index: -1;
}

.partners-page .page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

.partners-page .page-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.partners-page .page-hero h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #fff;
}

.partners-page .page-hero p {
  font-size: 14.5px;
  opacity: 0.85;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #a5a9af;
}

.partners-page .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s;
}

.partners-page .btn-hero:hover {
  opacity: 0.9;
  color: var(--blue-dark);
}

.partners-page .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
}

.partners-page .btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Section titles Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
  text-align: center;
}

.partners-page .section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-2);
  margin-bottom: 8px;
}

.partners-page .section-subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px !important;
  text-align: center !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Feature card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .feat-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 22px;
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.partners-page .feat-card:hover {
  box-shadow: 0 8px 28px rgba(51, 102, 255, 0.1);
  transform: translateY(-2px);
}

.partners-page .feat-card__icon {
  min-width: 44px;
  max-width: 50px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.partners-page .feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 8px;
}

.partners-page .feat-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA strip Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .cta-strip {
  background: linear-gradient(135deg, var(--cta-bg) 0%, var(--cta-bg-2) 100%);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.partners-page #tab-consulting .cta-strip {
  justify-content: center;
}

.partners-page .cta-strip h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.partners-page .cta-strip p {
  font-size: 13.5px;
  color: #94a3b8;
}

.partners-page .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s;
  flex-shrink: 0;
}

.partners-page .btn-cta:hover {
  background: var(--blue-light);
  color: #fff;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       CONSULTING PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-page .consulting-grid .feat-card__icon {
  background: #eff6ff;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       MEMBERSHIP PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-page .membership-cards .mem-card {
  background: #fff;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.partners-page .membership-cards .mem-card:hover {
  box-shadow: 0 8px 28px rgba(51, 102, 255, 0.1);
  transform: translateY(-3px);
}

.partners-page .membership-cards .mem-card.featured {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(51, 102, 255, 0.18);
}

.partners-page .mem-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 40px;
}

.partners-page .mem-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.partners-page .mem-card__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark-2);
  line-height: 1;
  margin-bottom: 2px;
}

.partners-page .mem-card__price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.partners-page .mem-card__desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  margin-top: 8px;
}

.partners-page .mem-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  padding: 0 10px;
}

.partners-page .mem-card__list li {
  font-size: 13.5px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-bottom: 1px solid var(--border);
}

.partners-page .mem-card__list li:last-child {
  border-bottom: none;
}

.partners-page .mem-card__list li i {
  color: var(--blue);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.partners-page .btn-mem {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.partners-page .btn-mem-primary {
  background: var(--blue);
  background: var(--primary-new);
  color: #fff;
  border: none;
}

.partners-page .btn-mem-primary:hover {
  background: var(--blue-light);
  color: #fff;
}

.partners-page .btn-mem-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.partners-page .btn-mem-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* Standard features */
.partners-page .std-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.partners-page .std-feat:last-child {
  border-bottom: none;
}

.partners-page .std-feat__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}

.partners-page .std-feat h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 3px;
}

.partners-page .std-feat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       INCENTIVE PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-page .commission-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #1e55a8 100%);
  background: linear-gradient(135deg, rgba(40, 68, 125, 0.9) 0%, rgb(10 22 43) 100%);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partners-page .commission-highlight .rate {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.partners-page .commission-highlight .rate-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 6px;
}

.partners-page .commission-highlight .rate-desc {
  font-size: 13.5px;
  opacity: 0.75;
  font-style: italic;
  max-width: 400px;
  margin: 10px auto 0;
}

.partners-page .step-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.partners-page .step-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.partners-page .step-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 8px;
}

.partners-page .step-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.partners-page .incentive-pillar {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.partners-page .incentive-pillar__icon {
  width: 42px;
  height: 42px;
  background: var(--accent-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 17px;
  flex-shrink: 0;
}

.partners-page .incentive-pillar h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 5px;
}

.partners-page .incentive-pillar p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       CONTACT PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-page .contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 30px;
}

.partners-page .form-group-tpg {
  margin-bottom: 18px;
}

.partners-page .form-group-tpg label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.partners-page .form-group-tpg input,
.partners-page .form-group-tpg textarea,
.form-group-tpg select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.18s;
}

.partners-page .form-group-tpg input:focus,
.partners-page .form-group-tpg textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

.partners-page .form-group-tpg textarea {
  resize: vertical;
  min-height: 110px;
}

.partners-page .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  background: var(--primary-new);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.partners-page .btn-submit:hover {
  background: var(--blue-light);
}

.partners-page .contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  padding: 22px 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.partners-page .contact-info-card__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
}

.partners-page .contact-info-card h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

.partners-page .contact-info-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
}

.partners-page .presence-card {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4fd6 100%);
  background: linear-gradient(135deg, rgba(40, 68, 125, 0.9) 0%, rgb(10 22 43) 100%);
  border-radius: var(--radius);
  padding: 24px 24px;
  color: #fff;
}

.partners-page .presence-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.partners-page .presence-card p {
  font-size: 13.5px;
  opacity: 0.8;
  line-height: 1.65;
  margin-bottom: 16px !important;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
       HOME PAGE
    Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.partners-page .home-service-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 20px;
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.partners-page .home-service-card:hover {
  box-shadow: 0 8px 28px rgba(51, 102, 255, 0.1);
  transform: translateY(-2px);
}

.partners-page .home-service-card__icon {
  width: 42px;
  height: 42px;
  background: var(--accent-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 12px;
}

.partners-page .home-service-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 6px;
}

.partners-page .home-service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partners-page .home-service-card a {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.partners-page .home-service-card a:hover {
  color: var(--blue-dark);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Platform Promo Ã¢â‚¬â€ new two-column layout Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .platform-promo {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4fd6 100%);
  background: linear-gradient(135deg,
      rgba(40, 68, 125, 0.9) 0%,
      rgb(10 22 43) 100%);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1399.9px) {
  .partners-page .platform-promo {
    grid-template-columns: 1fr;
  }
}

.partners-page .platform-promo::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* LEFT side */
.partners-page .platform-promo__left {
  display: flex;
  flex-direction: column;
}

.partners-page .platform-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px 13px;
  margin-bottom: 18px;
  width: fit-content;
}

.partners-page .platform-promo__heading {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px !important;
  letter-spacing: -0.01em;
}

.partners-page .platform-promo__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 24px !important;
}

/* two small cards row */
.partners-page .platform-promo__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partners-page .platform-promo__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.partners-page .platform-promo__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(51, 102, 255, 0.5);
}

.partners-page .platform-promo__card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px !important;
}

.partners-page .platform-promo__card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin-bottom: 0 !important;
  flex: 1;
}

.partners-page .platform-promo__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.partners-page .platform-promo__card-btn:hover {
  border-color: var(--blue);
  background: rgba(51, 102, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

/* RIGHT side Ã¢â‚¬â€ image card */
.partners-page .platform-promo__right {
  position: relative;
}

.partners-page .platform-promo__img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.partners-page .platform-promo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.partners-page .platform-promo__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(5, 8, 18, 0.9) 0%, transparent 100%);
}

.partners-page .platform-promo__img-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px !important;
}

.partners-page .platform-promo__img-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 !important;
}

/* responsive */
@media (max-width: 767px) {
  .partners-page .platform-promo {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .partners-page .platform-promo__img-card {
    height: 220px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Our Commitment section Ã¢â€â‚¬Ã¢â€â‚¬ */
.partners-page .our-commitment {
  /* background: var(--section-bg); */
  padding: 10px 0;
  /* margin-top: 10px; */
}

.partners-page .our-commitment__inner {
  background: #fff;
  border-radius: var(--radius);
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.partners-page .our-commitment__heading {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.partners-page .our-commitment__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 30px !important;
}

.partners-page .our-commitment__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.partners-page .btn-commitment-solid {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  background: var(--primary-new);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 7px;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.partners-page .btn-commitment-solid:hover {
  background: #1e293b;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.partners-page .btn-commitment-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  padding: 11px 26px;
  border-radius: 7px;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.partners-page .btn-commitment-outline:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  color: #1e293b;
  text-decoration: none;
}

@media (max-width: 575px) {
  .partners-page .our-commitment__inner {
    padding: 36px 20px;
  }

  .partners-page .our-commitment__btns {
    flex-direction: column;
    align-items: center;
  }
}

/* spacing helpers */
.partners-page .mb-20 {
  margin-bottom: 20px;
}

.partners-page .mb-24 {
  margin-bottom: 24px;
}

.partners-page .mb-28 {
  margin-bottom: 28px;
}

.partners-page .tab-panel .section-title {
  margin-top: 10px !important;
  position: relative;
  margin-bottom: 20px !important;
  text-align: center;
}

.partners-page .tab-panel .section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 7px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.partners-page .bg-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 30px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TOP HEADER Ã¢â€â‚¬Ã¢â€â‚¬ */
.portal-header {
  background: var(--navy);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  /* margin-top: 118px;  */
}

.portal-header .logo-box {
  width: 38px;
  height: 38px;
  background: var(--blue2-mid);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.portal-header .brand-text h1 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}

.portal-header .brand-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STEPPER Ã¢â€â‚¬Ã¢â€â‚¬ */
.stepper-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
}

.stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .stepper {
    flex-wrap: wrap;
    gap: 10px;
  }

  .step-connector {
    display: none;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}

/* connector line sits between icons with a gap on each side */
.step-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: 17px;
  /* align with center of 36px icon */
  transition: background 0.3s;
}

.step-connector.done {
  background: var(--blue2-mid);
}

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}

.step-item.active .step-icon {
  background: var(--blue2-mid);
  border-color: var(--blue2-mid);
  color: #fff;
}

.step-item.done .step-icon {
  background: var(--blue2-mid);
  border-color: var(--blue2-mid);
  color: #fff;
}

.step-label {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.step-item.active .step-label {
  color: var(--blue2-mid);
  font-weight: 600;
}

.step-item.done .step-label {
  color: var(--blue2-mid);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MAIN CONTENT Ã¢â€â‚¬Ã¢â€â‚¬ */
/* The form tag itself needs full width so form-card inside can stretch */
form#regForm {
  width: 100%;
  max-width: 1000px;
}

/* Success page card Ã¢â‚¬â€ same width as form */
#pageSuccess {
  width: 100%;
  max-width: 1000px;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 40px 56px;
}

@media (max-width: 768px) {
  .portal-header {
    padding: 14px 20px;
  }

  .main-content {
    padding: 28px 20px 40px;
  }

  .summary-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

.form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(26, 52, 97, 0.08);
  /* padding: 48px 56px; */
  padding: 40px;
  width: 100%;
  max-width: 1000px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.step-badge .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue2-mid);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-badge .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.form-card .subtitle {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FORM FIELDS Ã¢â€â‚¬Ã¢â€â‚¬ */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 10px;
}

.field-row.full {
  grid-template-columns: 1fr;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.field-group label .req {
  color: #e53e3e;
  margin-left: 2px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap .inp-icon {
  position: absolute;
  left: 13px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 40px !important;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--input-bg);
  outline: none;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

/* select: custom arrow + enough right padding so text doesn't touch it */
.input-wrap select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--blue2-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background-color: #fff;
}

.input-wrap input.is-invalid,
.input-wrap select.is-invalid {
  border-color: #e53e3e;
}

.input-wrap input::placeholder {
  color: #a0aec0;
}

.field-error {
  font-size: 12px;
  color: #e53e3e;
  display: none;
  margin-top: 3px;
}

.field-error.show {
  display: block;
}

/* password eye toggle */
.input-wrap .eye-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  padding: 0;
  height: 44px;
  display: flex;
  align-items: center;
}

/* input with eye button: right padding so text clears the icon */
.input-wrap:has(.eye-btn) input {
  padding-right: 38px;
}

.pw-strength {
  margin-top: 8px;
}

.pw-strength-bar {
  height: 4px;
  display: flex;
  gap: 4px;
}

.pw-strength-bar span {
  flex: 1;
  border-radius: 4px;
  background: var(--border);
  transition: background 0.25s;
}

/* Bar colors */
.pw-strength-bar span.weak {
  background: #ef4444;
}

.pw-strength-bar span.fair {
  background: #f97316;
}

.pw-strength-bar span.moderate {
  background: #f59e0b;
}

.pw-strength-bar span.strong {
  background: #22c55e;
}

/* Label */
.pw-strength-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

.lbl-weak {
  color: #ef4444;
}

.lbl-fair {
  color: #f97316;
}

.lbl-moderate {
  color: #f59e0b;
}

.lbl-strong {
  color: #22c55e;
}

/* no-icon inputs */
.input-plain input,
.input-plain select {
  padding-left: 14px !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SECTOR BUTTONS (Step 4) Ã¢â€â‚¬Ã¢â€â‚¬ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.sector-btn {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}

.sector-btn:hover {
  border-color: var(--blue2-mid);
  color: var(--blue2-mid);
}

.sector-btn.selected {
  border-color: var(--blue2-mid);
  background: var(--blue2-light);
  color: var(--blue2-mid);
  font-weight: 600;
}

.sector-divider {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0 8px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ PRODUCTS step 5 Ã¢â€â‚¬Ã¢â€â‚¬ */
.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.prod-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.prod-panel-header {
  background: var(--navy);
  color: #fff;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-panel-header .badge-count {
  background: var(--blue2-mid);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-panel-body {
  background: #fff;
  min-height: 260px;
  max-height: 340px;
  overflow-y: auto;
}

/* category accordion */
.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue2-mid);
  border-bottom: 1px solid var(--border);
  user-select: none;
}

.cat-header:hover {
  background: var(--blue2-light);
}

.cat-header i {
  font-size: 12px;
  transition: transform 0.2s;
}

.cat-header.open i {
  transform: rotate(180deg);
}

.cat-items {
  display: none;
}

.cat-items.open {
  display: block;
}

/* available item row */
.prod-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 10px 26px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background 0.15s;
}

.prod-item:hover:not(.selected) {
  background: #f0f6ff;
}

/* item already selected Ã¢â€ â€™ strikethrough + muted + no-entry icon */
.prod-item.selected {
  color: #94a3b8;
  text-decoration: line-through;
  cursor: default;
  background: #fafafa;
}

.prod-item .add-btn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #bfdbfe;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue2-mid);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transition:
    border-color 0.15s,
    color 0.15s;
}

.prod-item:hover:not(.selected) .add-btn {
  border-color: var(--blue2-mid);
  background: var(--blue2-light);
}

.prod-item.selected .add-btn {
  border-color: #e2e8f0;
  color: #cbd5e1;
  font-size: 13px;
  /* show a block symbol */
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ selected panel Ã¢â€â‚¬Ã¢â€â‚¬ */
.sel-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  color: #cbd5e1;
  font-size: 13px;
  gap: 8px;
}

.sel-empty i {
  font-size: 30px;
}

/* each selected item: bordered row with Ãƒâ€” on right Ã¢â‚¬â€ matches screenshot */
.sel-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 10px;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
}

.sel-tag:hover {
  border-color: #fca5a5;
}

.sel-tag button {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color 0.15s;
}

.sel-tag button:hover {
  color: #e53e3e;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ BUTTONS Ã¢â€â‚¬Ã¢â€â‚¬ */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.actions.end {
  justify-content: flex-end;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-back:hover {
  border-color: var(--blue2-mid);
  color: var(--blue2-mid);
  background: var(--blue2-light);
}

.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 26px;
  border-radius: var(--radius);
  background: var(--navy);
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--blue2-mid);
}

.btn-next i,
.btn-submit i {
  font-size: 13px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SUCCESS PAGE Ã¢â€â‚¬Ã¢â€â‚¬ */
.success-wrap {
  text-align: center;
  padding: 10px 0 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.success-wrap p {
  font-size: 14px;
  color: var(--muted);
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
  text-align: left;
}

.sum-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.sum-card .sum-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.sum-card .sum-title i {
  color: var(--blue2-mid);
}

.sum-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.sum-card span {
  font-size: 13px;
  color: var(--blue2-mid);
}

.confirm-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.confirm-box i {
  color: var(--blue2-mid);
  margin-top: 1px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
.portal-footer {
  text-align: center;
  padding: 16px;
  font-size: 12.5px;
  color: var(--muted);
}

/* hidden */
.step-page {
  display: none;
}

.step-page.active {
  display: block;
}

@media (max-width: 600px) {
  .form-card {
    padding: 24px 18px;
    max-width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .stepper-wrap {
    padding: 12px 16px;
    overflow-x: auto;
  }

  .step-label {
    font-size: 9.5px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Override call-style.css conflicts Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn-submit {
  width: auto !important;
}

body:not(:has(.about-hero)):not(:has(.main-hero)) .fixed-nav {
  background: #f8fafc !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1100 !important;
}

body:not(:has(.about-hero)):not(:has(.main-hero)) .menu>ul>li>a,
body:not(:has(.about-hero)):not(:has(.main-hero)) .hide-sm a {
  color: #162d58 !important;
}

body:not(:has(.about-hero)):not(:has(.main-hero)) .menu>ul>li>a:hover,
body:not(:has(.about-hero)):not(:has(.main-hero)) .hide-sm a:hover {
  color: #03a9f4 !important;
}

.modern-text-wrapper {
  /* max-width: 850px; */
  margin: 20px;
  padding: 50px 25px 0px;
  text-align: left;
}

.modern-text-wrapper span {
  cursor: auto !important;
}

.editorial-lead {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  /* border-left: 4px solid #3b82f6; */
}


.accent-glow {
  color: #3b82f6;
  font-weight: 700;
}


.editorial-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #64748b;
  padding-left: 20px;
  margin: 0;
}

.logo-slider-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  padding: 20px 10px;
  user-select: none;
}

.logo-slider-track::-webkit-scrollbar {
  display: none;
}

.logo-slider-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.logo-slider-track .owel-images {
  flex: 0 0 auto;
  width: calc((100% - 160px) / 5);
  min-width: 120px;
  height: 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.logo-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.logo-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.logo-slider-dots span.active {
  background: #3366ff;
}


/* =========================
   Pin container
========================= */

.africa,
.asia,
.Europe,
.south-america,
.north-america,
.Australia,
.Middle-East,
.Russia {

  position: absolute;
  cursor: pointer;
  z-index: 100;

  transition: .3s ease;
}


/* =========================
   Icon style
========================= */

.africa i,
.asia i,
.Europe i,
.south-america i,
.north-america i,
.Australia i,
.Middle-East i,
.Russia i {
  font-size: 32px !important;
  color: #fff !important;
  transition: .3s ease;
  position: relative;
  z-index: 10;
}

.africa i::before,
.asia i::before,
.Europe i::before,
.south-america i::before,
.north-america i::before,
.Australia i::before,
.Middle-East i::before,
.Russia i::before {
  content: "\f5a0";
}


/* =========================
   Hover animation
========================= */

.africa:hover,
.asia:hover,
.Europe:hover,
.south-america:hover,
.north-america:hover,
.Australia:hover,
.Middle-East:hover,
.Russia:hover {

  transform: translateY(-8px) scale(1.2);

  z-index: 999;
}


/* =========================
   Change pin color
========================= */

.africa:hover i,
.asia:hover i,
.Europe:hover i,
.south-america:hover i,
.north-america:hover i,
.Australia:hover i,
.Middle-East:hover i,
.Russia:hover i {

  color: #0d6efd !important;
}

.fa-location-dot {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 1));
}

/* =========================
   Tooltip
========================= */

.africa::after,
.asia::after,
.Europe::after,
.south-america::after,
.north-america::after,
.Australia::after,
.Middle-East::after,
.Russia::after {
  position: absolute;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
  background: #fff;
  color: #222;
  padding: 7px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  text-shadow: none;
}


/* =========================
   Names
========================= */

.africa::after {
  content: "Africa";
}

.asia::after {
  content: "Asia";
}

.Europe::after {
  content: "Europe";
}

.south-america::after {
  content: "South America";
}

.north-america::after {
  content: "North America";
}

.Australia::after {
  content: "Australia";
}

.Middle-East::after {
  content: "Middle East";
}

.Russia::after {
  content: "Russia";
}



/* =========================
   Show title
========================= */

.africa:hover::after,
.asia:hover::after,
.Europe:hover::after,
.south-america:hover::after,
.north-america:hover::after,
.Australia:hover::after,
.Middle-East:hover::after,
.Russia:hover::after {

  opacity: 1;
  visibility: visible;

  bottom: 35px;
}



/* =========================
   Active after click
========================= */

.africa:active i,
.asia:active i,
.Europe:active i,
.south-america:active i,
.north-america:active i,
.Australia:active i,
.Middle-East:active i,
.Russia:active i {
  color: #ff5722 !important;
  transform: scale(1.3);
}

a:focus .africa i,
a:focus .asia i,
a:focus .Europe i,
a:focus .south-america i,
a:focus .north-america i,
a:focus .Australia i,
a:focus .Middle-East i,
a:focus .Russia i {
  color: #ff5722 !important;
  transform: scale(1.3);
}

.col-lg-5 {
  align-self: center;
}

.col-lg-5 {
  align-self: center;
}

@media (min-width: 1000px) {
  .ceo-image-wrap {
    transform: translateY(40px);
  }
}

section:has(.map) .row.py-5 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

section:has(.map) .col-sm-10 {
  width: 100%;
}

.editorial-lead,
.editorial-lead p,
.editorial-lead span {
  font-weight: 700 !important;
  color: #111827 !important;
  font-family: var(--font-main) !important;
  font-size: clamp(1.4rem, 1vw, 2.2rem) !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEWS EDITORIAL SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.news-editorial {
  background: #f8fafc;
  padding: var(--padding-sec) 0;
  position: relative;
}

.news-editorial__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  padding: 0 24px;
}

.news-editorial__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3366ff;
  margin-bottom: 14px;
}

.news-editorial__label::before,
.news-editorial__label::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #3366ff;
  border-radius: 2px;
}

.news-editorial__header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #0f1e3d;
  line-height: 1.25;
}

/* â”€â”€ Article block â”€â”€ */
.news-article {
  max-width: 950px;
  margin: 0 auto 90px;
  padding: 0 24px;
  position: relative;
}

.news-article:last-child {
  margin-bottom: 0;
}

/* Ø§Ù„Ø±Ù‚Ù… Ø§Ù„ÙƒØ¨ÙŠØ± Ø§Ù„Ø´ÙØ§Ù ÙÙŠ Ø§Ù„Ø®Ù„ÙÙŠØ© */
.news-article__index {
  position: absolute;
  top: -50px;
  right: 10px;
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(51, 102, 255, 0.15);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.news-article:nth-child(even) .news-article__index {
  right: auto;
  left: 10px;
}

.news-article__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.news-article__icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: #0a162b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.news-article__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3366ff;
  margin-bottom: 4px;
}

.news-article__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: #0f1e3d;
  line-height: 1.3;
}

/* ØµÙˆØ±Ø© Ø¹Ø§Ø¦Ù…Ø© Ø¬ÙˆÙ‡ Ø§Ù„Ù†Øµ */
.news-article__body {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.95;
}

.news-article__float-img {
  float: left;
  width: 300px;
  margin: 4px 28px 16px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 30, 61, 0.15);
}

.news-article:nth-child(even) .news-article__float-img {
  float: right;
  margin: 4px 0 16px 28px;
}

.news-article__float-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Drop cap Ù„Ù„Ø­Ø±Ù/Ø§Ù„ÙƒÙ„Ù…Ø© Ø§Ù„Ø£ÙˆÙ„Ù‰ */
.news-article__body p:first-of-type::first-letter {
  font-size: 3.4rem;
  font-weight: 800;
  color: #3366ff;
  float: left;
  line-height: 0.8;
  margin: 6px 8px 0 0;
  font-family: var(--font-main);
}

.news-article__body p {
  margin-bottom: 16px;
}

.news-article__body p:last-child {
  margin-bottom: 0;
}

/* ÙØ§ØµÙ„ Ø²Ø®Ø±ÙÙŠ Ø¨ÙŠÙ† Ø§Ù„Ù…Ù‚Ø§Ù„Ø§Øª */
.news-article+.news-article::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3366ff, transparent);
  border-radius: 3px;
  margin: 0 auto 90px;
  position: relative;
  top: -90px;
}

/* clearfix Ø¹Ø´Ø§Ù† Ø§Ù„Ù€ float */
.news-article::after {
  content: "";
  display: table;
  clear: both;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
  .news-article__index {
    font-size: 100px;
    top: -30px;
  }

  .news-article__float-img,
  .news-article:nth-child(even) .news-article__float-img {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }

  .news-article__body p:first-of-type::first-letter {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .news-editorial {
    padding: 60px 0;
  }

  .news-article {
    margin-bottom: 60px;
  }

  .news-article__top {
    gap: 12px;
  }

  .news-article__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 16px;
  }
}

body:not(:has(.about-hero)):not(:has(.main-hero)) .logo {
  filter: brightness(0) saturate(100%) invert(18%) sepia(35%) saturate(1200%) hue-rotate(180deg);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INDUSTRY INSIGHTS SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.insights-section {
  padding: 20px 0;
  background: #fff;
  margin-bottom: 20px;
}

.insights-section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.insights-section__header h2 {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #0f1e3d;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.insights-section__header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: #3366ff;
  border-radius: 3px;
}

.insights-section__header p {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 6px;
}

/* card */
.insights-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 48px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 30, 61, 0.04);
}

.insights-card__title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1e3d;
  margin-bottom: 32px;
}

.insights-card h4 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.insights-card [data-md-name="CardTitle"] {
  font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin-bottom: 14px !important;
}

.insights-card [data-md-name="div"] {
  font-size: 0.95rem !important;
  color: #64748b !important;
  margin-top: 2px !important;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 28px;
}

.insight-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f1e3d;
  margin-bottom: 8px;
}

.insight-item p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* footer note */
.insights-section__note {
  max-width: 750px;
  margin: 28px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
  .insights-card {
    padding: 32px 24px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

@media (max-width: 576px) {
  .insights-section {
    padding: 50px 0;
  }

  .insights-card {
    margin: 0 16px;
    padding: 28px 20px;
  }
}

.hero__container span {
  cursor: auto !important;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â Support page additions Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.support-hero {
  text-align: center;
  padding: 10px !important;
  min-height: 20vh !important;
}

.support-hero .hero-inner {
  margin: 0 auto;
  max-width: 700px;
}

.support-search {
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
}

.support-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-search input:focus {
  outline: none;
  border-color: var(--accent);
}

.support-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.support-search-results {
  max-width: 520px;
  margin: -14px auto 20px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}

.support-search-results.show {
  display: block;
}

.support-search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text);
  transition: background 0.15s;
}

.support-search-result:last-child {
  border-bottom: none;
}

.support-search-result:hover {
  background: var(--bg);
}

.support-search-result .cat-chip {
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
}

.support-search-empty {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted);
}

.support-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.support-resource-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.support-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 99px;
  /* margin-bottom: 24px; */
  transition: background 0.15s, color 0.15s;
}

.support-back-link:hover {
  background: var(--bg);
  color: var(--primary);
}

.support-cat-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.support-cat-header .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  background: var(--primary-new);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.support-cat-header .icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.support-cat-header h1 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 4px;
}

.support-cat-header p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.support-cat-meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 12.5px;
  margin: 14px 2px 22px;
}

.support-cat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: auto !important;
}

.article-icon-blue {
  color: var(--accent) !important;
}

.support-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.support-article-meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.support-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.support-article-body ol,
.support-article-body ul {
  margin: 10px 0 20px;
  padding-left: 22px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.75;
  list-style-type: auto;
}

.support-article-body li {
  margin-bottom: 8px;
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.support-article-body p.detail-overview {
  margin-bottom: 16px;
}

.support-helpful {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
}

.support-helpful a {
  color: var(--accent) !important;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.support-helpful a:hover {
  text-decoration: underline;
}

.ind-sidebar__item small {
  display: block;
  font-weight: 400;
  opacity: 0.7;
  font-size: 11px;
}

@media (max-width: 767.9px) {
  .support-cat-header {
    flex-direction: column;
    text-align: center;
  }
}

.support-hero h1 {
  margin: 20px 0 !important;
}

.support-categories-section {
  padding: 70px 0;
}

.support-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 10px 0 40px;
  font-size: 15px;
}

.support-categories-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-category-card {

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 18px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 22px 9px 22px 2px;

  text-decoration: none;

  cursor: pointer;

  transition: .3s;
}

.support-category-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

  border-color: rgba(37, 99, 235, .2);
}

.support-category-left {

  display: flex;
  align-items: center;
  gap: 16px;
}

.support-category-icon {

  width: 50px;
  height: 50px;

  border-radius: 14px;

  background: #f3f6fb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  color: var(--accent);

  flex-shrink: 0;

  overflow: hidden;
}

.support-category-icon img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: inherit;
}

.support-category-left h4 {

  margin: 0;

  font-size: 14px;

  font-weight: 700;

  color: var(--text);
}

.support-category-left span {

  display: block;

  margin-top: 4px;

  color: var(--muted);

  font-size: 13px;
}

.support-arrow {

  font-size: 17px;

  color: var(--text);

  transition: .3s;
}

.support-category-card:hover .support-arrow {

  transform: translateX(6px);

  color: var(--accent);
}

@media(max-width:991px) {

  .support-categories-grid {

    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:767px) {

  .support-categories-grid {

    grid-template-columns: 1fr;
  }

}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â Browse by Category page (Knowledge Base / Technical Support) Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

.browse-categories-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.browse-category-card {

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 18px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  text-decoration: none;

  cursor: pointer;

  transition: .3s;
}

.browse-category-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

  border-color: rgba(37, 99, 235, .2);
}

.browse-category-media {

  width: 100%;
  height: 150px;

  overflow: hidden;

  background: #f3f6fb;
}

.browse-category-media img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: .4s;
}

.browse-category-card:hover .browse-category-media img {

  transform: scale(1.06);
}

.browse-category-body {

  padding: 18px 20px 20px;
}

.browse-category-body h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  /* font-size: 1rem; */
  /* font-weight: 800; */
  color: #111827;
  /* margin-bottom: 12px; */
}

.browse-category-body p {

  margin: 0 0 12px;

  color: var(--muted);

  font-size: 13.5px;

  line-height: 1.55;
}

.browse-category-meta {

  display: flex;

  align-items: center;

  gap: 16px;

  color: var(--muted);

  font-size: 12.5px;
}

.browse-category-meta span {

  display: inline-flex;

  align-items: center;

  gap: 6px;
}

.browse-category-meta i {

  color: var(--accent);

  font-size: 12px;
}

@media(max-width:991px) {

  .browse-categories-grid {

    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:767px) {

  .browse-categories-grid {

    grid-template-columns: 1fr;
  }

}

.ceo-content strong {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.ind-overview div {
  line-height: var(--body-line-height);
  color: var(--muted-color);
  font-size: 14px;
}

.strategy-card span,
.strategy-card p {
  line-height: var(--body-line-height);
  color: var(--muted-color);
}

.investment-card {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 240px;
  width: 100%;
}