:root {
    --green-dark: #0D5C2E;
    --green-main: #1A7A42;
    --green-mid: #2E9E5B;
    --green-light: #4CC274;
    --green-pale: #E8F5EE;
    --yellow-accent: #C8D42A;
    --yellow-bright: #DCEF2E;
    --sky-blue: #1E88C8;
    --sky-light: #5BB8F5;
    --sky-pale: #E3F4FF;
    --navy: #1e2329;;
    --text-dark: #1A1A2E;
    --text-mid: #3A4A5C;
    --text-light: #6B7A8D;
    --white: #FFFFFF;
    --off-white: #F8FAFB;
    --light-gray: #F0F3F6;
    --border: #D8E2EB;
    --shadow: 0 4px 24px rgba(10,37,64,0.10);
    --shadow-lg: 0 8px 48px rgba(10,37,64,0.16);
    --radius: 8px;
    --radius-lg: 16px;
  }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
  }

/* ── TOPBAR ── */
  .topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
  }

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; }

.topbar a:hover { color: var(--yellow-bright); }

.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }

.topbar-left span { display: flex; align-items: center; gap: 6px; }

.topbar-right a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
  }

.topbar-right a:hover { background: var(--green-main); color: #fff; }

/* ── NAVBAR ── */
  nav {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(10,37,64,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

.nav-logo img {
    height: 112px;
    width: auto;
  }

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
  }

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.3px;
  }

.nav-links a:hover, .nav-links a.active { color: var(--green-main); background: var(--green-pale); }

.nav-links .nav-cta {
    background: var(--green-main);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 24px;
    margin-left: 8px;
  }

.nav-links .nav-cta:hover { background: var(--green-dark) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO / BREADCRUMB ── */
  .page-hero {
    position: relative;
    background: linear-gradient(135deg, #0A2540 0%, #0D5C2E 55%, #1E7A42 100%);
    padding: 64px 0 56px;
    overflow: hidden;
  }

.page-hero-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    mix-blend-mode: luminosity;
    z-index: 0;
  }

.page-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: repeating-linear-gradient(
      45deg,
      transparent, transparent 40px,
      rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px
    );
  }

.page-hero-circles {
    position: absolute;
    right: -160px;
    top: -160px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.15);
    pointer-events: none;
  }

.page-hero-circles::before {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.15);
  }

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }

.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }

.breadcrumb a:hover { color: var(--yellow-bright); }

.breadcrumb i { font-size: 9px; }

.breadcrumb span.current { color: var(--yellow-bright); }

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,212,42,0.15);
    border: 1px solid rgba(196,212,42,0.3);
    border-radius: 24px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--yellow-bright);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

.page-hero h1 {
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 680px;
	font-family:"Open Sans", Arial, sans-serif !important;
  }

.page-hero h1 .accent { color: var(--yellow-bright); }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    max-width: 560px;
  }

/* ── SECTION SHARED ── */
  section { padding: 80px 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--green-main);
    border-radius: 2px;
  }

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }

.section-title .accent { color: var(--green-main); }

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 580px;
  }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    gap: 24px;
    flex-wrap: wrap;
  }

/* ── STORY ── */
  .story { background: var(--white); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

.story-visual { position: relative; }

.story-img-main {
    width: 100%;
    height: 440px;
    background: linear-gradient(135deg, var(--green-pale) 0%, #c8f0da 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

.story-img-main img.story-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.story-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,92,46,0.08), rgba(30,136,200,0.06));
    z-index: 1;
  }

.story-logo-display {
    width: 190px;
    height: 190px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
  }

.story-logo-display img { width: 130px; height: 130px; object-fit: contain; }

.story-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    z-index: 3;
  }

.story-float-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-main);
    font-size: 20px;
    flex-shrink: 0;
  }

.story-float-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
  }

.story-float-label { font-size: 12px; color: var(--text-light); margin-top: 2px; }

.story-content p { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }

.vm-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    border-top: 3px solid var(--green-main);
  }

.vm-card.blue { border-top-color: var(--sky-blue); }

.vm-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

.vm-card h4 i { color: var(--green-main); }

.vm-card.blue h4 i { color: var(--sky-blue); }

.vm-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ── LEADERSHIP ── */
  .leadership { background: var(--off-white); }

.leader-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
  }

.leader-portrait {
    width: 100%;
    height: 340px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

.leader-portrait img.leader-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.leader-portrait i { font-size: 100px; color: rgba(255,255,255,0.15); position: relative; z-index: 0; }

.leader-portrait-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10,37,64,0.55);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 14px 18px;
    z-index: 1;
  }

.leader-portrait-tag h4 { color: var(--white); font-size: 16px; font-weight: 700; }

.leader-portrait-tag span { color: var(--yellow-bright); font-size: 12px; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.5px; }

.leader-text .section-label { margin-bottom: 10px; }

.leader-text h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }

.leader-text p { font-size: 14.5px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }

.leader-highlights { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }

.leader-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--green-dark);
    font-family: 'Montserrat', sans-serif;
  }

.leader-highlight i { color: var(--green-main); }

/* ── TIMELINE (HORIZONTAL / LANDSCAPE) ── */
  .timeline-section { background: var(--white); overflow: hidden; }

.timeline-scroll {
    position: relative;
    margin-top: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 28px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

.timeline-scroll::-webkit-scrollbar { height: 6px; }

.timeline-scroll::-webkit-scrollbar-track { background: var(--light-gray); border-radius: 4px; }

.timeline-scroll::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 4px; }

.timeline-h {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 1fr);
    gap: 8px;
    min-width: 100%;
  }

.timeline-h::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 27px;
    height: 3px;
    background: linear-gradient(90deg, var(--border) 0%, var(--border) 100%);
    border-radius: 3px;
    z-index: 0;
  }

.timeline-h-track {
    position: absolute;
    left: 0;
    top: 27px;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    border-radius: 3px;
    z-index: 1;
    transition: width 0.55s linear;
  }

.timeline-h-item {
    position: relative;
    z-index: 2;
    scroll-snap-align: start;
    padding: 0 12px;
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 0.65s cubic-bezier(.22,.9,.34,1), transform 0.65s cubic-bezier(.22,.9,.34,1);
  }

.timeline-h-item.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

.timeline-h-dot-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
  }

.timeline-h-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--border);
    position: relative;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  }

.timeline-h-item.lit .timeline-h-dot {
    background: var(--green-main);
    border-color: var(--green-main);
    transform: scale(1.15);
    animation: timelinePulse 1.4s ease-out;
  }

@keyframes timelinePulse {
    0%   { box-shadow: 0 0 0 0 rgba(26,122,66,0.45); }
    70%  { box-shadow: 0 0 0 14px rgba(26,122,66,0); }
    100% { box-shadow: 0 0 0 0 rgba(26,122,66,0); }
  }

.timeline-h-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  }

.timeline-h-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-light);
    background: var(--white);
  }

.timeline-h-year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--green-main);
    margin-bottom: 10px;
  }

.timeline-h-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 0; }

.timeline-h-card { display: flex; flex-direction: column; justify-content: center; min-height: 108px; }

.timeline-hint {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }

.timeline-hint i { color: var(--green-main); animation: hintSlide 1.4s ease-in-out infinite; }

@keyframes hintSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }

/* ── FIRST MOVERS ── */
  .firsts { background: var(--off-white); }

.firsts-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
  }

.firsts-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.firsts-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

.firsts-item:hover { border-color: var(--green-light); box-shadow: var(--shadow); }

.firsts-check {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-main);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }

.firsts-item-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; }

.firsts-item-text strong {
    color: var(--green-main);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-right: 2px;
  }

.firsts-sublist {
    margin-top: 10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.firsts-sublist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-light);
  }

.firsts-sublist li i { color: var(--green-main); font-size: 6px; }

.firsts-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
  }

.firsts-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

/* ── VALUES ── */
  .values { background: var(--off-white); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.value-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--green-main);
    margin-bottom: 18px;
  }

.value-card:nth-child(2) .value-icon { background: var(--sky-pale); color: var(--sky-blue); }

.value-card:nth-child(4) .value-icon { background: var(--sky-pale); color: var(--sky-blue); }

.value-card h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.value-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ── STATS ── */
  .stats-section { background: var(--navy); position: relative; overflow: hidden; padding: 0; }

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(26,122,66,0.2));
  }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }

.stat-item { padding: 48px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }

.stat-item:last-child { border-right: none; }

.stat-num { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 800; color: var(--yellow-bright); line-height: 1; margin-bottom: 8px; }

.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

.stat-icon { font-size: 28px; color: rgba(196,212,42,0.3); margin-bottom: 12px; }

/* ── CREDENTIALS ── */
  .credentials { background: var(--white); }

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

.cred-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--off-white);
  }

.cred-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: var(--green-main);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

.cred-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: var(--white);
    z-index: 1;
  }

.cred-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.cred-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0A2540 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
  }

.cta-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    z-index: 0;
  }

.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.1);
    right: -80px; top: -80px;
    z-index: 0;
  }

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

.cta-inner h3 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 8px; }

.cta-inner p { font-size: 14.5px; color: rgba(255,255,255,0.75); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-accent);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

.btn-primary:hover { background: var(--yellow-bright); transform: translateY(-2px); }

/* ── FOOTER ── */
  footer { background: var(--navy); padding: 64px 0 0; color: rgba(255,255,255,0.7); }

.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.5fr 1.5fr; gap: 40px; padding-bottom: 48px; }

.footer-brand img { height: 120px; }

.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 280px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

.footer-social a:hover { background: var(--green-main); color: var(--white); }

.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13.5px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }

.footer-col ul li a:hover { color: var(--yellow-bright); }

.footer-col ul li a i { font-size: 11px; color: var(--green-light); }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13.5px; }

.footer-contact-item i { color: var(--green-light); font-size: 14px; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 12px;
    font-size: 12.5px;
	text-align:center;
  }

.footer-bottom a { color: var(--green-light); text-decoration: none; }

.page-hero-quicklinks {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

.page-hero-quicklink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

.page-hero-quicklink:hover {
    background: rgba(196,212,42,0.15);
    border-color: rgba(196,212,42,0.4);
    color: var(--yellow-bright);
  }

.page-hero-quicklink i { font-size: 12px; }

/* ── QUICK CONTACT CARDS ── */
  .quick-contact { background: var(--white); }

.qc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

.qc-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  }

.qc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; background: var(--white); }

.qc-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--green-main);
    margin-bottom: 18px;
  }

.qc-card:nth-child(2) .qc-icon { background: var(--sky-pale); color: var(--sky-blue); }

.qc-card:nth-child(4) .qc-icon { background: var(--sky-pale); color: var(--sky-blue); }

.qc-card h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.qc-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

.qc-card a.qc-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green-main);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
  }

.qc-card:nth-child(2) a.qc-action, .qc-card:nth-child(4) a.qc-action { color: var(--sky-blue); }

.qc-card a.qc-action i { font-size: 11px; }

/* ── MAIN CONTACT ── */
  .contact-main { background: var(--off-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
    max-width: 760px;
    margin: 0 auto;
  }

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }

.contact-info > p.sub {
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
  }

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
  }

.contact-icon {
    width: 42px; height: 42px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-main);
    font-size: 18px;
    flex-shrink: 0;
  }

.contact-item-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

.contact-item-label { font-weight: 600; color: var(--navy); font-size: 13px; margin-bottom: 2px; }

.office-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 20px;
  }

.office-block h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

.office-block h5 i { font-size: 12px; }

.map-embed {
    margin-top: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

/* ── FAQ ── */
  .faq { background: var(--white); }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
  }

.faq-item {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--navy);
  }

.faq-q i { color: var(--green-main); transition: transform 0.25s; font-size: 14px; flex-shrink: 0; margin-left: 16px; }

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.75;
  }

.faq-item.open .faq-a { max-height: 220px; padding: 0 24px 22px; }

.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.1);
    right: -80px; top: -80px;
  }

h1, h2, h3, h4, h5 {
	font-family:"Open Sans", Arial, sans-serif !important;
  }

h2{
	font-family:"Open Sans", Arial, sans-serif !important;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

.nav-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--green-dark);
    letter-spacing: 0.5px;
  }

.nav-logo-tag {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

.nav-links a:hover { color: var(--green-main); background: var(--green-pale); }

/* ── HERO (VIDEO BACKGROUND) ── */
  .hero {
    position: relative;
    min-height: 88vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
  }

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.82) 0%, rgba(13,92,46,0.72) 55%, rgba(10,37,64,0.65) 100%);
    z-index: 1;
  }

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: repeating-linear-gradient(
      45deg,
      transparent, transparent 40px,
      rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px
    );
    z-index: 1;
  }

.hero-circles {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.15);
    pointer-events: none;
    z-index: 1;
  }

.hero-circles::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.15);
  }

.hero-circles::after {
    content: '';
    position: absolute;
    inset: 120px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.12);
  }

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
    width: 100%;
  }

.hero-left { max-width: 640px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,212,42,0.15);
    border: 1px solid rgba(196,212,42,0.3);
    border-radius: 24px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--yellow-bright);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

.hero-badge i { font-size: 12px; }

.hero-h1 {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
	/*font-family:'Playfair Display', Georgia, serif; */
	font-family:"Open Sans", Arial, sans-serif !important
  }

.hero-h1 .accent { color: var(--yellow-bright); }

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
  }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-main);
    color: var(--white);
    padding: 14px 28px;

    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
  }

.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 32px;
    border: 1.5px solid rgba(255,255,255,0.4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }

.hero-stat-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--yellow-bright);
    line-height: 1;
  }

.hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    letter-spacing: 0.5px;
  }

/* Sub-domain quick links */
  .hero-sublinks {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

.hero-sublinks-label {
    font-size: 11px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 4px;
  }

.hero-sublink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 16px;
    background: var(--green-pale);
    border: 1px solid rgba(26,122,66,0.2);
    color: var(--green-dark);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

.hero-sublink:hover {
    background: var(--green-main);
    border-color: var(--green-main);
    color: var(--white);
  }

.hero-sublink i { font-size: 11px; }

.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  }

.hero-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--green-light); }

.hero-card:first-child { grid-column: span 2; }

.hero-card-icon {
    width: 44px;
    height: 44px;
    background: var(--green-main);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
    color: var(--white);
  }

.hero-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

.hero-card p {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6;
  }

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--yellow-accent);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
  }

/* Membrane diagram mini */
  .membrane-diagram {
    margin-top: 10px;
    background: var(--green-pale);
    border: 1px solid rgba(26,122,66,0.18);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-mid);
  }

.membrane-diagram .mem-box {
    background: var(--white);
    border: 1px solid rgba(26,122,66,0.3);
    border-radius: 6px;
    padding: 5px 10px;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 10px;
    white-space: nowrap;
  }

.membrane-diagram .mem-arrow {
    color: var(--text-light);
    font-size: 13px;
  }

.membrane-diagram .mem-outputs {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

.membrane-diagram .mem-out-co2 { color: #C24A4A; font-size: 10px; font-weight: 600; }

.membrane-diagram .mem-out-ch4 { color: var(--green-dark); font-size: 10px; font-weight: 600; }

/* ── MARQUEE STRIP ── */
  .strip {
    background: var(--green-main);
    padding: 14px 0;
    overflow: hidden;
  }

.strip-track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content;
  }

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

.strip-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--yellow-bright);
  }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT ── */
  .about { background: var(--off-white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

.about-visual {
    position: relative;
  }

.about-img-main {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--green-pale) 0%, #c8f0da 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

.about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,92,46,0.08), rgba(30,136,200,0.06));
    z-index: 1;
  }

.about-img-main img.about-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.about-logo-display {
    width: 130px;
    height: 130px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
  }

.about-logo-display img { width: 140px; height: 140px; object-fit: contain; }

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    z-index: 3;
  }

.about-float-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-main);
    font-size: 20px;
    flex-shrink: 0;
  }

.about-float-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
  }

.about-float-label { font-size: 12px; color: var(--text-light); margin-top: 2px; }

.about-content {}

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.vm-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    border-top: 3px solid var(--green-main);
  }

.vm-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ── SOLUTIONS ── */
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

.sol-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
  }

.sol-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green-main);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.sol-card:hover::before { transform: scaleX(1); }

.sol-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--green-main);
    margin-bottom: 20px;
  }

.sol-card.sky .sol-icon { background: var(--sky-pale); color: var(--sky-blue); }

.sol-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }

.sol-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
  }

.sol-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }

.sol-link i { font-size: 12px; transition: transform 0.2s; }

.sol-link:hover i { transform: translateX(4px); }

/* ── STATS ── */
  .stats-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

/* ── PROJECTS (LOCATION SPREAD) ── */
  .projects { background: var(--off-white); }

.projects-map-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
  }

.loc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

.loc-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
    cursor: default;
  }

.loc-card:hover, .loc-card.is-hover { border-color: var(--green-light); box-shadow: var(--shadow); transform: translateY(-2px); background: var(--green-pale); }

.loc-card.is-ongoing:hover, .loc-card.is-ongoing.is-hover { background: var(--sky-pale); border-color: var(--sky-light); }

.loc-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

.loc-count {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

.loc-card.is-ongoing .loc-count { background: var(--sky-pale); color: var(--sky-blue); }

.loc-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
  }

.loc-name i { font-size: 11px; color: var(--green-main); }

.loc-status {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--green-main);
    color: var(--white);
    white-space: nowrap;
  }

.loc-card.is-ongoing .loc-status { background: var(--sky-blue); }

/* ── PROJECTS INDIA MAP ── */
  .india-map-panel {
    position: sticky;
    top: 100px;
    background: linear-gradient(160deg, var(--navy) 0%, #123a24 100%);
    padding: 28px;
    min-height: 560px;
    overflow: hidden;
  }

.india-map-panel::before {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.12);
    right: -140px; top: -120px;
	  position: relative;
  }

.india-map-panel::after {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(76,194,116,0.15);
    left: -100px; bottom: -100px;
	  position: relative;
  }

.india-map-stage {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 611.9 / 695.7;
    z-index: 1;
  }

.india-map-svg { width: 100%; height: 100%; display: block; overflow: visible; }

.india-map-svg path {
    fill: rgba(255,255,255,0.06);
    stroke: rgba(255,255,255,0.55);
    stroke-width: 1.3;
    stroke-linejoin: round;
    stroke-linecap: round;
    transition: fill 0.2s;
  }

.india-map-svg path:hover { fill: rgba(76,194,116,0.35); }

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

.map-marker-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px rgba(76,194,116,0.35);
    cursor: pointer;
    position: relative;
  }

.map-marker.is-ongoing .map-marker-dot {
    background: var(--sky-light);
    box-shadow: 0 0 0 3px rgba(91,184,245,0.35);
  }

.map-marker.is-active .map-marker-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--green-light);
    animation: mapPulse 1.8s ease-out infinite;
  }

.map-marker.is-ongoing.is-active .map-marker-dot::after { border-color: var(--sky-light); }

@keyframes mapPulse {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
  }

.map-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 6px);
    background: var(--white);
    color: var(--navy);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 140px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 5;
  }

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--white);
  }

.map-tooltip-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
  }

.map-tooltip-name i { color: var(--green-main); font-size: 10px; }

.map-marker.is-ongoing .map-tooltip-name i { color: var(--sky-blue); }

.map-tooltip-meta {
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
  }

.map-tooltip-meta::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green-main);
  }

.map-marker.is-ongoing .map-tooltip-meta::before { background: var(--sky-blue); }

.map-marker:hover .map-tooltip,
  .map-marker.is-active-hover .map-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
  }

.map-panel-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
  }

.map-panel-badge i { color: var(--yellow-bright); }

.map-legend {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 22px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
  }

.map-legend span { display: flex; align-items: center; gap: 6px; }

.map-legend-dot { width: 8px; height: 8px; border-radius: 50%; }

.map-legend-dot.active { background: var(--green-light); }

.map-legend-dot.ongoing { background: var(--sky-light); }

/* ── WHY US ── */
  .why-us { background: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--border);
    transition: background 0.2s, border-color 0.2s;
  }

.why-card:hover { background: var(--green-pale); border-color: var(--green-light); }

.why-icon {
    width: 64px; height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--green-main);
    box-shadow: 0 2px 12px rgba(26,122,66,0.15);
  }

.why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ── AUTOMATION BANNER ── */
  .auto-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0A2540 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

.auto-banner::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.1);
    right: -100px; top: -100px;
  }

.auto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

.auto-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

.auto-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.8);
  }

.auto-feat i { color: var(--yellow-bright); font-size: 14px; }

.auto-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
  }

.auto-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.auto-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0.15), rgba(10,37,64,0.65));
    z-index: 1;
  }

.auto-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 2;
    padding: 24px;
  }

.auto-metric {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(4px);
  }

.auto-metric i { font-size: 28px; color: var(--yellow-bright); margin-bottom: 10px; display: block; }

.auto-metric-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

.auto-metric-label { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── CONTACT ── */
  .contact { background: var(--off-white); }

.contact-grid {
    display: grid;
    /* grid-template-columns: 1fr 1.4fr; */
    gap: 48px;
    align-items: start;
  }

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
  }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
  }

.form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }

.form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--green-main); }

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--green-main);
    color: var(--white);
    border: none;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }

.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
	display: flex; 
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
	text-align: center;
  }

/* ── TESTIMONIAL / CASE HIGHLIGHT ── */
  .highlight {
    background: linear-gradient(135deg, var(--green-dark) 0%, #0A2540 100%);
    position: relative;
    overflow: hidden;
  }

.highlight::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196,212,42,0.1);
    right: -100px; top: -100px;
  }

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

.highlight-quote-icon { font-size: 40px; color: var(--yellow-bright); opacity: 0.5; margin-bottom: 16px; }

.highlight-text {
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 24px;
  }

.highlight-attr { display: flex; align-items: center; gap: 12px; }

.highlight-attr-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow-bright);
    font-size: 18px;
  }

.highlight-attr-name { color: var(--white); font-weight: 700; font-size: 14px; }

.highlight-attr-role { color: rgba(255,255,255,0.6); font-size: 12.5px; }

.highlight-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.highlight-metric {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
  }

.highlight-metric i { font-size: 26px; color: var(--yellow-bright); margin-bottom: 10px; display: block; }

.highlight-metric-val { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }

.highlight-metric-label { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── FILTERS ── */
  .projects { background: var(--off-white); }

.projects-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

.tab-btn {
    padding: 8px 20px;
    border-radius: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
  }

.tab-btn.active { background: var(--green-main); color: var(--white); border-color: var(--green-main); }

.tab-btn:hover:not(.active) { border-color: var(--green-main); color: var(--green-main); }

.projects-count {
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
  }

.projects-count strong { color: var(--navy); }

/* ── PROJECT CARDS ── */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

.proj-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }

.proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.proj-img {
    height: 180px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
  }

.proj-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.5), transparent);
  }

.proj-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.proj-img i { position: relative; z-index: 0; }

.proj-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
  }

.proj-body { padding: 20px; }

.proj-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.4;
  }

.proj-body p { font-size: 13px; color: var(--text-light); line-height: 1.65; min-height: 42px; }

.proj-meta {
    display: flex;
    gap: 16px;
   /* margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);*/
    flex-wrap: wrap;
  }

.proj-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
  }

.proj-meta i { color: var(--green-main); font-size: 12px; }

.proj-card[data-status="ongoing"] .proj-tag { background: rgba(220,239,46,0.25); border-color: rgba(220,239,46,0.4); }

.proj-card[data-status="om"] .proj-tag { background: rgba(30,136,200,0.3); }

.proj-card[data-status="completed"] .proj-tag { background: rgba(76,194,116,0.3); }

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 14px;
  }

.no-results i { font-size: 32px; color: var(--border); margin-bottom: 14px; display: block; }

/* ── SECTORS SERVED ── */
  .sectors { background: var(--white); }

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 44px;
  }

.sector-chip {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  }

.sector-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; background: var(--off-white); }

.sector-chip i { font-size: 22px; color: var(--green-main); margin-bottom: 10px; display: block; }

.sector-chip span { font-size: 12.5px; font-weight: 700; color: var(--navy); font-family: 'Montserrat', sans-serif; line-height: 1.4; display: block; }

/* ── CTA BANNER ── */
  .cta-banner {
    background: var(--off-white);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
  }

.cta-inner h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }

.cta-inner p { font-size: 14.5px; color: var(--text-light); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-main);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
	text-align:Center;
  }

/* ── SERVICES OVERVIEW STRIP ── */
  .overview { background: var(--white); }

.overview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 44px;
  }

.overview-chip {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    display: block;
  }

.overview-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; background: var(--white); }

.overview-chip i { font-size: 22px; color: var(--green-main); margin-bottom: 10px; display: block; }

.overview-chip span { font-size: 12.5px; font-weight: 700; color: var(--navy); font-family: 'Montserrat', sans-serif; line-height: 1.4; display: block; }

/* ── SERVICE BLOCKS ── */
  .service-block { background: var(--white); }

.service-block.alt { background: var(--off-white); }

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

.service-grid.reverse .service-visual { order: 2; }

.service-grid.reverse .service-content { order: 1; }

.service-visual { position: relative; }

.service-photo {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green-pale) 0%, #c8f0da 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
  }

.service-photo.blue-tone { background: linear-gradient(135deg, var(--sky-pale) 0%, #cdeaff 100%); }

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }

.service-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0) 40%, rgba(10,37,64,0.65) 100%);
  }

.service-photo-icon {
    position: relative;
    z-index: 1;
    width: 84px; height: 84px;
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    color: var(--green-main);
    box-shadow: var(--shadow-lg);
  }

.service-photo.blue-tone .service-photo-icon { color: var(--sky-blue); }

.service-photo-tag {
    position: absolute;
    left: 20px; bottom: 20px;
    z-index: 1;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

.service-num {
    position: absolute;
    top: -18px; left: -14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    -webkit-text-stroke: 2px var(--border);
    z-index: 2;
    line-height: 1;
    pointer-events: none;
  }

.service-content p.lead { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }

.service-features { list-style: none; display: grid; gap: 12px; }

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
  }

.service-features li i {
    color: var(--green-main);
    background: var(--green-pale);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
  }

.service-grid.blue-accent .service-features li i { color: var(--sky-blue); background: var(--sky-pale); }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: var(--green-main);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.3px;
  }

.service-link i { font-size: 12px; transition: transform 0.2s; }

.service-link:hover i { transform: translateX(4px); }

/* ── PROCESS ── */
  .process { background: var(--navy); position: relative; overflow: hidden; }

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(26,122,66,0.2));
  }

.process .section-label { color: var(--yellow-bright); }

.process .section-label::before { background: var(--yellow-bright); }

.process .section-title { color: var(--white); }

.process .section-title .accent { color: var(--yellow-bright); }

.process .section-desc { color: rgba(255,255,255,0.65); }

.process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

.process-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 26px 18px;
    text-align: center;
    position: relative;
  }

.process-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--yellow-accent);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }

.process-step h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 8px; }

.process-step p { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.6; }

/* ── WHY US ── */
  .why-us { background: var(--off-white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.why-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--green-main);
    margin-bottom: 18px;
  }

.why-card:nth-child(2) .why-icon { background: var(--sky-pale); color: var(--sky-blue); }

.why-card:nth-child(4) .why-icon { background: var(--sky-pale); color: var(--sky-blue); }

.why-card h4 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

.nav-links a.active.nav-cta { background: var(--green-dark) !important; }

/* ── PAGE HERO ── */
  .page-hero {
    position: relative;
    background: linear-gradient(135deg, #0A2540 0%, #0D5C2E 55%, #1E7A42 100%);
    padding: 64px 0 56px;
    overflow: hidden;
  }

.page-hero-trust {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

.page-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }

.page-hero-trust-item i { color: var(--yellow-bright); font-size: 15px; }

/* ── MAIN: FORM + SIDEBAR ── */
  .consult { background: var(--off-white); }

/* Simplified centered form */
  .expert-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--green-main);
    color: var(--white);
    border: none;
    border-radius: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    margin-top: 10px;
  }

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    color: var(--green-dark);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 22px;
  }

.form-success i { font-size: 16px; }


/* ── Responsive ── */

@media (max-width: 900px) {
  .timeline-h { grid-auto-columns: minmax(200px, 1fr); }
  .timeline-hint { display: flex; }
}

@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; padding: 32px; }
  .firsts-grid { grid-template-columns: 1fr; }
  .firsts-visual { order: -1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .qc-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .projects-map-wrap { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .auto-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .highlight-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid.reverse .service-visual { order: 1; }
  .service-grid.reverse .service-content { order: 2; }
  .overview-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left span:not(:first-child) { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(10,37,64,0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; border-radius: 0; }
  .nav-links .nav-cta { margin: 12px 24px; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .vm-grid { grid-template-columns: 1fr; }
  .qc-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .loc-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .projects-table-wrap { border-radius: var(--radius); }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .highlight-metrics { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .expert-form { padding: 26px; }
  .page-hero-trust { gap: 16px; }
  .auto-banner { padding: 56px 0; }
  .auto-features { grid-template-columns: 1fr; gap: 10px; }
  .auto-visual { min-height: 260px; }
  .auto-metrics { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
  .auto-metric { padding: 16px 12px; }
  .auto-metric i { font-size: 22px; margin-bottom: 6px; }
  .auto-metric-val { font-size: 19px; }
  .auto-metric-label { font-size: 11px; }
}

@media (max-width: 400px) {
  .auto-metrics { grid-template-columns: 1fr; }
}
