/* ==========================================================================
   MA Auditing â€” Global Brand Stylesheet
   Design tokens + reusable components extracted from Figma (node 2-4).
   Brand: Mohamed Alsharhan Accounting & Auditing
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* --------------------------------------------------------------------------
   1. Design Tokens (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  --primary-color: #76af46;
  /* Brand â€” Blue */
  --color-primary: #005d98;          /* primary brand blue */
  --color-primary-600: #005d99;
  --color-navy: #062867;             /* deep navy (gradients, dark sections) */
  --color-blue-bright: #0d77ee;
  --color-blue-700: #0c50cd;
  --color-blue-800: #004a75;

  /* Brand â€” Green */
  --color-secondary: #76af46;        /* primary brand green */
  --color-secondary-600: #72b043;
  --color-secondary-700: #7ab547;
  --color-accent-lime: #8cc63f;      /* active nav / highlights */
  --color-green-deep: #304a1c;

  /* Neutrals */
  --color-heading: #403d3d;          /* dark heading text */
  --color-body: #374151;             /* body text */
  --color-muted: #6b7280;            /* muted / placeholder */
  --color-border: #d1d5db;
  --color-surface: #e5e7eb;          /* light gray (footer contact bar) */
  --color-white: #ffffff;
  --color-offwhite: #f2f5fa;
  --color-black: #000000;

  /* Typography */
  --font-family-base: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --fs-xs: 0.75rem;      /* 12px */
  --fs-sm: 0.875rem;     /* 14px */
  --fs-base: 1rem;       /* 16px */
  --fs-lg: 1.25rem;      /* 20px */
  --fs-xl: 1.5rem;       /* 24px */
  --fs-2xl: 2rem;        /* 32px */
  --fs-3xl: 2.25rem;     /* 36px */
  --fs-stat: 3rem;       /* 48px */

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-header: 0 1px 1px rgba(0, 0, 0, 0.05);
  --shadow-button: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                   0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Layout */
  --container-max: 1440px;
  --container-pad: 48px;

  /* Gradients */
  --gradient-banner: linear-gradient(90deg, rgba(0, 74, 117, 0.6), rgba(0, 139, 219, 0.6));
  --gradient-services: linear-gradient(180deg, var(--color-navy), var(--color-blue-700));
}

/* --------------------------------------------------------------------------
   2. Base / Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  /* contain the horizontal slide of scroll-reveal animations */
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-circle{width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;}
a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--color-heading);
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

p {
  margin: 0;
  font-size: 16px;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  /* position: relative; */
}

.section {
  padding-block: var(--space-20);
}

.section--dark {
  background: var(--gradient-services);
  color: var(--color-white);
}

.section--dark :is(h1, h2, h3, h4) {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   4. Typography utilities
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-4);
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-pill);
  color: var(--color-navy);
  font-size: 0.83rem;
  text-transform: capitalize;
}

.heading-xl {
  font-size: var(--fs-2xl);
  letter-spacing: -0.96px;
}

.heading-lg {
  font-size: var(--fs-3xl);
  letter-spacing: -0.36px;
}

.text-muted { color: var(--color-muted); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.uppercase { text-transform: uppercase; letter-spacing: 0.7px; }

/* Signature brand underline â€” blue bar + shorter green bar.
   Recurs under nearly every section heading in the design. */
.brand-underline {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.brand-underline::before,
.brand-underline::after {
  content: "";
  height: 4px;
  border-radius: var(--radius-pill);
}
.brand-underline::before {
  width: 176px;
  background: var(--color-primary);
}
.brand-underline::after {
  width: 89px;
  background: var(--color-secondary-600);
}
/* White variant â€” used on dark cards / bands (founder section) */
.brand-underline--white::before,
.brand-underline--white::after {
  background: var(--color-white);
}

/* --------------------------------------------------------------------------
   5. Buttons (reusable)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-secondary-600);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}
.btn--primary:hover {
    background: var(--color-blue-800);
    color: #eeeeee;
}

.btn--blue {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: .4s;
  background: var(--color-blue-800);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
  border-color: var(--color-blue-800);
  border: 0;
  font-size: 14px;
  cursor: pointer;
}
.btn--blue:hover {
  background: var(--color-secondary-600); 
  color: #eeeeee;
}

.btn--outline {
  background: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary-600);
  text-transform: none;
  letter-spacing: -0.35px;
  border-radius: var(--radius-sm);
}
.btn--outline:hover { background: var(--color-primary); color: var(--color-white); }

.btn--block { width: 100%; }

/* Small rounded variant used for inline CTAs ("Contact us") */
.btn--sm {
  padding: var(--space-2) var(--space-4);
  text-transform: capitalize;
  letter-spacing: normal;
  font-size: var(--fs-base);
}

/* --------------------------------------------------------------------------
   6. Pills / badges
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  letter-spacing: 0.7px;
}
.pill--green {
  background: rgba(114, 176, 67, 0.2);
  border: 1px solid rgba(114, 176, 67, 0.3);
  color: var(--color-secondary-600);
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-white);
}
.card--shadow { box-shadow: var(--shadow-card); }
.card--glass {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

/* Icon chip used on service cards */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   8. Forms (lead-capture style)
   -------------------------------------------------------------------------- */
.field-input,
.field-textarea {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--color-body);
  background: var(--color-white);
}
.field-input::placeholder,
.field-textarea::placeholder { color: var(--color-muted); }
.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   9. Utilities
   -------------------------------------------------------------------------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.w-full { width: 100%; }
.relative { position: relative; }
.rounded-xl { border-radius: var(--radius-xl); }
.shadow-card { box-shadow: var(--shadow-card); }

/* Screen-reader-only (accessible labels without visual change) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --------------------------------------------------------------------------
   10. Header â€” Part 1: Top contact bar (Figma node 2-65)
   -------------------------------------------------------------------------- */
.headersection{
    position: relative;
    z-index: 999;
}

.site-header{
    transition: all 0.3s ease;
}

.headersection.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease;
}

/* Keep both parts of the header inside the fixed parent */
.headersection.sticky .header_top,
.headersection.sticky .site-header {
    position: relative;
}



@keyframes slideDown{
    from{
        transform: translateY(-100%);
    }
    to{
        transform: translateY(0);
    }
}
.header_top {
  background-color:#295028;
  color: #fff;
  padding: 10px 0;
}

.header_top .wrapper {
  font-weight: 300;
}

.header_top .wrapper>* {
  margin: 0;
}

@media (max-width: 992px) {
    .pageHeaderTopCInfo {
        font-size: 12px;
        font-weight: 600;
        line-height: 1;
        color: #000;
        text-transform: uppercase;
        background-color: #fff;
        padding: 4px 24px;
        border-radius: 50rem;
    }
    .labelText__wr{display:none;}
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}

.vertical_content_slide ul {
  height: 21px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vertical_content_slide li {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.vertical_content_slide li i {
  margin-right: 0.5rem;
}

.marquee_wrapper {
}

.marquee_wrapper .marquee_text_wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text {
  margin: 0 auto;
    padding: 0;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 50s linear infinite;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text li {
  display: initial;
  text-align: center;
  width: var(--marquee-element-width);
  margin-right: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text li span {
  margin-left: 7px;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text:hover {
  animation-play-state: paused;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text:hover li {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text li:hover {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
}

@keyframes marquee {
  0% {
    text-indent: 27.5em;
  }

  100% {
    text-indent: -105em;
  }
}

.header_top .soacial_wrapper {
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header_top .social_links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}

.header_top .social_links li {
  margin: 0;
  font-size: 14px;
  width: 25px;
  height: 25px;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_top .social_links li a {
  color: #fff;
}
.pageHeaderTopStart{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    height: 100%;
}
.pageHeaderTopInfo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    margin: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.pageHeaderTopInfo:hover{
    color: var(--primary-color);
}
.navbar__dropdown { position: relative; }

.navbar__chevron { transition: .3s; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 16rem;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
    box-shadow: 0 8px 16px rgba(0,0,0,.2);
}

.dropdown-menu li a {
    display: block;
    color: #000;
    font-size: 14px;
    padding: 12px 16px;
    text-decoration: none;
    transition: .3s;
    font-weight: 400;
    border-top: 1px solid #ddd;
}

.dropdown-menu li:first-child a { border-top: 0; }

.dropdown-menu li a:hover {
    background: #76af46;
    color: #fff;
}

/* open state */
.navbar__dropdown.open .dropdown-menu { display: block; }
.navbar__dropdown.open .navbar__chevron { transform: rotate(180deg); }

/* desktop hover */
@media (min-width: 992px) {
    .navbar__dropdown:hover .dropdown-menu { display: block; }
    .navbar__dropdown:hover .navbar__chevron { transform: rotate(180deg); }
}
@media (max-width: 576px) {
    .pageHeaderTopInfo .labelText__wr {
        display: none;
    }
    .callPopover {
        width: 100%;
        margin-bottom: 10px;
    }
    a.btn--blue {
        text-align: center;
    }
}
@media (max-width: 992px) {
    .pageHeaderTopStart {
        justify-content: space-between;
    }
    .pageHeaderTopCInfo {
        font-size: 12px;
        font-weight: 600;
        line-height: 1;
        color: #000;
        text-transform: uppercase;
        background-color: #fff;
        padding: 4px 24px;
        border-radius: 50rem;
    }
    .pageHeaderTopInfo .labelText__wr {
        display: none;
    }
}
/* --------------------------------------------------------------------------
   11. Header â€” Part 2: Main navigation (Figma node 2-77)
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-header);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  min-height: 96px;
  padding: 16px var(--container-pad);
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-shrink: 0;
}
.navbar__logo img {
  width: 116.47px;
  height: 64px;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-body);            /* #374151 */
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);           /* 16px */
  line-height: 24px;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.navbar__link:hover { color: var(--color-secondary); }
.navbar__link.is-active { color: var(--color-accent-lime); }   /* #8cc63f */
.navbar__chevron { width: 16px; height: 16px; }

/* Right-hand actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-shrink: 0;
}

/* Call-us block */
.callus {
  display: inline-flex;
  align-items: center;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.callus:hover{
    color: var(--primary-color);
}
.callus__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--color-secondary);   /* #76af46 */
}
.callus__icon img { width: 20px; height: 20px; }
.callus__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
}
.callus__label {
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted);            /* #6b7280 */
}
.callus__number {
  font-size: 18px;
  line-height: 18px;
  color: var(--color-secondary);        /* #76af46 */
}

/* Claim-discount button (white, blue outline, badge overlay) */
.discount {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px 0px 0px;
  margin-right: 4px;                    /* room for the overhanging badge */
  /* background: var(--color-primary-600); */
  /* border: 1px solid var(--color-primary); */
  /* border-radius: 8px; */
  transition: background-color 0.15s ease, color 0.15s ease;
}
.discount__text {
  font-size: var(--fs-sm);              /* 14px */
  line-height: 20px;
  letter-spacing: -0.35px;
  text-transform: uppercase;
  color: var(--color-white);      /* #005d99 */
  white-space: nowrap;
}
.discount__badge {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
}
.discount .discount__text:hover {
  /*background: var(--color-white);*/
  color: var(--color-primary);
  background: var(--color-primary-600);
  border: 2px solid var(--color-primary);
}

.discount__text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 500;
    padding: 12px 46px 12px 16px;
    text-transform: uppercase;
    background-color: var(--color-primary-600);
    /* border: 2px solid var(--secondary-color); */
    color: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.discount__text:hover {
    color: var(--secondary-color);
}
.discount__text::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: #fff;
    border-radius: 6px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.discount__text:hover::before, .discount__text:active::before, .discount__text:focus::before, .discount__text:active:focus::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* --------------------------------------------------------------------------
   12. Footer (Figma node 2-628)
   -------------------------------------------------------------------------- */
.site-footer { width: 100%; }

/* Top row: contact info (light-gray bar) */
.footer-contact {
  background: var(--color-surface);     /* #e5e7eb */
  padding-block: 32px;
}
.footer-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.footer-contact__logo { display: flex; flex-shrink: 0; }
.footer-contact__logo img { width: 116.47px; height: 64px; }

.footer-contact__details {
  display: flex;
  align-items: center;
  gap: 48px;
}
.footer-contact__item{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: var(--fs-sm);
    line-height: 20px;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.footer-contact__item img { flex-shrink: 0; }
.footer-contact__item:hover { color: var(--color-navy); }

/* Bottom row: copyright & links (green bar) */
.footer-legal {
  background: #295028;   /* #76af46 */
  padding-block: 24px;
}
.footer-legal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.footer-legal__copy {
  color: var(--color-white);
  font-size: var(--fs-sm);              /* 14px */
  line-height: 20px;
  opacity: 0.9;
  white-space: nowrap;
}
.footer-legal__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.footer-legal__links > * {
  color: var(--color-white);
  font-size: var(--fs-xs);              /* 12px */
  line-height: 16px;
  white-space: nowrap;
}
.footer-legal__note { opacity: 0.8; }
.footer-legal__links a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   13. Hero Section (Figma node 2-121)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Left column */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex: 1 1 0;
  min-width: 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 17px;
  border-radius: var(--radius-lg);
  background: #0000002e;
  border: 1px solid rgba(114, 176, 67, 0.3);
  color: var(--color-secondary-600);
  font-size: var(--fs-sm);            /* 14px */
  letter-spacing: 0.7px;
  line-height: 1.2;
}
.hero__title {
  color: var(--color-white);
  font-size: 36px;           /* 32px */
  font-weight: var(--fw-medium);
  letter-spacing: -0.96px;
  line-height: 1.2;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 576px;
  color: var(--color-white);
  font-size: var(--fs-xs);            /* 12px */
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: 9px;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
.hero__copy.aos-in p {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
}
/* Certification logos */
.hero__certs {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}
.cert {
  width: 77px;
  height: 77px;
  flex-shrink: 0;
}
/* Federal Tax Authority â€” two layered SVG parts (spiral + label) */
.cert--fta {
  position: relative;
  display: inline-block;
}
.cert--fta .cert__spiral {
  position: absolute;
  top: 0; left: 9.1%; right: 7.86%; bottom: 22.29%;
  width: auto; height: auto;
}
.cert--fta .cert__label {
  position: absolute;
  top: 86.03%; left: 2.05%; right: 2.05%; bottom: 0;
  width: auto; height: auto;
}
.cert--acca { display: block; }

/* Right column: lead-capture form card */
.hero__form-wrap {
  display: flex;
  flex-shrink: 0;
}
.hero-form {
  width: 512px;
  max-width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.hero-form__header {
  background: var(--color-primary-600);   /* #005d99 */
  padding: 24px 32px;
  text-align: center;
}
.hero-form__header h2 {
  color: var(--color-white);
  font-size: 1.171rem;            /* 20px */
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
a.navbar__link.discount {
    display: none;
}
.hero-form__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 25px;
}
.hero-form__row {
  display: flex;
  gap: var(--space-4);
}
.hero-form__row .field-input { flex: 1 1 0; min-width: 0; }

.hero-form__submit {
  width: 100%;
  padding: 10px 24px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-secondary-700);  /* #7ab547 */
  color: var(--color-white);
  font-family: inherit;
  font-weight: var(--fw-medium);
  font-size: var(--fs-lg);            /* 18px-ish */
  letter-spacing: 0.9px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.hero-form__submit:hover {background: var(--color-blue-800); }

/* --------------------------------------------------------------------------
   14. Stats Section â€” Trust Stats Banner (Figma node 2-257)
   -------------------------------------------------------------------------- */
.stats {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: 48px;
  padding-inline: var(--container-pad);
}
.stats__banner {
  position: relative;
  border-radius: var(--radius-2xl);     /* 24px */
  overflow: hidden;
  padding: 47px 20px 48px;
}
.stats__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.stats__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-banner);   /* navy â†’ blue, 60% */
  z-index: 1;
}
.stats__row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;                              /* number â†” label */
  text-align: center;
}
.stat__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;                   /* icon â†” number = 22px total */
}
.stat__number {
  color: var(--color-white);
  font-size: var(--fs-stat);             /* 48px */
  font-weight: var(--fw-medium);
  letter-spacing: -0.96px;
  line-height: 1.1;
}
.stat__label {
  color: var(--color-white);
  font-size: var(--fs-sm);               /* 14px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  /*opacity: 0.8;*/
}
.overlay_item {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  padding: 30px 0 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: -1;
}
.overlay_item .image_block {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.overlay_item .image_block img {
  width: 100%;
  height: 100%;
}
.overlay_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  z-index: 2;
  opacity: .8;
}
.overlay_item .icon {
  display: block;
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 2;
    margin: 0 auto;
}
.overlay_item {
    height: calc(100% + 120px);
    top: -60px;
    bottom: -60px;
    padding: 30px 0 0;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -ms-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    -moz-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    -webkit-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
li.stat.aos-in {
    position: relative;
}
.overlay_item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #005d98;
      z-index: 2;
      opacity: .8;
    }
li.stat.aos-in:hover .overlay_item {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   15. About Section â€” Premier Audit Experts (Figma node 2-325)
   -------------------------------------------------------------------------- */
.about {
  padding-block: var(--space-20);
  padding-top: 40px;
}
.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Left column */
.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  flex: 0 1 580px;
  max-width: 580px;
}
.about__heading { width: 100%; }
.about__title {
  color: var(--color-heading);
  line-height: 1.25;
}
.about__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  color: var(--color-heading);
  font-size: var(--fs-xs);            /* 12px */
  line-height: 1.6;
}
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-2);
}

/* Right column: photo collage (exact Figma proportions, 548 Ã— 408) */
.about__media {
  position: relative;
  width: 700px;
  /*width: 54%;*/
  max-width: 100%;
  aspect-ratio: 548 / 408;
  flex-shrink: 0;
}
.about__photo {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Soft blue tint that fades in on hover */
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 93, 152, 0) 40%, rgba(0, 93, 152, 0.35));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about__photo:hover {
  box-shadow: var(--shadow-card);
}
.about__photo:hover img {
  transform: scale(1.08);
}
.about__photo:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .about__photo img,
  .about__photo::after { transition: none; }
  .about__photo:hover img { transform: none; }
}
.about__photo--1 { left: 0;       top: 0; width: 48.98%; height: 83.08%; }
.about__photo--2 { left: 51.02%;  top: 30%; width: 48.98%; height: 49.23%; }

/* Experience badge (green) overlapping the collage */
.about__badge {
  position: absolute;
  left: 40.33%;
  top: 71.27%;
  width: 46.87%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  /*padding: 5% 11%;*/
  padding: 42px 30px;
  text-align: center;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  overflow: hidden;
}
.about__badge-number {
  font-size: clamp(2.5rem, 6vw, 4.86rem);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.about__badge-label {
  font-size: clamp(0.95rem, 1.6vw, 1.216rem);
  line-height: 1.39;
  /*max-width: 200px;*/
  max-width: 100%;
}
/*.about__badge-bar {
  width: 81px;
  max-width: 60%;
  height: 9.7px;
  margin-top: var(--space-1);
  background: var(--color-white);
  border-radius: var(--radius-pill);
}*/
.about__copy p{
    text-align: justify;
}
/* --------------------------------------------------------------------------
   16. Expertise Section (Figma node 2-291)
   -------------------------------------------------------------------------- */
.expertise {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 570px;
  padding-block: 48px;
  overflow: hidden;
}
.expertise__bg {
  position: absolute;
  inset: 0;
}
.expertise__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expertise__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(-77.37deg, rgba(6, 40, 103, 0) 12.57%, rgba(6, 40, 103, 0.5) 110.37%);*/
  background: linear-gradient(-77.37deg, rgb(6 40 103 / 82%) 12.57%, rgba(6, 40, 103, 0.5) 110.37%);
}
.expertise__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* White card */
.expertise__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 573px;
  max-width: 100%;
  padding: 27px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
}

.expertise__card{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 573px;
    max-width: 100%;
    padding: 27px;
    background: #fff;
    border-radius: 24px;

    border: 1px solid rgba(10,85,160,.08);

    box-shadow:
        0 12px 35px rgba(15,55,110,.12);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.expertise__card:hover{
    transform: translateY(-10px);
    border-color: rgba(18,95,180,.25);

    box-shadow:
        0 22px 60px rgba(13,52,108,.22);
}

.expertise__pill { align-self: flex-start; }
.expertise__text {
  color: var(--color-black);
  font-size: 16px;            /* 12px */
  line-height: 1.5;
  text-transform: capitalize;
}

/* Two-column check list */
.expertise__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.expertise__list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-black);
  font-size: var(--fs-xs);            /* 12px */
  line-height: 1.4;
  text-transform: capitalize;
  font-size: 14px;
}
.expertise__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("../icons/icon-check.svg") no-repeat center / contain;
}

/* Contact CTA (blue, capitalized â€” distinct from the uppercase .btn) */
.expertise__cta {
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-base);          /* 16px */
  text-transform: capitalize;
  transition: background-color 0.15s ease;
}
.expertise__cta:hover { background: var(--color-secondary-600); }

/* --------------------------------------------------------------------------
   17. Trusted Brands Section â€” logo marquee (Figma node 2-351)
   -------------------------------------------------------------------------- */
.brands {
  position: relative;
  overflow: hidden;
}
.brands__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.brands__overlay {
  position: absolute;
  inset: 0;
  /* blue gradient overlay (rgba 0,74,117 â†’ 13,119,238 at 50%) */
  background: linear-gradient(90deg, rgba(0, 74, 117, 0.5), rgba(13, 119, 238, 0.5));
  z-index: 1;
}
.brands__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 52px var(--container-pad);
}
.brands__title {
  margin: 0;
  color: var(--color-white);
  font-size: var(--fs-2xl);          /* 32px */
  font-weight: var(--fw-medium);
  letter-spacing: -0.96px;
  line-height: 1.25;
  text-align: center;
}

/* Marquee viewport: clips the scrolling track */
.brands__marquee {
  width: 100%;
  overflow: hidden;
}
.brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  /* The track holds two identical sets; -50% loops seamlessly. */
  animation: brands-scroll 30s linear infinite;
}
.brands:hover .brands__track {
  animation-play-state: paused;
}
.brands__logo {
  flex-shrink: 0;
  /* trailing gap on every item keeps the loop perfectly periodic */
  margin-right: 52px;
}
.brands__logo img {
  width: 151px;
  height: 43px;
  object-fit: contain;
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; }
}

/* --------------------------------------------------------------------------
   18. Founder Section â€” About Mohamed Alsharhan (Figma node 2-5)
   -------------------------------------------------------------------------- */
.founder { position: relative; }

/* Intro: heading + biography (white background) */
.founder__intro {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 64px var(--container-pad) 48px;
}
.founder__heading { margin-bottom: 23px; }
.founder__title {
  color: var(--color-heading);
  line-height: 1.25;
}
.founder__bio {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  color: var(--color-heading);
  font-size: var(--fs-sm);            /* 14px */
  line-height: 1.5;
}
.founder__lead { font-weight: var(--fw-medium); }

/* Photo band */
.founder__feature {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
}
.founder__feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.founder__feature-overlay {
  position: absolute;
  inset: 0;
  /* subtle green wash at the very bottom (matches Figma overlay) */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(114, 176, 67, 0.7) 100%);
}

/* Dark-blue band carrying the cards + IFRS statement */
.founder__band {
  background: linear-gradient(180deg, var(--color-blue-800), #043061);  /* #004a75 â†’ #043061 */
  padding-bottom: 64px;
}

/* Three glass feature cards â€” pulled up to overlap the photo above */
.founder__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: -214px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
  align-items: start;
}

.founder-card{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding: 27px;
    border-radius: 24px;
    color: var(--color-white);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition: all .45s ease;
} 

.founder-card{
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition: all .4s ease;
}

.founder-card:hover{
    transform: translateY(-10px);

    background: rgba(8, 32, 72, 0.65);

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);
}
.founder-card__icon{
    transition:.4s;
}

.founder-card:hover .founder-card__icon{
    transform:translateY(-8px) rotate(-5deg) scale(1.08);
}
.founder-card__title{
    transition:.35s;
}

.founder-card:hover .founder-card__title{
    color:#ffffff;
    letter-spacing:.5px;
}


.founder-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    opacity:0;
    transition:.4s;

    box-shadow: inset 0 0 0 1px rgba(76,175,255,.4);
}



/* Center card sits slightly higher (Figma stagger) */
.founder-card--raised { margin-top: -40px; }
.founder-card__icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
}
.founder-card__icon img { width: 80px; height: 80px; }
.founder-card__head { width: 100%; }
.founder-card__title {
  color: var(--color-white);
  font-size: var(--fs-xl);                  /* 24px */
  font-weight: var(--fw-medium);
  letter-spacing: -0.96px;
  line-height: 1.2;
}
.founder-card__text {
  color: var(--color-white);
  font-size: var(--fs-sm);                  /* 14px */
  line-height: 1.5;
  text-transform: capitalize;
}
li.founder-card.founder-b {
    min-height: 340px;
}
/* IFRS Certified Auditors statement card */
.founder__ifrs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-top: 100px;
    /* padding: 24px; */
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 30px;
    border: 5px solid #76af46;
}
.founder__ifrs-head { flex-shrink: 0; }
.founder__ifrs-title {
    color: var(--color-white);
    /* font-size: var(--fs-xl); */
    /* font-weight: var(--fw-medium); */
    letter-spacing: -0.96px;
    line-height: 1.2;
    /* color: #000; */
    font-size: clamp(1.125rem, 0.3823rem + 2.0631vw, 2.1875rem) !important;
    font-weight: 600;
    line-height: 1.2;
    /* padding: 0 0 24px; */
    margin: 0;
}
.founder__ifrs-text {
    flex: 0 1 569px;
    color: var(--color-white);
    /* font-size: var(--fs-sm); */
    /* line-height: 1.5; */
    text-align: right;
    text-transform: capitalize;
    font-size: 16px;
    /* color: #000; */
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   19. Software Capabilities Section â€” logo marquee (Figma node 2-357)
   -------------------------------------------------------------------------- */
.software {
  background: var(--color-white);
  /*padding-block: 48px;*/
  padding-block: 20px;
}
.software__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.software__heading { flex-shrink: 0; }
.software__title {
  color: var(--color-heading);
  font-size: 1.75rem;                  /* 28px */
  font-weight: var(--fw-medium);
  letter-spacing: -0.96px;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Marquee viewport fills the remaining row width and clips the track */
.software__marquee {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.software__track {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  /* two identical sets; -50% loops seamlessly */
  animation: software-scroll 30s linear infinite;
  gap: 3rem;
}
.software:hover .software__track {
  animation-play-state: paused;
}
.software__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 135px;
  margin-right: 19px;*/
}
.software__logo img {
  /*width: auto;
  height: auto;
  max-width: 120px;
  max-height: 44px;
  max-height: 60px;
  object-fit: contain;*/
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}

@keyframes software-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .software__track { animation: none; }
}


/* --------------------------------------------------------------------------
   20. Services Grid Section â€” Our Professional Services (Figma node 2-364)
   -------------------------------------------------------------------------- */
.services {
  position: relative;
  padding-block: 120px;
  background: linear-gradient(180deg, var(--color-navy), var(--color-blue-700));  /* #062867 â†’ #0c50cd */
  overflow: hidden;
}
.services__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.services__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Heading + subtitle */
.services__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.services__title {
  color: var(--color-white);
  font-size: var(--fs-3xl);            /* 36px */
  font-weight: var(--fw-medium);
  letter-spacing: -0.36px;
  line-height: 1.2;
}
.services__subtitle {
  max-width: 672px;
  color: var(--color-white);
  font-size: var(--fs-base);           /* 16px */
  line-height: 1.5;
}

/* Card grid */
.services__grid {
  /*display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));*/
  display: flex;
  gap: 32px;
  width: 100%;
  /*max-width: 1120px;*/
  margin: 0;
  padding: 0;
  list-style: none;
  /*align-items: center;*/
  justify-content: space-between;
}

/* Service card â€” default glass; reveals the featured look on hover */
.service-card {
  position: relative;
  display: flex;
  border-radius: var(--radius-xl);     /* 16px */
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  width: 100%;
}
/* Shared photo background for every card â€” fades in on hover, behind the gradient */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("../images/service-card-internal-audit.png") center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }

/* Green gradient overlay for every card â€” hidden until hover */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(114, 176, 67, 0), var(--color-green-deep));  /* â†’ #304a1c */
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 32px;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);     /* 12px */
  background: rgba(255, 255, 255, 0.1);
}
.service-card__icon img {
  width: auto;
  height: auto;
  max-width: 24px;
  max-height: 25px;
  object-fit: contain;
}
.service-card__title {
  margin-top: 8px;
  color: var(--color-white);
  font-size: var(--fs-xl);             /* 24px */
  font-weight: var(--fw-medium);
  line-height: 1.3;
}
.service-card__text {
  color: var(--color-white);
  font-size: var(--fs-base);           /* 16px */
  line-height: 1.5;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--color-white);
  font-size: var(--fs-sm);             /* 14px */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: gap 0.15s ease;
}
.service-card__link img { width: 16px; height: 16px; }
.service-card__link:hover { gap: 12px; }


/* --------------------------------------------------------------------------
   21. Feature Rows Section â€” alternating service detail (Figma node 2-443)
   -------------------------------------------------------------------------- */
.features {
  background: var(--color-white);
  padding-block: 80px;
}
.features__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* One alternating row */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.feature-row--reverse { flex-direction: row-reverse; }

/* Image card */
.feature-row__media {
  position: relative;
  flex: 0 1 598px;
  max-width: 598px;
  aspect-ratio: 598 / 660;
  border-radius: var(--radius-xl);     /* 16px */
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease;
}
.feature-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Brand-blue tint that fades in on hover */
.feature-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 93, 152, 0) 45%, rgba(0, 93, 152, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.feature-row__media:hover {
  box-shadow: 0 32px 60px -16px rgba(0, 0, 0, 0.32);
}
.feature-row__media:hover img { transform: scale(1.08); }
.feature-row__media:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .feature-row__media img,
  .feature-row__media::after { transition: none; }
  .feature-row__media:hover img { transform: none; }
}

/* Text column */
.feature-row__content {
  flex: 0 1 598px;
  max-width: 598px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.feature-row__heading { width: 100%; }
.feature-row__title {
  color: var(--color-heading);
  line-height: 1.25;
}
.feature-row__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--color-heading);
  font-size: var(--fs-sm);             /* 14px */
  line-height: 1.6;
}
.feature-row__copy p {
    font-size: clamp(0.875rem, 0.7881rem + 0.2421vw, 1rem);
    color: #000;
    line-height: 1.5;
    font-weight: 300;
}
.feature-row__copy ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-row__copy li {
    padding-left: 4px;
    font-size: clamp(0.875rem, 0.7881rem + 0.2421vw, 1rem);
    color: #000;
    font-weight: 300;
}

/* Two-column bullet list (row 1) */
.feature-cols {
  display: flex;
  gap: 23px;
}
.feature-cols ul { flex: 1 1 0; min-width: 0; }

/* CTA pair (reuses .btn--primary / .btn--blue) */
.feature-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 9px;
}

/* --------------------------------------------------------------------------
   22. CTA Banner Section â€” Compliance call-to-action (Figma node 2-572)
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  height: 468px;
  /* the cut-out person overflows above the banner */
  margin-top: 130px;
}
.cta-banner__bgwrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);          /* mirror to match the Figma orientation */
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(201deg, rgba(0, 0, 0, 0) 32%, rgba(114, 176, 67, 0.6) 74%),
    rgba(0, 0, 0, 0.45);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Text block */
.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  max-width: 575px;
}
.cta-banner__title {
  color: var(--color-offwhite);          /* #f2f5fa */
  font-size: var(--fs-3xl);              /* 36px */
  font-weight: var(--fw-medium);
  line-height: 1.2;
  text-transform: capitalize;
}
.cta-banner__text {
  max-width: 462px;
  color: var(--color-white);
  font-size: var(--fs-base);             /* 16px */
  line-height: 1.4;
}
.cta-banner__phone {
  color: var(--color-offwhite);
  font-size: var(--fs-3xl);              /* 36px â€” the number */
  font-weight: var(--fw-medium);
  line-height: 1.2;
}
.cta-banner__phone-label { font-size: var(--fs-xl); }   /* 24px */
.cta-banner__phone a { color: inherit; }

/* Cut-out person, anchored to the container's right edge, overflowing upward */
.cta-banner__person {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 600px;
  width: auto;
  z-index: 2;
  pointer-events: none;
}
.reqCallNum {
    position: relative;
    z-index: 3;
    font-size: clamp(1rem, 0.3051rem + 1.937vw, 2rem) !important;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
}
.reqCallNum a {
    font-size: clamp(1.125rem, 0.1695rem + 2.6634vw, 2.5rem) !important;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 1px #fff;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.reqCallNum a span {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    -webkit-text-stroke: 0.0938rem var(--primary-color);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.reqCallNum a:hover {
    color: #fff;
    -webkit-text-fill-color:#76af461c;
    -webkit-text-stroke: 1px #fff;
}
.reqCallNum a:hover span {
    color: #76af46;
    -webkit-text-fill-color: #005d9814;
    -webkit-text-stroke: 0.0938rem #76af46;
}
.hero{
  position:relative;
  min-height:600px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background: linear-gradient(90deg, rgba(14, 60, 42, .92), #76af46, rgba(0, 0, 0, .25));
}

.hero-content{
  flex:1;
  color:#fff;
}
.hercont {
    position: relative;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(12px);
  border-radius:40px;
  font-size:15px;
  margin-bottom:30px;
}
.tag i{
  color:#ffd54f;
}

.hero-content h3{
  font-size:58px;
  font-weight:700;
  line-height:1.15;
  margin-bottom:25px;
  color: #fff;
}
.hero-content h3 span{
  display:block;
  color: var(--color-body);
}
.hero-content p{
  font-size:20px;
  line-height:1.8;
  max-width:620px;
  margin-bottom:40px;
  color:#ececec;
}
.buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;

}
.btn{
  color: #fff;
  padding: 16px 30px;
  font-weight:600;
  border-radius:50px;
  text-decoration:none;
  transition:.4s;
}

/*.btn:hover{
  transform:translateY(-5px);
  background:#fff;
}*/

.call-btn{
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px 32px;
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(15px);
  border-radius:50px;
  transition:.4s;
}

.call-btn:hover{
  background:#fff;
  color:#000;

}

.call-btn i{
  width:48px;
  height:48px;
  background:#18b46f;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.hero-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.hero-image img{
  max-width:500px;
  width:100%;
  animation:float 4s ease-in-out infinite;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

@keyframes float{
  0%,100%{
  transform:translateY(0px);
  }
  50%{
  transform:translateY(-12px);
}

}

/* Responsive */





/* --------------------------------------------------------------------------
   24. Reach Us Section â€” Get Direction / location aka_contact_from
   -------------------------------------------------------------------------- */
.contactSec__wr {
    position: relative;
    background: #fffcedeb;
    overflow: hidden;
    padding-bottom: 80px;
}

/* World map overlay â€” covers full section */
.contactOverlayBgFigure__wr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    pointer-events: none;
}

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

/* Container */
.container__wr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* White card starts partway down â€” top transparent, card below */
.contactBlockWrap__wr {
    background: rgb(255 255 238 / 80%);
    border-radius: 28px;
    padding: 60px 70px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 80px; /* controls how much transparent space shows above */
}

/* LEFT column */
.contactContentBlock__wr {
    padding-right: 30px;
}

.contactContentTitle__wr {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

/* Contact list */
.contactListGroup__wr {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contactListGroup__wr li {
    position: relative;
    padding-left: 65px;
}

.contactListGroup__wr li + li {
    margin-top: 30px;
}

.contactListGroup__wr .icon__wr {
    position: absolute;
    left: 0;
    top: 2px;
    width: 44px;
    height: 44px;
}

.contactListGroup__wr .labelTitle__wr {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.contactListGroup__wr p {
    font-size: 15px;
    color: #000;
    margin: 0;
}

.contactListGroup__wr a {
    color: inherit;
    text-decoration: none;
}

.contactListGroup__wr a:hover {
    color: #d39b00;
}

/* RIGHT: Form */
.contactFromBlockTitle__wr {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.contactFromBlock__wr .form-control {
    height: 58px;
    border: none;
    background: #f3f3f3;
    border-radius: 40px;
    padding: 0 22px;
    font-size: 15px;
    color: #333;
}

.contactFromBlock__wr textarea.form-control {
    height: 100px;
    border-radius: 20px;
    padding-top: 16px;
}

.contactFromBlock__wr .form-group {
    margin-bottom: 16px;
}

/* Button */
.primayBtn__wr {
    min-width: 240px;
    height: 56px;
    border-radius: 50px;
    background: #d39b00;
    border: none;
    cursor: pointer;
}

.primayBtn__wr .labelText__wr {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 991px) {
    .contactBlockWrap__wr {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .contactContentBlock__wr {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contactFromBlockTitle__wr {
        font-size: 20px;
        text-align: center;
    }

    /* stack form inputs to full width on mobile */
    .contactFromBlock__wr .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   25. Scroll reveals (AOS-style) â€” animates individual elements on scroll.
   Engine in app.js toggles .aos-in. GPU-friendly: only opacity + transform.
   -------------------------------------------------------------------------- */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-aos="fade-up"]    { transform: translate3d(0, 36px, 0); }
[data-aos="fade-down"]  { transform: translate3d(0, -36px, 0); }
[data-aos="fade-right"] { transform: translate3d(-48px, 0, 0); }
[data-aos="fade-left"]  { transform: translate3d(48px, 0, 0); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos="zoom-in-up"] { transform: translate3d(0, 36px, 0) scale(0.92); }
[data-aos="flip-up"]    { transform: perspective(800px) rotateX(-14deg) translate3d(0, 28px, 0); transform-origin: bottom; }
/* fade (no value-specific transform) just fades opacity */

[data-aos].aos-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
[data-aos="flip-up"].aos-in {
  transform: perspective(800px) rotateX(0) translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos],
  [data-aos].aos-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   26. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .navbar { flex-wrap: wrap; gap: 16px; }
  .navbar__links { order: 3; width: 100%; justify-content: center; gap: 20px; }

  /* Hero stacks: content above, form below */
  .hero__inner { flex-direction: column; align-items: stretch; gap: 32px; }
  .hero__content { align-items: flex-start; }
  .hero__form-wrap { justify-content: stretch; }
  .hero-form { width: 100%; }

  /* Stats: 2 columns */
  .stats__row { grid-template-columns: repeat(2, 1fr); }

  /* About: stack, center the collage */
  .about__inner { flex-direction: column; align-items: stretch; gap: 40px; }
  .about__content { flex-basis: auto; max-width: none; }
  .about__media { width: 100%; max-width: 548px; margin-inline: auto; }

  /* Expertise: center the card */
  .expertise { min-height: 0; }
  .expertise__inner { justify-content: center; }
  .expertise__card { width: 600px; }

  /* Services: 2-column grid */
  .services { padding-block: 80px; }
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; }

  /* Feature rows: stack image above text */
  .feature-row,
  .feature-row--reverse { flex-direction: column; align-items: stretch; gap: 28px; }
  .feature-row__media { flex: 0 0 auto; width: 100%; max-width: 460px; margin-inline: auto; }
  .feature-row__content { flex: 0 0 auto; max-width: none; }

  /* CTA banner: smaller person, tighter heading */
  .cta-banner__person { height: 520px; }
  .cta-banner__title { font-size: 1.9rem; }
  .cta-banner__content { max-width: 52%; }


  /* Founder: tighter cards, a little less overlap */
  .founder__cards { gap: 16px; margin-top: -180px; }
  .founder-card { padding: 22px; gap: 14px; }
  .founder-card__title,
  .founder__ifrs-title { font-size: var(--fs-lg); }   /* 20px */
}

@media (max-width: 768px) {
  a.navbar__link.discount {
    display: block;
  }
  .discount__text {
    padding: 12px 16px 12px 16px;
  }
  :root { --container-pad: 20px; }
  .section { padding-block: var(--space-12); }
  .heading-xl { font-size: 1.6rem; }
  .heading-lg { font-size: 1.6rem; }

  .hero { padding-block: 40px; }
  .hero__title { font-size: 1.6rem; }
  .hero-form__row { flex-direction: column; }
  .hero-form__body { padding: 24px; }

  .stats { padding-block: 32px; }
  .stats__banner { padding: 32px 20px; }
  .stats__row { gap: 28px 16px; }
  .stat__number { font-size: 2.25rem; }   /* 36px on mobile */
  .stat__icon { margin-bottom: 12px; }

  .about { padding-block: var(--space-12);padding-bottom: 100px; }
  .about__title { font-size: 1.6rem; }

  .expertise__list { grid-template-columns: 1fr; }
  .expertise__card { padding: 20px; }

  .brands__inner { gap: 28px; padding-block: 36px; }
  .brands__title { font-size: 1.4rem; }
  .brands__logo { margin-right: 36px; }
  .brands__logo img { width: 120px; height: 34px; }

  /* Reach Us: stack map above contact cards */
  .reach__body { flex-direction: column; gap: 28px; }
  .reach__map { flex: 0 0 auto; width: 100%; max-width: 520px; }
  .reach__cards { width: 100%; max-width: 420px; }
  .reach-card__detail { font-size: 0.7rem; }

  /* Reviews: narrower cards, stacked summary */
  .review-card { width: 280px; }
  .reviews__summary { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews__cta { align-self: stretch; text-align: center; }
  .reviews__title { font-size: 1.25rem; }

  /* CTA banner: stack text above the person */
  .cta-banner { height: auto; margin-top: 0; }
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-block: 40px;
  }
  .cta-banner__content { max-width: none; }
  .cta-banner__title { font-size: 1.6rem; }
  .cta-banner__phone { font-size: 1.5rem; }
  .cta-banner__phone-label { font-size: 1.1rem; }
  .cta-banner__person {
      position: relative;
      height: auto;
      width: 100%;
      max-width: 100%;
      align-self: center;
      bottom: -40px;
  }

  

  /* Feature rows: tighter spacing, single-column bullets */
  .features { padding-block: 48px; }
  .features__inner { gap: 48px; }
  .feature-cols { flex-direction: column; gap: 6px; }
  .feature-row__media { max-width: 100%; }

  /* Services: single column */
  .services { padding-block: 56px; }
  .services__inner { gap: 40px; }
  .services__title { font-size: 1.6rem; }
  .services__grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; }
  .service-card__body { padding: 24px; }

  /* Software: stack heading above the marquee */
  .software { padding-block: 32px; }
  .software__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .software__marquee { flex: 0 0 auto; width: 100%; }
  .software__title { font-size: 1.4rem; white-space: normal; }

  /* Founder: stack cards below the photo (no overlap) */
  .founder__intro { padding-block: 40px 32px; }
  .founder__feature { height: 240px; }
  .founder__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .founder-card--raised { margin-top: 0; }
  .founder__ifrs {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
  }
  .founder__ifrs-text { text-align: left; flex-basis: auto; }

  .topbar__tags { display: none; }
  .navbar { padding-block: 12px; }
  .navbar__links { gap: 14px; font-size: 0.9rem; }

  .footer-contact { padding-block: 24px; }
  .footer-contact__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-contact__details { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-contact__item { white-space: normal; }

  .footer-legal { padding-block: 20px; }
  .footer-legal__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal__links { flex-wrap: wrap; justify-content: flex-start; gap: 12px 16px; }
}

.hov-shadow-img:hover img {
    filter: drop-shadow(0px 0px 10px rgba(0 0 0 / 50%));
}
.has-transition {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}


.error-msg{color:red;}




