/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors from Figma design */
  --color-primary: #234261;
  --color-red: #e73b50;
  --color-white: #ffffff;
  --color-light-bg: #f7fbff;
  --color-hero-bg: rgba(231, 59, 80, 0.05);
  --color-light-gray: #e7eaef;
  --color-mint: #00c8b3;
  --color-orange: #ff8d28;
  --color-blue: #0088ff;
  --color-cyan: #00c0e8;
  --color-purple: #493d9d;
  --color-navy: #1a47b8;
  --color-text-primary: #234261;
  --color-text-secondary: #464646;
  --color-text-gray: #696984;
  --color-text-dark: #252641;
  --color-text-light: #545567;
  --color-neutral-100: #f5f5f5;
  --color-neutral-500: #71717a;
  --color-neutral-600: #52525b;
  --color-yellow: #f4c467;
  --color-light-purple: #eceaff;
  --color-purple-bg: #f7f6ff;

  /* Typography */
  --font-poppins: "Poppins", sans-serif;
  --font-nunito: "Nunito Sans", sans-serif;
  --font-noto: "Noto Sans", sans-serif;
  --font-noto-arabic: "Noto Kufi Arabic", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-inter: "Inter", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Layout */
  --container-width: 1280px;
  --container-padding: 80px;

  --web-card-padding: 32px;
  --mobile-card-padding: 16px;


  --section-padding : 50px 0 50px 0; 
  --main-gap :50px ; 
}

html {
  scroll-behavior: smooth;
  background-color: #ffffff;
}

body {
  font-family: var(--font-poppins);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  padding: 20px 50px;
  height: auto;
  position: fixed;
  display: flex;
  justify-content: center;
}
.hero-mobile-image {
  display: none;
}
.mobile-display {
  display: none !important;
}
/* Company Page Header - White Style */

/* body:has(.company-hero) .header {
  background-color: var(  --color-red) !important;
 } */
/* body:has(.company-hero) .header .nav-link {
  color: var(--color-white);
} */

body.company-hero-active .header {
  background-color: var(--color-red);
}

body.company-hero-active .header .logo svg path {
  fill: var(--color-white);
}

body.company-hero-active .header .nav-link {
  color: var(--color-white);
}

body.company-hero-active .header .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

body.company-hero-active .header .btn-primary {
  background-color: var(--color-white);
  color: #234261;
}

body.company-hero-active .header .mobile-menu-toggle span {
  background: var(--color-white);
}

/* Al Ahly Success Story Page - White Header */
/* body:has(.alahly-hero) .header .logo svg path {
  fill: var(--color-white);
} */

/* body:has(.alahly-hero) .header .nav-link {
  color: var(--color-white);
} */
body.alahly-hero-active .header {
  /* background-color: var(--color-primary); */
}
/* Target only the 'Soon' span inside the XPLORE link when AlAhly hero is active */
body.company-hero-active .header .nav-link.soon-link .soon {
  color: var(--color-primary) !important; /* force white */
}

body.alahly-hero-active .header .logo svg path {
  fill: var(--color-white);
}

body.alahly-hero-active .header .nav-link {
  color: var(--color-white);
}

body.alahly-hero-active .header button span {
  color: var(--color-white) !important;
  background-color: var(--color-white) !important;
}
body.company-hero-active .header button span {
  color: var(--color-white) !important;
  background-color: var(--color-white) !important;
}
.header-container {
  width: 100%;
  /* padding: 0 20px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  max-width: 1280px;
}
.mobile-menu-toggle {
  display: none;
}
.logo {
  width: 207px;
  display: block;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo svg {
  width: 70%;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-poppins);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: 0.32px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-red);
}

.nav-link--active {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 34px;
  border-radius: 50px;
  letter-spacing: 0.36px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

/* Header button - specific styling */
/* .btn-primary-header - No specific styles needed, inherits from .btn-primary */
.btn-primary-header {
  height: 31px;
  font-size: 12px;
  padding: 8px 20px;
  letter-spacing: 0.24px;
}
/* Button container - only for header */
.header-container .btn-container {
  width: fit-content;
  /* margin-left: auto; */
  margin-right: 0;
  flex-shrink: 0;
}

.btn-primary:hover {
  background-color: #d12d42;
  transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 788px;
  padding-top: 164px;
  padding-bottom: 100px;
  background: var(--color-hero-bg);
  overflow: hidden;
  width: 100%;
}
.title-suptitle-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-hero-bg);
  z-index: 0;
}

.hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 0 0 513px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* Segmented Picker */
.segmented-picker {
  display: flex;
  background: var(--color-light-gray);
  padding: 2px;
  border-radius: 8.91px;
  width: 339px;
  height: 48px;
}

.segmented-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-poppins);
  font-size: 13px;
  color: var(--color-text-primary);
  border-radius: 6.93px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.segmented-option.active {
  background: var(--color-white);
  font-weight: 700;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
}

.segmented-option:not(.active) {
  font-weight: 400;
}

/* Hero Content Tabs */
.hero-content-tab {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
}

.hero-content-tab.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.hero-title {
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-text-primary);
}

.text-red {
  font-weight: 400;
  color: var(--color-red);
}

.hero-description {
  font-family: var(--font-nunito);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.watch-video {
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
}

.watch-video:not(:has(.play-icon)) {
  cursor: default;
}

.hero-cta .watch-video {
  margin-left: 0;
}

.play-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 24px;
  height: 24px;
}

.watch-video span {
  font-family: var(--font-poppins);
  font-size: 16px;
  color: var(--color-text-dark);
}

/* Hero Right - Image & Floating Cards */
.hero-right {
  flex: 1;
  position: relative;
  height: 571px;
}

.hero-image-wrapper {
  position: absolute;
  right: 0;
  width: 649px;
  height: 571px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
  box-shadow: 0px 2.8px 70px rgba(29, 28, 24, 0.25);
}

.hero-image-individual {
  border-radius: 20px;
  width: 684px;
  height: 537px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7px);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.card-1 {
  top: 206px;
}

.card-2 {
  right: -60px;
  top: 275px;
  width: auto;
}

.card-3 {
  left: -60px;
  top: 471px;
}

.card-icon {
  width: 35px;
  height: 35px;
  border-radius: 5.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon.blue {
  background: #23bdee;
}

.card-icon.orange {
  background: #f88c3d;
}

.card-avatar {
  width: 39.2px;
  height: 39.2px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
  flex-shrink: 0;
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-number,
.card-title {
  font-family: var(--font-poppins);
  font-size: 16.8px;
  font-weight: 700;
  color: #595959;
  letter-spacing: 0.336px;
}

.card-label,
.card-subtitle {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.28px;
}

.card-subtitle {
  font-family: var(--font-nunito);
  font-weight: 600;
}

.card-close {
  font-size: 14px;
  color: var(--color-text-light);
  cursor: pointer;
  margin-left: auto;
}

/* ============================================
   Companies Section
   ============================================ */
.companies {
  max-width: 936px;
  margin: 0 auto;
  padding: var(--section-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
  padding-bottom: 0;
}

.companies-label {
  font-family: var(--font-nunito);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-gray);
  letter-spacing: 0.36px;
}

.companies-logos {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.companies-logos img {
  height: 57px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.companies-logos img:hover {
  opacity: 1;
}
.companies-logos-home {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.companies-logos-home img {
  height: 57px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.companies-logos-home img:hover {
  opacity: 1;
}
.fr-5{
          grid-template-columns: repeat(5, 1fr) !important;

}
g-60{
  gap: 60px !important;
}
/* ============================================
   Services Section
   ============================================ */

.services {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
  padding-bottom: 0;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 585.9px;
}

.section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  color: #2f327d;
}

.section-description {
  font-family: var(--font-poppins);
  font-size: 16.8px;
  font-weight: 400;
  color: var(--color-text-gray);
  /* white-space: nowrap; */
}

.services-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.service-card {
  flex: 1;
  background: var(--color-white);
  padding: var(--web-card-padding);
  border-radius: 16px;
  box-shadow: 0px 7px 42px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -28px;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.service-icon.mint {
  background: var(--color-mint);
}

.service-icon.orange {
  background: var(--color-orange);
}

.service-icon.cyan {
  background: var(--color-cyan);
}

.service-title {
  font-family: var(--font-poppins);
  font-size: 21px;
  font-weight: 500;
  line-height: normal;
}

.service-title.mint-text {
  color: var(--color-mint);
}

.service-title.orange-text {
  color: var(--color-orange);
}

.service-title.blue-text {
  color: var(--color-blue);
}

.service-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-gray);
}

.view-all {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.view-all-link {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-blue);
  white-space: nowrap;
}

/* ============================================
   Products Section
   ============================================ */
.products {
  max-width: 1062px;
  margin: 0 auto;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
  padding-bottom: 0;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.product-card {
  background: var(--color-neutral-100);
  padding: var(--web-card-padding);
  border-radius: 40px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.product-image {
  flex: 0 0 516px;
  height: 329.755px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0.6;
}

.product-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: 40.87px;
}

.product-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-noto);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.384px;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.product-label {
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: -0.288px;
}

.product-title {
  font-family: var(--font-nunito);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.384px;
}

.product-title strong {
  font-family: "Noto Sans Display Bold", sans-serif;
}

.product-description {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: normal;
}

.product-link {
  font-family: var(--font-poppins);
  font-size: 15.4px;
  font-weight: 400;
  color: var(--color-red);
  text-decoration: underline;
  line-height: 1.8;
  white-space: nowrap;
}

/* ============================================
   CTA Sections
   ============================================ */
.cta-section {
  position: relative;
  height: 338px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
  border-radius: 40px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
}

.cta-1 {
  max-width: 1062px;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(
      rgba(35, 66, 97, 0.7),
      rgba(35, 66, 97, 0.7)
    ),
    url("assets/images/Xplore-BG.jpg");
  background-size: cover;
  background-position: center;
}

.cta-2,
.cta-3 {
  width: 100%;
  border-radius: 0;
}

.cta-2 {
  background: linear-gradient(rgba(35, 66, 97, 0.65), rgba(35, 66, 97, 0.65)),
    url("assets/images/Have-event-1.jpg") 50% / cover no-repeat, #234261;
}

.cta-3 {
  margin-bottom: 0;
  background: var(--color-light-purple);
}

.cta-3 .cta-graphic {
  position: absolute;
  top: 50%;
  left: max(64px, calc(50% - 600px));
  transform: translateY(-50%);
  width: 477px;
  height: 336px;
  border-radius: 14px;
  background: url("assets/images/Have-event-2.jpg") 50% / cover no-repeat;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.cta-3 .cta-content {
  position: relative;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 439px;
}

.cta-title {
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: var(--color-white);
}

.cta-description {
  font-family: var(--font-nunito);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}

.cta-3 .cta-title,
.cta-3 .cta-description {
  color: var(--color-text-primary);
}

/* ============================================
   Why TravX Section
   ============================================ */
.why-travx {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--section-padding);
  /* margin-bottom: 50px; */
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
}

.why-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.why-card {
  flex: 1;
  background: var(--color-white);
  padding: var(--web-card-padding);
  border-radius: 16px;
  box-shadow: 0px 7px 42px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title {
  font-family: var(--font-poppins);
  font-size: 21px;
  font-weight: 500;
  color: #2f327d;
}

.why-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-gray);
}

/* ============================================
   Case Studies Section
   ============================================ */
.case-studies {
  width: 100%;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
  background-color: #f7fbff;
}

.case-studies-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}

.case-studies-intro {
  font-family: var(--font-poppins);
  font-size: 18.2px;
  line-height: 29.12px;
  color: #696984;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.364px;
}

.case-studies-left {
  flex: 0 0 calc(50% - 16px);
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.case-card {
  background: var(--color-white);
  padding: var(--web-card-padding);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  flex: 1;
}

a.case-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-card .case-image {
  width: 196px;
  height: 145px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.case-card .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card .case-image-wrapper {
  width: 196px;
  height: 145px;
  flex-shrink: 0;
}

.case-card .case-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.case-card .case-badge {
  display: inline-block;
  background: #f4c467;
  padding: 2.8px 20.9px;
  border-radius: 56px;
  font-family: var(--font-poppins);
  font-size: 12.6px;
  font-weight: 400;
  color: #252641;
  letter-spacing: 0.252px;
  width: fit-content;
}

.case-card .case-title {
  font-family: var(--font-poppins);
  font-size: 15.4px;
  font-weight: 500;
  color: #252641;
  line-height: 27.72px;
  margin: 0;
}

.case-card .case-excerpt {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 25.2px;
  color: #696984;
  margin: 0;
  letter-spacing: 0.28px;
}

.case-card img {
  width: 196px;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.case-image-wrapper {
  position: relative;
  width: 196px;
  height: 140px;
  flex-shrink: 0;
}

.case-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.case-badge {
  position: absolute;
  top: 101px;
  left: 15.9px;
  background: var(--color-yellow);
  padding: 2.8px 20.9px;
  border-radius: 56px;
  font-family: var(--font-poppins);
  font-size: 12.6px;
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: 0.252px;
  z-index: 1;
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-title {
  font-family: var(--font-poppins);
  font-size: 15.4px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.case-excerpt {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  letter-spacing: 0.28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.case-card-large {
  background: var(--color-white);
  padding: var(--web-card-padding);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 calc(50% - 16px);
  /* max-height: 544px; */
  overflow: hidden;
}

.case-card-large .case-image {
  width: 100%;
  height: 238px;
  border-radius: 14px;
  overflow: hidden;
}

.case-card-large .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-large .case-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.case-card-large .case-badge {
  display: inline-block;
  background: #f4c467;
  padding: 1.4px 30px;
  border-radius: 56px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  color: #252641;
  letter-spacing: 0.28px;
  width: fit-content;
}

.case-card-large .case-title {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 600;
  color: #252641;
  line-height: 25.2px;
  margin: 0;
}

.case-card-large .case-excerpt {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 25.2px;
  color: #696984;
  margin: 0;
  letter-spacing: 0.28px;
}

.case-card-large .case-link {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 25.2px;
  color: #696984;
  text-decoration: underline;
  letter-spacing: 0.28px;
  margin-top: auto;
}

.case-card-large img {
  width: 100%;
  height: 238px;
  border-radius: 14px;
  object-fit: cover;
  position: relative;
}

.case-title-large {
  font-family: var(--font-poppins);
  font-size: 18.2px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.case-link {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  text-decoration: underline;
  letter-spacing: 0.28px;
}

.case-card-large .case-badge {
  position: static;
  display: inline-block;
  background: var(--color-yellow);
  padding: 1.4px 30px;
  border-radius: 56px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: 0.28px;
  width: fit-content;
  margin-bottom: 15px;
}

.case-badge.purple {
  background: var(--color-purple);
  color: var(--color-white);
}

.payments-card-content .case-badge.purple {
  position: static;
  display: inline-block;
  width: fit-content;
}

/* ============================================
   Payments Section
   ============================================ */
.payments {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
  padding-bottom: 0;
}

.payments-content {
  background: var(--color-purple-bg);
  padding: var(--web-card-padding);
  border-radius: 24px;
  display: flex;
  gap: 24px;
  width: 100%;
}

.payments-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-feature {
  background: transparent;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.payment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.payment-icon img {
  width: 100%;
  height: 100%;
}

.payment-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-title {
  font-family: var(--font-poppins);
  font-size: 15.4px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.payment-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  letter-spacing: 0.28px;
  line-height: 1.8;
}

.payments-card {
  flex: 0 0 658px;
  background: var(--color-white);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.payments-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payments-card-title {
  font-family: var(--font-poppins);
  font-size: 18.2px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.payments-card-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  letter-spacing: 0.28px;
  line-height: 1.8;
}

.payments-card-image {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
}

.payments-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.testimonials .section-title,
.testimonials .testimonials-slider,
.testimonials .testimonials-controls {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section-title {
  text-align: center;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  padding: 32px 0;
}

.testimonials-slider::before,
.testimonials-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonials-slider::before {
  left: 0;
}

.testimonials-slider::after {
  right: 0;
  transform: scaleX(-1);
}

.testimonials-track {
  display: flex;
  gap: 40px;
  align-items: center;
  min-height: 426px;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-card {
  position: relative;
  flex: 0 0 745px;
  height: 426px;
  background: var(--color-white);
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  opacity: 0.35;
  transform: scale(0.9);
  transform-origin: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-media {
  margin: 0;
  flex: 0 0 280px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
  border-radius: 24px 0 0 24px;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.testimonial-date {
  font-family: var(--font-lato);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-neutral-600);
}

.testimonial-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: normal;
}

.testimonial-text {
  font-family: var(--font-poppins);
  font-size: 15.4px;
  font-weight: 400;
  color: #5f5f7e;
  letter-spacing: 0.308px;
  line-height: 1.8;
}

.testimonial-stars {
  width: 95.9px;
  height: 16.782px;
  margin-top: auto;
}

.testimonial-stars img {
  display: block;
  width: 100%;
  height: auto;
}

.testimonials-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.slider-btn {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.slider-btn svg {
  width: 40px;
  height: 40px;
  display: block;
}

.slider-btn:hover {
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--color-red);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  max-width: 1054px;
  margin: 0 auto;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  align-items: center;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: var(--color-white);
  border-bottom: 1px solid #d4d4d8;
  padding: 16px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question p {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-neutral-500);
  letter-spacing: -0.08px;
  line-height: 28px;
}

.faq-icon {
  font-size: 24px;
  color: var(--color-neutral-500);
  transition: transform 0.3s ease;
}

.faq-icon-svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px;
}

.faq-answer p {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-neutral-500);
  line-height: 24px;
  margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-primary);
  padding: 96px 0 48px;
  position: relative;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
  width: 100%;
}
.phone-contact {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-items {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.footer-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-title {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  line-height: normal;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-list li {
  margin-bottom: 0;
}

.footer-list a {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
  line-height: normal;
  transition: opacity 0.3s ease;
}

.footer-list a:hover {
  opacity: 1;
}

.footer-column.contact {
  /* max-width: 239px; */
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-item span {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
}

.contact-addresses {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-addresses p {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
  line-height: normal;
}

.footer-column.contact .footer-social {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-divider {
  height: 1px;
  background: var(--color-white);
  opacity: 0.12;
  border-radius: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.language-selector {
  display: flex;
  gap: 4px;
  align-items: center;
}

.flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(35, 66, 97, 0.08);
}

.flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-selector span {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 24px;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
      justify-content: center;
}

.footer-social a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-social img {
  width: 100%;
  height: 100%;
}

.footer-copyright {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-copyright p {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.703;
  line-height: 18px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal-left p {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
  line-height: normal;
}

.divider {
  color: var(--color-white);
  opacity: 0.5;
}

.footer-legal-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal-right a {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.7;
  line-height: normal;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-legal-right a:hover {
  opacity: 1;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1440px) {
  body {
    max-width: 100%;
  }

  .header {
    left: 0;
    transform: none;
    max-width: 100%;
  }

  .hero {
    max-width: 100%;
  }

  .hero-content {
    flex-wrap: wrap;
  }

  .hero-right {
    width: 100%;
  }

  .cta-1 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1280px) {
  :root {
    --container-padding: 40px;
  }

  .services-grid,
  .why-grid {
    flex-wrap: wrap;
  }

  .service-card,
  .why-card {
    flex: 0 0 calc(50% - 12px);
  }

  .case-studies-grid {
    flex-direction: column;
  }

  .case-studies-left,
  .case-studies-right {
    flex: 1;
  }

  .payments-content {
    flex-direction: column;
  }

  .payments-card {
    flex: 1;
  }

  .testimonials-slider {
    max-width: 920px;
  }

  .testimonials-track {
    gap: 28px;
    min-height: 312px;
  }

  .testimonial-card {
    flex: 0 0 520px;
  }
}

@media (max-width: 1000px) {
  .hero {
    padding-top: 140px;
  }

  .hero-content {
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 var(--container-padding);
  }

  .hero-left {
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }

  .hero-right {
    flex: 1;
    width: 100%;
    height: 500px;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 500px;
    position: relative;
    right: auto;
  }

  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero-description {
    font-size: 17px;
  }

  .header-container {
    padding: 0 40px;
  }
}
.display-web {
  display: flex !important;
}
@media (max-width: 1130px) {
  :root {
    --container-padding: 20px;
  }
  .display-web {
    display: none !important;
  }
  .timeline-item:first-child .timeline-content {
    align-items: flex-start !important;
    margin-right: 0 !important;
    margin-left: 20px !important;
    padding-right: 0 !important;
    padding-left: 20px !important;
  }
  .timeline-item:nth-child(3) .timeline-content {
    align-items: flex-start !important;
    margin-right: 0 !important;
    margin-left: 20px !important;
    padding-right: 0 !important;
    padding-left: 20px !important;
    text-align: start;
  }
  .timeline-content {
    align-items: flex-start !important;
    margin-right: 0 !important;
    margin-left: 20px !important;
    padding-right: 0 !important;
    padding-left: 20px !important;
    text-align: start !important;
  }

  .header {
    top: 0;
    position: fixed;
    backdrop-filter: blur(10px);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* height: 70px; */
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 10px;
  }

  .header-container {
    flex-wrap: nowrap;
    gap: 16px;
    padding: 0 20px;
    height: auto;
    min-height: auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .alahly-service-section--quote-bg
  {
    min-height: 200px !important;
  }
  .alahly-service-section-bg .alahly-service-content--quote .alahly-service-text--quote{
    font-size: 9px !important;
  }
  .mobile-display {
    display: flex !important;
  }
  .logo {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    margin: 0;
    padding: 0;
    line-height: 1;
  }

  .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  .logo svg {
    display: block;
    margin: 0;
  }

  .header-container .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  .contact-items {
    display: flex;
  }

  .header-container .btn-container .btn-primary-header {
    margin: 0;
    padding: 10px 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content-individual {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
    padding: 8px;
    width: 40px;
    line-height: 1;
  }

  .nav {
    order: 3;
    width: 280px;
    flex-wrap: wrap;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 70px;
    right: -280px;
    bottom: 0;
    height: calc(100vh - 70px);
    z-index: 998;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 0;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    visibility: hidden;
  }

  .nav.active {
    right: 0;
    visibility: visible;
  }
  footer {
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .footer-column {
    align-items: start;
  }
  .footer-list {
    align-items: center;
  }
  .contact-form-intro {
    max-width: 100%;
    padding: 0px 20px;
    flex-wrap: wrap;
  }
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Backdrop overlay when menu is open */
  .mobile-menu-backdrop {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 0;
    color: var(
      --color-text-primary
    ) !important; /* Override white color on company page */
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: var(--color-red) !important;
  }

  .nav-link--active {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
  }

  /* Ensure nav links are visible in mobile menu on pages with white headers */
  body:has(.alahly-hero) .header .nav.active .nav-link {
    color: var(--color-text-primary) !important;
  }

  body:has(.alahly-hero) .header .nav.active .nav-link:hover {
    color: var(--color-red) !important;
  }

  .header-container .btn-container {
    order: 2;
    margin-left: auto;
    margin-right: 0;
  }

  .header-container .btn-container .btn-primary-header {
    font-size: 14px;
    padding: 10px 20px;
    margin: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    position: relative;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: 2;
    z-index: 101;
  }

  .mobile-menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    left: 0;
  }

  .mobile-menu-toggle span:nth-child(1) {
    top: 0;
  }

  .mobile-menu-toggle span:nth-child(2) {
    top: 8px;
  }

  .mobile-menu-toggle span:nth-child(3) {
    top: 16px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  @media (min-width: 1130px) {
    .mobile-menu-toggle {
      display: block;
    }

    .mobile-menu-backdrop {
      display: none !important;
    }

    .nav {
      display: flex !important;
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      width: auto;
      flex-direction: row;
      align-items: center;
      padding: 0;
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
      visibility: visible;
      transition: none;
      overflow: visible;
    }
  }

  .hero {
    padding-top: 150px;
    min-height: auto;
  }

  .hero-left {
    flex: 1;
    width: 100%;
  }

  .segmented-picker {
    width: 100%;
    max-width: 339px;
  }

  .segmented-option {
    font-size: 11px;
    padding: 10px 8px;
    flex: 0 0 auto;
    min-width: 50%;
    width: 50%;
  }

  .segmented-option[data-tab="corporate"].active {
    min-width: 50%;
    width: 50%;
  }

  .segmented-option[data-tab="corporate"].active
    ~ .segmented-option[data-tab="individual"] {
    min-width: 50%;
    width: 50%;
  }

  .hero-title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-right {
    height: 400px;
  }

  .hero-image-wrapper {
    right: 0;
    width: 100%;
    max-width: 649px;
    height: 400px;
  }

  .hero-image-individual {
    width: 100%;
    max-width: 649px;
    height: 400px;
    border-radius: 20px;
  }

  .floating-card {
    position: static;
    margin-top: 20px;
  }

  .services-grid,
  .why-grid {
    flex-direction: column;
  }

  .service-card,
  .why-card {
    flex: 1;
    margin-left: 12px;
    margin-right: 12px;
    padding: var(--mobile-card-padding);
    padding-top: 25px !important;
  }

  .product-card {
    flex-direction: column;
    padding: var(--mobile-card-padding);
  }

  .product-card.reverse {
    flex-direction: column;
  }

  .product-image {
    flex: 1;
    width: 100%;
  }

  .cta-section {
    height: auto;
    padding: 40px 20px;
    border-radius: 0px;
  }

  .testimonials {
    margin: 30px auto;
    padding: 0px 20px;
    border-radius: 24px;
    box-shadow: none;
  }

  .cta-1 {
    /* margin-left: var(--container-padding);
    margin-right: var(--container-padding); */
  }

  .testimonials-slider {
    max-width: 100%;
    padding: 0;
    /* overflow: visible; */
  }

  .testimonials-slider::before,
  .testimonials-slider::after {
    display: none;
  }

  .testimonials-track {
    gap: 20px;
    /* transform: translateX(0) !important; */
  }

  .testimonial-card {
    flex: 0 0 100%;
    height: auto;
    opacity: 1;
    transform: none;
    box-shadow: 0 18px 32px rgba(35, 66, 97, 0.12);
    flex-direction: column;
  }

  .testimonial-media {
    width: 100%;
    height: 220px;
    flex: 0 0 auto;
    border-radius: 24px 24px 0 0;
  }

  .testimonial-media img {
    width: 100%;
    height: 100%;
  }

  .testimonial-content {
    padding: 24px;
  }

  .footer {
    padding: 60px 20px 30px;
  }

  .footer-content {
    padding: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
  }

  .footer-column.contact {
    max-width: 100%;
  }

  .footer-bottom,
  .footer-legal {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-legal-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal-left .divider {
    /* display: none; */
  }

  .footer-legal-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .logo svg {
    width: 100%;
  }

  .companies-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    justify-items: center;
    align-items: center;
    max-width: 100vw;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .companies-logos img,
  .companies-logos svg {
    height: 30px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    object-fit: contain;
    justify-self: center;
  }

  .companies-logos img:hover,
  .companies-logos svg:hover {
    opacity: 1;
  }
  .companies-logos-home img,
  .companies-logos-home svg {
    height: 40px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    object-fit: contain;
    justify-self: center;
  }

  .companies-logos-home img:hover,
  .companies-logos-home svg:hover {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 20px;
    line-height: 28px;
  }

  .section-title {
    font-size: 20px;
  }

  .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }
}

main {
  position: relative;
  z-index: 1;
}
.stand-for-card {
  margin: 12px;
  padding: var(--mobile-card-padding);
}

/* ============================================
   Company Page Styles
   ============================================ */

/* Company Hero Section */
.company-hero {
  padding: 80px 80px 90px;
  background: #e73b50;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

}
.section-title {
  /* margin-top: 30px; */
}
.team-member {
  margin: 12px;
}
.company-hero::before {
  content: "";
  position: absolute;
  top: 270px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 190px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 338px,
    rgba(255, 255, 255, 0.2) 338px,
    rgba(255, 255, 255, 0.2) 359px
  );
  background-size: 338px 190px;
  opacity: 0.2;
  pointer-events: none;
}

.company-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
      padding-top: 35px;
}

.company-hero-title {
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
  text-align: center;
  line-height: normal;
}

/* About Us Section */
.company-about {
  padding: 25px 0 0;
  background: var(--color-white);
  position: relative;
}

.company-about-content {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 10px 0 0;
}

.company-about-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: #2f327d;
  text-align: center;
  margin: 0 auto;
  line-height: 1.8;
  width: 100%;
}

.company-about-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 28px;
  color: var(--color-text-primary);
  max-width: 741px;
  width: 100%;
  margin: 10px auto 0;
  text-align: center;
  letter-spacing: 0.28px;
}

.company-hero-description {
  font-family: var(--font-poppins);
  color: #fff;
  margin: 0;
  opacity: 1;
}

.company-hero-description--first {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  max-width: 1061px;
  margin: 0 auto;
}

.company-hero-description--second {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  max-width: 1061px;
  margin: 0 auto;
}

/* Company Navigation Tabs */
.company-nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 12px 80px 0;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.company-nav-tab {
  padding: 12px 24px;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  color: #234261;
  text-decoration: none;
  border-bottom: 3px solid #eceaff;
  transition: all 0.3s ease;
  background: transparent;
  line-height: 26px;
}

.company-nav-tab:hover {
  border-bottom-color: #eceaff;
  font-weight: 500;
  color: #234261;
}

.company-nav-tab.active {
  border-bottom-color: #e73b50;
  font-weight: 500;
  color: #234261;
}

/* History Timeline Section */
.company-history {
  padding: var(--section-padding);
  background: var(--color-white);
}

.company-history .section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 auto 67px;
  text-align: center;
  max-width: 1062px;
}

.history-timeline {
  max-width: 1062px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e73b50;
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  position: relative;
  padding: 0 10px;
  min-height: 155px;
}



.timeline-item:nth-child(3) {
  min-height: 246px;
}

.timeline-item:nth-child(5) {
  min-height: 246px;
}

.timeline-item--reverse {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  max-width: 531px;
  padding: 20px 40px 20px 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  margin-right: 20px;
  /* padding-right: 20px; */
  margin-left: 0px;
}

.timeline-item:first-child .timeline-content {
  margin-right: 20px;
  margin-left: 0;
  /* padding-right: 20px; */
  padding-left: 0;
  text-align: right;
  align-items: flex-end;
}

.timeline-item:nth-child(3) .timeline-content {
  margin-right: 20px;
  margin-left: -20px;
  padding-right: 20px;
  padding-left: 0;
  text-align: right;
  align-items: flex-end;
}

.timeline-item--reverse .timeline-content {
  padding: 20px 0 20px 20px;
  text-align: left;
  align-items: flex-start;
  margin-right: -20px;
  margin-left: 20px;
  padding-left: 20px;
}

.timeline-year {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: #234261;
  margin: 0;
  line-height: 1.5;
}

.timeline-title {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 700;
  color: #e73b50;
  margin: 0;
  line-height: 1.5;
}

.timeline-description {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #234261;
  margin: 0;
  max-width: 100%;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e73b50;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-top: 28px;
}

.timeline-image {
  flex: 1;
  max-width: 491px;
  height: 246px;
  background: var(--color-light-gray);
  border-radius: 8px;
  box-shadow: 0px 4px 30px -1px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.timeline-item:first-child .timeline-image {
  margin-left: 10px;
}

.timeline-item--reverse .timeline-image {
  margin-right: 10px;
}

/* MOBILE TIMELINE - Hidden on desktop */
.history-timeline-mobile {
  display: none;
}

@media (max-width: 1130px) {
  .history-timeline-desktop {
    display: none !important;
  }

  .history-timeline-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .history-timeline-mobile::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e73b50;
    z-index: 1;
  }

  .timeline-item-mobile {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
    padding-left: 0;
  }

  .timeline-item-mobile-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e73b50;
    border: 3px solid var(--color-white);
    flex-shrink: 0;
    position: relative;
    margin-top: 4px;
    z-index: 2;
  }

  .timeline-item-mobile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .timeline-item-mobile .timeline-year {
    font-size: 18px;
    font-weight: 700;
    color: #234261;
  }

  .timeline-item-mobile .timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: #e73b50;
  }

  .timeline-item-mobile .timeline-description {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: #234261;
  }

  .timeline-item-mobile-image {
    width: 100%;
    height: 160px;
    background: var(--color-light-gray);
    border-radius: 8px;
    margin-top: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 480px) {
  .history-timeline-mobile::before {
    left: 16px;
  }

  .timeline-item-mobile {
    gap: 16px;
    margin-bottom: 24px;
  }

  .timeline-item-mobile-dot {
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-white);
  }

  .timeline-item-mobile .timeline-year {
    font-size: 16px;
  }

  .timeline-item-mobile .timeline-title {
    font-size: 14px;
  }

  .timeline-item-mobile-image {
    height: 140px;
  }
  .hero-mobile-image {
    width: 100% !important;
    display: block;
  }
}

/* What We Stand For Section */
.company-stand-for {
  padding: var(--section-padding);
  background: #f0f0f0;
}

.company-stand-for .section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  /* margin-bottom: 24px; */
  text-align: center;
}

.company-stand-for-intro {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 24px;
  color: var(--color-text-secondary);
  max-width: 1060px;
  margin: 0 auto 40px;
  text-align: center;
}

.stand-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.stand-for-card {
  background: var(--color-white);
  padding: var(--web-card-padding);
  border-radius: 16px;
  box-shadow: 0 7px 42px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stand-for-card--yellow {
  background: #fff9e0;
}

.stand-for-card--cyan {
  background: #d4fff7;
}

.stand-for-card--purple {
  background: #f4f2ff;
}

.stand-for-card--blue {
  background: #e4f1ff;
}

.stand-for-card--light-blue {
  background: #f7fbff;
}

.stand-for-card--white {
  background: var(--color-white);
}

.stand-for-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stand-for-card h3 {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin: 0;
}

.stand-for-card p {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 25.2px;
  color: var(--color-text-primary);
  margin: 0;
}

/* Clients & Partners Section */
.company-clients {
  padding: var(--section-padding);
  background: var(--color-white);
}

.company-clients .section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  /* margin-bottom: 40px; */
  text-align: center;
}

.company-clients-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 24px;
  color: var(--color-text-secondary);
  max-width: 1062px;
  margin: 0 auto 60px;
  text-align: center;
}

@media (min-width: 1130px) {
  .companies-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, auto);
    justify-items: center;

    align-items: center;
    gap: 8px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .companies-logos-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, auto);
    justify-items: center;

    align-items: center;
    gap: 4px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .companies-logos img {
        height: 57px; 
    width: auto;
    padding: 8px;
    border-radius: 16px;
    object-fit: contain;
  }
  .companies-logos-home img {
        height: 57px; 
    width: auto;
    /* padding: 8px; */
    /* border-radius: 16px; */
    object-fit: contain;
  }
}

/* Case Studies Section (Company Page) */
.case-studies {
  /* padding: 20px 80px; */
  background: #f7fbff;
}

.case-studies .section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  /* margin-bottom: 32px; */
  text-align: center;
}

.case-studies-cta {
  text-align: center;
  margin-top: 60px;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Our Team & Leadership Section */
.company-team {
  padding: var(--section-padding);
  background: var(--color-white);
}

.company-team .section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.team-intro {
  font-family: var(--font-inter);
  font-size: 16px;
  color: #5f6980;
  text-align: center;
  max-width: 956px;
  margin: 0 auto 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.team-member {
  background: var(--color-white);
  border: 1px solid #eaecf0;
  border-radius: 16px;
  overflow: hidden;
}

.team-member-image {
  width: 100%;
  height: 230px;
  background: var(--color-light-gray);
  object-fit: cover;
}

.team-member-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-member-name {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.team-member-role {
  font-family: var(--font-poppins);
  font-size: 14px;
  color: var(--color-text-primary);
  margin: 0;
}

.team-member-bio {
  font-family: var(--font-poppins);
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text-primary);
  margin: 0;
}

.team-member-social {
  display: flex;
  gap: 16px;
}

.team-member-social a {
  width: 36px;
  height: 36px;
  background: #f2f4f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-member-social a:hover {
  background: var(--color-primary);
}

.team-member-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(0%) contrast(100%);
  transition: filter 0.3s ease;
}

.team-member-social a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

.team-member-social svg {
  stroke: #282828;
  color: #282828;
  transition: stroke 0.3s ease, color 0.3s ease;
}

.team-member-social a:hover svg {
  stroke: #ffffff;
  color: #ffffff;
}

.team-member-social svg path {
  stroke: #282828;
  fill: none;
  transition: stroke 0.3s ease;
}

.team-member-social a:hover svg path {
  stroke: #ffffff;
}

.team-member-social svg * {
  stroke: #282828;
  transition: stroke 0.3s ease;
}

.team-member-social a:hover svg * {
  stroke: #ffffff;
}

/* Geographic Presence Section */
.company-geographic {

  width: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--section-padding);
    background: #f7f7f7;
    position: relative;
    width: 100%;
    gap: var(--main-gap);
    padding-bottom: 0;

}

.company-geographic .section-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  /* margin-bottom: 32px; */
  text-align: center;
  /* padding: 62px 80px 0; */
}

.company-geographic-description {
  color: #234261;
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.geographic-map {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  /* height: 901px; */
  background: #f7f7f7;
  /* Make map container take full width by breaking out of parent constraints */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
  /* min-height: 901px; */
}

.world-map-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  visibility: visible !important;
  position: relative;
  z-index: 1; /* Below cards and lines */
  background: #e0e0e0 !important;
  /* min-height: 400px !important; */
  opacity: 1 !important;
}

/* Add a visible background rectangle to the SVG if images don't load */
.world-map-svg:empty::before,
.world-map-svg:not(:has(image))::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  position: absolute;
  top: 0;
  left: 0;
}

.world-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.geographic-locations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  z-index: 2; /* Above map but cards and lines have higher z-index */
  pointer-events: none; /* Allow clicks to pass through to map */
}

.geographic-locations > * {
  pointer-events: auto; /* Re-enable pointer events for cards and lines */
}

.location-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 4px 14px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  z-index: 2;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-flag {
  font-size: 25.527px;
  line-height: 1;
  width: 25.527px;
  height: 25.527px;
  flex-shrink: 0;
}

.location-header h3 {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: normal;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-details p {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 500;
  color: #234261;
  margin: 0;
  line-height: normal;
}

/* Position cards based on Figma coordinates */
/* All positions are relative to the geographic-map container */
/* Group 5400 starts at x=155, y=5597 on page, but geographic-map starts at y=5301 */
/* So relative to geographic-map: Group 5400 is at y=296px */

/* Vienna, Austria - From Figma: left: calc(58.33% + 43px), top: 5597px (relative to page = 296px relative to map) */
.location-card--vienna {
  top: 165px;
  left: calc(58.33%);
  width: 266px;
}

/* Dubai, UAE - From Figma: left: calc(75% - 27px), top: 5809px (relative to page = 508px relative to map) */
.location-card--dubai {
  top: 362px;
  left: calc(70%);
  width: 247px;
}

/* New Jersey, USA - From Figma: left: 155px, top: 5977px (relative to page = 676px relative to map) */
.location-card--newjersey {
  top: 507px;
  left: 197px;
  width: 247px;
}

/* Cairo, Egypt - From Figma: left: calc(50% + 84px), top: 5987px (relative to page = 686px relative to map) */
.location-card--cairo {
  top: 542px;
  left: calc(55%);
  width: 247px;
}

/* Yellow connecting lines - positions from Figma */
.location-line {
  position: absolute;
  background-color: #ffcc00;
  z-index: 3; /* Higher than cards (z-index: 2) so dots can appear on top */
  pointer-events: none;
}

/* Override for Vienna line to allow transparent background */
.location-line.location-line--vienna {
  background-color: transparent !important;
}

/* Override for Cairo line to allow transparent background */
.location-line.location-line--cairo {
  background-color: transparent !important;
}

/* Dots at the beginning and end of lines */
.location-line-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.location-line-dot--end {
  z-index: 3; /* Higher than cards (z-index: 2) to appear on top */
}

.location-line-dot--start {
  left: 0;
  top: 50%;
}

.location-line-dot--end {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 3; /* Higher than cards (z-index: 2) to appear on top */
}

/* Line L - Vienna: L-shaped line from Austria (purple pin) to Vienna card */
/* Position is calculated dynamically by JavaScript */
.location-line--vienna {
  position: absolute;
  z-index: 4; /* Higher than cards (z-index: 2) so lines and dots can appear on top */
  pointer-events: none;
  background: transparent;
  border: none;
  outline: none;
}

.location-line--vienna .location-line-horizontal,
.location-line--vienna .location-line-vertical {
  position: absolute;
  background-color: #ffcc00;
  z-index: 4; /* Ensure lines appear above cards */
  display: block;
  min-width: 2px;
  min-height: 2px;
  /* Position and dimensions will be set by JavaScript */
}

.location-line--vienna .location-line-dot--start {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 5; /* Higher than cards to appear on top */
  /* Position will be set by JavaScript */
}

.location-line--vienna .location-line-dot--intersection {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 5; /* Higher than cards to appear on top */
  /* Position will be set by JavaScript */
}

.location-line--vienna .location-line-dot--end {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 5; /* Higher than cards to appear on top */
  /* Position will be set by JavaScript */
}

/* Line 29 - Dubai: Updated dimensions */
.location-line--dubai {
  top: 386px;
  left: 64%;
  width: 87px;
  height: 2px;
  /* transform: rotate(-10deg); */
  transform-origin: left center;
}

.location-line--dubai .location-line-dot--start {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5; /* Higher than cards to appear on top */
}

.location-line--dubai .location-line-dot--end {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 5; /* Higher than cards to appear on top */
}

/* Line - New Jersey: Straight vertical line from USA edge to top of New Jersey card */
/* Position is calculated dynamically by JavaScript */
.location-line--newjersey {
  position: absolute;
  background-color: #ffcc00;
  z-index: 3; /* Higher than cards (z-index: 2) so dots can appear on top */
  pointer-events: none;
  width: 2px;
  /* Position and height will be set by JavaScript */
}

.location-line--newjersey .location-line-dot--start {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.location-line--newjersey .location-line-dot--end {
  left: 50%;
  bottom: 0;
  top: auto;
  transform: translate(-50%, 50%);
  z-index: 3; /* Higher than cards to appear on top */
}

/* Line 30 - Cairo: L-shaped line (rotated 90 degrees from Vienna - horizontal on top, vertical down) */
/* Position is calculated dynamically by JavaScript */
.location-line--cairo {
  position: absolute;
  z-index: 4; /* Higher than cards (z-index: 2) so lines and dots can appear on top */
  pointer-events: none;
  background: transparent;
  border: none;
  outline: none;
}

.location-line--cairo .location-line-horizontal,
.location-line--cairo .location-line-vertical {
  position: absolute;
  background-color: #ffcc00;
  z-index: 4; /* Ensure lines appear above cards */
  display: block;
  min-width: 2px;
  min-height: 2px;
  /* Position and dimensions will be set by JavaScript */
}

.location-line--cairo .location-line-dot--start {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 5; /* Higher than cards to appear on top */
  /* Position will be set by JavaScript */
}

.location-line--cairo .location-line-dot--end {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffcc00;
  border-radius: 50%;
  z-index: 5; /* Higher than cards to appear on top */
  /* Position will be set by JavaScript */
}

/* Company Page Responsive Styles */
@media (max-width: 1280px) {
  .company-hero,
  .company-about,
  .company-nav-tabs,
  .company-history,
  .company-stand-for,
  .company-clients,
  .case-studies,
  .company-team,
  .company-geographic {
    padding-left: 40px;
    padding-right: 40px;
  }

  .company-history .section-title,
  .company-history .history-timeline {
    margin-left: auto;
    margin-right: auto;
  }

  .company-geographic .section-title {
    padding: 62px 40px 0;
  }

  .company-geographic-description {
    padding: 0 40px;
  }

  .geographic-map {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
  }

  .stand-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1130px) {
  .company-hero {
    height: 399px;
    padding: 0 20px;
  }

  .company-hero-description--first {
    font-size: 18px;
    line-height: 32px;
  }

  .company-hero-description--second {
    font-size: 24px;
    line-height: 32px;
  }

  .company-about-title {
    font-size: 20px;
    width: 100%;
    max-width: 585.9px;
  }

  .company-about-description {
    font-size: 13px;
    line-height: 24px;
    width: 100%;
    max-width: 741px;
  }

  .company-nav-tabs {
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;
    overflow-y: hidden;

    width: 100%;
    justify-content: flex-start; /* 🔑 CRITICAL */
    box-sizing: border-box;

    padding: 0 0px;
  }

  /* optional: hide scrollbar */
  .company-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .company-about {
    padding: 25px 0 0;
  }

  .company-about-content {
    padding: 10px 20px 0;
  }

  .company-about-title {
    width: 100%;
  }

  .company-about-description {
    width: 100%;
    max-width: 741px;
  }

  .company-nav-tab {
    flex: 0 0 auto; /* 🔑 prevent shrinking */
    font-size: 12px;
    padding: 12px 16px;
    /* width: 160px; */
    text-align: center;
  }

  .stand-for-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .geographic-locations {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    max-width: 100%;
  }

  .case-studies-grid {
    flex-direction: column-reverse;
  }

  .case-studies-left,
  .case-card-large {
    flex: 1;
  }
  .case-card-large {
    padding: var(--mobile-card-padding);
  }
  .case-card {
    padding: var(--mobile-card-padding);
  }
}

@media (max-width: 1130px) {
  .company-hero,
  .company-about,
  .company-history,
  .company-stand-for,
  .company-clients,
  .case-studies,
  .company-team,
  .company-geographic {
    padding: 10px;
  }

  .company-history .section-title,
  .company-history .history-timeline {
    margin-left: auto;
    margin-right: auto;
  }

  .company-geographic .section-title {
    padding: 20px 20px 0;
  }

  .company-geographic-description {
    padding: 0 20px;
  }

  .geographic-map {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
  }
  .timeline-year {
    font-size: 18px;
  }
  .timeline-title {
    font-size: 16px;
  }
  .timeline-description {
    font-size: 14px;
  }
  .mo-flex-end{
    flex-direction: column-reverse !important;
  }
  .company-hero-title,
  .company-history .section-title,
  .company-stand-for .section-title,
  .company-clients .section-title,
  .case-studies .section-title,
  .company-team .section-title,
  .company-geographic .section-title {
    font-size: 20px;
    /* margin-bottom: 30px;
    margin-top: 20px; */
  }

  .company-hero-description--first,
  .company-hero-description--second,
  .company-stand-for-intro,
  .company-clients-description,
  .company-geographic-description {
    font-size: 13px;
    line-height: 24px;
  }

  .timeline-item {
    flex-direction: column !important;
    /* margin-bottom: 60px; */
  }

  .timeline-content {
    max-width: 100%;
  }

  .timeline-dot {
    position: absolute;
    left: 20px;
    top: 0;
  }

  .timeline-image {
    max-width: 100%;
    height: 200px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-member-image {
    height: 300px;
  }
}

/* ============================================
   Al Ahly Success Story Page
   ============================================ */

/* Hero Section */
.alahly-hero {
  position: relative;
  width: 100%;
  height: 667px;
  overflow: hidden;
}

.alahly-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.alahly-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alahly-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 66, 97, 0.7);
  z-index: 2;
}

.alahly-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.alahly-back-button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.alahly-back-button:hover {
  opacity: 0.8;
}

.alahly-back-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.alahly-title-section {
  display: flex;
  /* width: 920px; */
  height: 304px;
  padding: var(--web-card-padding);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.alahly-title {
  font-family: var(--font-poppins);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-white);
  margin: 0;
}

.alahly-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.28px;
  max-width: 741px;
  margin: 0;
  text-align: center;
}

/* Statistics Section */
.alahly-stats {
  padding: 80px 0;
  background: var(--color-white);
}

.alahly-stats-container {
  display: flex;
  gap: 82px;
  align-items: center;
  justify-content: center;
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 80px;
}

.travx-stats-container {
  gap: 49px;
}

.alahly-stat-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  min-height: 162px;
}

.alahly-stat-item:not(:has(.alahly-stat-description)) {
  height: 119px;
  align-items: flex-start;
}

.alahly-stat-bar {
  width: 4px;
  height: 162px;
  background: var(--color-red);
  flex-shrink: 0;
}

.alahly-stat-item:not(:has(.alahly-stat-description)) .alahly-stat-bar {
  height: 119px;
}

.alahly-stat-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 162px;
}

.alahly-stat-item:not(:has(.alahly-stat-description)) .alahly-stat-content {
  height: 119px;
}

.alahly-stat-item:has(.alahly-stat-description) .alahly-stat-content {
  height: auto;
  min-height: 162px;
}

.alahly-stat-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alahly-stat-number {
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary);
  margin: 0;
}

.alahly-stat-label {
  font-family: var(--font-poppins);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: #828282;
  margin: 0;
}

.alahly-stat-label p {
  margin: 0;
}

.alahly-stat-description {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #828282;
  margin: 0;
}

/* Service Sections */
.alahly-service-section {
  padding: 80px 0;
  background: var(--color-white);
}

.alahly-service-container {
  display: flex;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  justify-content: space-between;
}

.alahly-service-section--reverse .alahly-service-container {
  flex-direction: row-reverse;
}

.alahly-service-content {
  flex: 1;
  max-width: 431px;
}

.alahly-service-section--quote-bg {
  position: relative;
  padding: 0;
  background: transparent;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.alahly-service-section-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;

  /* Responsive sizing */
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 531 / 200;
  height: auto;

  /* Background */
  background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("../assets/images/travx-resilience.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1416px) {
  .alahly-service-section-bg {
    left: calc((100% - 1256px) / 2 + (1256px - 1062px) / 2);
    transform: none;
  }
}

.alahly-service-section-bg .alahly-service-content--quote {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  z-index: 2;
}

.alahly-service-section-bg img {
  display: none; /* Hide the img tag, we'll use background-image instead */
}

.alahly-service-container--quote {
  position: relative;
  z-index: 2;
  max-width: 1256px;
  margin: 0 auto;
  padding: 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.alahly-service-content--quote {
  background: var(--color-primary);
  padding: 40px;
  border-radius: 0;
  max-width: 431px;
  position: relative;
  z-index: 3;
}

.alahly-service-section-bg .alahly-service-content--quote {
  position: absolute;
  left: 120px; /* 309 - 189 = 120px from Figma */
  top: 50%;
  transform: translateY(-50%);
  /* width: 431px; */
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 2;
  background: transparent;
}

.alahly-service-section-bg .alahly-service-content--quote .alahly-quote-mark {
  position: static;
  margin: 0 0 -60px 0;
  line-height: normal;
  color: var(--Red, #e73b50);
  font-family: Poppins;
  font-size: 68px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.36px;
}

.alahly-service-section-bg
  .alahly-service-content--quote
  .alahly-service-text--quote {
  color: var(--color-white);
  margin: 0;
  margin-top: 0;
}

.alahly-service-badge {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 0;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 24px;
}

.alahly-service-badge--red {
  background: var(--color-red);
}

.alahly-service-badge--blue {
  background: var(--color-primary);
}

.alahly-service-badge--purple {
  background: #493d9d;
}

.alahly-service-text {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.alahly-quote-mark {
  font-family: var(--font-poppins);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-red);
  letter-spacing: 1.36px;
  margin: 0 0 16px 0;
}

.alahly-service-text--quote {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.32px;
}

.alahly-service-citation {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin: 16px 0 0 0;
}

.alahly-service-image {
  flex: 1;
  max-width: 577px;
  height: 424px; /* Image height from Figma */
  position: relative;
  border-top-left-radius: 50px; /* Only top-left corner rounded */
  overflow: visible; /* Changed to visible to show the offset background */
}

.alahly-service-container > .alahly-service-image:last-child {
  margin-left: auto;
}

.alahly-service-container > .alahly-service-image:first-child {
  margin-left: 0;
}
.alahly-service-container > .alahly-service-image-right:last-child {
  margin-left: auto;
}

.alahly-service-container > .alahly-service-image-right:first-child {
  margin-left: 0;
}

.alahly-service-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  border-top-left-radius: 50px; /* Only top-left corner rounded */
}
.alahly-service-image-right::before {
  content: "";
  position: absolute;
  z-index: 0;
  border-top-right-radius: 50px; /* Only top-left corner rounded */
}

.alahly-service-image--red-bg::before {
  background-color: #e73b50; /* Red background from Figma */
  top: 53px; /* Offset from Figma: 981 - 928 = 53px */
  left: 56px; /* Offset from Figma: 734 - 678 = 56px */
  width: 577px;
  height: 427px; /* Background height from Figma */
}

.alahly-service-image--blue-bg::before {
  background-color: #234261; /* Dark Blue background from Figma */
  top: 53px; /* Offset from Figma: 1487 - 1434 = 53px */
  left: -56px; /* Offset from Figma: 79 - 135 = -56px (to the left) */
  width: 577px;
  height: 427px; /* Background height from Figma */
  border-top-left-radius: 0px;
  border-top-right-radius: 50px;
}

.alahly-service-image--purple-bg::before {
  background-color: #493d9d; /* Purple background from Figma */
  top: 53px; /* Offset from Figma: 1998 - 1945 = 53px */
  left: 56px; /* Offset from Figma: 734 - 678 = 56px */
  width: 577px;
  height: 427px; /* Background height from Figma */
}

.alahly-service-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 50px; /* Only top-left corner rounded */
}
.alahly-service-image-right img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 50px; /* Only top-left corner rounded */
}
/* Responsive Styles */
@media (max-width: 1280px) {
  .alahly-hero-content {
    padding: 0 40px;
  }

  .alahly-back-button {
    left: 40px;
  }

  .alahly-stats-container {
    padding: 0 40px;
    gap: 40px;
  }

  .alahly-service-container {
    padding: 0 40px;
    gap: 40px;
  }
}

@media (max-width: 1130px) {
  .alahly-hero {
    height: 500px;
  }

  .alahly-hero-content {
    padding: 0 20px;
  }

  .alahly-back-button {
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
  }
  .alahly-title-section {
    padding: var(--mobile-card-padding);
  }

  .alahly-title {
    font-size: 24px;
  }

  .alahly-description {
    font-size: 12px;
  }

  .alahly-stats {
    padding: 40px 0;
  }

  .alahly-stats-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .alahly-stat-item {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }

  .alahly-stat-bar {
    height: 80px;
  }

  .alahly-stat-number {
    font-size: 36px;
  }

  .alahly-stat-label {
    font-size: 16px;
  }

  .alahly-service-section {
    padding: 40px 0;
  }

  .alahly-service-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .alahly-service-section--reverse .alahly-service-container {
    flex-direction: column;
  }

  .alahly-service-content {
    max-width: 100%;
  }

  .alahly-service-image {
    max-width: 100%;
    height: 300px;
  }
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-hero {
  padding: 80px 80px 120px;
  background: var(--color-white);
  position: relative;
}

.services-hero-content {
  max-width: 1280px;
  margin: 0 auto;
}

.services-title {
  font-family: var(--font-poppins);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 0;
}

.services-pattern-bg {
  width: 100vw;
  min-height: 190px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 30px;
  margin-bottom: 50px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding: 0;
  gap: -21px;
}

.services-pattern-bg img {
  height: 190px;
  width: auto;
  display: block;
  margin-right: -9px;
  opacity: 0.3;
  clip-path: inset(0 9px 0 0);
  position: relative;
  z-index: 0;
}

.services-pattern-bg img:last-child {
  clip-path: none;
  margin-right: 0;
}

.services-intro {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.services-intro-text {
  flex: 1;
  max-width: 448px;
}

.services-intro-text p {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text-primary);
  margin: 0;
}

.services-cards-grid {
  position: absolute;
  top: 90px;
  right: calc((100vw - 1280px) / 2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 749px;
  z-index: 2;
  background: transparent;
}

@media (max-width: 1440px) {
  .services-cards-grid {
    right: 80px;
  }
}

/* DESKTOP GRID - Hidden on mobile, shown on desktop */
.services-cards-grid-desktop {
  position: absolute;
  top: 90px;
  right: calc((100vw - 1280px) / 2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 749px;
  z-index: 2;
  background: transparent;
}

@media (max-width: 1440px) {
  .services-cards-grid-desktop {
    right: 80px;
  }
}

@media (max-width: 1130px) {
  .services-cards-grid-desktop {
    display: none !important;
  }
}

/* MOBILE GRID - Shown on mobile/tablet, hidden on desktop */
.services-cards-grid-mobile {
  display: none;
  position: static;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: transparent;
}

@media (max-width: 1130px) {
  .services-cards-grid-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
}

@media (min-width: 481px) and (max-width: 1130px) {
  .services-cards-grid-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.services-card-mobile {
  background: var(--color-white);
  border: 0.25px solid #eceaff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-card {
  background: var(--color-white);
  border: 0.25px solid #eceaff;
  border-radius: 16px;
  padding: var(--web-card-padding);
  box-shadow: 0px 7px 42px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 14px 0px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.services-card-icon--blue {
  background-color: #66daff;
}

.services-card-icon--purple {
  background-color: #b493ff;
}

.services-card-icon--navy {
  background-color: #6c8dff;
}

.services-card-icon--orange {
  background-color: #fba333;
}

.services-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.services-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-card-title {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin: 0;
}

.services-card-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #000000;
  letter-spacing: 0.28px;
  margin: 0;
}

/* Service Detail Sections */
.service-detail-section {
  padding: 80px 0;
  background: var(--color-white);
}

.service-detail-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: var(--web-card-padding);
  box-shadow: 0px 7px 42px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-image {
  width: 100%;
  height: 240px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 4px 30px -1px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.service-detail-card:first-child .service-detail-image::before {
  background: rgba(0, 0, 0, 0.4);
}

.service-detail-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-badge--right {
  left: 16px;
  right: auto;
  flex-direction: row;
}

.service-detail-badge::before {
  content: "";
  width: 22px;
  height: 66px;
  background: var(--color-red);
  border-radius: 4px;
  flex-shrink: 0;
}

.service-detail-badge::after {
  content: attr(data-label);
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  line-height: normal;
  white-space: pre-wrap;
  max-width: 364px;
}

.service-detail-content {
  width: 100%;
}

.service-detail-content p {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-primary);
  margin: 0;
  white-space: pre-wrap;
}

/* Responsive Styles for Services Page */
@media (max-width: 1280px) {
  .services-hero {
    padding: 193px 40px 120px;
  }

  .services-intro {
    flex-direction: column;
    gap: 40px;
  }

  .services-intro-text {
    max-width: 100%;
    margin-top: 20px;
  }

  .services-cards-grid {
    max-width: 100%;
  }

  .service-detail-container {
    padding: 0 40px;
  }
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero {
  padding: 90px 0 0;
  background: #F7F7F7;
  position: relative;
}

.contact-hero-content {
  max-width: var(--container-width);
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-poppins);
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: #234261;
  text-align: center;
  /* margin-bottom: 10px; */
}
.alahly-service-image:nth-child(3)::before {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 50px !important;
  /* border-bottom-right-radius: 50px; */
}
.contact-offices-intro {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  text-align: center;
  width: 100%;
}
.body-mood::before{
   content: "";
  position: fixed;
  top: 50%;
  left: -80px;               /* push it slightly outside */
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  background-image: url("assets/images/sto.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;             /* watermark effect */
  pointer-events: none;      /* clicks pass through */
  z-index: -1;


}
.sto {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.contact-offices-title {
  font-family: var(--font-poppins);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  color: #234261;
  width: 100%;
}

.contact-offices-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.28px;
  color: #234261;
  width: 100%;
}

.contact-map-container {
  width: 100vw;
  height: 796px;
  margin: 0 calc(-50vw + 50%) 0;
  overflow: visible;
  position: relative;
  background: #f5f5f5;
  border-radius: 0;
  min-height: 796px;
}

.contact-world-map-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  visibility: visible !important;
  background: #e0e0e0 !important;
  position: relative;
  z-index: 1;
  min-height: 400px !important;
  opacity: 1 !important;
}

/* Add a visible background rectangle to the SVG if images don't load */
.contact-world-map-svg:empty::before,
.contact-world-map-svg:not(:has(image))::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-offices-container {
  position: absolute;
  top: 0;
  left: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 385px;
  z-index: 10;
}

@media (min-width: 1280px) {
  .contact-offices-container {
    left: calc((100vw - 1280px) / 2 + 80px);
  }
}

.contact-office-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 4px 14px 4px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
  border: 1px solid transparent;
  width: 385px;
}

.contact-office-card--first {
  border-color: #e73b50;
}

.contact-office-card:hover {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-office-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-office-flag {
  font-size: 25.527px;
  line-height: 1;
  width: 25.527px;
  height: 25.527px;
}

.contact-office-location {
  font-family: var(--font-poppins);
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: normal;
}

.contact-office-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-office-address {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 500;
  color: #234261;
  line-height: normal;
}

.contact-office-locations-label {
  color: #e73b50;
  font-weight: 500;
}

.contact-office-address br {
  display: block;
  content: "";
  margin: 0;
}

.contact-office-phone {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 500;
  color: #234261;
  margin-top: 0;
}

.contact-office-email {
  font-family: var(--font-poppins);
  font-size: 12px;
  font-weight: 500;
  color: #234261;
  margin-top: 0;
}

.contact-office-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact-office-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease;
}

.contact-office-social a:hover {
  opacity: 0.7;
}

.contact-office-social img,
.contact-office-social svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-form-section {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0;
  background: var(--color-white);
}

.contact-form-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-intro {
  flex: 0 0 545px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-title {
  font-family: var(--font-poppins);
  font-size: 36px;
  font-weight: 700;
  color: #234261;
  margin-bottom: 0;
  line-height: normal;
}

.contact-form-title .contact-form-title-red {
  color: #e73b50;
}

.contact-form-description {
  font-family: var(--font-poppins);
  font-size: 14px;
  /* font-weight: 600; */
  color: #234261;
  line-height: 24px;
  letter-spacing: 0.14px;
  /* width: 545px; */
}

.contact-form {
  flex: 1;
  width: 688px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  height: 56px;
  padding: 16.5px 14px;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.87);
  background: var(--color-white);
  border: 1px solid #a1a1aa;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--color-red);
}

.form-input.error {
  border-color: var(--color-red);
}
.form-message {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.form-message.success {
    background: #e6f4ea;
    color: #1e7f4f;
    border: 1px solid #b7e1cd;
}

.form-message.error {
    background: #fdecea;
    color: #b42318;
    border: 1px solid #f5c2c7;
}

.form-message.warning {
    background: #fff4e5;
    color: #8a5a00;
    border: 1px solid #ffd8a8;
}

.form-input::placeholder {
  font-family: var(--font-poppins);
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

.form-textarea {
  resize: vertical;
  min-height: 55px;
  height: 55px;
  padding-top: 16.5px;
  font-family: var(--font-poppins);
  box-sizing: border-box;
}
.why-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-submit-btn {
  display: flex;
  height: 50px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 24px;
  background: var(--Red, #e73b50);
  color: var(--white, #fff);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
  border: none;
  width: 100%;
}

.contact-submit-btn:hover {
  background: #d12e42;
}

.contact-submit-btn:active {
  transform: scale(0.98);
}

/* Responsive Styles for Contact Page */
@media (max-width: 1280px) {
  .contact-offices-container {
    left: 80px;
  }

  .contact-form-content {
    flex-direction: column;
  }

  .contact-form-intro {
    flex: 1;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 1130px) {
  .contact-hero {
    padding: 90px 0 80px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-offices-title {
    font-size: 32px;
  }

  .contact-offices-description {
    font-size: 18px;
  }

  .contact-map-container {
    height: 400px;
  }

  .contact-offices-container {
    position: static;
    width: 100%;
    margin: 24px 0;
  }

  .contact-office-card {
    width: 100%;
  }

  .contact-form-section {
    margin-top: 20px;
    padding: 60px 0;
  }

  .contact-form-title {
    font-size: 36px;
  }

  .contact-form-description {
    font-size: 16px;
  }
  .case-image-wrapper {
    width: 100%;
  }
  .payments-content {
    padding: var(--mobile-card-padding);
  }

  .services-hero {
    padding: 150px 20px 80px;
  }

  .services-title {
    font-size: 36px;
    margin-bottom: 40px;
    margin-top: 26px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-section {
    padding: 40px 0;
  }

  .service-detail-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .service-detail-container--reverse {
    flex-direction: column;
  }

  .service-detail-image {
    max-width: 100%;
    height: 300px;
  }

  .service-detail-content {
    max-width: 100%;
  }
  .section-header {
    width: 90%;
  }
  .alahly-service-image--purple-bg::before {
    display: none;
  }
  .alahly-service-image--blue-bg::before {
    display: none;
  }
  .alahly-service-image--red-bg::before {
    display: none;
  }
}

/* ============================================
   MOBILE RESPONSIVE - COMPREHENSIVE ADDITIONS
   Fixes text overflow, navbar, footer, RTL support
   ============================================ */

/* ============================================
   PREVENT TEXT OVERFLOW ON ALL SCREENS
   ============================================ */
* {
  word-break: break-word;
  overflow-wrap: break-word;
}

body,
html {
  max-width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ============================================
   MOBILE BREAKPOINT 1: 320px - 480px (Small Phones)
   ============================================ */

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  /* Header & Navigation */
  .header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 16px;
    gap: 12px;
  }

  .logo {
    width: 120px;
  }
  .hero-home {
    /* flex-direction: column-reverse !important; */
  }
  .hero-home .hero-right {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    width: 100vw;
    flex-direction: column;
    background: white;
    padding: 16px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    margin-left: calc(-50vw + 50%);
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 8px;
    background: none;
    border: none;
    width: 28px;
    height: auto;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 0px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 0px);
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 0 16px;
    gap: 32px;
    flex-direction: column;
  }

  .hero-left {
    gap: 16px;
  }

  .hero-right {
    display: none;
  }
  .alahly-service-image--purple-bg::before {
    display: none;
  }
  .alahly-service-image--blue-bg::before {
    display: none;
  }
  .alahly-service-image--red-bg::before {
    display: none;
  }
  .floating-card-corporate {
    display: none !important;
  }

  .segmented-picker {
    width: 100%;
    max-width: 100%;
    height: 44px;
  }

  .segmented-option {
    font-size: 12px;
  }

  .hero-title {
    font-size: 20px;
    line-height: 26px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-cta {
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn-primary {
    width: 100%;
  }

  .watch-video {
    gap: 8px;
  }

  .watch-video span {
    font-size: 12px;
  }

  .play-icon {
    width: 18px;
    height: 18px;
  }

  /* Companies Section */
  .companies {
    padding: 24px 16px;
  }

  .companies-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .companies-logos {
    flex-direction: column;
    /* gap: 12px; */
    margin-bottom: 30px;
  }
  .section-title {
    margin-top: 20px;
  }

  .companies-logos svg {
    max-width: 100%;
    width: 100%;
  }

  /* Services Section */
  .services {
    padding: 24px 16px;
  }

  .section-header {
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 8px;
  }

  .section-description {
    font-size: 13px;
    line-height: 1.4;
  }

  .services-grid {
    gap: 16px;
  }

  .service-card {
    padding: var(--mobile-card-padding);
    padding-top: 25px !important;
    gap: 12px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .service-title {
    font-size: 14px;
    line-height: 18px;
  }

  .service-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .view-all {
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
  }

  .view-all-link {
    font-size: 13px;
  }

  .view-all svg {
    width: 16px;
    height: 16px;
  }

  /* Products Section */
  .products {
    padding: 24px 16px;
  }

  .products-list {
    flex-direction: column;
    gap: 20px;
  }

  .product-card {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    height: 220px;
  }

  .product-content {
    padding: 14px;
  }

  .product-label {
    font-size: 20px;
  }

  .product-title {
    font-size: 16px;
    line-height: 20px;
  }

  .product-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .product-link {
    font-size: 12px;
  }

  /* CTA Sections */
  .cta-section {
    padding: 24px 16px;
  }

  .cta-title {
    font-size: 20px;
    line-height: 26px;
  }

  .cta-description {
    font-size: 13px;
    line-height: 1.4;
  }

  .cta-section .btn-primary {
    width: 100%;
  }

  /* Why TravX */
  .why-travx {
    padding: 24px 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: var(--mobile-card-padding);
    gap: 12px;
  }

  .why-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .why-title {
    font-size: 14px;
    line-height: 18px;
  }

  .why-description {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Testimonials */
  .testimonials {
    padding: 24px 16px;
  }

  .testimonials-slider {
    max-width: 100%;
    padding: 16px 0;
  }

  .testimonials-track {
    gap: 12px;
    min-height: 340px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 12px);
    height: auto;
    min-height: 340px;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
  }

  .testimonial-card.active {
    opacity: 1;
    transform: scale(1);
  }

  .testimonial-media {
    width: 100%;
    height: 200px;
    flex: 0 0 200px;
    border-radius: 12px;
  }

  .testimonial-content {
    padding: 14px;
    gap: 10px;
  }

  .testimonial-date {
    font-size: 11px;
  }

  .testimonial-title {
    font-size: 14px;
    line-height: 18px;
  }

  .testimonial-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .testimonials-controls {
    gap: 12px;
    margin-top: 12px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    min-height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .slider-dots {
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
    cursor: pointer;
  }

  .testimonials-slider::before,
  .testimonials-slider::after {
    width: 40px;
  }

  /* Services Page Mobile Styles */
  .services-hero {
    padding: 40px 16px !important;
  }

  .services-hero-content {
    gap: 20px;
  }

  .services-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .services-pattern-bg {
    position: relative;
    width: 100%;
    height: auto;
  }

  .services-cards-grid {
    position: static !important;
    right: auto !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    margin-top: 20px;
    background: transparent;
  }

  .services-card {
    background: var(--color-white);
    border: 0.25px solid #eceaff;
    border-radius: 12px;
    padding: var(--mobile-card-padding);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .services-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .services-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .services-card-content {
    gap: 8px;
  }

  .services-card-title {
    font-size: 14px;
    line-height: 18px;
  }

  .services-card-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .services-intro {
    margin-top: 20px;
  }

  .services-intro-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Service Detail Section */
  .service-detail-section {
    padding: 40px 16px;
  }

  .service-detail-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0;
  }

  .service-detail-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: var(--mobile-card-padding);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .service-detail-image {
    width: 100%;
    height: 200px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  }

  .service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .service-detail-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }

  .service-detail-badge--right {
    left: 12px;
    right: auto;
    flex-direction: column;
  }

  .service-detail-badge::before {
    content: "";
    width: 18px;
    height: 50px;
    background: var(--color-red);
    border-radius: 3px;
    flex-shrink: 0;
  }

  .service-detail-badge::after {
    content: attr(data-label);
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    white-space: pre-wrap;
    max-width: 100%;
  }

  .service-detail-content {
    width: 100%;
  }

  .service-detail-content p {
    font-family: var(--font-poppins);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
  }

  /* Case Studies */
  .case-studies {
    padding: 24px 16px;
  }

  .case-studies-grid {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .case-studies-left {
    gap: 16px;
  }

  .case-card {
    flex-direction: column;
  }

  .case-image-wrapper {
    width: 100% !important;
    height: 200px;
  }

  .case-content {
    padding: 12px;
  }

  .case-badge {
    font-size: 10px;
  }

  .case-title {
    font-size: 14px;
    line-height: 18px;
  }

  .case-excerpt {
    font-size: 12px;
    line-height: 1.4;
  }

  .case-card-large {
    min-height: 300px;
  }

  .case-title-large {
    font-size: 16px;
    line-height: 20px;
  }

  .case-link {
    font-size: 12px;
  }

  /* Payments */
  .payments {
    padding: 24px 16px;
  }

  .payments-content {
    flex-direction: column;

    gap: 20px;
  }

  .payments-features {
    gap: 16px;
  }

  .payment-feature {
    gap: 12px;
  }

  .payment-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .payment-title {
    font-size: 13px;
    line-height: 16px;
  }

  .payment-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .payments-card {
    flex-direction: column;
  }

  .payments-card-content {
    padding: 14px;
  }

  .payments-card-title {
    font-size: 16px;
    line-height: 20px;
  }

  .payments-card-image {
    width: 100%;
    height: 200px;
  }

  /* FAQ */
  .faq {
    padding: 24px 16px;
  }

  .faq-list {
    gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid var(--color-light-gray);
    padding: 12px 0;
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
  }

  .faq-question p {
    font-size: 13px;
    line-height: 16px;
    flex: 1;
  }

  .faq-icon-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon-svg {
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    padding: 12px 0;
  }

  .faq-answer p {
    font-size: 12px;
    line-height: 1.4;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
}

/* ============================================
   MOBILE BREAKPOINT 2: 481px - 768px (Tablets)
   ============================================ */
@media (min-width: 481px) and (max-width: 1130px) {
  :root {
    --container-padding: 32px;
  }

  .header-container {
    padding: 0 32px;
  }

  .logo {
    width: 140px;
  }

  .nav {
    display: flex;
    gap: 16px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 0 32px;
    flex-direction: column;
  }

  .hero-left {
    flex: 1;
  }

  .hero-right {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-image-wrapper {
    width: 100%;
    height: 280px;
  }

  .floating-card {
    display: none;
  }

  .hero-title {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .segmented-picker {
    max-width: 100%;
  }

  .companies {
    padding: 40px 32px;
  }

  .companies-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services {
    padding: 40px 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .products {
    padding: 40px 32px;
  }

  .products-list {
    gap: 32px;
  }

  .product-image {
    height: 280px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials {
    padding: 40px 32px;
  }

  .testimonials-slider {
    max-width: 100%;
  }

  .testimonials-track {
    gap: 24px;
    min-height: 300px;
  }

  .testimonial-card {
    flex-direction: row;
    gap: 20px;
    min-width: 100%;
    min-height: 280px;
    opacity: 0.7;
    transform: scale(0.95);
  }

  .testimonial-card.active {
    opacity: 1;
    transform: scale(1);
  }

  .testimonial-media {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 16px;
  }

  /* Services Page Tablet Styles */
  .services-hero {
    padding: 80px 32px !important;
  }

  .services-cards-grid {
    position: static !important;
    right: auto !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    margin-top: 24px;
    background: transparent;
  }

  .services-card {
    background: var(--color-white);
    border: 0.25px solid #eceaff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0px 7px 42px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .services-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
  }

  .services-card-title {
    font-size: 15px;
    line-height: 20px;
  }

  .services-card-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .service-detail-section {
    padding: 60px 32px;
  }

  .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-card {
    padding: 20px;
    gap: 16px;
  }

  .service-detail-image {
    width: 100%;
    height: 260px;
    border-radius: 8px;
  }

  .service-detail-badge::after {
    font-size: 16px;
  }

  .service-detail-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .case-studies {
    padding: 40px 32px;
  }

  .case-image-wrapper {
    height: 100% !important;
  }

  .payments {
    padding: 40px 32px;
  }

  .faq {
    padding: 40px 32px;
  }
}

/* ============================================
   DESKTOP: 769px - 1024px (Small Desktops)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
    height: auto;
  }

  .hero-image-wrapper {
    width: 100%;
    height: 350px;
  }

  .floating-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    flex-direction: column-reverse;
  }
}

/* ============================================
   HIDE MOBILE ELEMENTS ON DESKTOP
   ============================================ */
@media (min-width: 1130px) {
  .nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: transparent !important;
    padding: 0 !important;
    width: auto !important;
    box-shadow: none !important;
  }
}

/* ============================================
   RTL SUPPORT FOR ARABIC & HEBREW
   ============================================ */
html[dir="rtl"],
html[lang="ar"],
html[lang="he"] {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .header-container,
html[lang="ar"] .header-container,
html[lang="he"] .header-container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .mobile-menu-toggle,
html[lang="ar"] .mobile-menu-toggle,
html[lang="he"] .mobile-menu-toggle {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .hero-content,
html[lang="ar"] .hero-content,
html[lang="he"] .hero-content {
  text-align: right;
}

html[dir="rtl"] .hero-cta,
html[lang="ar"] .hero-cta,
html[lang="he"] .hero-cta {
  align-items: flex-end;
}

html[dir="rtl"] .watch-video,
html[lang="ar"] .watch-video,
html[lang="he"] .watch-video {
  flex-direction: row-reverse;
}

html[dir="rtl"] .service-card,
html[lang="ar"] .service-card,
html[lang="he"] .service-card {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .product-card:nth-child(even),
html[lang="ar"] .product-card:nth-child(even),
html[lang="he"] .product-card:nth-child(even) {
  flex-direction: column-reverse;
}

html[dir="rtl"] .payment-feature,
html[lang="ar"] .payment-feature,
html[lang="he"] .payment-feature {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .faq-question,
html[lang="ar"] .faq-question,
html[lang="he"] .faq-question {
  flex-direction: row-reverse;
}

html[dir="rtl"] .case-card,
html[lang="ar"] .case-card,
html[lang="he"] .case-card {
  text-align: right;
}

/* ============================================
   TOUCH ACCESSIBILITY
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  button,
  a,
  .faq-question {
    /* min-height: 44px; */
    /* min-width: 44px; */
  }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== CONTACT PAGE - MOBILE & TABLET RESPONSIVE CSS ===== */

/* ===== MOBILE: max-width 480px ===== */
@media (max-width: 480px) {
  /* Contact Hero Section */
  .contact-hero {
    padding: 80px 16px 0px ;
  }

  .contact-hero-content {
    max-width: 100%;
    padding: 0;
  }

  .contact-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 24px;
    font-weight: 500;
  }

  .contact-offices-intro {
    margin-bottom: 24px;
    gap: 16px;
    text-align: center;
  }

  .contact-offices-title {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .contact-offices-description {
    font-size: 13px;
    line-height: 1.5;
    padding: 0;
    text-align: center;
  }

  /* Contact Map Container - Mobile */
  .contact-map-container {
    width: 100vw;
    height: auto;
    min-height: 350px;
    margin: 24px calc(-50vw + 50%);
    overflow: visible;
    position: relative;
    background: #f5f5f5;
    padding: 0;
  }

  .contact-world-map-svg {
    width: 100% !important;
    height: auto !important;
    min-height: 350px !important;
    display: block !important;
  }

  /* Contact Offices Container - Mobile */
  .contact-offices-container {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--color-white);
  }

  .timeline-item--reverse .timeline-content {
    align-items: flex-start;
    margin-left: 20px;
    /* margin-left: 0; */
    padding-left: 20px;
  }
  timeline-item:nth-child(3) .timeline-content {
    align-items: flex-start;
    margin-left: 20px;
    /* margin-left: 0; */
    padding-left: 20px;
  }
  .timeline-item:first-child .timeline-content {
    align-items: flex-start;
    margin-left: 20px;
    text-align: start !important;
    /* margin-left: 0; */
    padding-left: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    /* margin-left: 12px; */
  }
  .timeline-item:nth-child(3) .timeline-content {
    align-items: flex-start;
    margin-left: 20px;
    /* margin-left: 0; */
    padding-left: 20px;
    /* margin-left: 12px; */
  }
  .timeline-content {
    align-items: flex-start;
    margin-left: 20px;
    /* margin-left: 0; */
    padding-left: 20px;
    text-align: start;
    /* margin-left: 12px; */
  }
  .contact-office-card {
    width: 100% !important;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    border: 0.5px solid #eceaff;
  }

  .contact-office-card--first {
    border-color: #e73b50;
    border-width: 1px;
  }

  .contact-office-header {
    gap: 8px;
    margin-bottom: 12px;
  }

  .contact-office-flag {
    font-size: 20px;
    width: 20px;
    height: 20px;
  }

  .contact-office-location {
    font-size: 16px;
    line-height: 1.4;
  }

  .contact-office-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .contact-office-detail-item {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    font-family: var(--font-poppins);
  }
  .company-hero-description--second{
    font-size: 16px;
    font-weight: 600;
  }

  /* Contact Form Section - Mobile */
  .contact-form-section {
            margin-top: 0;

    padding: 40px 16px;
    background: var(--color-white);
  }

  .contact-form-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-form-intro {
    text-align: center;
  }

  .contact-form-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .contact-form-title-red {
    color: #e73b50;
  }

  .contact-form-description {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    text-align: center;
  }

  /* Contact Form - Mobile */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .form-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-poppins);
    background: var(--color-white);
    color: #234261;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
  }

  .form-input::placeholder {
    color: #999;
  }

  .form-input:focus {
    outline: none;
    border-color: #e73b50;
    box-shadow: 0 0 0 3px rgba(231, 59, 80, 0.1);
  }

  .form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-poppins);
  }

  .contact-submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    margin-top: 8px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
}

/* ===== TABLET: 481px - 768px ===== */
@media (min-width: 481px) and (max-width: 1130px) {
  /* Contact Hero Section */
  .contact-hero {
    padding: 120px 32px;
  }

  .contact-hero-content {
    max-width: 100%;
  }

  .contact-title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .contact-offices-intro {
    margin-bottom: 32px;
    gap: 24px;
  }

  .contact-offices-title {
    font-size: 22px;
    line-height: 1.6;
  }

  .contact-offices-description {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Contact Map Container - Tablet */
  .contact-map-container {
    width: 100vw;
    height: auto;
    min-height: 500px;
    margin: 32px calc(-50vw + 50%);
  }

  .contact-offices-container {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    padding: 24px 32px;
    gap: 16px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-office-card {
    width: 100% !important;
    padding: 18px;
    border-radius: 14px;
  }

  .contact-office-location {
    font-size: 17px;
  }

  .contact-office-detail-item {
    font-size: 13px;
  }

  /* Contact Form Section - Tablet */
  .contact-form-section {
    padding: 60px 32px;
  }

  .contact-form-content {
    max-width: 100%;
    gap: 28px;
  }

  .contact-form-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .contact-form-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-form {
    gap: 18px;
  }

  .form-input {
    padding: 13px 14px;
    font-size: 14px;
    border-radius: 8px;
  }

  .contact-submit-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* ===== DESKTOP: 769px+ ===== */
@media (min-width: 1130px) {
  /* Keep original desktop styles */
  .contact-offices-container {
    position: absolute;
    top: 0;
    left: 80px;
    width: 385px;
  }

  @media (min-width: 1280px) {
    .contact-offices-container {
      left: calc((100vw - 1280px) / 2 + 80px);
    }
  }

  .contact-office-card {
    width: 385px;
  }
}
/* ===== CTA SECTION & FOOTER - RESPONSIVE CSS ===== */

/* ===== MOBILE: max-width 480px ===== */
@media (max-width: 480px) {
  /* CTA SECTION - MOBILE */
  .cta-section {
    padding: 24px 16px;
    height: auto;
    min-height: auto;
    border-radius: 0;
    margin: 0 0px;
  }

  .cta-3 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 16px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-3 .cta-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0.3;
    z-index: 0;
        /* background: url(assets/images/Have-event-2.jpg)  cover no-repeat; */
        background: none;
  }

  .cta-3 .cta-content {
    position: relative;
    z-index: 1;
  }

  .cta-content {
    max-width: 100%;
    gap: 16px;
    text-align: center;
    padding: 20px 0;
  }

  .cta-title {
    font-size: 23px;
    line-height: 32px;
    font-weight: 600;
  }

  .cta-description {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }

  .cta-section .btn-primary {
    width: 100%;
    max-width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }

  /* FOOTER - MOBILE */
  .footer {
    padding: 40px 16px 24px;
  }

  .footer-content {
    max-width: 100%;
    gap: 24px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-column {
    /* gap: 12px; */
  }

  .footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .footer-list {
    /* gap: 40px;
    flex-direction: row;
    flex-wrap: wrap; */
  }

  .footer-list a {
    font-size: 13px;
  }

  .footer-column.contact {
    max-width: 100%;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item svg {
    width: 20px;
    height: 20px;
  }

  .contact-item span {
    font-size: 13px;
  }

  .contact-addresses {
    gap: 8px;
        grid-template-columns: repeat(2, 1fr);

  }

  .contact-addresses p {
    font-size: 13px;
    line-height: 1.4;
  }

  .footer-column.contact .footer-social {
    margin-top: 12px;
    gap: 12px;
  }

  .footer-divider {
    margin: 16px 0;
  }

  .footer-bottom {
    display: none;
  }

  .footer-copyright {
    gap: 4px;
    /* margin-bottom: 20px;
    padding: 12px 0; */
  }

  .footer-copyright p {
    font-size: 11px;
    line-height: 1.4;
  }

  .footer-legal {
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
  }

  .footer-legal-left {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .footer-legal-left p,
  .divider {
    /* display: none; */
  }

  .footer-legal-left p:first-child {
    display: block;
    font-size: 11px;
  }

  .footer-legal-right {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .footer-legal-right a {
    font-size: 11px;
    display: block;
    text-align: center;
  }
}

/* ===== TABLET: 481px - 768px ===== */
@media (min-width: 481px) and (max-width: 1130px) {
  /* CTA SECTION - TABLET */
  .cta-section {
    padding: 40px 32px;
    height: auto;
  }
  .footer-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-3 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 320px;
    padding: 0 32px;
  }

  .cta-3 .cta-graphic {
    /* width: 60%; */
    height: 100%;
    opacity: 0.4;
  }

  .cta-content {
    max-width: 100%;
    gap: 20px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 36px;
  }

  .cta-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .cta-section .btn-primary {
    width: 100%;
    max-width: 200px;
    padding: 14px 28px;
  }

  /* FOOTER - TABLET */
  .footer {
    padding: 60px 32px 32px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-column {
    flex: 1 1 calc(50% - 16px);
    gap: 16px;
    min-width: 160px;
  }

  .footer-column.contact {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }

  .contact-item {
    flex: 1 1 auto;
  }

  .footer-divider {
    margin: 20px 0;
  }

  .footer-copyright {
    gap: 8px;
    margin-bottom: 24px;
  }

  .footer-copyright p {
    font-size: 12px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 20px;
  }

  .footer-legal-left {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-legal-left p {
    font-size: 12px;
    margin: 0;
  }

  .footer-legal-right {
    flex-direction: row;
    gap: 16px;
  }

  .footer-legal-right a {
    font-size: 12px;
  }
}

/* ===== DESKTOP: 1130px+ ===== */
@media (min-width: 1130px) {
  /* Keep original desktop styles */
  .footer-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .cta-section {
    height: 338px;
  padding: var(--section-padding);
  padding-bottom: 50px;
    border-radius: 0;
    /* margin-top: var(--main-gap); */
  }

  .cta-3 {
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
    background: var(--color-light-purple);
  }

  .cta-3 .cta-graphic {
    position: absolute;
    top: 50%;
    left: max(64px, calc(50% - 600px));
    width: 477px;
    height: 336px;
    border-radius: 14px;
    opacity: 1;
  }

  .footer {
    padding: 96px 0 48px;
  }

  .footer-links {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-legal-left {
    flex-direction: row;
    gap: 24px;
  }

  .footer-legal-right {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 1129px) {
  .history-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e73b50;
    z-index: 1;
  }
}
@media (min-width: 1140px) {
  .history-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e73b50;
    z-index: 1;
  }
}
/* ============================================
   MOBILE & TABLET: Switch at TOP, Image MIDDLE, Content BOTTOM
   ============================================ */

@media (max-width: 1130px) {
  .hero-content {
    flex-direction: column;
    gap: 24px;
  }

  /* Use display: contents to make children of hero-left 
     act as direct children of hero-content for ordering */
  .hero-left {
    display: contents;
  }

  /* 1. Segmented picker - FIRST (at the top) */
  .segmented-picker {
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  /* 2. Image section - SECOND (below picker) */
  .hero-right {
    display: block !important;
    width: 100%;
    height: auto;
    order: 2;
    position: relative;
  }

  .hero-image-wrapper {
    width: 100%;
    height: 280px;
    position: relative;
    right: auto;
    border-radius: 20px;
  }

  .hero-image-individual {
    width: 100%;
    height: 280px;
  }

  /* Hide floating cards on mobile/tablet */
  .floating-card,
  .floating-card-corporate {
    display: none !important;
  }

  /* 3. Content (text + CTA) - THIRD (at bottom) */
  .hero-content-corporate,
  .hero-content-individual {
    order: 3;
    position: relative;
    width: 100%;
  }

  .hero-content-tab {
    width: 100%;
  }

  /* Ensure proper spacing */
  .hero-text {
    width: 100%;
  }

  .hero-cta {
    width: 100%;
  }

  /* Hide mobile image placeholder if exists */
  .hero-mobile-image {
    display: none;
  }
  .services-pattern-bg {
    position: absolute;

    z-index: 1;
  }
  .services-cards-grid-mobile {
    position: relative;

    z-index: 400;
  }
}

/* Tablet-specific adjustments */
@media (min-width: 481px) and (max-width: 1130px) {
  .hero-image-wrapper,
  .hero-image-individual {
    height: 320px;
  }
}
.develope-by{
  font-size: 14px;
}

/* Small phone adjustments */
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
    /* height: 650px; */
  }

  .hero-content {
    gap: 20px;
    padding: 0 16px;
  }
.db-block-mob{
  display: block !important;
}
  .hero-image-wrapper,
  .hero-image-individual {
    height: 220px;
    border-radius: 16px;
  }

  .segmented-picker {
    height: 44px;
  }

  .segmented-option {
    font-size: 12px;
  }

  .hero-title {
    font-size: 20px;
    line-height: 26px;
  }

  .hero-description {
    font-size: 14px;
  }
}
.soon {
  color: var(--color-red);
  font-size: 10px;
}
.soon-link {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.disabel-link {
  pointer-events: none;
}
