 @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Seaweed+Script&display=swap');

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



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

 html {
   scroll-behavior: auto;
   overflow-x: hidden;
 }

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

 /* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
 /* GLOBAL TYPOGRAPHY SCALE — clamp(mobile, fluid, desktop) */
 .fs-title    { font-size: clamp(1.7rem,   4vw,   2.8rem)   !important; font-weight: 700 !important; }
 .fs-subtitle { font-size: clamp(1.2rem,   2.5vw, 1.9rem)   !important; font-weight: 700; }
 .fs-body     { font-size: clamp(1rem,     1.8vw, 1.2rem)   !important; font-weight: 400; }
 .fs-subbody  { font-size: clamp(0.875rem, 1.4vw, 1rem)     !important; font-weight: 400; }
 .fs-label    { font-size: clamp(0.75rem,  1.2vw, 0.875rem) !important; font-weight: 500; }

 .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);
   box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
   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,
 .nav-active {
   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,
 .nav-active:hover {
   background: #6e1515 !important;
   color: #fff !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: #8C0000;
   border-top: none;
   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: #fff;
   transition: color .2s;
 }

 .footer-nav a:hover {
   color: rgba(255, 255, 255, 0.7);
 }

 @media (max-width: 640px) {
   footer {
     flex-direction: column;
     padding: 32px 20px;
   }

   .footer-nav {
     text-align: left;
   }
 }

 /* ─────────────────────────────────────────
       SCROLL REVEAL ANIMATION UTILITIES
       Premium expo ease-out — no GSAP needed
    ───────────────────────────────────────── */

 /* Keyframes */
 @keyframes revealUp {
   from {
     opacity: 0;
     transform: translateY(70px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes revealLeft {
   from {
     opacity: 0;
     transform: translateX(-80px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes revealRight {
   from {
     opacity: 0;
     transform: translateX(80px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 /* Base hidden states */
 .reveal {
   opacity: 0;
 }

 .from-left {
   opacity: 0;
 }

 .from-right {
   opacity: 0;
 }

 /* Triggered states */
 .reveal.visible {
   animation: revealUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .from-left.visible {
   animation: revealLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .from-right.visible {
   animation: revealRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 /* Stagger delays */
 [data-d="1"].visible {
   animation-delay: 0.08s;
 }

 [data-d="2"].visible {
   animation-delay: 0.18s;
 }

 [data-d="3"].visible {
   animation-delay: 0.28s;
 }

 [data-d="4"].visible {
   animation-delay: 0.38s;
 }

 [data-d="5"].visible {
   animation-delay: 0.48s;
 }

 [data-d="6"].visible {
   animation-delay: 0.58s;
 }



 /* ════════════════════════════════════════════
       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: 2.5rem;
   font-weight: 700;
   letter-spacing: 0.03em;
   color: var(--text);
   margin-bottom: 20px;
 }


 /* 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;
 }

 /* World heading */
 .hero-world-heading {
   font-size: clamp(1.9rem, 4.5vw, 3.2rem);
   font-weight: 800;
   text-align: center;
   line-height: 1.25;
   padding: 32px 24px 0;
   /* max-width: 860px; */
   width: 100%;
 }

 .hw-world {
   color: var(--blue);
 }

 .hw-india {
   color: var(--red);
 }

 /* Hero subtitle (replaces scrolling ticker) */
 .hero-subtitle {
   font-size: clamp(1rem, 2.4vw, 1.35rem);
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: lowercase;
   color: #000000;
   text-align: center;
   margin-top: 5px;
   padding: 0 24px;
   opacity: 0;
   transform: translateY(16px);
   animation: heroSubtitleIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
 }

 @keyframes heroSubtitleIn {
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Observation text */
 .hero-obs {
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--red);
   text-align: center;
   line-height: 1.75;
   max-width: 620px;
   padding: 0 24px;
   margin-top: 36px;
 }

 /* Tagline */
 .hero-tagline {
   font-family: "Nunito Sans", sans-serif;
   text-align: center;
   font-size: 1rem;
   line-height: 1.85;
   color: #000;
   padding: 0 24px 52px;
   max-width: 680px;
   margin-top: 14px;
 }

 @keyframes fadeUp {
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeIn {
   to {
     opacity: 1;
   }
 }

 @keyframes slideUp {
   to {
     transform: translateY(0);
   }
 }




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



 .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: #000;
 }

 .tl-links {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 10px;
 }

 .tl-links span {
   font-size: 0.88rem;
   font-weight: 500;
   color: #006BA6;
   background: #D9D9D9;
   /* border: 1px solid #ddd; */
   border-radius: 999px;
   padding: 4px 13px;
   white-space: nowrap;
 }

 .tl-item.left .tl-links {
   justify-content: flex-end;
 }

 .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;
   text-align: center;
 }

 .carousel-desc {
   font-size: 1.1rem;
   line-height: 1.65;
   color: #000;
   text-align: center;
 }


 /* ════════════════════════════════════════════
       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: #000;
   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.4rem;
   line-height: 1.85;
   color: #000;
   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.45rem;
   font-weight: 800;
   color: #2A7A4B;
   line-height: 1.35;
 }

 .centre-desc {
   font-size: 1.15rem;
   line-height: 1.7;
   color: #000;
 }

 @media (max-width: 768px) {
   .centres-section {
     padding: 60px 24px;
   }

   .centres-grid {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 768px) {
   .centre-logo {
     height: 64px;
   }
   .centre-card {
     padding: 24px 20px;
     align-items: center;
     text-align: center;
     width: 70%;
     margin: 0 auto;
   }
 }

 .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-photo {
     width: 95%;
     margin-left: auto;
     margin-right: 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;
   }
 }






 /* ════════════════════════════════════════════
       MOBILE FONT SCALE  (≤ 640px)
    ════════════════════════════════════════════ */
 @media (max-width: 640px) {

   /* Hero */
   .hero-tagline {
     font-size: 16px;
     padding: 20px 16px 36px;
   }

   /* About NEC */
   .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;
   }
 }


 .vm-new-title {
   color: #006BA6;
   text-align: center;
   font-size: 35px;
   margin-top: 40px;
   font-family: "Seaweed Script", cursive;
   font-weight: 500;
 }

 .vm-new-statement {
   color: #8C0000;
   text-align: center;
   margin-top: 15px;
   font-weight: 600;
   font-size: 22px;
 }

 .vm-new-body {
   margin-top: 10px;
   font-size: 18px;
   text-align: center;
 }

 .team-pic-home {
   padding-top: 0 !important;
   padding-bottom: 40px;
 }

 .team-pic-home .hero-card {
   border: none;
   padding: 0;
   background: transparent;
   animation: none;
 }

 .team-pic-home .hero-globe {
   width: 100% !important;
   height: auto;
   border-radius: 16px;
   animation: none;
 }

 .vm-new-rule {
   width: 60px;
   height: 1px;
   background: #ccc;
   margin: 0 auto;
 }

 /* ════════════════════════════════════════════
       ABOUT NEC — WHO WE WORK WITH
    ════════════════════════════════════════════ */
 .wwww-section {
   background: #f5f4f2;
   padding: 72px 48px 80px;
 }

 .wwww-inner {
   max-width: 960px;
   margin: 0 auto;
 }

 .wwww-title {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
   font-weight: 700;
   color: var(--red);
   line-height: 1.1;
   margin-bottom: 6px;
   text-align: center;
 }

 .wwww-sub {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
   font-weight: 700;
   color: #000;
   margin-bottom: 36px;
   text-align: center;
 }

 .wwww-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   grid-auto-rows: 1fr;
   gap: 8px;
 }

 .wwww-card {
   background: #fff;
   border: 1px solid #c8d4df;
   border-radius: 12px;
   padding: 20px 18px 22px;
   display: flex;
   flex-direction: column;
   gap: 8px;
   width: 100%;
   box-sizing: border-box;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .wwww-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 28px rgba(0,0,0,0.1);
 }

 .wwww-card--blue {
   background: var(--blue);
   border-color: var(--blue);
 }

 .wwww-card--blue h3,
 .wwww-card--blue p { color: #fff; }

 .wwww-card--red {
   background: var(--red);
   border-color: var(--red);
 }

 .wwww-card--red h3,
 .wwww-card--red p { color: #fff; }

 /* Pills */
 .wwww-pill {
   display: inline-block;
   border-radius: 999px;
   padding: 4px 13px;
   font-size: 0.72rem;
   font-weight: 700;
   color: #fff;
   flex-shrink: 0;
   align-self: flex-start;
 }

 .wwww-pill--red  { background: var(--red); }
 .wwww-pill--blue { background: var(--blue); }
 .wwww-pill--gray { background: #444; }

 /* Pills on filled cards */
 .wwww-card--blue .wwww-pill { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.45); }
 .wwww-card--red  .wwww-pill { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.45); }

 .wwww-card h3 {
   font-size: 1rem;
   font-weight: 800;
   color: #111;
   line-height: 1.3;
   margin: 0;
 }

 .wwww-card p {
   font-size: 0.82rem;
   color: #000;
   line-height: 1.5;
   font-style: italic;
   margin: 0;
 }

 .wwww-card--blue p { color: rgba(255,255,255,0.85); }
 .wwww-card--red  p { color: rgba(255,255,255,0.85); }

 @media (max-width: 768px) {
   .wwww-section { padding: 48px 20px 56px; }
   .wwww-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 }

 @media (max-width: 480px) {
   .wwww-grid { grid-template-columns: minmax(0, 1fr); }
 }


 /* ════════════════════════════════════════════
       ABOUT NEC — THE INNOVATORS
    ════════════════════════════════════════════ */
 .innovators-section {
   background: #fff;
   padding: 72px 48px 80px;
 }

 .innovators-inner {
   text-align: center;
 }

 .innovators-text {
   font-size: 2.12rem !important;
   font-weight: 700;
   color: #000;
   line-height: 1.25;
   letter-spacing: -0.01em;
   text-align: center;
 }

 .innovators-img-placeholder {
   aspect-ratio: 4 / 3;
   background: #e8e8e8;
   border-radius: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #aaa;
   font-size: 0.95rem;
   font-weight: 600;
   letter-spacing: 0.05em;
 }

 @media (max-width: 768px) {
   .innovators-section { padding: 48px 20px 56px; }
   .innovators-inner {
     grid-template-columns: 1fr;
     gap: 28px;
   }
   .innovators-img-placeholder {
     display: none;
   }
   .innovators-text {
     font-size: clamp(1.19rem, 4.25vw, 1.7rem) !important;
   }
 }

 /* ════════════════════════════════════════════
       HOME — HUB SECTION
    ════════════════════════════════════════════ */
 @keyframes hubIndiaIn {
   from {
     opacity: 0;
     transform: translate(-50%, -50%) scale(0.75);
   }

   to {
     opacity: 0.13;
     transform: translate(-50%, -50%) scale(1);
   }
 }

 @keyframes hubRingIn {
   from {
     opacity: 0;
     transform: scale(0.25) rotate(-45deg);
   }

   to {
     opacity: 1;
     transform: scale(1) rotate(0deg);
   }
 }

 @keyframes hubLogoIn {
   from {
     opacity: 0;
     transform: scale(0.6);
     filter: blur(4px);
   }

   to {
     opacity: 1;
     transform: scale(1);
     filter: blur(0);
   }
 }

 @keyframes dotPop {
   0% {
     opacity: 0;
     transform: translate(-50%, -50%) scale(0);
   }

   60% {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1.45);
   }

   100% {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
   }
 }

 @keyframes dotGlow {

   0%,
   100% {
     box-shadow: 0 0 4px rgba(224, 123, 0, 0.35);
   }

   50% {
     box-shadow: 0 0 18px rgba(224, 123, 0, 0.85), 0 0 32px rgba(224, 123, 0, 0.35);
   }
 }

 @keyframes hubSlideRight {
   from {
     opacity: 0;
     transform: translateX(-40px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes hubSlideLeft {
   from {
     opacity: 0;
     transform: translateX(40px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes hubLineGrow {
   from {
     transform: scaleX(0);
     opacity: 0;
   }

   to {
     transform: scaleX(1);
     opacity: 1;
   }
 }

 .hub-section {
   /* background: #f5f4f2; */
   padding: 72px 40px 80px;
   overflow: hidden;
 }

 .hub-wrap {
   position: relative;
   max-width: 1000px;
   height: 580px;
   margin: 0 auto;
 }

 /* India map — faint bg */
 .hub-india {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 280px;
   height: auto;
   opacity: 0.13;
   pointer-events: none;
   z-index: 0;
 }

 /* Center core — positions ring + logo */
 .hub-core {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 210px;
   height: 210px;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 /* Ring */
 .hub-ring {
   position: absolute;
   inset: 0;
   border-radius: 50%;
   border: 1.5px solid #bbb;
   opacity: 0;

 }

 .hub-spf {
   width: 140px;
   object-fit: contain;
   position: relative;
   z-index: 1;
   opacity: 0;
 }

 /* Dots — inside the ring */
 /* Ring = 210×210, center = 105,105 */
 .hub-dot {
   position: absolute;
   width: 12px;
   height: 12px;
   background: #E07B00;
   border-radius: 50%;
   transform: translate(-50%, -50%) scale(0);
   opacity: 0;
   z-index: 3;
   cursor: pointer;
   transition: box-shadow 0.3s ease;
 }

 /* 10-o'clock, 2-o'clock, 8-o'clock, 4-o'clock */
 .hub-d1 {
   left: 14px;
   top: 53px;
 }

 .hub-d2 {
   left: 196px;
   top: 53px;
 }

 .hub-d3 {
   left: 14px;
   top: 157px;
 }

 .hub-d4 {
   left: 196px;
   top: 157px;
 }

 /* Text blocks — hidden until .hub-visible */
 .hub-text {
   position: absolute;
   font-size: 0.88rem;
   line-height: 1.72;
   color: #222;
   font-weight: 400;
   z-index: 2;
   opacity: 0;
   transition: color 0.25s ease;
   cursor: default;
 }

 .hub-text p strong {
   font-weight: 700;
 }

 .hub-text p::before {
   content: '';
   display: block;
   height: 2px;
   background: #E07B00;
   transform-origin: left;
   transform: scaleX(0);
   opacity: 0;
   margin-bottom: 8px;
   transition: none;
 }

 .hub-t1 p::before,
 .hub-t3 p::before {
   transform-origin: right;
 }

 .hub-t1 {
   top: 8%;
   right: calc(50% + 125px);
   max-width: 260px;
   text-align: right;
 }

 .hub-t2 {
   top: 8%;
   left: calc(50% + 125px);
   max-width: 250px;
   text-align: left;
 }

 .hub-t3 {
   bottom: 8%;
   right: calc(50% + 125px);
   max-width: 260px;
   text-align: right;
 }

 .hub-t4 {
   bottom: 8%;
   left: calc(50% + 125px);
   max-width: 260px;
   text-align: left;
 }

 /* Hover state — text highlights, dot glows */
 .hub-text.hub-hover {
   color: #000;
 }

 .hub-text.hub-hover p::before {
   animation: hubLineGrow 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
 }

 .hub-dot.hub-dot-hover {
   box-shadow: 0 0 0 5px rgba(224, 123, 0, 0.25), 0 0 20px rgba(224, 123, 0, 0.6);
   transform: translate(-50%, -50%) scale(1.3) !important;
   transition: box-shadow 0.25s ease, transform 0.25s ease !important;
 }

 /* ── Entrance animations fired when section enters viewport ── */
 .hub-section.hub-visible .hub-india {
   animation: hubIndiaIn 1.1s ease 0.1s both;
 }

 .hub-section.hub-visible .hub-ring {
   animation: hubRingIn 1s cubic-bezier(0.34, 1.3, 0.64, 1) 0.2s both;
 }

 .hub-section.hub-visible .hub-spf {
   animation: hubLogoIn 0.7s ease 0.85s both;
 }

 .hub-section.hub-visible .hub-d1 {
   animation: dotPop 0.55s cubic-bezier(0.34, 1.8, 0.64, 1) 1.0s both,
     dotGlow 2.8s ease-in-out 2.2s infinite;
 }

 .hub-section.hub-visible .hub-d2 {
   animation: dotPop 0.55s cubic-bezier(0.34, 1.8, 0.64, 1) 1.15s both,
     dotGlow 2.8s ease-in-out 2.5s infinite;
 }

 .hub-section.hub-visible .hub-d3 {
   animation: dotPop 0.55s cubic-bezier(0.34, 1.8, 0.64, 1) 1.3s both,
     dotGlow 2.8s ease-in-out 2.8s infinite;
 }

 .hub-section.hub-visible .hub-d4 {
   animation: dotPop 0.55s cubic-bezier(0.34, 1.8, 0.64, 1) 1.45s both,
     dotGlow 2.8s ease-in-out 3.1s infinite;
 }

 .hub-section.hub-visible .hub-t1 {
   animation: hubSlideRight 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
 }

 .hub-section.hub-visible .hub-t2 {
   animation: hubSlideLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
 }

 .hub-section.hub-visible .hub-t3 {
   animation: hubSlideRight 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.35s both;
 }

 .hub-section.hub-visible .hub-t4 {
   animation: hubSlideLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
 }

 /* ─────────────────────────────────────────
       HUB — MOBILE KEYFRAMES
    ───────────────────────────────────────── */
 @keyframes mobileIndiaIn {
   from {
     opacity: 0;
     transform: scale(0.75);
   }

   to {
     opacity: 0.2;
     transform: scale(1);
   }
 }

 @keyframes mobileHubTextIn {
   from {
     opacity: 0;
     transform: translateY(22px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* ─────────────────────────────────────────
       HUB — MOBILE LAYOUT  (≤ 768px)
       Grid: row 1 = visual (India map + ring overlap)
             rows 2-5 = text cards stacked
    ───────────────────────────────────────── */
 @media (max-width: 768px) {
   .hub-section {
     padding: 48px 24px 64px;
   }

   .hub-wrap {
     height: auto;
     display: grid;
     grid-template-columns: 1fr;
     grid-template-rows: 220px repeat(4, auto);
     gap: 0;
     align-items: start;
   }

   /* India map and hub-core share row 1, layered via z-index */
   .hub-india {
     display: block;
     grid-row: 1;
     grid-column: 1;
     position: relative;
     top: auto;
     left: auto;
     transform: none;
     width: 140px;
     height: 190px;
     object-fit: contain;
     justify-self: center;
     align-self: center;
     z-index: 0;
     opacity: 0;
   }

   .hub-core {
     grid-row: 1;
     grid-column: 1;
     position: relative;
     top: auto;
     left: auto;
     transform: none;
     margin: 0;
     justify-self: center;
     align-self: center;
     z-index: 2;
   }

   /* Text cards: each occupies its own row */
   .hub-t1 {
     grid-row: 2;
     grid-column: 1;
   }

   .hub-t2 {
     grid-row: 3;
     grid-column: 1;
   }

   .hub-t3 {
     grid-row: 4;
     grid-column: 1;
   }

   .hub-t4 {
     grid-row: 5;
     grid-column: 1;
   }

   .hub-text {
     position: static;
     max-width: 100%;
     text-align: left !important;
     opacity: 0;
     padding: 20px 0;
     border-top: 1px solid #eee;
   }

   /* Orange accent line — re-enable, always left-anchored */
   .hub-text p::before {
     display: block;
     transform-origin: left !important;
   }

   .hub-t1 p::before,
   .hub-t3 p::before {
     transform-origin: left !important;
   }

   /* Ring/logo/dots start invisible (base CSS already sets opacity:0,
         so these just ensure no !important overrides interfere) */
   .hub-ring {
     opacity: 0;
   }

   .hub-spf {
     opacity: 0;
   }

   .hub-dot {
     opacity: 0;
     transform: translate(-50%, -50%) scale(0);
   }

   /* ── Entrance animations (fired by hub-visible) ── */
   .hub-section.hub-visible .hub-india {
     animation: mobileIndiaIn 1s ease 0.1s both;
   }

   .hub-section.hub-visible .hub-ring {
     animation: hubRingIn 0.9s cubic-bezier(0.34, 1.3, 0.64, 1) 0.3s both;
   }

   .hub-section.hub-visible .hub-spf {
     animation: hubLogoIn 0.6s ease 0.85s both;
   }

   .hub-section.hub-visible .hub-d1 {
     animation: dotPop 0.5s cubic-bezier(0.34, 1.8, 0.64, 1) 1.0s both,
       dotGlow 2.8s ease-in-out 2.0s infinite;
   }

   .hub-section.hub-visible .hub-d2 {
     animation: dotPop 0.5s cubic-bezier(0.34, 1.8, 0.64, 1) 1.15s both,
       dotGlow 2.8s ease-in-out 2.3s infinite;
   }

   .hub-section.hub-visible .hub-d3 {
     animation: dotPop 0.5s cubic-bezier(0.34, 1.8, 0.64, 1) 1.3s both,
       dotGlow 2.8s ease-in-out 2.6s infinite;
   }

   .hub-section.hub-visible .hub-d4 {
     animation: dotPop 0.5s cubic-bezier(0.34, 1.8, 0.64, 1) 1.45s both,
       dotGlow 2.8s ease-in-out 2.9s infinite;
   }

   /* Text cards slide up staggered */
   .hub-section.hub-visible .hub-t1 {
     animation: mobileHubTextIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
   }

   .hub-section.hub-visible .hub-t2 {
     animation: mobileHubTextIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
   }

   .hub-section.hub-visible .hub-t3 {
     animation: mobileHubTextIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
   }

   .hub-section.hub-visible .hub-t4 {
     animation: mobileHubTextIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
   }

   /* Orange accent line animates on hover (touch devices: first tap) */
   .hub-text.hub-hover p::before {
     animation: hubLineGrow 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
   }
 }

 @media (max-width: 640px) {
   .hub-section {
     padding: 40px 20px 56px;
   }

   .hub-text p {
     font-size: 0.88rem;
   }

   .hub-wrap {
     grid-template-rows: 200px repeat(4, auto);
   }

   .hub-india {
     width: 120px;
     height: 165px;
   }
 }