/* ============================================================
   ZIL Limited - Main Stylesheet
   ============================================================ */

/* ======================== Base Styles Start ======================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* a tag link underline */
.a__tag-line {
  position: relative;
  display: inline-block;
}
.a__tag-line::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 12px;
  left: 0;
  background-color: #d4a5a5;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.a__tag-line:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* Hero animation initial states */
.page-hero__breadcrumb {
  opacity: 0;
}

.page-hero__title-ex {
  opacity: 0;
}
/* ======================== Base Styles End ======================== */

/* ======================== Tab Buttons - Fix Double-Click Issue ======================== */
/* Ensures immediate click response on touch devices by disabling double-tap-to-zoom */
.explore-range__tab {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  user-select: none;
}
/* ======================== Tab Buttons Fix End ======================== */

/* ======================== Header Styles Start ======================== */

.header__nav-bg {
  background: linear-gradient(
    94.7deg,
    rgba(219, 228, 240, 0.15) 0%,
    rgba(219, 228, 240, 0.08) 100%
  );
  border: 1.12px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.header__nav-item {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
}

.header__search-bg {
  background: rgba(255, 255, 255, 0.15);
  border: 1.12px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(11.22px);
}

.header__search-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
.header__nav-link span {
  position: relative;
  display: inline-block;
}
.header__nav-link span::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: #d4a5a5;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.header__nav-link:hover span::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* Hamburger Active State */
.header__hamburger {
  /* background: linear-gradient(
    94.7deg,
    rgba(219, 228, 240, 0.15) 0%,
    rgba(219, 228, 240, 0.08) 100%
  );
  border: 1.12px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px); */
}
.header__hamburger.active .header__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ======================== Header Dropdown Styles ======================== */

/* Desktop Dropdown */
.header__dropdown {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.header__nav-item.group:hover .header__dropdown {
  transform: translateY(0);
}

.header__dropdown-item:first-child .header__dropdown-link {
  border-radius: 10px 10px 0 0;
}

.header__dropdown-item:last-child .header__dropdown-link {
  border-radius: 0 0 10px 10px;
}
/* ======================== Header Styles End ======================== */

/* ======================== Header Styles Start ======================== */

.header__nav-bg {
  background: linear-gradient(
    94.7deg,
    rgba(219, 228, 240, 0.15) 0%,
    rgba(219, 228, 240, 0.08) 100%
  );
  border: 1.12px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.header__nav-item {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  white-space: nowrap;
}

.header__search-bg {
  background: rgba(255, 255, 255, 0.15);
  border: 1.12px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(11.22px);
}

.header__search-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

/* Hamburger Active State - No animation, keep as three lines */
/* Cross animation removed per user request */

/* ======================== Header Dropdown Styles ======================== */

/* Desktop Dropdown */
.header__dropdown {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.header__nav-item.group:hover .header__dropdown {
  transform: translateY(0);
}

.header__dropdown-item:first-child .header__dropdown-link {
  border-radius: 10px 10px 0 0;
}

.header__dropdown-item:last-child .header__dropdown-link {
  border-radius: 0 0 10px 10px;
}

/* ======================== Header Styles End ======================== */

/* ======================== Header Search Component ======================== */

.header__search-wrapper {
  z-index: 100;
}

/* Search field container */
.header__search-field {
  position: relative;
}

/* Search input wrapper - collapsed state (default) */
.header__search-input-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

/* Search input - collapsed state */
.header__search-input {
  width: 44px;
  height: 44px;
  padding: 0;
  color: transparent;
  cursor: pointer;
}

.header__search-input::placeholder {
  color: transparent;
}

/* Search icon - collapsed state (centered in square) */
.header__search-icon {
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/* ===== EXPANDED STATE ===== */
.header__search-wrapper.is-expanded .header__search-input-wrapper {
  width: 200px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(106, 77, 148, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header__search-wrapper.is-expanded .header__search-input {
  width: 200px;
  padding: 12px 40px 12px 44px;
  color: #1d1d1d;
  cursor: text;
}

.header__search-wrapper.is-expanded .header__search-input::placeholder {
  color: #9e9e9e;
}

.header__search-wrapper.is-expanded .header__search-icon {
  left: 14px;
  transform: translate(0, -50%);
  color: #6a4d94;
}

/* Clear button visible when has content */
.header__search-wrapper.is-expanded.has-content .header__search-clear {
  opacity: 1;
  visibility: visible;
}

/* ===== HAS CONTENT STATE (keeps expanded even on blur) ===== */
.header__search-wrapper.has-content .header__search-input-wrapper {
  width: 200px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(106, 77, 148, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.header__search-wrapper.has-content .header__search-input {
  width: 200px;
  padding: 12px 40px 12px 44px;
  color: #1d1d1d;
  cursor: text;
}

.header__search-wrapper.has-content .header__search-input::placeholder {
  color: #9e9e9e;
}

.header__search-wrapper.has-content .header__search-icon {
  left: 14px;
  transform: translate(0, -50%);
  color: #6a4d94;
}

.header__search-wrapper.has-content .header__search-clear {
  opacity: 1;
  visibility: visible;
}

/* Search dropdown */
.header__search-dropdown {
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(10px);
}

/* Search results list scrolling - matching documents-filter.php dropdown */
.header__search-results-list {
  display: block;
  position: relative;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #6a4d94 #f3f1f6;
  /* Scroll isolation for mouse/touchpad */
  isolation: isolate;
  touch-action: pan-y;
  pointer-events: auto;
}

.header__search-results-list::-webkit-scrollbar {
  width: 6px;
}

.header__search-results-list::-webkit-scrollbar-track {
  background: #f3f1f6;
  border-radius: 10px;
}

.header__search-results-list::-webkit-scrollbar-thumb {
  background: #6a4d94;
  border-radius: 10px;
}

.header__search-results-list::-webkit-scrollbar-thumb:hover {
  background: #453661;
}

/* Dropdown visible state - animate like header dropdown */
.header__search-dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Search result item - dark text on light background */
.header__search-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(106, 77, 148, 0.1);
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.header__search-item:hover,
.header__search-item:focus,
.header__search-item.is-focused {
  background-color: rgba(106, 77, 148, 0.08);
  outline: none;
}

.header__search-item:last-child {
  border-bottom: none;
}

.header__search-item-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 77, 148, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__search-item-icon svg {
  width: 20px;
  height: 20px;
  color: #6a4d94;
}

.header__search-item-content {
  flex: 1;
  min-width: 0;
}

.header__search-item-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1d;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header__search-item-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
}

.header__search-item-download {
  padding: 8px;
  background-color: rgba(106, 77, 148, 0.1);
  border-radius: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.header__search-item-download:hover {
  background-color: #6a4d94;
}

.header__search-item-download svg,
.header__search-item-download:hover svg path {
  color: #6a4d94;
  transition: all 0.2s ease;
}

.header__search-item-download:hover svg,
.header__search-item-download:hover svg path {
  color: white;
  fill: #ffffff;
}

/* First and last item border radius - matching dropdown link styling */
.header__search-item:first-child {
  border-radius: 10px 10px 0 0;
}

.header__search-item:last-child {
  border-radius: 0 0 10px 10px;
}

/* Mobile search adjustments */
@media (max-width: 1279px) {
  .header__search-wrapper {
    display: none;
  }
}

@media (min-width: 1280px) {
  .header__search-expanded {
    min-width: 400px;
  }
}

/* ======================== Header Search Component End ======================== */

/* ======================== Mobile Search Component ======================== */

.mobile-menu__search {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.3s,
    transform 0.3s ease 0.3s;
}

.mobile-menu.active .mobile-menu__search {
  opacity: 1;
  transform: translateY(0);
}

.mobile-search-dropdown.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-search-dropdown {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.mobile-search-dropdown::-webkit-scrollbar {
  width: 4px;
}

.mobile-search-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-search-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* Mobile search result item */
.mobile-search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.mobile-search-item:hover,
.mobile-search-item:focus,
.mobile-search-item.is-focused {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

.mobile-search-item:last-child {
  border-bottom: none;
}

.mobile-search-item-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-search-item-icon svg {
  width: 16px;
  height: 16px;
}

.mobile-search-item-content {
  flex: 1;
  min-width: 0;
}

.mobile-search-item-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-search-item-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

.mobile-search-item-download {
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-search-item-download:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.mobile-search-item-download svg {
  color: white;
}

/* ======================== Mobile Search Component End ======================== */

/* ======================== Mobile Menu Styles Start ======================== */

.mobile-menu.active {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Logo Animation */
.mobile-menu__logo {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s;
}

.mobile-menu.active .mobile-menu__logo {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Close Button Animation */
.mobile-menu__close {
  opacity: 0;
  transform: rotate(-90deg);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.3s ease 0.15s,
    background-color 0.2s ease;
}

.mobile-menu.active .mobile-menu__close {
  opacity: 1;
  transform: rotate(0);
}

/* Mobile Menu Items - Left aligned with bottom border */
.mobile-menu__item {
  font-family: 'Forum', serif;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 0;
}
li.mobile-menu__item.mobile-menu__item--has-children.w-full.is-open {
  padding-bottom: 0px;
}
/* Remove border from last menu item */
.mobile-menu__item:last-child,
.mobile-menu__dropdown .mobile-menu__dropdown-item:last-child {
  border-bottom: none;
}

.mobile-menu__dropdown .mobile-menu__dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

/* Mobile Menu Link Styles */
.mobile-menu__link {
  display: block;
  width: 100%;
  color: white;
  font-size: 18px;
}

.mobile-menu.active .mobile-menu__item {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for menu items */
.mobile-menu.active .mobile-menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu__item:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-menu__item:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu__item:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.active .mobile-menu__item:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu__item:nth-child(6) {
  transition-delay: 0.35s;
}
.mobile-menu.active .mobile-menu__item:nth-child(7) {
  transition-delay: 0.4s;
}

.mobile-menu__search {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.45s,
    transform 0.3s ease 0.45s;
}

.mobile-menu.active .mobile-menu__search {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== Mobile Menu Dropdown Styles ======================== */

/* Mobile dropdown toggle button */
.mobile-menu__toggle {
  transition: transform 0.3s ease;
}

/* Mobile dropdown toggle rotation when active */
.mobile-menu__toggle.active {
  transform: rotate(180deg);
}

/* Mobile dropdown animation */
.mobile-menu__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  width: 100%;
  text-align: left;
  padding-left: 12px;
}

/* Mobile dropdown when open (controlled by JS) */
.mobile-menu__dropdown.is-open {
  max-height: 500px; /* Fallback if JS doesn't set it */
}

/* Mobile dropdown items - default hidden state */
.mobile-menu__dropdown-item {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  text-align: left;
  padding: 10px 0;
}

/* Mobile dropdown link styles */
.mobile-menu__dropdown-link {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  transition: color 0.2s ease;
}

.mobile-menu__dropdown-link:hover {
  color: white;
}

/* Parent item with dropdown - flex layout for toggle */
.mobile-menu__item--has-children {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* Override Tailwind items-start from walker */
.mobile-menu__item--has-children.flex.items-start {
  align-items: stretch !important;
}

.mobile-menu__item--has-children > .mobile-menu__link {
  flex: 1;
}

.mobile-menu__item--has-children > .mobile-menu__dropdown {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  align-self: stretch;
}

/* Ensure dropdown items are full width and left-aligned */
.mobile-menu__dropdown {
  width: 100% !important;
  left: 0;
  align-items: stretch !important;
}

.mobile-menu__dropdown-item {
  width: 100%;
  text-align: left;
}

.mobile-menu__dropdown-link {
  text-align: left;
  padding-left: 16px;
}

/* Mobile dropdown items - visible when parent has active toggle */
/* Use parent class instead of sibling selector */
.mobile-menu__item--has-children.is-open .mobile-menu__dropdown-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger dropdown items */
.mobile-menu__item--has-children.is-open
  .mobile-menu__dropdown-item:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu__item--has-children.is-open
  .mobile-menu__dropdown-item:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu__item--has-children.is-open
  .mobile-menu__dropdown-item:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu__item--has-children.is-open
  .mobile-menu__dropdown-item:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu__item--has-children.is-open
  .mobile-menu__dropdown-item:nth-child(5) {
  transition-delay: 0.25s;
}

/* ======================== Mobile Menu Styles End ======================== */

/* ======================== Hero Styles Start ======================== */

.hero__cta-bg {
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
  /* .hero__heading-ex,
  .hero__heading-year,
  .hero__cta-ex,
  .hero__video-container {
    opacity: 0;
  } */
}
/* Hero Video Player */
.hero__player {
  transition: opacity 0.5s ease;
}

.hero__image-overlay {
  transition: opacity 0.5s ease;
}

.hero__play-icon {
  transition: opacity 0.5s ease;
}

/* Hero Playing State */
.hero.playing .hero__image-overlay {
  opacity: 0;
}

.hero.playing .hero__player {
  opacity: 1;
  pointer-events: auto;
}

.hero.playing .hero__play-icon {
  opacity: 0.5;
}
@media (max-width: 2100px) {
  .hero__video-container {
    height: 767px !important;
  }
}
@media (max-width: 1900px) {
  .hero__video-container {
    height: 667px !important;
  }
}
/* ======================== Hero Styles End ======================== */

/* ======================== About Styles Start ======================== */

.about__text {
  font-family: 'Forum', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 115%;
}

/* Prevent FOUC - hide animated elements before JS loads */
.about-history__text-ex {
  opacity: 0;
}

/* Once JS has initialized and created line spans, show the parent */
.about-history__text-ex.js-initialized {
  opacity: 1;
}

.about-history__right {
  clip-path: inset(0px 100% 0px 0px);
}

.about-history__image {
  opacity: 0;
}

/* ======================== About Styles End ======================== */

/* ======================== Awards Styles Start ======================== */

.awards__label {
  font-family: 'Forum', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 115%;
  white-space: nowrap;
}

.awards__text {
  font-family: 'Forum', serif;
  font-size: 15.553px;
  font-weight: 400;
  line-height: 29.984px;
}

/* ======================== Awards Styles End ======================== */

/* ======================== Features Styles Start ======================== */

.features__title {
  font-family: 'Forum', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 115%;
}

.features__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 153%;
}

.features__icon {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}

/* ======================== Features Styles End ======================== */

/* ======================== Brands Styles Start ======================== */

.brands__title {
  font-family: 'Forum', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 115%;
}

.brands__swiper {
  overflow: hidden;
}

.brands__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.brands__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.brands__logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ======================== Brands Styles End ======================== */

/* ======================== Video Styles Start ======================== */

.video {
  display: flex;
  flex-direction: column;
}

.video__container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video__content {
  flex: 1;
}

.video__title {
  transition: opacity 0.5s ease;
}

.video__player {
  transition: opacity 0.5s ease;
}

.video__bg {
  transition: opacity 0.5s ease;
}

.video__overlay-icon {
  transition: opacity 0.5s ease;
}

/* Video Playing State */
.video.playing .video__container .video__title,
.video.playing .video__container .video__overlay-icon,
.video.playing .video__bg {
  opacity: 0;
}

.video.playing .video__player {
  opacity: 1;
  pointer-events: auto;
}

/* ======================== Video Styles End ======================== */

/* ======================== Values Styles Start ======================== */

/* .values__title {
  font-family: 'Forum', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 115%;
}

.values__item-title {
  font-family: 'Forum', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 59.62px;
}

.values__item-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
} */

/* ======================== Values Styles End ======================== */

/* ======================== Showcase Styles Start ======================== */

.showcase__title {
  font-family: 'Forum', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 115%;
}

.showcase__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 153%;
}

.showcase__stat-number {
  font-family: 'Forum', serif;
  font-size: clamp(1.75rem, 1.0898rem + 2.1127vw, 3.625rem);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1.16px;
}

.showcase__stat-title {
  font-family: 'Forum', serif;
  font-size: clamp(1.125rem, 0.9489rem + 0.5634vw, 1.625rem);
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.27px;
}

.showcase__stat-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
/* ============================================================================
   GPU Acceleration for Smoother Animations
   ============================================================================ */

.showcase__stat-box {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.showcase__title-ex,
.showcase__text-ex,
.showcase__image-wrapper {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* ============================================================================
   Pin Spacer Styling (GSAP creates this wrapper)
   ============================================================================ */

.pin-spacer {
  /* Ensure pin spacer doesn't cause layout issues */
  box-sizing: border-box !important;
}

/* ============================================================================
   Smooth Number Transitions for Counter
   ============================================================================ */

.showcase__stat-number {
  /* Prevent layout shift during counting */
  min-width: 80px;
  display: inline-block;
  /* Tabular numbers for consistent width */
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: 'tnum';
  font-feature-settings: 'tnum';
}
/* Improve pin performance on all devices */
.showcase {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.showcase__stat-box {
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Prevent iOS rubber-band scrolling issues during pin */
.pin-spacer {
  -webkit-overflow-scrolling: auto !important;
}

/* Ensure smooth transforms */
.showcase__title-ex,
.showcase__text-ex,
.showcase__image-wrapper {
  will-change: transform, opacity;
}

/* ======================== Showcase Styles End ======================== */

/* ======================== CTA Styles Start ======================== */

.cta__title {
  font-family: 'Forum', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 115%;
}

.cta__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

.cta__btn {
  font-family: 'Forum', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 32.22px;
}

/* CTA Section with Sliders */
.cta--with-sliders {
  position: relative;
  min-height: 600px;
}

/* Container absolute and centered */
.cta--with-sliders .cta__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1440px;
  z-index: 10;
}

/* Sliders - Full Width */
.cta__sliders {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 0;
  width: 100%;
}

.cta__slider {
  width: 100%;
  overflow: hidden;
  height: calc((100% - 30px) / 3);
}

.cta__slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.cta__slider .swiper-slide {
  width: auto !important;
  height: 100%;
}

.cta__slide-image {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.cta__slide-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
}
/* CTA Sliders - CSS Marquee Animation */
.cta__slider {
  width: 100%;
  overflow: hidden;
  height: calc((100% - 30px) / 3);
}

.cta__slider .swiper-wrapper {
  display: flex;
  width: max-content;
}

/* Slider 1 & 3 - Move RIGHT (actually slides move left visually) */
.cta__slider--1 .swiper-wrapper,
.cta__slider--3 .swiper-wrapper {
  animation: marquee-left 30s linear infinite;
}

/* Slider 2 - Move LEFT (slides move right visually) */
.cta__slider--2 .swiper-wrapper {
  animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Slide styling */
.cta__slider .swiper-slide {
  flex-shrink: 0;
  width: auto;
  height: 100%;
  padding: 0 10px;
}

/* Pause on hover */
.cta__sliders:hover .swiper-wrapper {
  /* animation-play-state: paused; */
}

/* Responsive spacing */
@media (min-width: 640px) {
  .cta__slider .swiper-slide {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .cta__slider .swiper-slide {
    padding: 0 25px;
  }
}

@media (min-width: 1024px) {
  .cta__slider .swiper-slide {
    padding: 0 30px;
  }
}

@media (min-width: 1280px) {
  .cta__slider .swiper-slide {
    padding: 0 40px;
  }
}
/* Responsive */
@media (min-width: 1280px) {
  .cta--with-sliders {
    min-height: 700px;
  }
  .cta__sliders {
    gap: 20px;
    padding: 30px 0;
  }
}

@media (min-width: 1536px) {
  .cta--with-sliders {
    min-height: 800px;
  }
  .cta__sliders {
    gap: 25px;
    padding: 40px 0;
  }
}

@media (max-width: 1023px) {
  .cta--with-sliders {
    min-height: 550px;
  }
  .cta__sliders {
    gap: 12px;
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .cta--with-sliders {
    min-height: 500px;
  }
  .cta__sliders {
    gap: 10px;
    padding: 10px 0;
  }
  .footer__nav-link::after {
    bottom: 5px !important;
  }
}

/* ======================== CTA Styles End ======================== */

/* ======================== Footer Styles Start ======================== */

.footer__box-title {
  font-family: 'Forum', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 59.62px;
}

.footer__box-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 18.02px;
  font-weight: 400;
  line-height: 28px;
}

.footer__info-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
}

.footer__nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 19.2px;
  font-weight: 600;
  line-height: 33.6px;
}

.footer__nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16.8px;
  font-weight: 400;
  line-height: 52.8px;
  display: inline-block;
  position: relative;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 12px;
  left: 0;
  background-color: #d4a5a5;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.footer__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer__policy-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16.8px;
  font-weight: 400;
  line-height: 52.8px;
  display: inline-block;
  position: relative;
}

.footer__policy-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 12px;
  left: 0;
  background-color: #d4a5a5;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.footer__policy-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer__copyright-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16.8px;
  font-weight: 400;
  line-height: 52.8px;
}

.footer__social-link {
  transition: opacity 0.3s ease;
  min-width: 23px;
  min-height: 23px;
}

.footer__social-link:hover {
  opacity: 0.8;
}

/* ======================== Footer Styles End ======================== */

/* ======================== Page Hero Styles Start ======================== */

/* .page-hero__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 120px;
  letter-spacing: -2px;
}

.page-hero__breadcrumb-link,
.page-hero__breadcrumb-current {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.5px;
} */
#breadcrumbs span,
#breadcrumbs a {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.5px;
}

/* remove default text separators */
#breadcrumbs .separator {
  display: none;
}
#breadcrumbs > span,
#breadcrumbs a {
  display: flex;
  align-items: center;
}
/* arrow icon */
#breadcrumbs a::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 20.2773L15 14.2773L9 8.27734'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

#breadcrumbs span span:last-child::after {
  display: none;
}

/* current page */
#breadcrumbs span span:last-child {
  opacity: 0.9;
}

/* ======================== Page Hero Styles End ======================== */

/* ======================== About History Styles Start ======================== */

.about-history__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 115%;
  letter-spacing: 0;
  color: #080707;
}

.about-history__text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  letter-spacing: 0;
  color: #080707;
}

/* ======================== About History Styles End ======================== */

/* ======================== Ali Family Legacy Styles Start ======================== */

.ali-legacy__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 115%;
  letter-spacing: 0;
  color: #080707;
}

.ali-legacy__text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  letter-spacing: 0;
  color: #080707;
}

.ali-legacy__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ali-legacy__swiper {
  width: 100%;
  overflow: hidden;
}

.ali-legacy__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

/* ======================== Ali Family Legacy Styles End ======================== */

/* ======================== Founding Leaders Styles Start ======================== */

.founding-leaders__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 114.99%;
  letter-spacing: 0;
  color: #080707;
}

.founding-leaders__card-name {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 115%;
  letter-spacing: 0;
  color: #ffffff;
}

.founding-leaders__card-role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  letter-spacing: 0;
  color: #ffffff;
}

.founding-leaders__card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 153%;
  letter-spacing: 0;
  color: #080707;
}

.founding-leaders__card-top {
  min-height: 230px;
}

/* .founding-leaders__card-info {
  height: 100%;
} */

/* ======================== Founding Leaders Styles End ======================== */

/* ======================== Journey Timeline Styles Start ======================== */

.journey-timeline__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 114.99%;
  letter-spacing: 0;
  color: #080707;
}

/* Sidebar Styles */
.journey-timeline__sidebar {
  position: relative;
}

.journey-timeline__years {
  position: sticky;
  top: 50px;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.journey-timeline__year {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #8b96a5;
  padding: 8px 0 8px 0px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* .journey-timeline__year::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background-color: #D1D5DB;
    transition: all 0.3s ease;
} */

.journey-timeline__year.active {
  font-weight: 700;
  font-size: 20px;
  line-height: 25.6px;
  color: #6a4d94;
  /* padding-left: 45px; */
}

/* .journey-timeline__year.active::after {
    width: 55px;
    background-color: #6A4D94;
} */

/* Timeline Items */
/* .journey-timeline__item {
    padding-bottom: 150px;
} */

.journey-timeline__item:last-child {
  padding-bottom: 0;
}

/* Timeline Content */
.journey-timeline__content {
  position: relative;
}

/* Timeline Item - Default: row-reverse (content left, image right) */
.journey-timeline__item {
  display: flex;
  flex-direction: row;
}

/* Alternating: odd items use row (image left, content right) */
.journey-timeline__item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* Content Side - flex: 1 */
.journey-timeline__content-side {
  flex: 1;
  flex-shrink: 0;
  display: flex;
  padding-bottom: 150px;
}

/* Spacer Side (Image) - flex: 1 */
.journey-timeline__spacer-side {
  flex: 1;
  flex-shrink: 0;
  padding-bottom: 150px;
}

/* Last item no bottom padding */
.journey-timeline__item:last-child .journey-timeline__content-side,
.journey-timeline__item:last-child .journey-timeline__spacer-side {
  padding-bottom: 0;
}

/* Content Info positioning */
.journey-timeline__info {
  padding-top: 80px;
}

/* Odd items (image left): content on right needs padding-left */
.journey-timeline__item:nth-child(odd) .journey-timeline__info {
  padding-left: 140px;
}

/* Even items (image right): content on left needs padding-right */
.journey-timeline__item:nth-child(even) .journey-timeline__info {
  padding-right: 140px;
}

/* Image styling */
.journey-timeline__image {
  width: 480px;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

/* Odd items: image aligned to left (default) */
/* Even items: image aligned to right */
.journey-timeline__item:nth-child(even) .journey-timeline__spacer-side {
  display: flex;
  justify-content: flex-end;
}

/* Vertical Line - Icon Column */
.journey-timeline__line {
  position: relative;
  width: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Line offset (before icon) */
.journey-timeline__line-offset {
  width: 2px;
  height: 50px;
  background-color: #d1d5db;
  flex-shrink: 0;
  position: relative;
}

.journey-timeline__line-offset-mask {
  width: 100%;
  height: 0%;
  background-color: #6a4d94;
  max-height: 100%;
}

/* Icon/Pointer holder */
.journey-timeline__pointer {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #d1d5db;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.journey-timeline__item.active .journey-timeline__pointer {
  background-color: #6a4d94;
}

/* Line track (after icon) - extends to fill remaining height */
.journey-timeline__line-track {
  width: 2px;
  flex-grow: 1;
  background-color: #d1d5db;
  position: relative;
  min-height: 50px;
}

.journey-timeline__line-progress {
  width: 100%;
  height: 0%;
  background-color: #6a4d94;
  max-height: 100%;
}

.journey-timeline__year-big {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 88px;
  line-height: 88px;
  letter-spacing: 0;
  color: #1a2b3d;
  display: block;
}

.journey-timeline__item-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  /* font-size: 28px; */
  font-size: clamp(1.25rem, 0.95rem + 0.94vw, 1.75rem);
  line-height: 36.4px;
  letter-spacing: 0;
  color: #6a4d94;
  margin-top: 15px;
}

.journey-timeline__item-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30.24px;
  letter-spacing: 0;
  color: #080707;
  margin-top: 25px;
}

/* Active state for timeline items */
.journey-timeline__item.active .journey-timeline__line-progress {
  height: 100%;
}

/* Hide timeline line on screens up to iPad Pro (1024px) */

/* Mobile-specific adjustments for journey timeline */
@media (max-width: 767px) {
  .journey-timeline__sidebar {
    width: 65px !important;
  }

  .journey-timeline__item:nth-child(odd) .journey-timeline__info {
    padding-left: 0px !important;
  }

  .journey-timeline__info {
    padding-top: 0px !important;
  }

  .journey-timeline__content-side {
    padding-bottom: 30px;
  }
  .journey-timeline__item {
    flex-direction: column !important;
  }
  .journey-timeline__item:nth-child(even) .journey-timeline__info {
    padding-right: 0px !important;
  }
  .journey-timeline__spacer-side {
    padding-bottom: 80px;
  }
  .journey-timeline__item:last-child .journey-timeline__content-side {
    padding-bottom: 30px;
  }
}

@media (max-width: 1024px) {
  .journey-timeline__line {
    display: none;
  }
  .journey-timeline__item:nth-child(odd) .journey-timeline__info {
    padding-left: 60px;
  }
  .journey-timeline__info {
    padding-top: 40px;
  }
  .journey-timeline__item:nth-child(even) .journey-timeline__info {
    padding-right: 60px;
  }
  .journey-timeline__sidebar {
    width: 85px !important;
  }
}

/* ======================== Journey Timeline Styles End ======================== */

/* ======================== Career Opportunities Styles Start ======================== */

.career-opportunities__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 115%;
  letter-spacing: 0;
  color: #080707;
}

.career-opportunities__text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #080707;
}

.career-opportunities__card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: 0;
  color: #080707;
}

.career-opportunities__card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  color: #080707;
}

.career-opportunities__search-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 0.6px;
  color: #080707;
}

.career-opportunities__search-placeholder {
  transition: opacity 0.3s ease;
}

.career-opportunities__search-placeholder.hidden {
  opacity: 0;
}

/* ======================== Career Opportunities Styles End ======================== */

/* ======================== Contact Form Styles Start ======================== */

.contact-form__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 115%;
  letter-spacing: 0;
  color: #080707;
}

.contact-form__text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0;
  color: #080707;
}

.contact-form__input {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #080707;
}

.contact-form__input::placeholder {
  color: #08070780;
}

.contact-form__btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16.7px;
  line-height: 100%;
  letter-spacing: 0;
}

/* ======================== Contact Form Styles End ======================== */

/* ======================== Locations Styles Start ======================== */
.locations__overlay {
  width: 733px;
  max-width: 733px;
  height: 702px;
  min-height: 702px;
}
@media (max-width: 1024px) {
  .locations__overlay {
    width: 100%;
    max-width: 100%;
    height: 502px;
    min-height: 502px;
  }
}
@media (max-width: 767px) {
  .locations__overlay {
    width: 100%;
    max-width: 100%;
    height: 302px;
    min-height: 302px;
  }
}
.locations__title {
  font-family: 'Forum', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 115%;
  letter-spacing: 0;
  color: #080707;
}

.locations__card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  /* font-size: 40px; */
  font-size: clamp(1.75rem, 1.25rem + 1.56vw, 2.5rem);
  line-height: 100%;
  letter-spacing: 1.83px;
  color: #6a4d94;
}

.locations__card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20.78px;
  line-height: 37.41px;
  letter-spacing: 0;
  color: #080707;
}

.locations__card-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20.78px;
  line-height: 37.41px;
  letter-spacing: 0;
  color: #080707;
  transition: color 0.3s ease;
}

.locations__card-link:hover {
  color: #6a4d94;
}

.locations__tab {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  /* font-size: 40px; */
  font-size: clamp(1.75rem, 1.25rem + 1.56vw, 2.5rem);
  line-height: 150%;
  letter-spacing: 0;
  color: #84888f;
  transition: color 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

@media (min-width: 1024px) {
  .locations__tab:hover {
    color: #6a4d94;
  }
}

.locations__tab--active {
  color: #060505;
}

.locations__card {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.locations__card--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.locations__card.hidden {
  visibility: hidden;
}

.locations__cards-container {
  position: relative;
  min-height: 380px;
}

/* ======================== Locations Styles End ======================== */

/* ======================== Responsive Styles Start ======================== */

/* Large Desktop (1460px+) */
@media (min-width: 1460px) {
  .hero__heading {
    font-size: 56px;
  }
}

/* Desktop (1024px - 1459px) */
@media (max-width: 1459px) and (min-width: 1024px) {
  .header__nav-item {
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__heading {
    font-size: 48px;
  }

  .hero__image {
    max-width: 400px;
  }
}

/* Tablet & iPad Pro (768px - 1279px) */
@media (max-width: 1279px) and (min-width: 768px) {
  .header__container,
  .hero__container,
  .about__container,
  .awards__container,
  .features__container,
  .brands__container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero__heading {
    font-size: 40px;
  }

  .hero__cta {
    font-size: 20px;
    padding: 10px 60px;
  }

  .hero__image {
    max-width: 350px;
  }

  .hero__overlay-img {
    max-height: 40vh;
  }

  .hero__left {
    gap: 60px;
  }

  .about {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about__text {
    font-size: 40px;
  }

  .awards {
    padding-bottom: 100px;
  }

  .awards__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .awards__grid {
    justify-content: flex-start;
  }

  .awards__logo {
    width: 60px;
  }

  .features {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .features__title {
    font-size: 28px;
  }

  .features__text {
    font-size: 18px;
    margin-top: 40px;
  }

  .features__item {
    max-width: 100%;
  }

  .brands {
    padding-bottom: 100px;
  }

  .brands__title {
    font-size: 40px;
  }

  .brands__slider-wrapper {
    margin-top: 100px;
  }

  .brands__slide {
    height: 100px;
  }

  .brands__logo {
    max-width: 150px;
    max-height: 80px;
  }

  .video {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .video__title {
    font-size: 40px;
  }

  .video__play-icon {
    width: 120px;
    height: 120px;
  }

  .values {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .values__title {
    font-size: 40px;
  }

  .values__grid {
    gap: 40px;
    margin-top: 80px;
  }

  .values__item {
    flex: 1 1 calc(50% - 20px);
    min-width: calc(50% - 20px);
  }

  .values__icon {
    width: 60px;
    height: 60px;
  }

  .values__item-title {
    font-size: 28px;
    line-height: 1.5;
    margin-top: 30px;
  }

  .values__item-text {
    font-size: 18px;
  }

  .showcase {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .showcase__wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .showcase__sticky {
    position: relative;
    top: 0;
  }

  .showcase__title {
    font-size: 40px;
  }

  .showcase__text {
    font-size: 18px;
  }

  .showcase__stat-box {
    padding: 25px 35px;
  }

  .showcase__stat-number {
    font-size: 48px;
    line-height: 48px;
  }

  .showcase__stat-title {
    font-size: 22px;
    line-height: 36px;
  }

  .showcase__stat-text {
    font-size: 14px;
    line-height: 18px;
  }

  .cta {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .cta__card {
    padding: 60px 50px;
  }

  .cta__title {
    font-size: 40px;
  }

  .cta__text {
    font-size: 20px;
  }

  .cta__btn {
    font-size: 22px;
    padding: 10px 50px;
  }

  .footer__top {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer__box {
    padding: 25px 40px;
  }

  .footer__box-title {
    font-size: 32px;
    line-height: 48px;
  }

  .footer__box-text {
    font-size: 16px;
    line-height: 24px;
  }

  .footer__box-icon {
    width: 30px;
    height: 30px;
  }

  .footer__info {
    gap: 60px;
  }

  .footer__info-item {
    margin-right: 0 !important;
  }

  .footer__info-logo {
    width: 50px;
  }

  .footer__info-title {
    font-size: 22px;
  }

  .footer__info-icon {
    width: 30px;
    height: 30px;
  }

  .footer__bottom {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .footer__main {
    flex-direction: column;
    gap: 60px;
  }

  .footer__logo-col {
    width: 100%;
  }

  .footer__nav-col {
    width: 100%;
  }

  .footer__nav-list {
    margin-top: 40px;
  }

  .footer__nav-title {
    font-size: 17px;
  }

  .footer__nav-link {
    font-size: 15px;
    line-height: 44px;
  }

  .footer__copyright {
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 60px;
  }

  .footer__social {
    gap: 40px;
  }

  .footer__policy {
    gap: 30px !important;
  }

  .footer__policy-link,
  .footer__copyright-text {
    font-size: 14px;
    line-height: 40px;
  }
}

/* Mobile Large (640px - 767px) */
@media (max-width: 767px) and (min-width: 640px) {
  .header__container,
  .hero__container,
  .about__container,
  .awards__container,
  .features__container,
  .brands__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__heading {
    font-size: 36px;
  }

  .hero__cta {
    font-size: 18px;
    padding: 10px 50px;
  }

  .hero__image {
    max-width: 300px;
  }

  .hero__overlay-img {
    max-height: 30vh;
  }

  .hero__left {
    gap: 50px;
  }

  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about__text {
    font-size: 32px;
  }

  .awards {
    padding-bottom: 80px;
  }

  .awards__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .awards__label {
    font-size: 22px;
  }

  .awards__logo {
    width: 50px;
  }

  .awards__text {
    font-size: 12px;
    line-height: 20px;
  }

  .features {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .features__title {
    font-size: 26px;
  }

  .features__text {
    font-size: 16px;
    margin-top: 30px;
  }

  .brands {
    padding-bottom: 80px;
  }

  .brands__title {
    font-size: 32px;
  }

  .brands__slider-wrapper {
    margin-top: 80px;
  }

  .brands__slide {
    height: 90px;
  }

  .brands__logo {
    max-width: 130px;
    max-height: 70px;
  }

  .video {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .video__title {
    font-size: 32px;
  }

  .video__play-icon {
    width: 100px;
    height: 100px;
  }

  .values {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .values__title {
    font-size: 32px;
  }

  .values__grid {
    gap: 30px;
    margin-top: 60px;
  }

  .values__item {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 35px 30px;
  }

  .values__icon {
    width: 50px;
    height: 50px;
  }

  .values__item-title {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 25px;
  }

  .values__item-text {
    font-size: 16px;
  }

  .showcase {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .showcase__wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .showcase__sticky {
    position: relative;
    top: 0;
  }

  .showcase__title {
    font-size: 32px;
  }

  .showcase__text {
    font-size: 16px;
  }

  .showcase__stats {
    margin-top: 40px;
  }

  .showcase__stat-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
  }

  .showcase__stat-number {
    font-size: 42px;
    line-height: 42px;
  }

  .showcase__stat-title {
    font-size: 20px;
    line-height: 32px;
  }

  .showcase__stat-text {
    font-size: 14px;
    line-height: 18px;
  }

  .cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta__card {
    padding: 50px 40px;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__text {
    font-size: 18px;
  }

  .cta__btn {
    font-size: 20px;
    padding: 10px 40px;
  }

  .footer__top {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer__boxes {
    gap: 20px;
  }

  .footer__box {
    padding: 20px 30px;
    min-width: 280px;
  }

  .footer__box-title {
    font-size: 28px;
    line-height: 40px;
  }

  .footer__box-text {
    font-size: 15px;
    line-height: 22px;
  }

  .footer__box-icon {
    width: 28px;
    height: 28px;
  }

  .footer__box-content {
    margin-top: 18px;
  }

  .footer__middle {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer__info {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer__info-logo {
    width: 45px;
  }

  .footer__info-title {
    font-size: 20px;
  }

  .footer__info-icon {
    width: 28px;
    height: 28px;
  }

  .footer__info-content {
    gap: 8px;
  }

  .footer__bottom {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .footer__main {
    flex-direction: column;
    gap: 50px;
  }

  .footer__logo-col {
    width: 100%;
  }

  .footer__nav-col {
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer__nav-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 140px;
  }

  .footer__nav-list {
    margin-top: 30px;
  }

  .footer__nav-title {
    font-size: 16px;
  }

  .footer__nav-link {
    font-size: 14px;
    line-height: 40px;
  }

  .footer__social {
    gap: 35px;
  }

  .footer__policy {
    flex-wrap: wrap;
    gap: 20px !important;
  }

  .footer__policy-link,
  .footer__copyright-text {
    font-size: 13px;
    line-height: 36px;
  }
}

/* Mobile Small (< 640px) */
@media (max-width: 639px) {
  .header__container,
  .hero__container,
  .about__container,
  .awards__container,
  .features__container,
  .brands__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__heading {
    font-size: 28px;
  }

  .hero__cta {
    font-size: 18px;
    padding: 10px 40px;
  }

  .hero__image {
    max-width: 100%;
  }

  .hero__overlay-img {
    max-height: 25vh;
    opacity: 0.5;
  }

  .hero__play-icon {
    width: 40px;
    height: 40px;
  }

  .hero__left {
    gap: 40px;
  }

  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about__text {
    font-size: 24px;
  }

  .awards {
    padding-bottom: 60px;
  }

  .awards__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .awards__label {
    font-size: 20px;
  }

  .awards__grid {
    gap: 16px;
  }

  .awards__logo {
    width: 45px;
  }

  .awards__text {
    font-size: 11px;
    line-height: 18px;
  }

  .features {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .features__title {
    font-size: 24px;
  }

  .features__text {
    font-size: 16px;
    margin-top: 24px;
  }

  .features__icon {
    width: 28px;
    height: 28px;
  }

  .brands {
    padding-bottom: 60px;
  }

  .brands__title {
    font-size: 24px;
  }

  .brands__slider-wrapper {
    margin-top: 60px;
  }

  .brands__slide {
    height: 80px;
  }

  .brands__logo {
    max-width: 110px;
    max-height: 60px;
  }

  .video {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .video__title {
    font-size: 24px;
    max-width: 100%;
  }

  .video__play-icon {
    width: 80px;
    height: 80px;
  }

  .values {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .values__title {
    font-size: 24px;
  }

  .values__grid {
    gap: 24px;
    margin-top: 40px;
  }

  .values__item {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 30px 25px;
  }

  .values__icon {
    width: 45px;
    height: 45px;
  }

  .values__item-title {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 20px;
  }

  .values__item-text {
    font-size: 15px;
  }

  .showcase {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .showcase__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .showcase__sticky {
    position: relative;
    top: 0;
  }

  .showcase__title {
    font-size: 24px;
  }

  .showcase__image-wrapper {
    margin-top: 40px;
  }

  .showcase__text {
    font-size: 15px;
  }

  .showcase__stats {
    margin-top: 30px;
    gap: 16px;
  }

  .showcase__stat-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
  }

  .showcase__stat-number {
    font-size: 36px;
    line-height: 36px;
  }

  .showcase__stat-title {
    font-size: 18px;
    line-height: 28px;
  }

  .showcase__stat-text {
    font-size: 13px;
    line-height: 17px;
  }

  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta__card {
    padding: 40px 25px;
  }

  .cta__title {
    font-size: 24px;
  }

  .cta__text {
    font-size: 16px;
  }

  .cta__btn {
    font-size: 18px;
    padding: 10px 30px;
  }

  .footer__top {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer__boxes {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer__box {
    padding: 20px 25px;
    min-width: 100%;
    max-width: 100%;
  }

  .footer__box-title {
    font-size: 24px;
    line-height: 36px;
  }

  .footer__box-text {
    font-size: 14px;
    line-height: 20px;
  }

  .footer__box-icon {
    width: 25px;
    height: 25px;
  }

  .footer__box-content {
    margin-top: 15px;
  }

  .footer__middle {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  /* .footer__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  } */

  .footer__info-logo {
    width: 40px;
  }

  .footer__info-title {
    font-size: 18px;
  }

  .footer__info-icon {
    width: 25px;
    height: 25px;
  }

  .footer__info-content {
    gap: 6px;
  }

  .footer__bottom {
    padding-top: 50px;
    padding-bottom: 35px;
  }

  .footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .footer__logo-col {
    width: 100%;
  }

  .footer__logo {
    max-width: 180px;
  }

  .footer__nav-col {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }

  .footer__nav-item {
    width: 100%;
  }

  .footer__nav-list {
    margin-top: 20px;
  }

  .footer__nav-title {
    font-size: 15px;
  }

  .footer__nav-link {
    font-size: 13px;
    line-height: 36px;
  }

  .footer__social {
    gap: 30px;
  }

  .footer__policy {
    flex-direction: column;
    gap: 10px !important;
  }

  .footer__policy-link,
  .footer__copyright-text {
    font-size: 12px;
    line-height: 28px;
  }
  .content-section[data-index='3']
    .content-text-wrapper
    > span
    > span:last-child {
    align-self: flex-start !important;
  }
  #breadcrumbs span,
  #breadcrumbs a {
    font-size: 12px;
  }
  #breadcrumbs a::after {
    width: 8px;
    height: 8px;
  }
  .locations__cards-container {
    min-height: 256px;
  }
}

/* Extra Small Mobile (< 400px) */
@media (max-width: 399px) {
  .hero__heading {
    font-size: 24px;
  }

  .hero__cta {
    font-size: 16px;
    padding: 8px 30px;
  }

  .mobile-menu__item {
    font-size: 24px;
  }

  .hero__left {
    gap: 30px;
  }
}

/* ======================== Responsive Styles End ======================== */
/* Investor page documents filter tabs */
.filter-tab.filter-tab--active {
  background-color: #6a4d94 !important;
}
/* Awards Gallery Line clamp for description text */
.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Teams Member Custom scrollbar for team bio */
.team-member__overlay .scrollbar-thin::-webkit-scrollbar {
  width: 4px;
}

.team-member__overlay .scrollbar-thin::-webkit-scrollbar-track {
  background: transparent;
}

.team-member__overlay .scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.team-member__overlay .scrollbar-thin::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Firefox scrollbar */
.team-member__overlay .scrollbar-thin {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Content Stack Styles */
.content-stack-wrapper {
  position: relative;
}

.content-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.content-section__inner {
  width: 100%;
}

/* Word spans for text reveal animation */
.content-text-wrapper .word {
  display: inline-block;
}

/* Section 3 - Portfolio heading layout */
.content-section[data-index='3'] .content-text-wrapper > span {
  display: flex;
  flex-direction: column;
}

.content-section[data-index='3']
  .content-text-wrapper
  > span
  > span:last-child {
  align-self: flex-end;
}

/* Brand Stack Styles */
.brand-stack-wrapper {
  position: relative;
}

.brand-item {
  position: sticky;
  /* will-change managed by GSAP — permanent will-change wastes GPU memory */
  transition: box-shadow 0.4s ease;
  transform-origin: center top;
}

.brand-item.is-stacked {
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

/* Last brand item should not have margin bottom */
.brand-item:last-child {
  margin-bottom: 0 !important;
}

/* GPU acceleration for animated elements */
.hero__heading-ex,
.hero__cta-ex,
.hero__video-container,
.hero__overlay-img,
.about-word,
.awards__item,
.features__item,
.features__icon,
.brands__title-ex,
.video__title-ex,
.video__play-btn,
.values__item,
.values__icon,
.showcase__title-ex,
.showcase__text-ex,
.showcase__image-wrapper,
.showcase__stat-box,
.cta__card {
  will-change: transform, opacity;
}

/* Ensure smooth transitions */
.features__item,
.values__item,
.showcase__stat-box,
.awards__item,
.awards__item img {
  transition:
    transform 0.375s ease,
    box-shadow 0.375s ease;
}

/**
 * Animation Fixes CSS
 * - Awards Swiper visibility and layout fixes
 * - Hero section scroll-up spacing
 * - Performance optimizations
 */

/* ============================================================================
   AWARDS SWIPER FIXES
   ============================================================================ */

/* Ensure awards slider is always visible */
.awards__swiper {
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible;
}

.awards__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  /* Smooth continuous scroll */
  transition-timing-function: linear !important;
  gap: 40px;
}

.awards__swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Awards slider wrapper - only control opacity, not position */
.awards__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Awards item styling */
.awards__item {
  padding: 0 10px;
}

.awards__logo {
  max-width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}
@media (max-width: 1400px) {
  .awards__swiper .swiper-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .awards__swiper .swiper-wrapper {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .awards__swiper .swiper-wrapper {
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .awards__swiper .swiper-wrapper {
    gap: 0;
  }
}
/* ============================================================================
   HERO SECTION SCROLL-UP SPACING
   ============================================================================ */

/* Base hero container */
.hero__container {
  transition: padding-top 0.4s ease-out;
}

/* When scrolling back up - add extra top padding */
.hero--scroll-up .hero__container {
  padding-top: calc(var(--hero-padding-top, 250px) + 60px) !important;
}

/* When fully at top */
.hero--at-top .hero__container {
  padding-top: calc(var(--hero-padding-top, 250px) + 80px) !important;
}

/* Desktop specific */
@media (min-width: 1024px) {
  .hero--scroll-up .hero__container {
    padding-top: calc(var(--hero-padding-top, 250px) + 80px) !important;
  }

  .hero--at-top .hero__container {
    padding-top: calc(var(--hero-padding-top, 250px) + 100px) !important;
  }
}

/* ============================================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================================ */

/* Promote animated elements to GPU layer */
.hero--pinned,
.about--pinned,
.awards--pinned,
.features--pinned,
.brands--pinned,
.video--pinned,
.values--pinned,
.showcase--pinned,
.cta--pinned {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize text color animation */
.about-word {
  will-change: color;
  display: inline;
}

/* Optimize swiper performance */
.swiper-wrapper {
  will-change: transform;
  transform: translateZ(0);
}

.swiper-slide {
  will-change: transform;
  backface-visibility: hidden;
}

/* Smooth pinned sections */
[class*='--pinned'] {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* ============================================================================
   GSAP PIN SPACER FIXES
   ============================================================================ */

/* Ensure proper z-index stacking for pinned sections */
.pin-spacer {
  z-index: auto !important;
}

/* ============================================================================
   SCROLLTRIGGER VISUAL FIXES
   ============================================================================ */

/* Prevent content jump on pin */
.gsap-pin-spacer {
  contain: layout;
}

/* Smooth transition when unpinning */
[class*='--pinned'].is-pinned {
  position: fixed !important;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 1023px) {
  /* Reduce will-change on tablet for memory */
  .about-word {
    will-change: auto;
  }
}

@media (max-width: 767px) {
  /* Remove GPU promotion on mobile to save memory */
  [class*='--pinned'] {
    will-change: auto;
    transform: none;
  }

  .about-word {
    will-change: auto;
  }

  /* Hero spacing on mobile */
  .hero--scroll-up .hero__container,
  .hero--at-top .hero__container {
    padding-top: var(--hero-padding-top, 150px) !important;
  }
}

/* ============================================================================
   AWARDS SECTION SPECIFIC LAYOUT
   ============================================================================ */

.awards--pinned {
  overflow: visible;
}

.awards--pinned .awards__slider-wrapper {
  /* Ensure full width for slider */
  width: 100%;
  min-height: 100px;
}

/* Fix for swiper not showing */
.awards__swiper.swiper {
  width: 100%;
  padding: 20px 0 0;
}

.awards__swiper .swiper-slide {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure continuous autoplay looks smooth */
.awards__swiper .swiper-wrapper,
.brands__swiper .swiper-wrapper,
.cta__slider--1 .swiper-wrapper,
.cta__slider--2 .swiper-wrapper,
.cta__slider--3 .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Contact Form 7 Custom Styling */
/* Contact Form 7 - Remove default wrapper styles */
.wpcf7-form p {
  margin: 0;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

/* Input & Textarea Base Styles */
.wpcf7 .contact-form__input {
  width: 100%;
  padding: 10px 25px;
  background-color: white;
  border: 1px solid rgba(106, 77, 148, 0.4);
  border-radius: 6px;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  color: #1e1e1e;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.wpcf7 .contact-form__input:focus {
  border-color: #6a4d94;
}

.wpcf7 .contact-form__input::placeholder {
  color: #999;
}

/* Textarea Specific */
.wpcf7 .contact-form__textarea {
  min-height: 150px;
  resize: none;
  line-height: 150%;
}

/* Submit Button */
.wpcf7 .contact-form__btn {
  padding: 14px 32px;
  background-color: #6a4d94;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16.7px;
  font-weight: 400;
  line-height: 100%;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7 .contact-form__btn:hover {
  opacity: 0.9;
}

/* Validation Error Styles */
.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 15px !important;
  border-radius: 6px !important;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border-color: #c3e6cb !important;
  color: #155724;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background-color: #f8d7da;
  border-color: #f5c6cb !important;
  color: #721c24;
}

#wpcf7-f638-o1
  > form
  > div.contact-form__form.flex.flex-col.gap-\[24px\]
  > div
  > p {
  display: flex;
  flex-direction: row-reverse;
}

/* ============================================
   LOCATIONS TABS - MOBILE/TABLET STYLING
   ============================================ */

/* Hide scrollbar */
.locations__tabs {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.locations__tabs::-webkit-scrollbar {
  display: none;
}

/* Tab base styling */
.locations__tab {
  color: #84888f;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* Active tab text color */
.locations__tab.locations__tab--active {
  color: #060505 !important;
}

/* Mobile/Tablet: Add borders via CSS */
@media (max-width: 1023px) {
  .locations__tab {
    position: relative;
    border-bottom: 2px solid #84888f66;
  }

  .locations__tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }

  .locations__tab.locations__tab--active::after {
    background-color: #6a4d94;
  }
  .wpcf7 .contact-form__input {
    font-size: 16px;
  }
}

/* Card animation */
.locations__card {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Link hover effect */
.locations__card-link {
  transition: all 0.3s ease;
}

.locations__card-link:hover {
  color: #6a4d94;
  /* transform: translateX(5px); */
}

@media (width: 1024px) {
  .career-opportunities > div > div {
    gap: 40px !important;
  }
  body > .locations > div > div {
    gap: 50px !important;
  }
  .locations__tab {
    font-size: 36px !important;
  }
  .about-history__wrapper {
    gap: 100px !important;
  }
}

@media (width: 1920px) {
  .brand-item {
    min-height: 800px !important;
  }
}

.mobile-menu__dropdown li:nth-child(1) {
  padding-top: 16px !important;
}
/* form spinning adjustment */
.wpcf7 > form > div.contact-form__form.flex.flex-col.gap-\[24px\] > div > p {
  align-items: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 1px solid #6a4d9466 !important;
  color: #1d1d1d;
}
@media (min-width: 1025px) {
  /* Office Tabs - Hover state (only for non-active tabs) */
  .explore-range__tab:not(.active):hover {
    background-color: #b6adc3;
  }
  .policy-content a:hover {
    color: #453661;
  }
  .terms-content a:hover {
    color: #453661;
  }
}
