/*About Us Page */

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

:root {
  --primary: #0059b3;
  --secondary: #130d0636;
  --accent: #00c600;
  --bg: #f7fafd;
  --footer-bg: linear-gradient(90deg, #0059b3 0%, #00c6a7 100%);
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --h-accent: #d99229; /* Logo color */
  --h-bg: #e4e4e4;
  --h-surface: #ffffff;
  --h-elev: #ffffff;
  --h-text: #000000;
  --h-muted: rgb(44, 44, 44);
  --h-border: #262a36;
  --h-ok: #3ddc97;
  --h-warn: #ffd166;
}

.ab-header {
  background: #fff;
  color: #222;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.ab-section,
.ab-hero {
  padding-top: 110px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

nav a {
  color: black;
  text-decoration: none;
  font-size: 19px;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  position: relative;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
nav a[aria-label="Invest Now"] {
  background: var(--h-accent);
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 22px;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(67, 206, 162, 0.1);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
nav a[aria-label="Invest Now"]:hover,
nav a[aria-label="Invest Now"]:focus {
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, text-shadow 0.2s;
}

nav a:hover {
  font-weight: 700; /* Make text bold */
  font-size: 1.25rem; /* Make text larger */
  color: #d32f2f; /* Unique, beautiful color (red accent) */
  letter-spacing: 1px; /* Slight spacing for elegance */
  text-shadow: 0 2px 8px rgba(211, 47, 47, 0.08); /* Soft shadow for beauty */
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, text-shadow 0.2s;
}

/* Home link hover orange */
nav a.active:hover {
  color: #ff9800;
  text-shadow: 0 2px 8px rgba(255, 152, 0, 0.12);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  background: none;
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, text-shadow 0.2s;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
  margin-top: 20px;
}
.hamburger span {
  height: 3px;
  width: 28px;
  background: #000000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Footer */

footer {
  background: #f4f4f4;
  padding: 2rem 1rem;
  color: #333;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact,
.footer-address,
.footer-social {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-contact h3,
.footer-address h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #d32f2f;
}

.footer-contact p,
.footer-address p,
.footer-social a {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
  text-decoration: none;
}

.footer-contact p i,
.footer-address p i,
.footer-social a i {
  margin-right: 0.5rem;
}

.footer-contact p i {
  color: #4caf50; /* Green for phone icons */
}

.footer-address p i {
  color: #2196f3; /* Blue for address icon */
}

.footer-social a i {
  color: #4267b2; /* Facebook blue */
}

.footer-contact p a {
  color: #577996; /* Email link color */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: #3d5e79; /* Darker red on hover */
}

.footer-social a {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 0.5rem;
  transition: color 0.3s ease;
  color: #577996;
}

.footer-social a:hover {
  color: #3d5e79;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .lang-toggle {
    margin-left: 0;
    margin-top: 0.7rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-contact,
  .footer-address,
  .footer-social {
    min-width: 100%;
    flex: 1 1 100px;
  }

  .footer-social {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    margin-top: 1rem;
  }
}

/* --------------------------------------------------------------
      CORE THEME TOKENS (ab-… variables)
    -------------------------------------------------------------- */
:root {
  /* palette */
  --ab-surface: #f7f8fa;
  --ab-text: #121417;
  --ab-muted: #5f6b7a;
  --ab-accent: #d99229; 
  --ab-accent-2: #1f2937;
  --ab-gold: #b08d57;
  --ab-cta: #d99229;
  --ab-danger: #ef4444;
  --ab-success: #16a34a;
  --ab-warning: #f59e0b;

  /* fx */
  --ab-radius-sm: 10px;
  --ab-radius-md: 16px;
  --ab-radius-lg: 28px;
  --ab-radius-pill: 999px;
  --ab-shadow-sm: 0 6px 14px rgba(0, 0, 0, 0.08);
  --ab-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
  --ab-shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.18);
  --ab-blur: saturate(160%) blur(6px);

  /* typography scale */
  --ab-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --ab-h1: clamp(2.4rem, 2.5vw + 1.8rem, 4.2rem);
  --ab-h2: clamp(1.8rem, 1.5vw + 1.2rem, 2.6rem);
  --ab-h3: clamp(1.2rem, 0.9vw + 0.9rem, 1.6rem);
  --ab-body: clamp(1rem, 0.35vw + 0.9rem, 1.125rem);
  --ab-small: 0.92rem;

  /* layout */
  --ab-max: 1200px;
  --ab-pad: clamp(16px, 2vw, 32px);
  --ab-gutter: clamp(16px, 2vw, 28px);
  --ab-gap: clamp(16px, 2vw, 28px);

  /* motion */
  --ab-ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --ab-slow: 780ms var(--ab-ease);
  --ab-med: 480ms var(--ab-ease);
  --ab-fast: 240ms var(--ab-ease);

  /* overlays */
  --ab-overlay-dark: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.35) 25%,
    rgba(0, 0, 0, 0.35) 100%
  );
  --ab-overlay-light: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (prefers-color-scheme: dark) {
  :root {
    --ab-bg: #0b0f13;
    --ab-surface: #0f141a;
    --ab-elev: #121821;
    --ab-text: #eef2f6;
    --ab-muted: #90a0b5;
    --ab-accent: #16b0a5;
    --ab-accent-2: #e5e7eb;
    --ab-gold: #d2b48c;
    --ab-cta: #38bdf8;
    --ab-shadow-sm: 0 6px 14px rgba(0, 0, 0, 0.35);
    --ab-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.45);
    --ab-shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.55);
  }
}

/* --------------------------------------------------------------
      RESET & BASE
    -------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--ab-font);
  font-size: var(--ab-body);
  color: var(--ab-text);
  background: radial-gradient(
      1600px 900px at 10% -10%,
      rgba(14, 165, 233, 0.06),
      transparent 42%
    ),
    radial-gradient(
      1200px 700px at 110% -20%,
      rgba(22, 176, 165, 0.08),
      transparent 50%
    ),
    var(--ab-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
.ab-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* --------------------------------------------------------------
      UTILITY CLASSES (spacing, layout, text)
    -------------------------------------------------------------- */
.ab-container {
  max-width: var(--ab-max);
  margin-inline: auto;
  padding-inline: var(--ab-pad);
}
.ab-section {
  padding-block: clamp(48px, 5vw, 100px);
}
.ab-grid {
  display: grid;
  gap: var(--ab-gap);
}
.ab-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ab-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ab-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: flex;
  justify-content: center;
  gap: 12.5rem;

}
.ab-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ab-gap);
}
.ab-center {
  display: grid;
  place-items: center;
}
.ab-row {
  display: flex;
  gap: var(--ab-gap);
  align-items: center;
}
.ab-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--ab-gap);
}
.ab-text-center {
  text-align: center;
}
.ab-muted {
  color: var(--ab-muted);
}
.ab-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--ab-accent);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ab-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .ab-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .ab-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .ab-between {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------
      BUTTONS & CHIPS
    -------------------------------------------------------------- */
.ab-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: var(--ab-radius-pill);
  padding: 12px 18px;
  transition: transform var(--ab-fast), box-shadow var(--ab-fast),
    background var(--ab-fast);
}
.ab-btn:active {
  transform: translateY(1px);
}
.ab-btn-primary {
  background: linear-gradient(180deg, #d99229);
  color: #fff;
  box-shadow: var(--ab-shadow-sm);
}
.ab-btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: var(--ab-shadow-md);
}
.ab-btn-ghost {
  background: transparent;
  color: var(--ab-text);
  border: 1px solid rgba(100, 116, 139, 0.35);
}
.ab-chip {
  background: #d99229;
  color: #fff;
  font-weight: 600;
  padding: 0.35em 1em;
  border-radius: 18px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(24,90,157,0.12);
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
  display: inline-block;
}

/* --------------------------------------------------------------
      CARDS & SURFACES
    -------------------------------------------------------------- */
.ab-card {
  background: var(--ab-elev);
  border-radius: var(--ab-radius-md);
  box-shadow: var(--ab-shadow-sm);
  overflow: clip;
  border: 1px solid rgba(100, 116, 139, 0.12);
}
.ab-card-pad {
  padding: clamp(18px, 2vw, 26px);
}
.ab-card-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--ab-blur);
}

/* --------------------------------------------------------------
      SECTION: HERO (video/image with overlay and scroll cue)
    -------------------------------------------------------------- */
.ab-hero {
  position: relative;
  min-height: 88vh;
  border-radius: 0 0 var(--ab-radius-lg) var(--ab-radius-lg);
  overflow: clip;
  box-shadow: var(--ab-shadow-lg);
}
.ab-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.ab-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}
.ab-hero-inner {
  position: relative;
  padding-block: clamp(60px, 10vw, 160px);
}
.ab-hero-title {
  font-size: var(--ab-h1);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}
.ab-hero-sub {
  font-size: var(--ab-h3);
  color: rgba(255, 255, 255, 0.92);
  max-width: 70ch;
}
.ab-hero-cta {
  margin-top: 24px;
}
.ab-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--ab-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.ab-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
  color: #fff;
  opacity: 0.85;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  gap: 8px;
}
.ab-hero-scroll .ab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: ab-bounce 1.6s var(--ab-ease) infinite;
}
@keyframes ab-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

/* --------------------------------------------------------------
      SECTION HEADERS
    -------------------------------------------------------------- */
.ab-sec-head {
  margin-bottom: clamp(18px, 2vw, 32px);
}
.ab-sec-title {
  font-size: var(--ab-h2);
  letter-spacing: -0.01em;
  margin: 2px 0 8px;
}
.ab-sec-desc {
  max-width: 65ch;
  color: var(--ab-muted);
}

/* --------------------------------------------------------------
      STORY / NARRATIVE (split + large dropcap paragraph)
    -------------------------------------------------------------- */
.ab-story {
  position: relative;
}
.ab-story-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--ab-gutter);
  align-items: center;
}
.ab-story-media {
  aspect-ratio: 4/3;
  background: #dbeafe;
  border-radius: var(--ab-radius-lg);
  overflow: clip;
  box-shadow: var(--ab-shadow-md);
  background-size: cover;
  background-position: center;
}
.ab-story-body p {
  text-wrap: pretty;
}
.ab-dropcap::first-letter {
  float: left;
  font-size: 4.5rem;
  line-height: 0.9;
  padding-right: 0.18em;
  font-weight: 700;
  color: var(--ab-accent);
}
@media (max-width: 980px) {
  .ab-story-wrap {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------
      VALUES GRID (tiles)
    -------------------------------------------------------------- */
.ab-values {
  --tile: clamp(180px, 22vw, 260px);
}
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--tile), 1fr));
  gap: var(--ab-gap);
}
.ab-value {
  position: relative;
  overflow: clip;
  border-radius: var(--ab-radius-md);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6)
  );
  border: 1px solid rgba(100, 116, 139, 0.15);
  box-shadow: var(--ab-shadow-sm);
}
.ab-value.dark {
  background: linear-gradient(
    180deg,
    rgba(18, 24, 33, 0.85),
    rgba(18, 24, 33, 0.7)
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}
.ab-value .ab-value-media {
  height: 160px;
  background: #e2e8f0;
  background-size: cover;
  background-position: center;
  filter: saturate(105%);
}
.ab-value .ab-card-pad {
  position: relative;
}
.ab-value .ab-icon {
  font-size: 1.4rem;
  margin-right: 8px;
  color: var(--ab-gold);
}

/* --------------------------------------------------------------
      STATS BAR (pills)
    -------------------------------------------------------------- */
.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ab-gap);
}
.ab-stat {
  background: var(--ab-elev);
  border-radius: var(--ab-radius-pill);
  padding: 18px 20px;
  border: 1px solid rgba(100, 116, 139, 0.16);
  display: grid;
  place-items: center;
  box-shadow: var(--ab-shadow-sm);
}
.ab-stat strong {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .ab-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .ab-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --------------------------------------------------------------
      TIMELINE (development milestones)
    -------------------------------------------------------------- */
.ab-timeline {
  position: relative;
  margin-top: 8px;
}
.ab-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ab-accent), transparent);
}
.ab-time {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 16px 0;
}
.ab-time .ab-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--ab-accent);
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.12);
  position: absolute;
  left: 17px;
  top: 21px;
}
.ab-time .ab-year {
  font-weight: 700;
  color: var(--ab-accent-2);
}
.ab-time .ab-content {
  background: var(--ab-elev);
  border-radius: var(--ab-radius-md);
  padding: 16px 18px;
  border: 1px solid rgba(100, 116, 139, 0.16);
  box-shadow: var(--ab-shadow-sm);
}

/* --------------------------------------------------------------
      PARALLAX STRIP (image band)
    -------------------------------------------------------------- */
.ab-parallax {
  position: relative;
  height: clamp(260px, 40vw, 460px);
  border-radius: var(--ab-radius-lg);
  overflow: hidden; /* hide any overflow cleanly */
}

.ab-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ab-overlay-dark);
  z-index: 1;
}

.ab-parallax .ab-parallax-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 180%;             /* make it taller so translateY never reveals gray */
  top: -10%;                /* shift up a little for balance */
  filter: blur(2px) brightness(0.92);
  z-index: 0;
}

.ab-parallax .ab-parallax-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--ab-pad);
}


/* --------------------------------------------------------------
      SUSTAINABILITY / COMMITMENT (icon rows)
    -------------------------------------------------------------- */

.ab-commit-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.ab-commit-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(14, 165, 233, 0.25),
      transparent 60%
    ),
    var(--ab-elev);
  border: 1px solid rgba(100, 116, 139, 0.16);
  display: grid;
  place-items: center;
  box-shadow: var(--ab-shadow-sm);
}

/* --------------------------------------------------------------
      INVESTOR (accordion + highlight)
    -------------------------------------------------------------- */
.ab-accordion {
  border-radius: var(--ab-radius-md);
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.16);
  box-shadow: var(--ab-shadow-sm);
}
.ab-acc-item + .ab-acc-item {
  border-top: 1px solid rgba(100, 116, 139, 0.12);
}
.ab-acc-head {
  background: var(--ab-surface);
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ab-acc-title {
  font-weight: 700;
}
.ab-acc-body {
  max-height: 0;
  overflow: hidden;
  background: var(--ab-elev);
  transition: max-height var(--ab-med);
}
.ab-acc-body > div {
  padding: 18px 22px;
}

.ab-invest-highlight {
  background: linear-gradient(
    180deg,
    rgba(16, 185, 129, 0.08),
    rgba(16, 185, 129, 0.02)
  );
  border: 1px dashed rgba(16, 185, 129, 0.35);
  padding: 16px;
  border-radius: var(--ab-radius-md);
}

/* --------------------------------------------------------------
      TEAM CARDS
    -------------------------------------------------------------- */
.ab-person {
  text-align: center;
}
.ab-avatar {
  aspect-ratio: 1;
  border-radius: 24px;
  background: #e2e8f0 center/cover;
  margin-bottom: 12px;
  border: 1px solid rgba(100, 116, 139, 0.16);
  box-shadow: var(--ab-shadow-sm);
  width: 240px;
  height: 240px;
}
.ab-person .ab-role {
  color: var(--ab-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------
      TESTIMONIALS (slider)
    -------------------------------------------------------------- */
.ab-slider {
  position: relative;
  overflow: hidden;
}
.ab-slides {
  display: flex;
  transition: transform var(--ab-slow);
}
.ab-slide {
  min-width: 100%;
  padding: 20px;
}
.ab-quote {
  background: var(--ab-elev);
  border-radius: var(--ab-radius-lg);
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid rgba(100, 116, 139, 0.16);
  box-shadow: var(--ab-shadow-sm);
}
.ab-slider-nav {
  position: absolute;
  inset: auto 12px 12px auto;
  display: flex;
  gap: 8px;
}
.ab-dotnav {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(100, 116, 139, 0.35);
  background: transparent;
  cursor: pointer;
}
.ab-dotnav.ab-active {
  background: var(--ab-accent);
  border-color: var(--ab-accent);
}

/* --------------------------------------------------------------
      PRESS / AWARDS STRIP
    -------------------------------------------------------------- */
.ab-strip {
  display: grid;
  grid-auto-flow: column;
  gap: 40px;
  overflow: auto;
  padding: 10px 6px;
  scrollbar-width: thin;
}
.ab-strip img {
  height: 36px;
  filter: grayscale(1) contrast(1.1) opacity(0.7);
  transition: filter var(--ab-fast);
}
.ab-strip img:hover {
  filter: none;
}

/* --------------------------------------------------------------
      FAQ (accordion reused)
    -------------------------------------------------------------- */

/* --------------------------------------------------------------
      MAP PLACEHOLDER
    -------------------------------------------------------------- */
.ab-map {
  height: clamp(260px, 40vw, 420px);
  border-radius: var(--ab-radius-lg);
  background: repeating-linear-gradient(
    45deg,
    #e5e7eb,
    #e5e7eb 12px,
    #eef2f6 12px,
    #eef2f6 24px
  );
  border: 1px dashed rgba(100, 116, 139, 0.35);
  display: grid;
  place-items: center;
  color: var(--ab-muted);
  box-shadow: var(--ab-shadow-sm);
}

/* --------------------------------------------------------------
      CTA BANNER
    -------------------------------------------------------------- */
.ab-cta {
  position: relative;
  overflow: clip;
  border-radius: var(--ab-radius-lg);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.12),
    rgba(14, 165, 233, 0.12)
  );
  border: 1px solid rgba(100, 116, 139, 0.16);
  box-shadow: var(--ab-shadow-md);
}
.ab-cta-inner {
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  gap: 14px;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
}
.ab-cta-media {
  aspect-ratio: 4/3;
  border-radius: var(--ab-radius-md);
  background: #dbeafe center/cover;
}
@media (max-width: 860px) {
  .ab-cta-inner {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------
      NEWSLETTER
    -------------------------------------------------------------- */
.ab-news {
  background: var(--ab-surface);
  border-radius: var(--ab-radius-lg);
  border: 1px solid rgba(100, 116, 139, 0.16);
  box-shadow: var(--ab-shadow-sm);
}
.ab-news form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.ab-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--ab-radius-pill);
  border: 1px solid rgba(100, 116, 139, 0.3);
  background: var(--ab-elev);
  color: var(--ab-text);
}

/* --------------------------------------------------------------
      PROGRESS BAR + THEME TOGGLE
    -------------------------------------------------------------- */
.ab-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--ab-cta), var(--ab-accent));
  z-index: 9999;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
}
.ab-theme-toggle {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 999;
}

/* --------------------------------------------------------------
      REVEAL ANIMATIONS
    -------------------------------------------------------------- */
.ab-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--ab-med), transform var(--ab-med);
}
.ab-reveal.ab-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .see-more-btn {
    width: 90%; /* Full-width button for smaller screens */
  }
}


.ab-person .ab-role {
  margin-bottom: 1.9rem;
}

.ab-person .ab-btn {
  margin-bottom: 0;
}

/* General mobile container padding */
@media (max-width: 600px) {
  .ab-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .ab-hero,
  .ab-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 90px !important; /* for fixed header */
  }
  .ab-hero-inner,
  .ab-hero-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ab-hero-title {
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
  .ab-hero-sub {
    font-size: 1rem !important;
    line-height: 1.3;
  }
  .ab-hero-badge {
    font-size: 0.98rem !important;
  }
  .ab-grid,
  .ab-grid-2,
  .ab-grid-3,
  .ab-grid-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .ab-person {
    max-width: 98vw !important;
    margin: 0 auto !important;
  }
  .ab-avatar {
    width: 210px !important;
    height: 210px !important;
    margin-bottom: 10px !important;
    display: block;
  margin-left: auto;
  margin-right: auto;
  }
  .ab-card,
  .ab-card-pad {
    padding: 1rem 0.5rem !important;
    margin: 0 !important;
    border-radius: 12px !important;
  }
  .ab-value-media,
  .ab-story-media,
  .ab-parallax-media,
  .ab-cta-media {
    min-height: 160px !important;
    max-width: 100vw !important;
    border-radius: 12px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .ab-sec-title,
  h2,
  h3,
  h4 {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
  }
  .ab-btn,
  .ab-btn-primary {
    font-size: 1rem !important;
    padding: 0.7em 1.2em !important;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.7rem !important;
    text-align: center;
  }
  .footer-container {
    flex-direction: column !important;
    gap: 1.2rem !important;
    padding: 1rem 0.5rem !important;
  }
  .footer-contact,
  .footer-address,
  .footer-social {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-bottom {
    font-size: 0.95rem !important;
    padding: 0.7rem 0 !important;
  }
  .ab-map {
    height: 220px !important;
    min-width: 100vw !important;
  }
  .ab-accordion,
  .ab-acc-item,
  .ab-acc-body {
    width: 100% !important;
    box-sizing: border-box;
  }
}

/* Hamburger menu visible on mobile */
@media (max-width: 768px) {
  .hamburger { 
    display: flex !important;
    position: absolute;
    right: 1rem;
    top: 1 rem;
    z-index: 1000;
}
nav {
    display: none;
    flex-direction: column;
    align-items: flex-end; 
    gap: 1.5rem;
    width: 45%;
    padding: 1rem 1rem 1rem 0;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 6rem;
    right: 0;
  }

  nav.open {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
  }

  nav a {
    padding: 0.5rem 1rem;
  }
  .ab-header { flex-direction: column; align-items: flex-start; padding: 1rem;}
}

html, body {
  max-width: 100vw;
}

