 @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:   #8C0000;
      --blue:  #1B3B8A;
      --bg:    #ffffff;
      --gray:  #f5f4f2;
      --text:  #000000;
      --muted: #D9D9D9;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
     font-family: "Nunito Sans", sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal[data-d="1"] { transition-delay: 0.08s; }
    .reveal[data-d="2"] { transition-delay: 0.16s; }
    .reveal[data-d="3"] { transition-delay: 0.24s; }
    .reveal[data-d="4"] { transition-delay: 0.32s; }

    /* ─────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      height: 62px;
      display: flex;
      align-items: center;
      padding: 0 48px;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s, box-shadow .3s;
    }
    #navbar.scrolled {
      border-color: rgba(0,0,0,0.07);
      box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-brand img { width: 200px; object-fit: contain; }
    .nav-brand-text .t1 { font-weight: 700; font-size: 13px; color: var(--red); line-height: 1.3; }
    .nav-brand-text .t2 { font-size: 13px; line-height: 1.3; }
    .nav-brand-text .t2 .d { color: var(--blue); }
    .nav-brand-text .t2 .c { color: var(--red); font-weight: 700; }

    .nav-links {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      color: #000;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-team {
      background: var(--red) !important;
      color: #fff !important;
      padding: 7px 22px !important;
      border-radius: 7px;
      font-weight: 600 !important;
      transition: background .2s !important;
    }
    .nav-team:hover { background: #6e1515 !important; }

    /* hamburger */
    .hamburger {
      display: none;
      margin-left: auto;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .hamburger:active { background: rgba(0,0,0,0.07); }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: #333;
      border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                  opacity 0.2s ease,
                  width 0.25s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 62px; left: 0; right: 0;
      background: #fff;
      z-index: 199;
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      box-shadow: 0 8px 32px rgba(0,0,0,0);
      transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1),
                  box-shadow 0.35s ease;
    }
    #mobile-menu.open {
      max-height: 320px;
      pointer-events: auto;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    #mobile-menu a {
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      color: #222;
      padding: 14px 24px;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: background 0.15s, color 0.15s;
    }
    #mobile-menu a:last-child { border-bottom: none; }
    #mobile-menu a:active { background: rgba(140,0,0,0.07); color: var(--red); }

    @media (max-width: 640px) {
      #navbar { padding: 0 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--gray);
      border-top: 1px solid rgba(0,0,0,0.07);
      padding: 40px 48px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 32px;
    }
    .footer-left { display: flex; flex-direction: column; gap: 18px; }
    .footer-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .footer-brand img.logo-img { width: 170px; object-fit: contain; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a img {
      width: 30px; height: 30px;
      object-fit: contain;
      opacity: 0.7;
      transition: opacity .2s, transform .2s;
    }
    .footer-social a:hover img { opacity: 1; transform: scale(1.1); }
    .footer-nav { display: flex; flex-direction: column; gap: 10px; text-align: right; }
    .footer-nav a { text-decoration: none; font-size: 16px; color: #3a3a3a; transition: color .2s; }
    .footer-nav a:hover { color: var(--red); }
    @media (max-width: 640px) {
      footer { flex-direction: column; padding: 32px 20px; }
      .footer-nav { text-align: left; }
    }

    /* ─────────────────────────────────────────
       SLIDE-IN ANIMATION UTILITIES
    ───────────────────────────────────────── */
    .from-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .from-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .from-left.visible,
    .from-right.visible {
      opacity: 1;
      transform: translateX(0);
    }


    /* ════════════════════════════════════════════
       SHARED PAGE LAYOUT
    ════════════════════════════════════════════ */
    .page-content { padding-top: 62px; }

    .section {
      padding: 80px 60px;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      .section { padding: 60px 24px; }
    }

    /* Base section title — SPF style (no uppercase) */
    .section-title {
      text-align: center;
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: 0.03em;
      color: var(--text);
      margin-bottom: 20px;
    }
    @media (max-width: 768px) {
      .section-title { font-size: 2rem; }
    }

    /* NEC override — uppercase, bigger spacing */
    .pg-nec .section-title {
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 56px;
    }
    @media (max-width: 768px) {
      .pg-nec .section-title { font-size: 3rem; margin-bottom: 36px; }
    }
    /* wyg section overrides the margin locally */
    .wyg-section .section-title { margin-bottom: 5px; }


    /* ════════════════════════════════════════════
       HOME PAGE
    ════════════════════════════════════════════ */
    .hero {
      padding-top: 62px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-card {
      width: calc(100% - 80px);
      max-width: 860px;
      margin: 28px auto 0;
      /* border: 1px solid #e0ddd8; */
      border-radius: 20px;
      padding:  20px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      background: #fff;
      animation: heroCardIn 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
    }
    @keyframes heroCardIn {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-video-label {
      position: absolute;
      top: 20px; right: 24px;
      font-size: 13px; color: #aaa; font-weight: 500;
      animation: fadeIn 0.4s ease 0.9s both;
    }
    .hero-globe {
      width: clamp(850px, 28vw, 457px);
      height: auto;
      /* margin-bottom: 28px; */
      animation: globePop 0.7s cubic-bezier(0.34,1.45,0.64,1) 0.25s both;
    }
    @keyframes globePop {
      from { opacity: 0; transform: scale(0.75); }
      to   { opacity: 1; transform: scale(1); }
    }
    .hero-brand { text-align: center; overflow: hidden; }
    .hero-brand-line {
      display: block;
      font-weight: 900;
      font-size: clamp(2rem, 5.5vw, 3.4rem);
      color: var(--red);
      line-height: 1.1;
      transform: translateY(100%);
      animation: slideUp 0.65s cubic-bezier(0.16,1,0.3,1) both;
    }
    .hero-brand-line:nth-child(1) { animation-delay: 0.55s; }
    .hero-brand-line:nth-child(2) { animation-delay: 0.68s; }
    .hero-brand-line .d { color: var(--blue); font-weight: 400; }
    .hero-tagline {
      font-family: "Nunito Sans", sans-serif;
      text-align: center;
      font-size: 22px;
      line-height: 1.85;
      color: #000;
      padding: 32px 24px 48px;
      opacity: 0;
      max-width: 900px;
    }
    @keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn  { to { opacity: 1; } }
    @keyframes slideUp { to { transform: translateY(0); } }

    .gateway {
      padding: 20px 48px 80px;
      position: relative;
      font-family: "Nunito Sans", sans-serif;
    }
    .gateway::after {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 38%;
      background-image:
        linear-gradient(rgba(27,59,138,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,59,138,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
      mask-image: linear-gradient(to left, rgba(0,0,0,0.18), transparent);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.18), transparent);
    }
    .gateway-card {
      max-width: 900px;
      margin: 0 auto 48px;
      background: #f0eeeb;
      border-radius: 20px;
      padding: 44px 48px;
      text-align: center;
    }
    .gateway-card h2 {
      font-weight: 700;
      font-size: clamp(2rem, 3vw, 3rem);
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .gateway-card p {
      font-size: 25px;
      line-height: 1.7;
      color: var(--red);
      font-weight: 600;
      margin: 0 auto;
    }
    .gateway-body {
      max-width: 900px;
      margin: 0 auto 32px;
      position: relative;
      z-index: 1;
    }
    .gateway-body p      { font-size: 22px; line-height: 1.8; color: #000; margin-bottom: 22px; font-weight: 400; }
    .gateway-body strong { font-size: 22px; line-height: 1.8; color: #000; font-weight: 700; }
    .gateway-img {
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 300px;
    }
    .value-cards {
      display: flex;
      gap: 16px;
      max-width: 900px;
      margin: 0 auto 56px;
      position: relative;
      z-index: 1;
    }
    .value-card {
      background: var(--red);
      color: #fff;
      padding: 22px 18px;
      border-radius: 14px;
      min-width: 300px;
      font-size: 25px;
      font-weight: 600;
      line-height: 1.4;
      text-align: center;
      cursor: default;
      transition: transform 0.8s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.8s ease;
    }
    .value-card:hover {
      transform: translateY(-7px) scale(1.02);
      box-shadow: 0 16px 16px rgba(139,26,26,0.38);
    }
    .gateway-tagline {
      text-align: center;
      font-weight: 700;
      font-size: clamp(1.3rem, 3vw, 1.9rem);
      color: var(--text);
      position: relative;
      z-index: 1;
    }
    @media (max-width: 640px) {
      .gateway      { padding: 20px 20px 60px; }
      .gateway-card { padding: 28px 22px; }
      .value-cards  { flex-direction: column; max-width: 340px; }
      .hero-card    { width: calc(100% - 32px); padding: 32px 20px 28px; }
    }


    /* ════════════════════════════════════════════
       ABOUT NEC
    ════════════════════════════════════════════ */
    .vision-imgs { width: 70px; margin-bottom: 5px; }

    .vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    @media (max-width: 768px) { .vm-grid { grid-template-columns: 1fr; } }

    .vm-card { border: 2px solid var(--blue); border-radius: 16px; padding: 36px 32px; }
    .vm-icon { width: 44px; height: 44px; margin: 0 auto 20px; display: block; }
    .vm-label {
      font-size: 30px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #006BA6;
      margin-bottom: 14px;
    }
    .vm-statement { font-size: 20px; font-weight: 800; color: var(--red); line-height: 1.55; margin-bottom: 16px; }
    .vm-body      { font-size: 18px; line-height: 1.75; color: #000; font-weight: 600; }

    .how-section {
      padding: 60px 0;
      background: #fafafa;
      position: relative;
      overflow: hidden;
    }
    .howdesign { position: absolute; left: 0; bottom: 0; width: 400px; }
    .how-inner { max-width: 900px; margin: 0 auto; padding: 0 60px; }
    @media (max-width: 768px) {
      .how-inner { padding: 0 24px; }
      .howdesign { display: none; }
    }

    .timeline { position: relative; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%; top: 0; bottom: 0;
      width: 2px;
      background: #ddd;
      transform: translateX(-50%);
    }
    @media (max-width: 768px) { .timeline::before { left: 12px; } }

    .tl-item { display: flex; align-items: flex-start; margin-bottom: 64px; position: relative; }
    .tl-item.right { flex-direction: row;         padding-left:  calc(50% + 32px); }
    .tl-item.left  { flex-direction: row-reverse; padding-right: calc(50% + 32px); }
    .tl-item::before {
      content: '';
      position: absolute;
      left: 50%; top: 6px;
      width: 14px; height: 14px;
      background: var(--red);
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }
    @media (max-width: 768px) {
      .tl-item { padding-left: 36px !important; padding-right: 0 !important; flex-direction: row !important; }
      .tl-item::before { left: 6px; transform: none; }
    }
    .tl-content { max-width: 360px; }
    .tl-item.left .tl-content { text-align: right; }
    @media (max-width: 768px) { .tl-item.left .tl-content { text-align: left; } }

    .tl-label {
      display: inline-block;
      background: linear-gradient(to right, #560202, #8C0000);
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 999px;
      margin-bottom: 12px;
    }
    .tl-title { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
    .tl-desc  { font-size: 1rem; line-height: 1.7; color: #555; margin-bottom: 10px; }
    .tl-links { font-size: 1rem; font-style: italic; color: #006BA6; line-height: 1.6; }

    .wyg-section { padding: 60px 0; }
    .wyg-subtitle { text-align: center; font-size: 1.9rem; color: #000; margin-bottom: 40px; font-weight: bold; }

    .carousel-viewport { overflow: hidden; width: 100%; }
    .carousel-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: carouselScroll 28s linear infinite;
    }
    @keyframes carouselScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .carousel-card      { width: 400px; flex-shrink: 0; }
    .carousel-img       { width: 100%; object-fit: cover; border-radius: 12px; margin-bottom: 14px; background: #e8eaf0; }
    .carousel-num-title { font-size: 1.4rem; font-weight: 700; color: #006BA6; margin-bottom: 6px; line-height: 1.4; }
    .carousel-desc      { font-size: 1.1rem; line-height: 1.65; color: #000; }


    /* ════════════════════════════════════════════
       ABOUT SPF
    ════════════════════════════════════════════ */
    .spf-hero {
      position: relative;
      width: 100%;
      height: 340px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      /* padding: 0 60px 48px; */
    }
    .spf-hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .spf-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 100%);
      z-index: 1;
    }
    .spf-hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .spf-hero-img{
      width: 100%;
    }
    .spf-hero-content h1 { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 16px; }
    .spf-brand     { display: flex; align-items: center; gap: 18px; }
    .spf-brand img { width: 300px; }
    .spf-brand-text { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1.15; }
    @media (max-width: 640px) {
      .spf-hero            { padding: 0 24px 36px; height: 280px; }
      .spf-hero-content h1 { font-size: 2rem; }
      .spf-brand-text      { font-size: 1.4rem; }
      .spf-brand img       { width: 185px; }
    }

    .about-intro {
      text-align: center;
      font-size: 1.8rem;
      line-height: 1.85;
      color: #000;
      font-weight: 600;
      max-width: 1134px;
      margin: 0 auto 60px;
      padding: 60px 60px 0;
    }
    .about-intro .highlight  { color: #E07B00; font-weight: 700; }
    .about-intro .highlight2 { color: #17821E; font-weight: 700; }
    @media (max-width: 768px) { .about-intro { padding: 48px 24px 0; font-size: 1rem; } }

    .about-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 60px 60px;
      overflow: hidden;
    }
    .about-row-img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; background: #ddd; }
    .about-core-title { font-size: 1.6rem; font-weight: 800; color: #F5891E; line-height: 1.4; margin-bottom: 20px; }
    .about-core-list  { list-style: disc; padding-left: 22px; display: flex; flex-direction: column; gap: 12px; }
    .about-core-list li { font-size: 1.2rem; line-height: 1.6; color: #000; font-weight: 500; }
    @media (max-width: 768px) { .about-row { grid-template-columns: 1fr; padding: 0 24px 48px; } }

    .about-bridge {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
      padding: 0 60px 80px;
      font-size: 1.2rem;
      line-height: 1.85;
      color: #333;
      font-weight: 500;
    }
    .about-bridge p + p { margin-top: 16px; }
    @media (max-width: 768px) { .about-bridge { padding: 0 24px 60px; } }

    .centres-section { background: #f7f6f4; padding: 80px 60px; }
    .centres-intro {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 56px;
      font-size: 1.2rem;
      line-height: 1.85;
      color: #444;
      font-weight: 500;
    }
    .centres-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    /* centre-card: no transition here so .reveal uses its own smooth 0.65s ease */
    .centre-card {
      background: #fff;
      border-radius: 16px;
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .centre-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    }
    /* hover transition only kicks in after the reveal animation completes */
    .centre-card.visible {
      transition: transform 0.28s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.28s ease;
    }
    .centre-logo { height: 100px; max-width: 100%; object-fit: contain; }
    .centre-name { font-size: 1.2rem; font-weight: 800; color: #2A7A4B; line-height: 1.35; }
    .centre-desc { font-size: 1rem; line-height: 1.7; color: #000; }
    @media (max-width: 768px) {
      .centres-section { padding: 60px 24px; }
      .centres-grid    { grid-template-columns: 1fr; }
    }

    .gallery-carousel { padding: 0; overflow: hidden; }
    .gallery-track {
      display: flex;
      gap: 8px;
      width: max-content;
      animation: galleryScroll 24s linear infinite;
    }
    @keyframes galleryScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .gallery-img { width: 401px; flex-shrink: 0; display: block; border-radius: 5px; }
    @media (max-width: 640px) { .gallery-img { width: 220px; height: 160px; } }

    .ceo-section { padding: 80px 60px; max-width: 1000px; margin: 0 auto; }
    .ceo-card {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      border: 1px solid #e0ddd8;
      border-radius: 20px;
      padding: 48px;
      background: #fff;
    }
    .ceo-quote-mark { font-size: 5rem; line-height: 0.8; color: #E07B00; font-family: Georgia, serif; margin-bottom: 12px; opacity: 0.4; }
    .ceo-quote-text { font-size: 1.2rem; line-height: 1.8; color: #222; font-weight: 500; font-style: italic; margin-bottom: 24px; }
    .ceo-name  { font-size: 1.4rem; font-weight: 800; color: var(--red); }
    .ceo-title { font-size: 1.1rem; color: var(--red); line-height: 1.3; font-weight: 600; }
    .ceo-photo {
      position: absolute;
      width: 299px;
      right: 0; bottom: 0;
      border-radius: 12px;
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .ceo-section { padding: 60px 24px; }
      .ceo-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .ceo-photo {
        order: -1;
        position: static;
        width: 180px; height: 180px;
        border-radius: 66%;
        object-fit: cover;
        object-position: top;
        margin-bottom: 24px;
        background: #dfdfdf;
      }
    }


    /* ════════════════════════════════════════════
       TEAM
    ════════════════════════════════════════════ */
    .helm-section { padding: 72px 60px 80px; max-width: 1100px; margin: 0 auto; }
    .helm-title   { text-align: center; font-size: 3rem; font-weight: 800; color: var(--text); margin-bottom: 56px; }

    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .team-card { display: flex; flex-direction: column; }
    .team-photo {
      width: 100%;
      aspect-ratio: 3/3;
      object-fit: cover;
      object-position: top;
      border-radius: 8px;
      margin-bottom: 20px;
      background: #e0ddd8;
      display: block;
    }
    .team-name { font-size: 1.25rem; font-weight: 800; color: var(--red); margin-bottom: 4px; }
    .team-role { font-size: 1rem; font-weight: 700; font-style: italic; color: #006BA6; margin-bottom: 14px; }
    .team-bio  { font-size: 1rem; line-height: 1.75; color: #000; }
    @media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 580px) {
      .helm-section { padding: 60px 24px 64px; }
      .helm-title   { font-size: 2.2rem; margin-bottom: 40px; }
      .team-grid    { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    }

    /* ════════════════════════════════════════════
       TEAM — CONTACT SECTION
    ════════════════════════════════════════════ */
    .contact-section {
      padding: 0px 60px 100px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    .contact-label {
      font-size: clamp(3rem, 5vw, 3rem);
      font-weight: 800;
      letter-spacing: 0.15em;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .contact-heading {
      font-size: clamp(3rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--red);
    line-height: 1.2;
    margin-bottom: 36px;
    }
    .contact-sub {
      font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 750px;
    }
    .contact-btn {
      display: inline-block;
      background: linear-gradient(to right, #560202, #8C0000);
      color: #fff;
      font-size: clamp(2rem, 2.4vw, 1rem);
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 50px;
      text-decoration: none;
      transition: box-shadow 0.2s ease, filter 0.2s ease;
    }
    .contact-btn:hover {
      filter: brightness(1.15);
      box-shadow: 0 6px 20px rgba(140, 0, 0, 0.35);
      transition: all 0.5s;
    }
    @media (max-width: 640px) {
      .contact-section { padding: 60px 24px 80px; }
    }

    .build-section {
          padding: 60px 60px 100px;
    text-align: center;
    /* border-top: 1px solid #eee; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    
    .build-heading { font-size: clamp(3rem, 5vw, 3rem); font-weight: 600; color: var(--red); line-height: 1.2; margin-bottom: 36px; }
    .build-sub     { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 400;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 750px; }
    .build-sub2    { font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 750px; }
    @media (max-width: 580px) { .build-section { padding: 64px 24px 0px; } }


    /* ════════════════════════════════════════════
       HOME — INDIA CARD
    ════════════════════════════════════════════ */
    .india-section {
      padding: 0 48px 60px;
    }
    .india-card {
      max-width: 900px;
      margin: 0 auto;
      background: #f0eeeb;
      border-radius: 20px;
      padding: 56px 60px;
      text-align: center;
    }
    .india-card h2 {
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 20px;
    }
    .india-card p {
      font-size: 1.1rem;
      line-height: 1.75;
      color: var(--red);
      font-weight: 600;
    }
    @media (max-width: 640px) {
      .india-section { padding: 0 20px 48px; }
      .india-card    { padding: 36px 28px; }
    }

    /* ════════════════════════════════════════════
       HOME — SPF SECTION
    ════════════════════════════════════════════ */
    .home-spf-section {
      padding: 0 48px 60px;
    }
    .home-spf-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 960px;
      margin: 0 auto;
      border: 1px solid #ddd;
      border-radius: 18px;
      padding: 44px 56px;
      background: #fff;
    }
    .home-spf-brand {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .home-spf-logo {
      max-width: 100%;
      max-height: 130px;
      object-fit: contain;
    }
    .home-spf-text p { font-size: 1.05rem; line-height: 1.85; color: #000000; font-weight: 400; margin: 0; }
    @media (max-width: 768px) {
      .home-spf-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 32px; }
      .home-spf-brand { justify-content: flex-start; }
    }
    @media (max-width: 640px) {
      .home-spf-section { padding: 0 20px 48px; }
      .home-spf-inner   { padding: 28px 24px; }
    }

    /* ════════════════════════════════════════════
       HOME — GLOBE SECTION
    ════════════════════════════════════════════ */
    .home-globe-section {
      position: relative;
      /* overflow: hidden; */
      padding: 60px 20px;
      min-height: 480px;
    }
    .home-globe-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      max-width: 700px;
      height: auto;
      z-index: 0;
      /* opacity: 0.15; */
      pointer-events: none;
    }
    .home-globe-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 200px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .home-globe-left {
      align-self: flex-start;
      max-width: 44%;
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text);
      font-weight: 500;
      margin: 0;
      text-align: right;
    }
    .home-globe-right {
      align-self: flex-end;
      max-width: 44%;
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text);
      font-weight: 500;
      margin: 0;
      text-align: left;
    }
    @media (max-width: 768px) {
      .home-globe-left,
      .home-globe-right { max-width: 100%; align-self: auto; }
      .home-globe-section { min-height: auto; padding: 60px 32px; }
    }
    @media (max-width: 640px) {
      .home-globe-section { padding: 48px 20px; }
      .home-globe-content { gap: 36px; }
    }

    /* ════════════════════════════════════════════
       HOME — VISION CARD
    ════════════════════════════════════════════ */
    .home-vision-section {
      padding: 48px 100px;
    }
    .home-vision-card {
      max-width: 960px;
      margin: 0 auto;
      /* background: #f0eeeb; */
      border-radius: 20px;
      border: 1px solid grey;
      padding: 44px 56px;
      text-align: center;
    }
    .home-vision-card p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-weight: 700;
      /* font-style: italic; */
      color: #8C0000;
      line-height: 1.85;
    }
    @media (max-width: 640px) {
      .home-vision-section { padding: 0 20px 72px; }
      .home-vision-card    { padding: 32px 24px; }
    }

    /* ════════════════════════════════════════════
       MOBILE FONT SCALE  (≤ 640px)
    ════════════════════════════════════════════ */
    @media (max-width: 640px) {
      /* Hero */
      .hero-tagline       { font-size: 16px; padding: 20px 16px 36px; }

      /* India card */
      .india-card h2      { font-size: 1.45rem; }
      .india-card p       { font-size: 0.95rem; }

      /* SPF */
      .home-spf-text p    { font-size: 0.95rem; }

      /* Globe */
      .home-globe-left,
      .home-globe-right   { font-size: 0.95rem; }

      /* Vision */
      .home-vision-card p { font-size: 0.95rem; }

      /* About NEC */
      .vm-label           { font-size: 1.3rem; }
      .vm-statement       { font-size: 1rem; }
      .vm-body            { font-size: 0.95rem; }
      .tl-label           { font-size: 0.85rem; }
      .tl-title           { font-size: 1.05rem; }
      .wyg-subtitle       { font-size: 1.3rem; }
      .carousel-num-title { font-size: 1.1rem; }
      .carousel-desc      { font-size: 0.95rem; }

      /* About SPF */
      .about-intro        { font-size: 1rem; }
      .about-core-title   { font-size: 1.2rem; }
      .about-core-list li { font-size: 1rem; }
      .ceo-quote-text     { font-size: 1rem; }
      .ceo-name           { font-size: 1.15rem; }

      /* Team */
      .helm-title         { font-size: 2rem; margin-bottom: 32px; }
      .team-name          { font-size: 1.05rem; }
      .team-bio           { font-size: 0.9rem; }
      .build-heading      { font-size: 1.8rem; }
      .build-sub          { font-size: 0.95rem; }
      .build-sub2         { font-size: 0.95rem; }

      /* Contact */
      .contact-heading    { font-size: 1.4rem; }
      .contact-sub        { font-size: 0.9rem; }
      .contact-btn        { font-size:1rem}
    }

     @media (max-width: 500px) {
      .hero-globe{
        width: 350px;
      }
    }
    @media (min-width: 900px) {
      .spf-hero{
        height: 450px;
      }
    }