/* Rebranding fonts - Poppins for body, Qualy for headings */

/* Color variables */
:root {
  --mainContentColor: #454648;
  --PrimaryBlue: #1D81F2;
  --lightBlue: #edf9ff;
  --BgGrey: #F6F6F6;
  --grey2: #181818;
  --grey: #535353;
  --footer-title-color: #ffffffb3;
  --text-grey-300: rgb(209 213 219 / var(--tw-text-opacity, 1));
  --black: #000;
  --text-white: #ffffff;
  --White: #ffffff;
  --borderColor: #E4E4E7;
  --borderColor2: #DADADA;
  --investor-card-bg: #FAFAFA;
  --investor-card-border: #EAEAEA;
  --lightTurquoise: #B5F4F0;
  --btnBorderRadius: 10px;
  --btnArrowSize: 30px;
  --btnArrowImage: url('../assets/images/btn-arr.png');

  /* Gradient variables */
  --gradient-finance: linear-gradient(90deg, rgb(91, 185, 71) 0%, rgb(1, 164, 202) 100%);
  --gradient-retail:  linear-gradient(139deg, rgb(103, 12, 219) -5.56%, rgb(7, 165, 203) 105.36%);
  --gradient-marketplace: linear-gradient(139deg, rgb(241, 16, 43) -5.56%, rgb(7, 165, 203) 105.36%);
  --gradient-ai-lab: linear-gradient(137deg, rgb(17, 139, 161) 35.75%, rgb(7, 165, 203) 105.04%);
  --gradient-services: linear-gradient(134deg, rgb(113, 123, 188) 25.43%, rgb(113, 123, 188) 50.57%, rgb(7, 165, 203) 120.72%);
  --gradient-grey: linear-gradient(89deg, rgba(225, 228, 228, 0) 13.16%, #F1F1F1 99.53%);
  --footer-bg-gradient: linear-gradient(90deg, #3A3A3A -3.37%, var(--grey2) 100.83%);

  /* Glass effect */
  --glassBorderRadius: 10px;
  --glassBorder: 1px solid #E3E3E3;
  --glassBackground: rgba(255, 255, 255, 0.1);
  --glassBlur: 10px;

  /* Header */
  --header-bg: #ffffff;
  --header-text: #111827;
  --header-text-muted: #454648;
  --header-primary: #1D81F2;
  --header-primary-hover: #1476EB;
  --header-border: #e5e7eb;
  --header-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --header-shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --header-height: 64px;
  --header-autocontent-max: 88%;
  --header-nav-gap: 32px;
  --header-mega-width: 1145px;
  --header-mega-top: var(--header-height);

  /* Font variables */ 
    --PoppinsMedium: 'PoppinsMedium';
    --PoppinsLight: 'PoppinsLight';
    --PoppinsRegular: 'PoppinsRegular';
    --PoppinsSemiBold: 'PoppinsSemiBold';
    --PoppinsBold: 'PoppinsBold';
    --QualyRegular: 'QualyRegular';
    --QualyBold: 'QualyBold';
}

/* Poppins - Body font */
@font-face {
  font-family: 'PoppinsRegular';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PoppinsLight';
  src: url('fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'PoppinsMedium';
  src: url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'PoppinsSemiBold';
  src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'PoppinsBold';
  src: url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Qualy - Headings font */
@font-face {
  font-family: 'QualyRegular';
  src: url('fonts/Qualy.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'QualyBold';
  src: url('fonts/Qualy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Generic container - project-wide */
.autocontent {
  width: 100%;
  max-width: 88%;
  margin: auto;
  padding: 0px 16px;
}

/* Apply fonts */
body {
  font-family: 'PoppinsRegular';
  color: var(--mainContentColor);
}
a {color: var(--PrimaryBlue); text-decoration: none;}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'QualyRegular';
  color: var(--mainContentColor);
}
h2 {font-size: 34px;line-height: 40px;}
h3 {font-size: 28px;line-height: 33px;}
p {
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 16px;
}
p:last-child {
    margin-bottom: 0;
}
.mt-80 {
  margin-top: 80px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-0 {
  margin-bottom: 0px;
}
/* Headline (h1) - base styles, */
.headline,
h1.headline {
  font-family: 'QualyRegular';
  color: var(--mainContentColor);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  max-width: 680px;
  margin-bottom: 1rem;
}

/* Star blink animation for CTA hover */
@keyframes cta-star-blink {
  0%, 100% { opacity: 0.5; }
  25% { opacity: 1; }
  50% { opacity: 0.3; }
  75% { opacity: 1; }
}

/* Primary CTA button style */
.primary-cta {
  position: relative;
  display: inline-flex;
  perspective: 150px;
  transform-style: preserve-3d;
  align-items: center;
  overflow: hidden;
  gap: 12px;
  padding: 14px 28px;
  padding-right: calc(28px + var(--btnArrowSize) + 12px);
  background-color: var(--PrimaryBlue);
  color: var(--White);
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: var(--btnBorderRadius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.btn-main-primary{
  background-color: var(--PrimaryBlue);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fontBody, 'PoppinsRegular');
  color: var(--White);
  border-radius: var(--btnBorderRadius);
  padding: 14px 28px;
  padding: 12px 24px;
  transition: background-color 0.2s ease;
}
.btn-main-primary:hover {
  color: var(--White);
  background-color: rgba(29, 129, 242, 0.85);
}
.lightBlue {
  background-color: var(--lightBlue);
}

.primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow:
    15px 12px 0 2px rgba(255, 255, 255, 0.9),
    45px 8px 0 2px rgba(255, 255, 255, 0.85),
    75px 18px 0 2px rgba(255, 255, 255, 0.9),
    100px 6px 0 2px rgba(255, 255, 255, 0.8),
    30px 28px 0 2px rgba(255, 255, 255, 0.75),
    60px 24px 0 2px rgba(255, 255, 255, 0.9),
    90px 14px 0 2px rgba(255, 255, 255, 0.85),
    20px 6px 0 2px rgba(255, 255, 255, 0.8),
    55px 16px 0 2px rgba(255, 255, 255, 0.9),
    85px 22px 0 2px rgba(255, 255, 255, 0.75);
}

.primary-cta:hover::before {
  opacity: 1;
  animation: cta-star-blink 1.2s ease-in-out infinite;
}

.primary-cta::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotateX(0deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  width: var(--btnArrowSize);
  height: var(--btnArrowSize);
  background-image: var(--btnArrowImage);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.4s ease;
}

.primary-cta:hover {
  color: var(--White);
  background-color: rgba(29, 129, 242, 0.85);
}

.primary-cta:hover::after {
  transform: translateY(-50%) rotateX(180deg);
}

/* Glass effect - reusable utility */
.glass-effect {
  border-radius: var(--glassBorderRadius);
  border: var(--glassBorder);
  background: var(--glassBackground);
  backdrop-filter: blur(var(--glassBlur));
}

/* Hide Bootstrap/svg arrow icons - using btn-arr.png image instead */
.primary-cta__icon,
.primary-cta .bi-box-arrow-up-right,
.primary-cta .bi-arrow-up-right,
.primary-cta svg {
  display: none !important;
}

/* ============================================
   HEADER COMPONENT (Vue-style layout)
   ============================================ */

/* Header base */
.header-vue {
  position: sticky;
  top: 0;
  z-index: 250;
  background-color: var(--header-bg);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  font-family: 'PoppinsRegular';
}

.header-vue.is-scrolled {
  box-shadow: var(--header-shadow);
}

.header-vue .header-nav.autocontent {
  width: 100%;
  max-width: var(--header-autocontent-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo-link {
  display: flex;
  align-items: center;
  color: var(--header-text);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header-logo-link:hover {
  color: var(--header-primary);
}

.header-logo-svg {
  height: 28px;
  width: auto;
  max-width: 120px;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
}

.header-search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--header-text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-search-trigger:hover {
  color: var(--header-primary);
}

.header-search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search-form #searchInput {
  width: 0;
  min-width: 0;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  outline: none;
  background: transparent;
  visibility: hidden;
  transition: width 0.3s ease, border-color 0.2s ease, visibility 0.2s ease;
}

.header-search.active .header-search-form #searchInput {
  width: 180px;
  padding: 8px 12px;
  border-bottom-color: var(--header-border);
  visibility: visible;
}

.header-language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-language-link {
  font-size: 13px;
  line-height: 20px;
  color: var(--header-text-muted);
  transition: color 0.2s ease;
}

.header-language-link:hover {
  color: var(--header-primary);
}

.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.header-hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--header-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger.is-open .header-hamburger-line:nth-child(1) {
  transform: rotate(49deg) translateY(14px) translateX(0px);
}

.header-hamburger.is-open .header-hamburger-line:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-open .header-hamburger-line:nth-child(3) {
  transform: rotate(316deg) translateY(-12px) translateX(-3px);
}

/* Desktop nav */
.header-nav-desktop {
  display: none;
  align-items: center;
  gap: var(--header-nav-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-item {
  position: relative;
}

.header-nav-link,
.header-nav-trigger {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 20px;
  color: var(--header-text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav-link:hover,
.header-nav-trigger:hover {
  color: var(--header-primary);
}

.header-nav-trigger {
  gap: 4px;
}

.header-nav-chevron {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.header-nav-chevron.is-open {
  transform: rotate(180deg);
}

/* Mega menu */
.header-mega-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-mega-top);
  background: rgba(0, 0, 0, 0.1);
  z-index: 240;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header-mega-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-mega-panel {
  position: fixed;
  top: var(--header-mega-top);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--header-mega-width);
  background: var(--header-bg);
  box-shadow: var(--header-shadow-lg);
  border: 1px solid var(--header-border);
  border-radius: 8px;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header-mega-panel.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-mega-inner {
  padding: 32px 32px 0;
}

.header-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.header-mega-nav {
  min-height: 300px;
}

.header-mega-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-mega-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--header-text-muted);
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.2s ease;
}

.header-mega-nav-link:hover {
  background: #f9fafb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--header-text-muted);
}

.header-mega-nav-arrow {
  width: 16px;
  height: 16px;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header-mega-nav-link:hover .header-mega-nav-arrow {
  transform: translateX(4px);
}

.header-mega-nav-link.is-active {
  background: #f9fafb;
}

/* Right: content area */
.header-mega-right {
  position: relative;
  min-height: 300px;
}

.header-mega-content {
  display: none;
  padding-top: 0;
}

.header-mega-content.is-active {
  display: block;
}

.header-mega-content-inner {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D9D9D9;
}

.header-mega-title {
  font-family: 'QualyRegular';
  font-size: 20px;
  color: var(--header-text);
  margin: 0 0 16px;
}

.header-mega-desc {
  font-family: 'PoppinsRegular';
  font-size: 16px;
  line-height: 1.6;
  color: var(--header-text-muted);
  margin: 0;
}

.header-mega-child-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.header-mega-child-link {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--header-text-muted);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}

.header-mega-child-link:hover {
  background: linear-gradient(to right, #eff6ff, #eef2ff);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-color: #bfdbfe;
  color: var(--header-text-muted);
}

.header-mega-child-title {
  font-family: 'poppinsSemiBold';
  font-size: 18px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.header-mega-child-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
}

/* Bottom: Get Started bar */
.header-mega-footer {
  border-top: 1px solid var(--header-border);
  padding: 16px 0 24px;
  margin-top: 24px;
}

.header-mega-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: var(--header-primary);
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-mega-cta-btn:hover {
  background-color: var(--header-primary-hover);
}

/* Mobile menu */
.header-mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 300;
  background: var(--header-bg);
  box-shadow: var(--header-shadow-lg);
  border-top: 1px solid var(--header-border);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.3s ease, visibility 0.3s ease;
}

.header-mobile-panel.is-open {
  max-height: 80vh;
  overflow-y: auto;
  visibility: visible;
}

.header-mobile-nav {
  padding: 16px;
}

.header-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile-item {
  border-bottom: 1px solid #f3f4f6;
}

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

.header-mobile-trigger,
.header-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  color: var(--header-text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.header-mobile-link:hover,
.header-mobile-trigger:hover {
  color: var(--header-primary);
}

.header-mobile-link--direct {
  justify-content: flex-start;
}

.header-mobile-chevron {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header-mobile-item.is-open .header-mobile-chevron {
  transform: rotate(180deg);
}

.header-mobile-dropdown {
  list-style: none;
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid var(--header-border);
  margin-left: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.header-mobile-item.is-open .header-mobile-dropdown {
  max-height: 500px;
}

.header-mobile-dropdown .header-mobile-link {
  padding: 8px 0;
  font-size: 14px;
}

/* ===== Newsletter Section (netsoltech Newsletter.vue equivalent) ===== */
.newsletter-section-wrapper {
  position: relative;
  margin-top: 96px;
  height: 545px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
/* Left: Pattern side */
.newsletter-pattern-side {
  position: relative;
  width: 100%;
  height: 20%;
  background-image: url('../assets/images/newsletter/Patterns.webp');
  background-size: cover;
}

/* Gradient strip overlay on pattern side */
.newsletter-gradient-strip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  min-height: 80px;
  background-image: url('../assets/images/newsletter/GradientStrip.webp');
  z-index: 10;
}

/* Right: Gradient side */
.newsletter-gradient-side {
  position: relative;
  flex: 1;
  min-height: 320px;
  background-image: url('../assets/images/newsletter/NewsletterGradient.webp');
  background-size: cover;
  background-position: right center;
}
.newsletter-gradient-overlay {
  position: absolute;
  width: 100%;
  height: 27%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(270deg, #B5F4F0 5.01%, rgba(181, 244, 240, 0.1) 82.62%);
  pointer-events: none;
}

/* Car image */
.newsletter-car-img {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -7rem);
  z-index: 10;
  height: 230px;
  object-fit: contain;
}

/* Heading */
.newsletter-heading {
  position: absolute;
  top: 65px;
  left: 48%;
  transform: none;
  width: 85%;
  max-width: 630px;
  font-family: 'PoppinsRegular', sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  color: #fff;
  text-align: left;
  margin: 0;
  min-width: 227px;
}

/* Form wrapper */
.newsletter-form-wrapper {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 350px;
}

@media (min-width: 768px) {
  .newsletter-form-wrapper {
    top: 50%;
    left: 66.67%;
    transform: translate(-50%, -50%);
  }
}

/* HubSpot newsletter form styling (from netsoltech - inline input+button pair) */
#hubspotNewsForm form {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}

#hubspotNewsForm .hs-form label,
#hubspotNewsForm form .hs-email [id^="label-email"] {
  display: none !important;
}

#hubspotNewsForm form .hs-email {
  display: flex;
  flex: 1;
}

#hubspotNewsForm form .input,
#hubspotNewsForm form .hs-form-field {
  flex: 1;
  margin: 0;
}

#hubspotNewsForm form .input .hs-input,
#hubspotNewsForm .hs-input {
  background: #fff;
  color: #000;
  border: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 0 20px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-family: 'PoppinsRegular', sans-serif;
  transition: all 0.2s ease-in-out;
  outline: none;
  border-radius: 16px 0 0 16px;
  min-width: 340px;
}

#hubspotNewsForm .hs-input:focus {
  border-color: var(--PrimaryBlue);
  box-shadow: 0 0 0 2px rgba(29, 129, 242, 0.2);
}

/* Connected look: remove double border between input and button */
#hubspotNewsForm form .input .hs-input {
  border-right-color: transparent;
}

#hubspotNewsForm form .actions,
#hubspotNewsForm form .hs_submit {
  margin: 0;
  flex-shrink: 0;
}

#hubspotNewsForm form .actions .hs-button,
#hubspotNewsForm .hs-button {
  background: var(--PrimaryBlue);
  color: #fff;
  border: none;
  border-radius: 0 16px 16px 0;
  padding: 0 32px;
  height: 60px;
  min-width: 225px;
  font-size: 16px;
  font-family: 'PoppinsMedium', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hubspotNewsForm form .actions .hs-button:hover,
#hubspotNewsForm .hs-button:hover {
  background: var(--header-primary-hover, #1476EB);
}

#hubspotNewsForm form ul.hs-error-msgs {
  color: #dc2626;
  font-size: 12px;
  font-family: 'PoppinsRegular', sans-serif;
  margin-top: 4px;
  padding-left: 0;
  list-style: none;
}

/* Footer - from style.css, rebranding overrides */
.footer {
  background: var(--footer-bg-gradient) !important;
  color: var(--text-grey-300);
  font-family: 'PoppinsRegular';
  font-size: 14px;
}
.footer-inner-right p{margin-bottom: 0; font-size: 14px; line-height: 25px;}
.footer,
.footer *,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  font-family: 'PoppinsRegular';
}
.footer-rightcontent {
  margin-bottom: 20px;
}

.footer-rightcontent ul {
  list-style: none;
  padding: 0;
}

.footer-rightcontent ul li {
  margin-bottom: 5px;
}

.footer-rightcontent ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-rightcontent ul li a:hover {
  color: var(--text-white);
  text-decoration: none;
}

.footerBottomMenu ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.footerBottomMenu ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.footerBottomMenu ul li a:hover {
  color: var(--text-white);
}
.logo_footer {
  margin-bottom: 20px;
}
.footer-inner-left img {
  width: 50px;
}

.footer-inner-right {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-inner-right .footer-rightcontent {
  width: 25%;
  margin-bottom: 45px;
}

.footer-contact img {
  width: 25px;
}

.footer-inner-left ul li h5 {
  color: var(--text-white);
  font-size: 1em;
  font-family: 'PoppinsBold', sans-serif;
  line-height: 1.4em;
}

.footer-inner-left ul li p span {
  font-size: 1em;
  font-family: 'PoppinsSemiBold', sans-serif;
  line-height: 30px;
}

.footer-inner-left ul li p a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner-left ul li p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875em;
  line-height: 1.4em;
}

.footer-contact li {
  padding: 5px;
}

.footer-inner h4 {
  color: var(--footer-title-color) !important;
  font-family: 'PoppinsSemiBold', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.4em;
  padding-bottom: 10px;
}
.inner-right-content ul li ul{flex-direction: row;}
.footer-inner-right ul {
  padding: 0;
}
.footer-inner-right ul {
  padding: 0;
}
.inner-right-content ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-inner-right ul li a {
  color: var(--text-grey-300);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2em;
  padding: 8px 0;
  text-decoration: none;
}

.footer-rightcontent ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-rightcontent ul li.about-us {
  display: block;
  margin-top: 15px;
}

.footer-end-content {
  display: flex;
  padding: 25px 0;
  justify-content: space-between;
  align-items: center;
}

.footer-end-content ul li a,
.footer-end-content p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5em;
  padding: 0 7px;
  font-size: 14px;
}

.footerBottomMenu ul li {
  position: relative;
  padding-left: 3px;
  margin-left: 3px;
}

.footerBottomMenu ul li:before {
  content: "";
  width: 1.5px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
}

.footerBottomMenu ul li:first-child::before {
  display: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Footer container & rebranding overrides */
.footer-container {
  max-width: 95%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 48px;
  padding-top: 48px;
}

.footer .footer-heading,
.footer .footer-rightcontent h4,
.footer .footer-inner h4,
.footer h4 {
  color: var(--footer-title-color) !important;
  font-family: 'PoppinsSemiBold', sans-serif !important;
  font-size: 14px !important;
}

.col-12.footer-inner-end {
  background: var(--black) !important;
  font-family: 'PoppinsRegular', sans-serif !important;
}
.jamaPunji {
  margin-top: -100px;
}
.jamaPunji img {
  width: 60%;
}

/* ============================================
   CLIENTS LOGOS (ClientsLogos.vue-style layout)
   ============================================ */

.clients-logos.bannerClients {
  background-size: contain;
  background-repeat: repeat;
  margin-top: 0;
  padding: 2rem 0;
  margin-top: 1rem;
  width: 100%;
}

.clients-logos .clients-autocontent {
  padding: 30px 0;
}

.clients-heading {
  font-size: 29px;
  font-family: 'PoppinsSemiBold';
  text-align: center;
  margin-bottom: 2rem;
  color: var(--mainContentColor);
}

.clients-slider-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
}

.clients-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.clients-slider::-webkit-scrollbar {
  display: none;
}

.clients-slide-track {
  display: flex;
  flex-wrap: nowrap;
}
.clients-logos .client_logo_container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 80px;
  margin: 0 24px;
}
.clients-logos .client-logo-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Experience Section */
#experienceSection{margin-top: 100px;}
.experience-section {
  background-color: var(--BgGrey);
  border-top: 1px solid var(--PrimaryBlue);
  padding: 24px 0;
}

.experience-inner {
  padding: 24px 16px;
}

.experience-grid {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  align-items: center;
  max-width: 100%;
}

.experience-content-col {
  width: 70%;
  text-align: left;
}

.experience-image-col {
  width: 30%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.experience-image-wrap {
  position: relative;
}

.experience-img {
  width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.experience-title {
  font-family: 'QualyRegular';
  color: var(--mainContentColor);
  margin-bottom: 24px;
}

.text-primary-blue {
  color: var(--PrimaryBlue);
}

.experience-description {
  color: var(--mainContentColor);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.experience-description p:last-child {
  margin-bottom: 0;
}

.experience-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 32px;
}

.experience-stat-box {
  background: var(--gradient-grey);
  padding: 1rem 0.5rem;
  border-radius: var(--btnBorderRadius);
}

.experience-stat-box .stat-value {
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 8px;
}

.experience-stat-box .stat-label {
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: var(--mainContentColor);
  margin: 0;
}

.experience-footer p {
  color: var(--mainContentColor);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   GLOBAL BANNER (Image + Info sections)
   Based on bannerImg.vue + BannerInfo.vue
   ============================================ */
.global-banner {
  width: 100%;
  min-height: 95vh;
}

/* Prevent horizontal overflow when banner has sequence slider */
.global-banner--has-slider {
  overflow-x: hidden;
  max-width: 100%;
}

.global-banner--has-slider .global-banner__inner {
  overflow-x: hidden;
  max-width: 100%;
}

.global-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  gap: 0;
}
.global-banner__img-col,
.global-banner__info-col {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Constrain slider column to avoid excess white space on large screens */
.global-banner--has-slider .global-banner__img-col {
  max-width: min(50%, 580px);
  flex: 0 0 min(50%, 580px);
}

.global-banner__inner--reversed .global-banner__img-col {
  order: 1;
}

.global-banner__inner--reversed .global-banner__info-col {
  order: 2;
}

/* Banner Image Section */
.global-banner__img-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  min-width: 0;
  overflow: hidden;
}

.global-banner__img-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.global-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top 30% right 0;
  background-size: 550px auto;
}

.global-banner__img-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.global-banner__main-img {
  width: 80%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
}

/* Sequence Slider (home banner animation) */
.sequence-slider {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 400px;
  isolation: isolate;
  contain: layout style paint;
}

.sequence-slider__bgs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sequence-slider__bgs .sequence-slider__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sequence-slider__frame-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overflow-x: hidden;
}

.sequence-slider__frame {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  min-width: 0;
  flex-shrink: 0;
}

.sequence-slider__track {
  display: flex;
  will-change: transform;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.sequence-slider__slide-box {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-width: 0;
}

.sequence-slider__slide-img {
  display: block;
  user-select: none;
  pointer-events: none;
}

/* Banner image col when using sequence slider */
.global-banner__img-container.sequence-slider-container {
  width: 100%;
  max-width: 100%;
  min-height: 400px;
  overflow: hidden;
  overflow-x: hidden;
}

.global-banner__img-wrap:has(.sequence-slider) {
  overflow: hidden;
  overflow-x: hidden;
}

/* Banner Info Section */
.global-banner__info-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 16px 32px 32px 32px;
}

.global-banner__info-inner {
  width: 100%;
  max-width: 680px;
  text-align: left;
  margin: 0;
}

.global-banner__tagline {
  margin-bottom: 1.5rem;
  font-family: var(--PoppinsRegular);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--mainContentColor);
}

.global-banner__tagline .tagline__text {
  border-left: 2px solid var(--borderColor);
  padding-left: 1.5rem;
  line-height: normal;
}

.headline .text-content-grey {
  color: var(--mainContentColor);
}

.global-banner__description {
  color: var(--mainContentColor);
  line-height: 36px;
  margin-bottom: 24px;
  font-size: 16px;
}

/* Banner typewriter - cycling words in PrimaryBlue */
.banner-typewriter {
  color: var(--PrimaryBlue);
}

.global-banner__cta {
  display: flex;
  justify-content: flex-start;
}

.banner-typewriter-container {
  display: block;
  overflow: hidden;
  vertical-align: middle;
}
.banner-typewriter {
  color: var(--PrimaryBlue);
}

.banner-typewriter {
  color: var(--PrimaryBlue);
}

.banner-typewriter {
  color: var(--PrimaryBlue);
}

.banner-typewriter {
  color: var(--PrimaryBlue);
}

.typed-cursor {
  color: var(--PrimaryBlue);
}

.banner-typewriter {
  color: var(--PrimaryBlue);
}

.typed-cursor {
  color: var(--PrimaryBlue);
}

/* Banner typewriter - words cycle in PrimaryBlue */
.banner-typewriter {
  color: var(--PrimaryBlue);
}
.typed-cursor {
  color: var(--PrimaryBlue);
}

/* Banner typewriter - cycling words (seamless, secure, transparent, profitable) */
.banner-typewriter {
  color: var(--PrimaryBlue);
}
.typed-cursor {
  color: var(--PrimaryBlue);
}

/* Banner typewriter words - PrimaryBlue */
.banner-typewriter {
  color: var(--PrimaryBlue);
}

.typed-cursor {
  color: var(--PrimaryBlue);
}

/* Banner typewriter words - PrimaryBlue */
.banner-typewriter {
  color: var(--PrimaryBlue);
}

.typed-cursor {
  color: var(--PrimaryBlue);
}

/* Banner typewriter - cycling words */
.banner-typewriter {
  color: var(--PrimaryBlue);
}

/* ============================================
    - Card grid 
   ============================================ */

  .investorsection{
  padding-top: 64px;
  }

.insight-section {
  padding: 64px 0;
}
.insight-section-title {
  font-family: 'QualyRegular';
  color: var(--mainContentColor);
  margin-bottom: 40px;
  text-align: center;
}

.awards-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.award-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f2f2f2;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.award-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.award-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.award-card-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  background-color: #f2f2f2;
  background-image: url('../assets/images/awards-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.award-card-copy {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  box-sizing: border-box;
  max-width: 58%;
  min-width: 0;
  padding: 26px 20px 11px 26px;
}

.award-card-eyebrow {
  margin: 0 0 8px;
  font-family: 'PoppinsSemiBold';
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.award-card-title {
  margin: 0 0 12px;
  font-size: 22px;
  margin-bottom: 10px;
}

.award-card-year {
  margin: 0;
  font-family: 'PoppinsSemiBold';
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.insight-card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: 'PoppinsRegular';
}

.insight-card-cta::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url('../assets/images/insight-arrow.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('../assets/images/insight-arrow.svg') no-repeat center;
  -webkit-mask-size: contain;
}

.insight-card-cta:hover {
  color: var(--mainContentColor);
}

/* ============================================
    - Investors Page
   ============================================ */

.aboutUsBoxListIn {
  background-color: var(--investor-card-bg);
  border: 1px solid var(--investor-card-border);
}

.aboutUsBoxListIn:hover {
  border-color: var(--investor-card-border);
}

.investors-page .investors-contact-section > h3,
.investors-page .investors-contact-section > .leadText {
  text-align: center;
  width: 100%;
}

.investors-contact-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}
.page__tagline {
  margin-bottom: 1.5rem;
  font-family: var(--PoppinsRegular);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--mainContentColor);
}
.page__tagline .tagline__page-text {
  line-height: normal;
}
.investors-contact-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  box-sizing: border-box;
  padding: 28px 24px;
  min-height: 220px;
  text-align: left;
  border-radius: 12px;
  border: 1px solid var(--investor-card-border);
  background-image: url('../assets/images/card_bg.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto min(100%, 320px);
}

.investors-contact-card h5 {
  margin-top: 0;
  color: var(--PrimaryBlue);
  font-family: 'PoppinsSemiBold', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.investors-page .investors-contact-card p {
  margin-bottom: 0;
  color: var(--mainContentColor);
  line-height: 1.55;
}

 .investors-disclaimer-card {
  padding: 28px 24px 24px;
  text-align: left;
  background-color: var(--investor-card-bg);
  border-top: 1px solid var(--PrimaryBlue)
}

.investors-page .investors-disclaimer-text {
  margin: 0 0 24px;
  color: var(--mainContentColor);
  line-height: 1.6;
}

.investors-page .investors-disclaimer-banner {
  padding: 16px;
  border-radius: 10px;
}

.investors-page .investors-disclaimer-banner a {
  display: block;
  line-height: 0;
}

.investors-page .investors-secp-banner-img {
  width: 100%;
  max-width: min(100%, 720px);
  height: auto;
  vertical-align: middle;
}

.aboutUsBoxListingMain h2, .aboutUsBoxListing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.investorInformation .aboutUsBoxListing { grid-template-columns: repeat(4, 1fr);}
.awards-box-listing .aboutUsBoxListing .aboutUsBoxListIn{color: var(--White);}
.aboutUsBoxList {
  display: flex;
  min-height: 100%;
}
.awards-box-listing .aboutUsBoxList {height: 230px;}
.awards-box-listing .aboutUsBoxListIn {
  justify-content: center;
}
.aboutUsBoxListIn {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  border: 1px solid var(--borderColor);
}
.investorInformation .aboutUsBoxListIn {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: max-content;
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  border: 1px solid var(--borderColor);
}

.investors-page .investorInformation .invester-card .btn-main-primary {
  margin-bottom: 6px;
}

.investors-page .investor-information-prose {
  margin-top: 32px;
  margin-bottom: 56px;
}

.investors-page .investor-information-prose h3 {
  color: var(--PrimaryBlue);
  font-family: 'PoppinsSemiBold', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.4;
}

.investors-page .investor-link-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.investors-page .investor-link-stack a {
  line-height: 1.45;
}

.investors-page .investor-doc-link {
  display: block;
  width: 100%;
  line-height: 1.5;
}

/* Investor financial reports — tabbed panels & cards */
.investor-reports-section__title {
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.25;
  margin-top: 0;
}

.investor-reports-section__title-muted {
  color: var(--mainContentColor);
  font-weight: inherit;
}

.investor-reports-panel {
  border: 1px solid var(--investor-card-border);
  border-radius: 15px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--White);
}

.investor-reports-tabs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.investor-reports-tabs .nav-item {
  margin: 0;
}

.investor-reports-tabs .nav-link {
  border-radius: 10px;
  border: 1px solid var(--investor-card-border);
  background-color: var(--investor-card-bg);
  color: var(--mainContentColor);
  padding: 10px 22px;
  font-family: var(--fontBody, 'PoppinsRegular');
  font-weight: 500;
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.investor-reports-tabs .nav-link:hover {
  border-color: rgba(29, 129, 242, 0.35);
  color: var(--PrimaryBlue);
}

.investor-reports-tabs .nav-link.active {
  background-color: var(--PrimaryBlue);
  color: var(--White);
  border-color: var(--PrimaryBlue);
}

.investor-reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.investor-report-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--investor-card-border);
  border-radius: 10px;
  padding: 20px;
  background: var(--White);
  min-height: 100%;
  box-sizing: border-box;
}

.investor-report-card--muted {
  opacity: 0.75;
}

.investor-report-card__fy {
  font-family: 'PoppinsSemiBold';
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--grey);
  margin: 0 0 8px;
}

.investor-report-card__type {
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 6px;
  line-height: 1.4;
  font-weight: 600;
}

.investor-report-card__period {
  font-size: 13px;
  color: var(--grey);
  margin: 0 0 16px;
  line-height: 1.4;
  flex-grow: 1;
}

.investor-report-card__view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #EBF5FF;
  color: var(--grey);
  font-family: var(--PoppinsRegular);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.investor-report-card__view:hover {
  background-color: #dceeff;
  color: #111111 !important;
}

.investor-report-card__view-icon {
  font-size: 16px;
  opacity: 0.85;
}

.investor-report-card__view--disabled {
  background-color: var(--investor-card-bg);
  color: #888888 !important;
  cursor: default;
  pointer-events: none;
}

/* Investor ratio analysis — heading + metric cards */
.investors-page .investor-ratio-section {
  text-align: center;
}

.investors-page .investor-ratio-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.investors-page .investor-ratio-card {
  background: #FBFBFB;
  border: 1px solid var(--investor-card-border);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
}

.investors-page .investor-ratio-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--mainContentColor);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--mainContentColor);
}

.investors-page .investor-ratio-card__label {
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 10px;
}

.investors-page .investor-ratio-card__value {
  font-family: var(--PoppinsSemiBold);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  margin: 0;
  margin-top: auto;
  line-height: 1.25;
}

/* Investor documents accordion */
.investors-page .investor-documents-accordion-block__tagline {
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 14px;
}

.investors-page .investor-doc-accordion {
  --inv-acc-radius: 10px;
}

.investors-page .investor-doc-accordion__item {
  margin-bottom: 12px;
  border: 1px solid var(--investor-card-border);
  border-radius: var(--inv-acc-radius);
  overflow: hidden;
  background: var(--White);
}

.investors-page .investor-doc-accordion__item:has(.accordion-collapse.show) {
  border-top: 2px solid var(--PrimaryBlue);
}

.investors-page .investor-doc-accordion .accordion-header {
  margin-bottom: 0;
}

.investors-page .investor-doc-accordion h2.accordion-header {
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 1rem;
  line-height: 1.3;
}

.investors-page .investor-doc-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  background-color: #f8f9fa;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.investors-page .investor-doc-accordion .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #333333;
  box-shadow: none;
}

.investors-page .investor-doc-accordion .accordion-button::after {
  display: none;
}

.investors-page .investor-doc-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.investors-page .investor-doc-accordion__btn-doc {
  font-size: 1.15rem;
  color: var(--mainContentColor);
  flex-shrink: 0;
}

.investors-page .investor-doc-accordion__btn-title {
  flex: 1;
  text-align: left;
  line-height: 1.35;
}

.investors-page .investor-doc-accordion__btn-chevron {
  flex-shrink: 0;
  font-size: 14px;
  color: #555555;
  transition: transform 0.2s ease;
}

.investors-page .investor-doc-accordion .accordion-button:not(.collapsed) .investor-doc-accordion__btn-chevron {
  transform: rotate(180deg);
}

.investors-page .investor-doc-accordion__body {
  padding: 0;
  background: var(--White);
}

.investors-page .investor-doc-accordion__list {
  border-top: 1px solid var(--investor-card-border);
}

.investors-page .investor-doc-accordion__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none !important;
  color: #333333 !important;
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(234, 234, 234, 0.9);
  transition: background-color 0.15s ease;
}

.investors-page .investor-doc-accordion__row:last-child {
  border-bottom: none;
}

.investors-page .investor-doc-accordion__row:hover {
  background-color: #fafbfc;
  color: var(--PrimaryBlue) !important;
}

.investors-page .investor-doc-accordion__row:hover .investor-doc-accordion__row-icon,
.investors-page .investor-doc-accordion__row:hover .investor-doc-accordion__row-view {
  color: var(--PrimaryBlue);
}

.investors-page .investor-doc-accordion__row-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: #666666;
}

.investors-page .investor-doc-accordion__row-label {
  flex: 1;
  min-width: 0;
}

.investors-page .investor-doc-accordion__row-view {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #777777;
}

.investors-page .investor-doc-accordion__total {
  margin: 0;
  padding: 12px 18px 16px;
  font-size: 13px;
  color: #888888;
  font-family: var(--fontBody, 'PoppinsRegular');
  background: var(--White);
}

/* Investor symbol assigned — split section */
.investors-page .investor-symbol-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: 8px;
}

.investors-page .investor-symbol-split__title {
  margin: 0 0 16px;
}

.investors-page .investor-symbol-split__text {
  margin: 0 0 22px;
  color: #777777;
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 14px;
  line-height: 1.7;
  max-width: 56ch;
}

.investors-page .investor-symbol-split__cta.primary-cta {
  font-size: 14px;
  padding: 12px 22px;
  padding-right: calc(22px + var(--btnArrowSize) + 12px);
}

.investors-page .investor-symbol-split__media {
  display: flex;
  justify-content: flex-end;
}

.investors-page .investor-symbol-split__img {
  width: min(520px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

/* Investor AGM dissemination — centered long-form block */
.investors-page .investor-agm-section {
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 6px;
}

.investors-page .investor-agm-section__title {
  margin: 0 0 18px;
}

.investors-page .investor-agm-section__copy {
  max-width: 92ch;
  margin-left: auto;
  margin-right: auto;
}

.investors-page .investor-agm-section__copy p {
  margin-bottom: 14px;
}

.investors-page .investor-agm-section__cta {
  margin-top: 22px;
}

.investors-page .investor-agm-section__cta .primary-cta {
  font-size: 14px;
  padding: 12px 22px;
  padding-right: calc(22px + var(--btnArrowSize) + 12px);
}

/* Investor cash dividend + e-dividend sections */

.investors-page .investor-cash-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.investors-page .investor-cash-card__badge {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E1E4E4;
  flex-shrink: 0;
}

.investors-page .investor-cash-card__title {
  font-family: 'QualyRegular' !important;
  font-weight: normal !important;
  font-size: 28px !important;
  color: var(--mainContentColor) !important;
}

.investors-page .investor-cash-card__subhead {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--grey);
}

.investors-page .investor-cash-card__rule {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 14px;
}

.investors-page .investor-cash-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.investors-page .investor-cash-card__meta-label {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--grey);
  line-height: 1.3;
}

.investors-page .investor-cash-card__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fontBody, 'PoppinsRegular');
  font-size: 13px;
  color: #333333;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
}

.investors-page .investor-cash-card__cta:hover {
  color: var(--PrimaryBlue);
  background: rgba(29, 129, 242, 0.08);
}

.investors-page .investor-edividend-section__points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.investors-page .investor-edividend-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.investors-page .investor-edividend-point__badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--PrimaryBlue);
  color: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PoppinsSemiBold', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-top: 4px;
}

.investors-page .investor-edividend-section__cta {
  text-align: left;
}

.investors-page .investor-edividend-section__cta .primary-cta {
  font-size: 14px;
  padding: 12px 22px;
  padding-right: calc(22px + var(--btnArrowSize) + 12px);
}

/* Other investor information — card grid */
.investors-page .investor-other-info__card {
  background: var(--White);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: clamp(22px, 3vw, 30px);
  background-image: url('../assets/images/board_of_dir_bg.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto min(100%, 280px);
  min-height: 0;
}

.investors-page .investor-other-info__card--full {
  margin-bottom: 20px;
}

.investors-page .investor-other-info__card-title {
  margin: 0 0 18px;
  color: var(--PrimaryBlue);
  font-family: 'QualyRegular'!important;
  font-weight: normal !important;
  font-size: 28px !important;
  line-height: 33px !important;
}

.investors-page .investor-other-info__card-text {
  margin: 0;
  color: var(--mainContentColor);
  font-size: 14px;
  line-height: 1.65;
}

.investors-page .investor-other-info__bod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.investors-page .investor-other-info__bod-cell {
  padding: 16px 18px;
  border-bottom: 1px solid #eeeeee;
}

.investors-page .investor-other-info__bod-cell--span {
  grid-column: 1 / -1;
  border-right: none;
}

.investors-page .investor-other-info__bod-cell:last-child {
  border-bottom: none;
}

.investors-page .investor-other-info__bod-name {
  margin: 0 0 4px;
  font-family: 'PoppinsSemiBold', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.investors-page .investor-other-info__bod-role {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.investors-page .investor-other-info__row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.investors-page .investor-other-info__row:last-child {
  margin-bottom: 0;
}

.investors-page .investor-other-info__row--2 {
  grid-template-columns: repeat(2, 1fr);
}

.investors-page .investor-other-info__row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.aboutUsBoxListIn .insight-card-cta {
  margin-top: auto;
}

.aboutUsBoxListIn h4 {
  font-size: 20px;
}
.awards-box-listing .aboutUsBoxListing .aboutUsBoxListIn h4{color: var(--White);}
p.leadText, .leadText {
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
}
.listRow2Main {
  display: flex;
}
.listCol {
  width: 50%;
}

/* ============================================
   Board of Directors Page
   ============================================ */

#boardOfDirector .aboutUsBoxListing,
#managementTeam .aboutUsBoxListing,
#electionDirectorCandidates .aboutUsBoxListing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  text-align: left;
}

.newBoardDirectorCardLayoutSecond {
  display: flex;
  min-height: 100%;
}

.newBoardDirectorCardStyleSecond {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  border-radius: 12px;
  position: relative;
  background: var(--White);
  width: 100%;
  overflow: hidden;
  padding: 28px 24px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.team-card-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.team-card-left {
  left: -30px;
}

.team-card-right {
  right: 0;
}

#boardOfDirector .newBoardDirectorCardStyleSecond .directorImage,
#boardOfDirector .newBoardDirectorCardStyleSecond .directorInfo,
#managementTeam .newBoardDirectorCardStyleSecond .directorInfo,
#electionDirectorCandidates .newBoardDirectorCardStyleSecond .directorImage,
#electionDirectorCandidates .newBoardDirectorCardStyleSecond .directorInfo {
  position: relative;
  z-index: 1;
}

#boardOfDirector .directorImage,
#electionDirectorCandidates .directorImage {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-left: 4px;
}

#boardOfDirector .directorImage img,
#electionDirectorCandidates .directorImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

#boardOfDirector .directorInfo,
#managementTeam .directorInfo,
#electionDirectorCandidates .directorInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding: 0;
}

#boardOfDirector .directorInfo h3,
#managementTeam .directorInfo h3,
#electionDirectorCandidates .directorInfo h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 6px;
}

#boardOfDirector .directorInfo .director-designation,
#managementTeam .directorInfo .director-designation,
#electionDirectorCandidates .directorInfo .director-designation {
  font-size: 14px;
  min-height: 50px;
  line-height: 1.5;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  text-overflow: unset;
}

#boardOfDirector .directorBtns,
#managementTeam .directorBtns,
#electionDirectorCandidates .directorBtns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

#boardOfDirector .directorBtns .btn-view-profile {
  flex: 1;
  background: var(--lightTurquoise);
  border: none;
  color: var(--PrimaryBlue);
  height: 40px;
  padding: 0 20px;
  border-radius: var(--btnBorderRadius);
  font-family: var(--PoppinsMedium);
  font-size: 14px;
  max-width: fit-content;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

#boardOfDirector .directorBtns .btn-view-profile:hover {
  transform: translateY(-3px);
}

#boardOfDirector .directorBtns .btn-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0077b5;
  border-radius: var(--btnBorderRadius);
  color: var(--White);
  transition: opacity 0.2s ease, transform 0.15s ease;
}

#boardOfDirector .directorBtns .btn-linkedin:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Management Team - no image, View Profile links to LinkedIn */
#managementTeam .management-team-card .directorInfo {
  width: 100%;
}

#managementTeam .directorBtns .btn-view-profile {
  flex: 1;
  max-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  background: var(--lightTurquoise);
  border: none;
  color: var(--PrimaryBlue);
  height: 40px;
  padding: 0 20px;
  border-radius: var(--btnBorderRadius);
  font-family: var(--PoppinsMedium);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

#managementTeam .directorBtns .btn-view-profile:hover {
  transform: translateY(-3px);
}

/* Election of directors — outline “View Document” control */
#electionDirectorCandidates .directorBtns .btn-view-profile {
  flex: 0 1 auto;
  max-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--grey);
  color: var(--grey);
  height: auto;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--PoppinsMedium);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-shadow: none;
}

.election-result-tile__action {
  text-align: center;
  width: 100%;
  font-size: 16px;
  background: var(--text-white);
  color: var(--mainContentColor);
  border-radius: 8px;
  padding: 8px;
  border: solid 1px var(--investor-card-border);
}

#electionDirectorCandidates .directorBtns .btn-view-profile:hover {
  transform: none;
  background: rgba(24, 24, 24, 0.04);
  border-color: var(--grey2);
  color: var(--grey2);
}

#electionDirectorCandidates .directorBtns .btn-view-profile .election-doc-sparkle {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
  color: currentColor;
}

/* ============================================
   Director Profile Modal
   ============================================ */

.model-window {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.model-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
  cursor: pointer;
}

.model-content {
  position: relative;
  z-index: 2;
  background: var(--White);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 90%;
  width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.model-content.modal-large {
  width: 720px;
  max-width: 95%;
}

.teamPopUp .model-content {
  padding: 48px 40px 40px;
}

.close-window {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--BgGrey);
  transition: background 0.2s ease;
}

.close-window:hover {
  background: var(--borderColor);
}

.close-window::before,
.close-window::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--grey2);
  border-radius: 1px;
}

.close-window::before {
  transform: rotate(45deg);
}

.close-window::after {
  transform: rotate(-45deg);
}

.teamPopUp .model-content h3 {
  font-size: 24px;
  color: var(--grey2);
  margin-bottom: 8px;
  padding-right: 40px;
}

.teamPopUp .model-content .director-modal-designation {
  font-size: 15px;
  color: var(--PrimaryBlue);
  margin-bottom: 20px;
}

.teamPopUp .model-content p,
.teamPopUp .model-content .director-modal-detail {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mainContentColor);
  margin-bottom: 0;
  min-height: unset;
}

/* Director modal with image */
.director-modal-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.director-modal-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.director-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-modal-body {
  flex: 1;
  min-width: 0;
}

/* ============================================
   CONTACT US PAGE 
   ============================================ */
  .contact-banner {
    align-items: flex-start;
    text-align: left;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-form-container {margin-top: 30px;}
  .contact-careers-heading {
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
  }
  .office-locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-form-inner {
    width: 100%;
    padding-top: 32px;
  }
  .contact-form-box {
    background: #f3f4f6;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 20px 20px 32px;
    width: 100%;
  }
#hubspotForm.styled-hubspot-form,
#hubspotForm {
  background: #f3f4f6 !important;
  padding-top: 20px !important;
}

#hubspotForm form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100% !important;
  margin-bottom: 0 !important;
}

#hubspotForm fieldset {
  max-width: 100% !important;
  border: none;
  margin: 0;
  padding: 0;
}

#hubspotForm fieldset.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

#hubspotForm fieldset.form-columns-1 {
  border: none;
  margin: 0;
  padding: 0;
}

#hubspotForm .hs-form-field {
  margin-bottom: 0;
  position: relative;
  width: 100%;
}

#hubspotForm .hs-form-field > label {
  display: block;
  color: var(--mainContentColor);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 20px;
}

#hubspotForm .hs-form-required {
  color: #dc2626;
  margin-left: 4px;
}

#hubspotForm .hs-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--mainContentColor);
  padding: 8px 0;
  background: transparent;
  color: var(--mainContentColor);
  font-size: 12px;
  outline: none;
  transition: all 0.2s;
}
#hubspotForm .hs-input[type="checkbox"] {width: auto;}
#hubspotForm .hs-fieldtype-intl-phone{padding-top: 0; border-bottom: none;}
li.hs-form-booleancheckbox {
  list-style: none;
}
ul.inputs-list {
  padding-left: 0;
}
#hubspotForm .hs-input:focus {
  border-bottom-color: var(--PrimaryBlue);
}

#hubspotForm .hs-fieldtype-select .hs-input {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
}

#hubspotForm .hs-button {
  background: var(--PrimaryBlue) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 16px;
}

#hubspotForm .hs-button:hover {
  background: #1d4ed8 !important;
}

#hubspotForm .hs-error-msgs {
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
  list-style: none;
  padding: 0;
}
#hubspotForm .legal-consent-container .hs-form-booleancheckbox-display p , .hs-richtext p {
  font-size: 13px;
  line-height: normal;
}

/* Office Locations  */
.office-locations-vue {
  padding: 48px 16px;
}

.office-locations-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--mainContentColor);
}

.office-locations-grid {
  display: grid;
  gap: 16px;
}
.office-card {
  border: 0.5px solid #EFEFEF;
  border-radius: 8px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-image: url('../assets/images/officecardbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
}

.office-card-flag {
  width: 30px;
  height: 26px;
  object-fit: contain;
  margin-bottom: 4px;
}

.office-card-region {
  font-weight: 500;
  color: var(--PrimaryBlue) !important;
  font-size: 16px;
  margin: 0 0 4px 0;
  line-height: normal;
}

.office-card-company,
.office-card-address {
  color: var(--mainContentColor);
  font-size: 13px;
  line-height: 24px;
  margin: 0;
}

.office-card-phone {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}

.office-card-phone a {
  color: var(--PrimaryBlue);
  text-decoration: none;
}

.office-card-phone a:hover {
  text-decoration: underline;
}

.office-locations-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.office-locations-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  border: 1px solid #9ca3af;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: 'PoppinsRegular';
  font-size: 16px;
  color: var(--mainContentColor);
  transition: all 0.2s;
}

.office-locations-toggle:hover {
  border-color: var(--PrimaryBlue);
  color: var(--PrimaryBlue);
}

.office-locations-toggle svg {
  transition: transform 0.2s;
}

/* --- Media page --- */
.media-page .media-awards-section {
  padding-bottom: 24px;
}

.media-page .media-section-title {
  font-family: 'QualyRegular';
  color: var(--mainContentColor);
  margin: 0 0 40px;
  text-align: center;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
}

.media-page .media-preview-award-card__visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 120px;
  padding: 20px 16px 0;
}

.media-page .media-preview-award-card__trophy {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.media-page .media-preview-award-card__org-logo {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

.media-page .media-awards-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 16px;
}

.media-page .media-membership-section {
  padding: 48px 0 64px;
}

.media-page .media-membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-page .media-membership-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--borderColor);
  border-radius: var(--btnBorderRadius);
  box-sizing: border-box;
  min-height: 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.media-page .media-membership-card:hover {
  border-color: rgba(29, 129, 242, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.media-page .media-membership-brand {
  width: 40%;
  height: 100%;
}

.media-page .media-membership-brand__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media-page .media-membership-brand__fallback {
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--PrimaryBlue);
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.media-page .media-membership-body {
  min-width: 0;
  flex: 1;
}

.media-page .media-membership-name {
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--PrimaryBlue);
  line-height: 1.3;
}

.media-page .media-membership-desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--mainContentColor);
}

.media-page .media-announcements-meta {
  padding: 20px 24px 24px;
  background: linear-gradient(270deg, #e1e4e469 0%, #f1f1f100 100%);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.media-announcements-meta-label {
  font-family: 'PoppinsSemiBold';
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--mainContentColor);
}

.media-announcements-meta-date {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 6px;
}

/* --- News / press release page --- */

.news-page .news-article {
  padding-top: 48px;
  margin-bottom: 48px;
}

.news-page .news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.news-page .news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #6b6d70;
}

.news-page .news-article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-page .news-article-meta-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.news-page .news-article-meta-text {
  color: inherit;
}

.news-page .news-article-title {
  margin: 0 0 28px;
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--mainContentColor);
}

.news-page .news-article-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--mainContentColor);
}

.news-page .news-article-body p {
  margin: 0 0 1.1em;
}

.news-page .news-article-body p:last-child {
  margin-bottom: 0;
}

.news-page .news-article-aside {
  position: relative;
}

.news-page .news-article-visual {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-page .news-article-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Full-bleed row (section sits outside .container); 2-col grid on inner .autocontent */
.news-about-split {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: clamp(36px, 5vw, 56px) 0;
  margin: 0;
  background: #f7fefd;
}

.news-about-split > .autocontent.news-about-split__inner,
.news-about-split > .autocontent {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.news-about-split__inner {
  width: 100%;
}

.news-about-split .news-about-card-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  isolation: isolate;
}

.news-about-split .news-about-col--card {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 28px;
  border-radius: 13px;
  background: var(--lightBlue);
  width: 80%;
  margin: 0 auto;
}
img.news-about-card-deco {
  position: absolute;
  width: 500px;
  height: 350px;
  top: -17px;
  left: 0;
}
.news-about-split .news-about-col--plain {
  padding: clamp(4px, 1vw, 8px) 0;
}

.news-ir-contact {
  text-align: center;
  padding: 8px 16px 32px;
}

.news-ir-title {
  margin: 0 0 20px;
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--mainContentColor);
}

.news-page .news-ir-details {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mainContentColor);
}

.news-page .news-ir-details p {
  margin: 0 0 6px;
}

.news-page .news-ir-details p:last-child {
  margin-bottom: 0;
}

.news-page .news-ir-details a {
  color: var(--mainContentColor);
}

.news-page .news-ir-details a:hover {
  text-decoration: underline;
}

/* —— Election of directors page —— */
.election-banner-highlight {
  color: var(--PrimaryBlue);
}

.election-candidates-section {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.election-section-heading {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.election-heading-accent {
  color: var(--PrimaryBlue);
}

.election-proxies-block {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.election-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

@media (max-width: 639.98px) {
  .election-results-grid {
    grid-template-columns: 1fr;
  }
}

.election-result-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 22px 24px;
  background: var(--lightBlue);
  border: 1px solid rgba(29, 129, 242, 0.18);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.election-result-tile:hover {
  background: #dff2ff;
  border-color: rgba(29, 129, 242, 0.35);
  transform: translateY(-2px);
}

.election-result-tile__label {
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey2);
}

.election-result-tile--pending {
  cursor: default;
  opacity: 0.92;
}

.election-result-tile__hint {
  font-size: 13px;
  color: var(--mainContentColor);
  font-style: italic;
}

.election-forms-section {
  margin-bottom: 24px;
}

.election-forms-banner {
  margin: 0 0 24px;
  padding: 22px 22px;
  font-family: var(--PoppinsMedium);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--grey2);
  background: var(--BgGrey);
  border-radius: 10px;
}

.election-forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

@media (max-width: 767.98px) {
  .election-forms-grid {
    grid-template-columns: 1fr;
  }
}

.election-form-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 3.5vw, 32px);
  background: var(--investor-card-bg);
  border: 1px solid var(--investor-card-border);
  border-radius: 12px;
}

.election-form-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.election-form-card__icon img {
  width: 25px;
  height: 25px;
}

.election-form-card__title {
  margin: 0;
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--grey2);
}

.election-form-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mainContentColor);
  flex: 1;
}

.election-form-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 14px 22px;
  background-color: var(--PrimaryBlue);
  color: var(--White);
  font-family: var(--PoppinsSemiBold), sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border: none;
  border-radius: var(--btnBorderRadius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.election-form-download-btn:hover {
  color: var(--White);
  background-color: #1476eb;
}

.election-form-download-btn .bi {
  font-size: 1.125rem;
  line-height: 1;
}

.election-form-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.election-share-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--mainContentColor);
  text-decoration: none;
  background: var(--White);
  border: 1px solid var(--investor-card-border);
  border-radius: var(--btnBorderRadius);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.election-share-btn__label {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.election-share-btn__icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--mainContentColor);
  opacity: 0.65;
}

.election-share-btn:hover {
  background: #fafafa;
  border-color: var(--borderColor);
  color: var(--grey2);
}

.election-share-btn:hover .election-share-btn__icon {
  opacity: 0.85;
  color: var(--grey2);
}

/* ============================================
   WHY NETSOL (netsoltech why-netsol.vue parity)
   ============================================ */

.about-map-banner {
  padding: 48px 16px 32px;
}

.about-map-banner__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto;
}

.about-map-banner__visual {
  flex: 0 0 46%;
  display: flex;
  justify-content: flex-start;
}
ul.about-map-banner__desc-list li {
  line-height: 30px;
  margin-bottom: 15px;
}
.about-map-banner__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-map-banner__text {
  flex: 1 1 54%;
}
.about-map-banner__text .tagline__text {
  border-left: none;
  padding: 0;
}
.about-map-banner__title-dark {
  color: var(--mainContentColor);
}

.about-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4px 0 24px;
  min-height: 600px;
  overflow-x: hidden;
}

.about-timeline__heading {
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin: 0 0 28px;
}

.about-timeline__heading-dark {
  color: var(--mainContentColor);
}

.about-timeline__info {
  width: 550px;
  max-width: 550px;
  margin: 0;
  position: absolute;
  right: auto;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
}

.about-timeline__info-inner {
  box-sizing: border-box;
  background: linear-gradient(135deg, #fafafa 0%, #fafafa 45%, #f0fffe 100%);
  border: 1px solid #d5d5d5;
  border-radius: 16px;
  padding: 20px 20px 24px;
}

.about-timeline__year-pill {
  display: inline-block;
  padding: 10px 28px;
  background: var(--PrimaryBlue);
  color: #fff;
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 15px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.about-timeline__info-title {
  margin: 0 0 12px;
  line-height: 40px;
  font-size: 34px;
}

.about-timeline__marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  transform: translateY(-50%);
  overflow: hidden;
  width: 100%;
  margin: 0;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.about-timeline__marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.about-timeline__marquee-year {
  flex-shrink: 0;
  margin: 0 clamp(24px, 5vw, 72px);
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: clamp(60px, 10vw, 180px);
  line-height: 1;
  color: rgba(69, 70, 72, 0.18);
}

.about-timeline__controls {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.about-timeline__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: visible;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-timeline__pills::-webkit-scrollbar {
  display: none;
}

.about-timeline__pill {
  flex-shrink: 0;
  padding: 12px 26px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 17px;
  line-height: 1.2;
  color: var(--grey2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.about-timeline__pill:hover {
  border-color: var(--PrimaryBlue);
  color: var(--PrimaryBlue);
}

.about-timeline__pill.is-active {
  background: var(--PrimaryBlue);
  border-color: var(--PrimaryBlue);
  color: #fff;
}

.about-timeline__progress-wrap {
  padding: 8px 0;
}

.about-timeline__progress-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.about-timeline__progress-scroll::-webkit-scrollbar {
  display: none;
}

.about-timeline__progress {
  position: relative;
  height: 10px;
  background: #e5e5e5;
  border-radius: 999px;
  width: 100%;
}

.about-timeline__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--PrimaryBlue);
  border-radius: 999px;
  transition: width 0.45s ease;
}

.about-timeline__progress-handle {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background: var(--PrimaryBlue);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(23, 154, 236, 0.35);
  transition: left 0.45s ease;
}

.about-timeline__tick {
  position: absolute;
  top: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #e5e5e5;
  transition: background 0.3s, border-color 0.3s;
}

.about-timeline__tick.is-on {
  background: var(--PrimaryBlue);
  border-color: var(--PrimaryBlue);
}

.about-track {
  padding: 24px 12px 56px;
}

/* Why NETSOL: legal / registration row — same card system as .about-track, softer panel fill */
.why-netsol-legal.about-track {
  padding-top: 0;
  padding-bottom: 48px;
}

.why-netsol-legal .about-track__grid {
  gap: clamp(16px, 2.5vw, 24px);
}

.why-netsol-legal .about-track-card {
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: clamp(28px, 4vw, 38px);
  height: 100%;
}

.why-netsol-legal .about-track-card__h--sm {
  margin-bottom: 14px;
  color: var(--grey2);
}

/* Rebrand “info” cards (Why NETSOL offices, Governance advisors): .about-track grid + blue titles + light bottom wash */
.why-netsol-offices.about-track,
.governance-advisors.about-track {
  padding-top: 0;
  padding-bottom: 24px;
}

.why-netsol-offices__heading {
  text-align: center;
}

.why-netsol-offices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}

/* Equal-height cards: grid row height → flex cell → article fills */
.why-netsol-offices__grid > .why-netsol-offices__cell {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.why-netsol-offices__grid .why-netsol-offices__cell .investors-contact-card {
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.why-netsol-offices__grid .why-netsol-offices__cell .investors-contact-card p {
  flex: 1 1 auto;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .why-netsol-offices__grid {
    grid-template-columns: 1fr;
  }
}

.why-netsol-offices .about-track__col,
.governance-advisors .about-track__col {
  display: flex;
}

.about-track__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.about-track__intro-heading {
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--mainContentColor);
  margin: 0 0 12px;
}

.about-track__intro-text {
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 15px;
  color: var(--grey2);
  line-height: 1.6;
  margin: 0;
}

.about-track__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .about-track__grid {
    flex-direction: row;
    align-items: stretch;
  }

  .about-track__col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

.about-track-card {
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 24px;
  padding: 20px 18px;
}

.about-track-card--tall {
  min-height: 280px;
}

.about-track-card__slide-wrap {
  position: relative;
  min-height: 220px;
}

.about-track-card__slide {
  display: none;
}

.about-track-card__slide.is-active {
  display: block;
}

.about-track-card__h {
  font-family: 'PoppinsSemiBold';
  font-size: 34px;
  line-height: 1.5;
}

.about-track-card__h--sm {
  font-size: 30px;
  font-family: 'QualyRegular';
  margin-bottom: 20px;
}

.about-track-card__h--center {
  text-align: center;
}

.about-track-card__p {
  font-family: 'PoppinsRegular';
  color: var(--grey);
  margin: 0;
}

.about-track-card--stat {
  position: relative;
  min-height: 200px;
  padding-bottom: 40px;
}

.about-track-stat-panels {
  position: relative;
  min-height: 120px;
}

.about-track-stat-panel {
  display: none;
  text-align: center;
  padding: 12px 8px 0;
}

.about-track-stat-panel.is-active {
  display: block;
}

.about-track-stat-value {
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #454648;
  margin: 0 0 8px;
}

.about-track-stat-label {
  font-size: 18px;
}

.about-track-card--industries .about-track-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-track-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  background: #F0FDFC;
  border-radius: 8px;
  font-size: 13px;
  color: var(--grey2);
  line-height: 1;
}

.about-track-pill img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  object-fit: contain;
}

.about-track-card--regions {
  position: relative;
  min-height: 260px;
  padding-bottom: 40px;
}

.about-track-region-panels {
  position: relative;
  min-height: 140px;
  padding: 8px 4px 0;
}

.about-track-region-panel {
  display: none;
  text-align: center;
}

.about-track-region-panel.is-active {
  display: block;
}

.about-track-region-name {
  font-family: 'QualyRegular';
  font-size: 36px;
  font-weight: 700;
}

.about-track-region-years {
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.about-track-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.about-track-dot {
  width: 28px;
  height: 6px;
  border: none;
  border-radius: 999px;
  background: #d5d5d5;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.about-track-dot.is-active {
  background: #179aec;
  width: 36px;
}

div#aboutTrackRegions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 39vh;
  padding: 16px 0;
}

.about-serve-cta {
  text-align: center;
  padding: 56px 16px 72px;
  max-width: 720px;
  margin: 0 auto;
}

.about-serve-cta__title {
  font-family: 'QualyRegular', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--mainContentColor);
  margin: 0 0 16px;
}

.about-serve-cta__para {
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey2);
  margin: 0 0 28px;
}

.about-serve-cta__btn {
  display: inline-flex;
}

/* --- Why NETSOL: vision statement table --- */
.vision-statement__hero {
  padding-bottom: 8px;
}

.vision-statement__table-wrap {
  width: 100%;
  margin: 28px auto 0;
  padding: 0 16px 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 78%;
}

.vision-statement__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-family: var(--PoppinsRegular);
  font-size: 15px;
  line-height: 1.55;
  background: #fff;
  border: 1px solid var(--borderColor);
}

.vision-statement__table thead th {
  background: var(--PrimaryBlue);
  color: var(--White);
  font-family: var(--PoppinsRegular);
  text-align: center;
  vertical-align: middle;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-statement__table thead th:first-child {
  border-left: none;
  width: 40%;
}

.vision-statement__table thead th:last-child {
  border-right: none;
  width: 60%;
}

.vision-statement__table tbody th,
.vision-statement__table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 20px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-weight: normal;
}

.vision-statement__table tbody th {
  width: 40%;
}

.vision-statement__table tbody td {
  width: 60%;
  font-family: var(--PoppinsRegular), 'PoppinsRegular';
  font-weight: 400;
  color: #333;
}

/* --- Why NETSOL: associated / subsidiaries table --- */
.associated-companies__wrap {
  width: 100%;
  max-width: 78%;
  margin: 28px auto 0;
  padding: 0 16px 56px;
}

.associated-companies__details {
  border: 1px solid #e0e0e0;
  background: #fff;
  overflow: hidden;
  text-align: left;
}

.associated-companies__summary {
  display: grid;
  grid-template-columns: 40% 1fr 36px;
  align-items: center;
  gap: 0 12px;
  margin: 0;
  padding: 16px 18px;
  list-style: none;
  cursor: pointer;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  font-family: var(--PoppinsSemiBold), 'PoppinsSemiBold', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--grey2);
  user-select: none;
}

.associated-companies__summary::-webkit-details-marker {
  display: none;
}

.associated-companies__summary::marker {
  content: '';
}

.associated-companies__sum-col--name {
  text-align: left;
}

.associated-companies__sum-col--web {
  text-align: center;
}

.associated-companies__chevron {
  justify-self: end;
  width: 9px;
  height: 9px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}

.associated-companies__details[open] .associated-companies__chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.associated-companies__summary:focus {
  outline: 2px solid var(--PrimaryBlue);
  outline-offset: -2px;
}

.associated-companies__summary:focus:not(:focus-visible) {
  outline: none;
}

.associated-companies__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-family: var(--PoppinsRegular), 'PoppinsRegular', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mainContentColor);
}

.associated-companies__table tbody th,
.associated-companies__table tbody td {
  text-align: left;
  vertical-align: top;
  padding: 16px 18px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  font-weight: 400;
}

.associated-companies__table tbody tr:last-child th,
.associated-companies__table tbody tr:last-child td {
  border-bottom: none;
}

.associated-companies__table tbody th {
  width: 40%;
  padding-right: 12px;
}

.associated-companies__table tbody td {
  width: 60%;
}

.associated-companies__table tbody td:empty::after {
  content: '\2014';
  color: #9ca3af;
}

.associated-companies__table tbody td a {
  color: var(--PrimaryBlue);
  text-decoration: none;
}

.associated-companies__table tbody td a:hover {
  text-decoration: underline;
}

/* --- NETSOL Institute (NIAI): workforce stats row --- */
.niai-workforce-wrap {
  width: 100%;
  margin-bottom: 24px;
}

.niai-bakground .niai-workforce {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3.5vw, 48px);
  margin-top: 0;
}

.niai-bakground .niai-workforce .niai-workforce__figure {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.niai-bakground .niai-workforce .niaistate-section {
  flex: 1 1 0;
  min-width: 0;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  background: none;
  width: auto;
}

.niai-bakground .niai-workforce .niai-box.niai-workforce__stat-card {
  background: #fff;
  color: var(--mainContentColor);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--borderColor);
  background: var(--investor-card-bg);
}

.niai-bakground .niai-workforce .niai-workforce__stat-card--right {
  text-align: right;
}

.niai-bakground .niai-workforce .small-box {
  margin-top: 0;
}

.niai-bakground .niai-workforce .niai-workforce__stat-value {
  font-family: 'PoppinsBold', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--grey2);
  font-weight: 700;
}

.niai-bakground .niai-workforce .niai-workforce__stat-desc {
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--mainContentColor);
}
.niai-bakground .niaicareer-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 56px);
}

.niai-bakground .niaicareer-section .niai-content {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 520px;
}

.niai-bakground .niaicareer-section .job-cards {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.niai-bakground .niaicareer-section .niai-jobs {
  display: block;
  width: auto;
  max-width: min(100%, 460px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* --- NIAI: Our core courses --- */
.niai-bakground .niai-core-courses {
  padding: 48px 0 64px;
  max-width: 100%;
}

.niai-bakground .niai-core-courses__header {
  margin-bottom: 40px;
}

.niai-bakground .niai-core-courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.niai-bakground .niai-core-courses__card.article {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: auto;
  max-width: none;
  min-width: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--borderColor);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.niai-bakground .niai-core-courses__card.article:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.niai-bakground .niai-core-courses__media.image-container {
  width: 100%;
  margin: 0;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  box-sizing: border-box;
}

.niai-bakground .niai-core-courses__img.article-image {
  position: static;
  top: auto;
  width: auto;
  max-width: 100%;
  height: 188px;
  max-height: 188px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.niai-bakground .niai-core-courses__body.content {
  margin-top: 0;
  padding: 24px 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.niai-bakground .niai-core-courses__card-title {
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--grey2);
  margin: 0 0 10px;
}

.niai-bakground .niai-core-courses__card-desc {
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 20px;
  flex-grow: 1;
}

.niai-bakground .niai-core-courses__footer.container-bottom {
  margin-top: auto;
  padding-top: 4px;
}

.niai-bakground .niai-core-courses__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--PrimaryBlue);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.niai-bakground .niai-core-courses__link:hover {
  color: var(--header-primary-hover, #1476eb);
  gap: 11px;
}

.niai-bakground .niai-core-courses__link::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url('../assets/images/insight-arrow.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask: url('../assets/images/insight-arrow.svg') no-repeat center;
  -webkit-mask-size: contain;
}

/* --- NIAI: Meet our faculty --- */
.niai-bakground .niai-faculty__grid.aboutUsBoxListing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  margin-top: 40px !important;
}

.niai-bakground .niai-faculty__card {
  height: auto;
  text-align: center;
  padding: 20px 16px 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.niai-bakground .niai-faculty__photo-frame {
  width: 168px;
  height: 168px;
  margin: 0 auto 28px;
}

.niai-bakground .niai-faculty__photo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.niai-bakground .niai-faculty__eyebrow {
  font-family: 'PoppinsRegular';
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--grey);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}

.niai-bakground .niai-faculty__name {
  color: var(--grey2);
  margin: 0 0 20px;
}

.niai-bakground .niai-faculty__course {
  font-size: 14px;
  line-height: 1.45;
}

.niai-bakground .niai-faculty__bio-label {
  font-family: 'PoppinsSemiBold';
  font-size: 16px;
  font-weight: 600;
  color: var(--grey2);
}

.niai-bakground .niai-faculty__bio {
  font-size: 14px;
  line-height: 30px;
}

/* --- NIAI: Why NIAI (reuse election-form-card pattern) --- */
.niai-why .site-niai {
  background: transparent;
  padding: 12px 0 32px;
}

.niai-why .why-niai-container.niai-why__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.niai-why .niai-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.niai-why .niai-why-card .election-form-card__icon img {
  width: 45px;
  height: 45px;
}
.election-form-card__icon-text {
  font-size: 24px;
}
/* --- NIAI: Skillset you will acquire (course pages) --- */
.niai-bakground .skillset-grid .venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.niai-bakground .skillset-grid.skillset-grid--data-science .venue-grid,
.niai-bakground .skillset-grid.skillset-grid--cybersecurity .venue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.niai-bakground .skillset-grid .venue-item .icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 26px;
}

.niai-bakground .skillset-grid .venue-item p {
  margin: 0;
  font-family: 'PoppinsSemiBold', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--grey2);
  text-align: left;
}

/* --- NIAI: Venue & timings (investors-contact-card pattern) --- */
.niai-bakground .niai-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.niai-bakground .niai-venue-card.investors-contact-card {
  margin: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.niai-bakground .niai-venue-card.investors-contact-card h5 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.niai-bakground .niai-venue-card.investors-contact-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mainContentColor);
}

.niai-bakground .niai-venue-card.investors-contact-card p:last-child {
  margin-bottom: 0;
}

.niai-bakground .niai-venue-card .icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* --- AI Learning: Soft skills overview --- */
.soft-skills-section {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 16px 0;
  margin-bottom: 28px;
  background: #fff;
}

.soft-skills-inner {
  width: 100%;
}

.soft-skills-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  min-height: 48px;
}

.soft-skills-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}

.soft-skills-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #DEDEDE;
}

.soft-skills-nav__btn:hover {
  background: #dde1e6;
  color: #3c4043;
}

/* Full viewport width; horizontal spacing comes only from Swiper spaceBetween */
.soft-skills-slider {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8px 0 40px;
  box-sizing: border-box;
  overflow: hidden;
  container-type: inline-size;
  container-name: soft-skills-slider;
  --ss-gap: 18px;
  height: fit-content ;
}

.soft-skills-slider .swiper-wrapper {
  align-items: flex-start;
}

/* (100cqi - 2*gap) / 2  =>  ~½ left + gap + full center + gap + ~½ right  ≈  track width */
.soft-skills-slider .swiper-slide {
  width: clamp(280px, calc((100vw - 2 * var(--ss-gap)) * 0.48), 560px);
  width: max(280px, min(560px, calc((100cqi - 2 * var(--ss-gap)) / 2)));
  height: auto;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}

.soft-skills-slider .soft-skills-card {
  background: linear-gradient(124deg, #EAF4FF 19.42%, #FFF 80.58%);
  border: 1px solid var(--borderColor);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 32px);
  height: 230px;
}
.soft-skills-slider .soft-skills-card  h5 {
  font-size: 25px;
}

.niai-bakground .niai-venue-card .coming-soon {
  display: block;
  margin-top: 4px;
  font-family: 'PoppinsMedium', sans-serif;
  font-size: 15px;
  color: #6b7280;
}

.niai-bakground .niai-venue-cta__wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* --- AI learning: “What you will learn?” (ai-learning.php; overrides legacy style.css .learning-*) --- */
.ai-learning-learn .learning-features.ai-learning {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.ai-learning-learn .learning-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 22px);
  height: 100%;
  padding: 20px 10px;
  border: 1px solid var(--borderColor);
  border-radius: 16px;
  background: var(--White);
}

.ai-learning-learn .learning-card p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0 !important;
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mainContentColor);
  text-align: left;
}

.ai-learning-learn .learning-card img {
  width: 185px;
  object-fit: cover;
}

/* --- AI learning: Eligibility & pre-requisites (ai-learning.php) --- */
.ai-eligibility-section {
  margin-left: auto;
  margin-right: auto;
}

.ai-eligibility__card {
  position: relative;
}

.ai-eligibility__math-head {
  margin: 0 0 18px;
  font-family: var(--PoppinsSemiBold);
  font-size: clamp(16px, 1.6vw, 18px);
}

.ai-eligibility__topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px 28px;
  list-style: none;
}

.ai-eligibility__topics li {
  position: relative;
  padding-left: 1em;
}

.ai-eligibility__topics li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--PrimaryBlue);
  font-weight: 700;
}

.ai-eligibility__rule {
  margin: 26px 0 22px;
  border: none;
  border-top: 1px solid #e8eaed;
}

.ai-eligibility__cta {
  margin-top: 36px;
}

/* Cybersecurity course: eligibility two-column matrix (cybersecurity.php) */
.ai-eligibility__card.ai-eligibility__card--cyber.investors-contact-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.ai-eligibility__card-inner--cyber {
  position: relative;
  padding: clamp(22px, 3vw, 36px);
}

.ai-eligibility__card-inner--cyber::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(42%, 280px);
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(29, 129, 242, 0.07) 0,
    rgba(29, 129, 242, 0.07) 1px,
    transparent 1px,
    transparent 14px
  );
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.35) 0%, transparent 75%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.35) 0%, transparent 75%);
}

.ai-eligibility__cyber-matrix {
  position: relative;
  z-index: 1;
}

.ai-eligibility__cyber-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--borderColor);
}

.ai-eligibility__cyber-row:last-child {
  border-bottom: none;
}

.ai-eligibility__cyber-cell {
  margin: 0;
  padding: 16px 14px 16px 28px;
  font-family: 'PoppinsRegular', sans-serif;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.55;
  color: var(--mainContentColor);
  text-align: left;
  position: relative;
}

.ai-eligibility__cyber-cell:nth-child(2) {
  border-left: 1px solid var(--borderColor);
}

.ai-eligibility__cyber-cell::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 1.35em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mainContentColor);
}

@media (max-width: 575.98px) {
  .ai-eligibility__cyber-row {
    grid-template-columns: 1fr;
  }

  .ai-eligibility__cyber-cell:nth-child(2) {
    border-left: none;
    border-top: 1px solid var(--borderColor);
  }

  .ai-eligibility__card-inner--cyber::after {
    width: min(55%, 200px);
    opacity: 0.65;
  }
}