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

/* ============================================
   RTL (Right-to-Left) - Urdu - Base document
   ============================================ */
html {
  direction: rtl;
}
body {
  direction: rtl;
  text-align: right;
}
.ltr-section {
  direction: ltr;
  text-align: left;
}
/* Color variables */
:root {
  --mainContentColor: #454648;
  --PrimaryBlue: #1D81F2;
  --lightBlue: #edf9ff;
  --BgGrey: #F6F6F6;
  --grey2: #181818;
  --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;
  --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-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-left: calc(28px + var(--btnArrowSize) + 12px);
  padding-right: 28px;
  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;
  left: 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-right: 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-right: 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: right;
  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-right: 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-right: 16px;
  border-right: 2px solid var(--header-border);
  margin-right: 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;
  right: 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%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #B5F4F0 5.01%, rgba(181, 244, 240, 0.1) 82.62%);
  pointer-events: none;
}

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

/* Heading */
.newsletter-heading {
  position: absolute;
  top: 65px;
  right: 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: right;
  margin: 0;
  min-width: 227px;
}

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

@media (min-width: 768px) {
  .newsletter-form-wrapper {
    top: 50%;
    right: 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 .hs-form label.hs-main-font-element{display: block !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-left: 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: 0 16px 16px 0;
  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 (RTL: button on left) */
#hubspotNewsForm form .input .hs-input {
  border-left-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: 16px 0 0 16px;
  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;
}
/* Newsletter error container – shown below input+button row via JS */
#hubspotNewsForm .newsletter-error-container {
  width: 100%;
  bottom: 0;
  color: #dc2626;
  font-size: 12px;
  font-family: 'PoppinsRegular', sans-serif;
  display: block;
  position: absolute;
}

/* 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-right: 3px;
  margin-right: 3px;
}

.footerBottomMenu ul li:before {
  content: "";
  width: 1.5px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  right: 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: 48px 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: right;
}

.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;
}

.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%;
}

.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;
}


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

.global-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top 30% left 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;
}

/* 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: right;
  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-right: 2px solid var(--borderColor);
  padding-right: 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);
}
.rocket-launch{
  align-items: center;
  background-position: 50%;
  background-size: cover;
  display: flex;
  height: 90vh;
  justify-content: flex-end;
  margin-top: 2vh;
}
.rocket-launch .text {
  font-family: 'PoppinsRegular', sans-serif;
  font-size: 20;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
  text-align: right;
}
.rocket-launch .content {
  width: 55%;
}

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

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

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

.insight-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--borderColor);
  background: var(--White);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.insight-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.insight-card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.insight-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-card-image {
  transform: scale(1.02);
}

.insight-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.insight-card-content {
  padding: 18px;
  text-align: right;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card-type {
  font-size: 12px;
  font-weight: 600;
  color: var(--PrimaryBlue);
  letter-spacing: 1.33px;
  margin-bottom: 4px;
  font-family: 'PoppinsSemiBold';
}

.insight-card-title {
  font-family: 'PoppinsSemiBold';
  font-size: 18px;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 30px;
}

.insight-card-title a:hover {
  color: var(--mainContentColor);
}
.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-right: 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;
  transform: scaleX(-1);
}

.insight-card-cta:hover {
  color: var(--mainContentColor);
}
.insight-card-title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ============================================
    - Investors Page
   ============================================ */

.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;
  background-color: var(--White);
  border: 1px solid var(--borderColor);
}
.aboutUsBoxListIn .insight-card-cta {
  margin-top: auto;
}
.aboutUsBoxListIn:hover {
  border-color: #bfdbfe;
  border: solid 1px #bfdbfe;
}
.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 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  text-align: right;
}

.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 {
  right: -30px;
}

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

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

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

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

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

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

#boardOfDirector .directorInfo .director-designation,
#managementTeam .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 {
  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);
}

/* ============================================
   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;
  left: 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-left: 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: right;
    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-right: 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-left: 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: left 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;
}

/* RTL: autocomplete dropdown aligns to right */
.autocomplete-list {
  left: auto;
  right: 0;
}