:root{
  --bg:#0b0e11;
  --dark:#0b0e11;
  --dark-2:#11161b;
  --white:#f7f8fa;
  --white-2:#eef1f4;
  --text:#171b20;
  --light-text:#ffffff;
  --muted:#7d8792;
  --line:#242b33;
  --amber:#ffb020;
  --amber-light:#ffc34d;
  --cyan:#4fd6e0;
  --maxw:1180px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Space Grotesk',sans-serif;
}

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

img{
  display:block;
  max-width:100%;
}

button{
  font-family:inherit;
}

.container{
  max-width:var(--maxw);
  margin:auto;
  padding:0 32px;
}

/* =========================
   HEADER
========================= */

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(11,14,17,.97);
  border-bottom:1px solid #252b32;
}

nav{
  max-width:var(--maxw);
  margin:auto;
  height:72px;
  padding:0 32px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-mark{
  width:34px;
  height:34px;
  border:1px solid #33404b;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  object-fit:cover;
  flex:none;
}

.logo-word{
  color:#f2f4f6;
  font-family:'Space Grotesk',sans-serif;
  font-size:20px;
  font-weight:700;
}

.logo-word span{
  color:var(--amber);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  color:#929ba7;
  font-size:14px;
  transition:.2s ease;
  position:relative;
}

.nav-links a:hover{
  color:white;
}

.nav-links a.is-active{
  color:white;
}

.nav-links a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-20px;
  height:2px;
  background:var(--amber);
}

.nav-cta{
  background:var(--amber);
  color:#111 !important;
  padding:12px 20px;
  font-family:'JetBrains Mono',monospace;
  font-size:13px !important;
  border-radius:2px;
  transition:.2s ease;
}

.nav-cta:hover{
  background:var(--amber-light);
  transform:translateY(-1px);
}

/* =========================
   COURSES NAV DROPDOWN
========================= */

.nav-item{
  position:relative;
}

.nav-dropdown-toggle{
  position:relative;
  display:flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  padding:0;
  margin:0;
  font-family:inherit;
  color:#929ba7;
  font-size:14px;
  cursor:pointer;
  transition:color .2s ease;
}

.nav-dropdown-toggle:hover{ color:white; }

.nav-item.is-open .nav-dropdown-toggle{ color:white; }

.nav-item.has-active .nav-dropdown-toggle{ color:white; }

.nav-item.has-active .nav-dropdown-toggle::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-20px;
  height:2px;
  background:var(--amber);
}

.nav-caret{
  width:9px;
  height:9px;
  flex:none;
  transition:transform .2s ease;
}

.nav-item.is-open .nav-caret{ transform:rotate(180deg); }

.nav-dropdown-menu{
  position:absolute;
  top:calc(100% + 22px);
  left:50%;
  transform:translate(-50%,8px);
  min-width:216px;
  background:#11161b;
  border:1px solid var(--line);
  padding:8px;
  display:flex;
  flex-direction:column;
  gap:2px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index:1001;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.nav-item.is-open .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.nav-dropdown-menu a{
  padding:11px 14px;
  color:#c3cad2;
  font-size:14px;
  border-radius:2px;
  transition:background-color .15s ease, color .15s ease;
}

.nav-dropdown-menu a:hover{
  background:#181f26;
  color:var(--amber);
}

.nav-dropdown-menu a.is-active{
  color:var(--amber);
}

@media(min-width:1141px){
  .nav-item:hover .nav-dropdown-menu,
  .nav-item:focus-within .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
  }
  .nav-item:hover .nav-dropdown-toggle,
  .nav-item:focus-within .nav-dropdown-toggle{
    color:white;
  }
  .nav-item:hover .nav-caret,
  .nav-item:focus-within .nav-caret{
    transform:rotate(180deg);
  }
}

/* mobile nav toggle */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  background:transparent;
  align-items:center;
  justify-content:center;
  color:white;
  cursor:pointer;
}
.nav-toggle span{
  position:relative;
  width:16px;
  height:10px;
  display:block;
}
.nav-toggle span::before,
.nav-toggle span::after{
  content:"";
  position:absolute;
  left:0;
  width:16px;
  height:1px;
  background:white;
  transition:transform .25s ease;
}
.nav-toggle span::before{ top:0; }
.nav-toggle span::after{ bottom:0; }
.nav-toggle.is-open span::before{ transform:translateY(4.5px) rotate(45deg); }
.nav-toggle.is-open span::after{ transform:translateY(-4.5px) rotate(-45deg); }

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  min-height:calc(100vh - 72px);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  isolation:isolate;
  background:#f6f8f9;
}

.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:-3;
  background:#ffffff;
}

.hero-track{
  position:absolute;
  top:0;
  left:0;

  width:400%;
  height:100%;

  display:flex;

  animation:heroScrollLeft 15s linear infinite;

  will-change:transform;
}

.hero-slide{
  flex:0 0 25%;
  width:25%;
  height:100%;

  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;

  position:relative;
}

.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(5,8,11,.15),
      rgba(5,8,11,.02) 50%,
      rgba(5,8,11,.15)
    ),
    linear-gradient(
      0deg,
      rgba(5,8,11,.35),
      rgba(5,8,11,.02) 55%,
      rgba(5,8,11,.25)
    );
}

@keyframes heroScrollLeft{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-75%); }
}

/* =========================
   GRID
========================= */

/* .grid-bg{
  position:absolute;
  inset:0;
  z-index:-1;

  background-image:
    linear-gradient(to right, rgba(20,31,41,.55) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,31,41,.55) 1px, transparent 1px);

  background-size:56px 56px;

  pointer-events:none;
} */

/* =========================
   HERO CONTENT
========================= */

.hero-content{
  position:relative;
  z-index:10;
  width:100%;
  max-width:950px;
  margin:auto;
  text-align:center;
  padding:100px 30px 120px;
}

.hero-logo{
  width:130px;
  height:130px;
  margin:0 auto 28px;
  border-radius:10px;
  object-fit:cover;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 0 35px rgba(79,214,224,.18);
  opacity:.96;
}

/* =========================
   EYEBROW
========================= */

.eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:28px;
  color:var(--amber);
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  font-weight:500;
  letter-spacing:4px;
  text-transform:uppercase;
}

.glow-dot{
  width:16px;
  height:16px;
  min-width:16px;
  border-radius:50%;
  background:var(--amber);
  box-shadow:
    0 0 8px rgba(255,176,32,.95),
    0 0 18px rgba(255,176,32,.7),
    0 0 32px rgba(255,176,32,.35);
}

/* =========================
   HERO TITLE
========================= */

.hero h1{
  color:#ffffff;
  font-family:'Space Grotesk',sans-serif;
  font-size:clamp(52px,7vw,92px);
  line-height:.98;
  font-weight:600;
  letter-spacing:-3px;
  margin-bottom:28px;
  text-shadow:0 4px 30px rgba(0,0,0,.35);
}

.hero h1 em{
  color:var(--amber);
  font-style:normal;
}

/* =========================
   HERO DESCRIPTION
========================= */

.hero-description{
  max-width:780px;
  margin:0 auto;
  color:#d6dce2;
  font-size:20px;
  line-height:1.65;
  text-shadow:0 2px 12px rgba(0,0,0,.8);
}

/* =========================
   HERO LABEL
========================= */

.hero-label{
  position:absolute;
  right:32px;
  bottom:28px;
  z-index:20;
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 15px;
  color:#dce1e6;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:2px;
  background:rgba(8,11,14,.62);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}

.hero-label .small-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 10px var(--amber);
}

/* =========================
   PAGE HERO (used on Gallery, etc.)
========================= */

.page-hero{
  position:relative;
  padding:190px 0 90px;
  background:#080b0e;
  overflow:hidden;
  isolation:isolate;
}
.page-hero .grid-bg{ z-index:-2; }
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,176,32,.10), transparent 70%);
}
.page-hero .eyebrow{ justify-content:flex-start; }

/* About Us hero: static background (no parallax / no scrolling
   slide animation). Scoped to .page-hero so the home hero's
   carousel is unaffected. */
.page-hero .hero-track{
  animation:none;
  transform:translateX(0);
}
.page-hero h1{
  color:#fff;
  font-size:clamp(40px,6vw,68px);
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:20px;
}
.page-hero p{
  max-width:620px;
  color:#a7afb9;
  font-size:17px;
  line-height:1.7;
}

/* =========================
   PAGE HERO — CINEMATIC STATIC BACKGROUND
   (used on Industrial Visits + Careers)

   Implementation notes:
   - Background image + gradient is painted on a single
     absolutely-positioned ::before layer sized with
     background-size:cover / background-position:center.
   - There is no animation, transform, background-attachment
     or JS applied to this layer, so it never scrolls,
     slides or auto-plays — it simply sits behind the
     content and stays put while the page scrolls normally.
========================= */

.page-hero--cinematic{
  min-height:78vh;
  display:flex;
  align-items:center;
  padding:170px 0 90px;
}

/* Stacking is scoped entirely to this modifier so the
   default .page-hero (About / Gallery) is left untouched. */
.page-hero--cinematic::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;

  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
}

.page-hero--cinematic::after{ z-index:1; }

.page-hero--cinematic .container{
  position:relative;
  z-index:2;
  width:100%;
}

/* Slightly stronger text shadow keeps the heading crisp now
   that the gradient overlay is lighter and more image shows
   through behind it. */
.page-hero--cinematic h1{
  text-shadow:0 4px 26px rgba(0,0,0,.6);
}
.page-hero--cinematic p{
  text-shadow:0 2px 16px rgba(0,0,0,.7);
}

.page-hero--iv::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.8) 0%,
      rgba(7,12,20,.58) 32%,
      rgba(8,14,23,.34) 58%,
      rgba(8,14,23,.18) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/iv.png");
  background-position:center 30%;
}
.page-hero--contact::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.8) 0%,
      rgba(7,12,20,.58) 32%,
      rgba(8,14,23,.34) 58%,
      rgba(8,14,23,.18) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/robocontactus.png");
  background-position:center 30%;
}

.page-hero--courses::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.8) 0%,
      rgba(7,12,20,.58) 32%,
      rgba(8,14,23,.34) 58%,
      rgba(8,14,23,.18) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/robocontactus.png");
  background-position:center 30%;
}

.page-hero--careers::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.82) 0%,
      rgba(7,12,20,.6) 34%,
      rgba(8,14,23,.32) 62%,
      rgba(8,14,23,.16) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/career-hero-bg.svg");
  background-position:center 60%;
}

.page-hero--gallery::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.82) 0%,
      rgba(7,12,20,.6) 32%,
      rgba(8,14,23,.34) 60%,
      rgba(8,14,23,.18) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/genailab.png");
  background-position:center 30%;
}

.page-hero--python-fullstack::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.84) 0%,
      rgba(7,12,20,.62) 34%,
      rgba(8,14,23,.36) 62%,
      rgba(8,14,23,.2) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/a2-robot.png");
  background-position:center 34%;
}

.page-hero--data-science::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.84) 0%,
      rgba(7,12,20,.62) 34%,
      rgba(8,14,23,.36) 62%,
      rgba(8,14,23,.2) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/a3-robot.png");
  background-position:center 32%;
}

.page-hero--genai::before{
  background-image:
    linear-gradient(100deg,
      rgba(5,8,13,.84) 0%,
      rgba(7,12,20,.62) 34%,
      rgba(8,14,23,.36) 62%,
      rgba(8,14,23,.2) 100%
    ),
    linear-gradient(to top,
      rgba(4,6,10,.55) 0%,
      rgba(4,6,10,0) 42%
    ),
    url("images/a1-robot.png");
  background-position:center 28%;
}

@media(max-width:900px){
  .page-hero--cinematic{ min-height:64vh; }
}

@media(max-width:700px){
  .page-hero--cinematic{ min-height:auto; padding:150px 0 70px; }

  .page-hero--iv::before{
    background-position:78% center;
    background-image:
      linear-gradient(180deg,
        rgba(5,8,13,.85) 0%,
        rgba(6,10,17,.68) 55%,
        rgba(7,12,20,.45) 100%
      ),
      linear-gradient(to top,
        rgba(4,6,10,.65) 0%,
        rgba(4,6,10,0) 55%
      ),
      url("images/genlab-a3.png");
  }

  .page-hero--careers::before{
    background-position:82% center;
    background-image:
      linear-gradient(180deg,
        rgba(5,8,13,.85) 0%,
        rgba(6,10,17,.68) 55%,
        rgba(7,12,20,.45) 100%
      ),
      linear-gradient(to top,
        rgba(4,6,10,.65) 0%,
        rgba(4,6,10,0) 55%
      ),
      url("images/career-hero-bg.svg");
  }

  .page-hero--gallery::before{
    background-position:70% center;
    background-image:
      linear-gradient(180deg,
        rgba(5,8,13,.85) 0%,
        rgba(6,10,17,.68) 55%,
        rgba(7,12,20,.45) 100%
      ),
      linear-gradient(to top,
        rgba(4,6,10,.65) 0%,
        rgba(4,6,10,0) 55%
      ),
      url("images/genlab-a2-wide.png");
  }

  .page-hero--python-fullstack::before{
    background-position:62% center;
    background-image:
      linear-gradient(180deg,
        rgba(5,8,13,.87) 0%,
        rgba(6,10,17,.7) 55%,
        rgba(7,12,20,.48) 100%
      ),
      linear-gradient(to top,
        rgba(4,6,10,.65) 0%,
        rgba(4,6,10,0) 55%
      ),
      url("images/a2-robot.png");
  }

  .page-hero--data-science::before{
    background-position:66% center;
    background-image:
      linear-gradient(180deg,
        rgba(5,8,13,.87) 0%,
        rgba(6,10,17,.7) 55%,
        rgba(7,12,20,.48) 100%
      ),
      linear-gradient(to top,
        rgba(4,6,10,.65) 0%,
        rgba(4,6,10,0) 55%
      ),
      url("images/a3-robot.png");
  }

  .page-hero--genai::before{
    background-position:64% center;
    background-image:
      linear-gradient(180deg,
        rgba(5,8,13,.87) 0%,
        rgba(6,10,17,.7) 55%,
        rgba(7,12,20,.48) 100%
      ),
      linear-gradient(to top,
        rgba(4,6,10,.65) 0%,
        rgba(4,6,10,0) 55%
      ),
      url("images/a1-robot.png");
  }
}

/* =========================
   WHITE SECTION
========================= */

.light-section{
  position:relative;
  background:linear-gradient(135deg, #ffffff 0%, #f5f7f9 100%);
  padding:120px 0;
}

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

.section-eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  color:#e99a00;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:20px;
}

.section-eyebrow .glow-dot{
  width:10px;
  height:10px;
  min-width:10px;
  box-shadow:
    0 0 7px rgba(255,176,32,.8),
    0 0 16px rgba(255,176,32,.35);
}

.light-section h2{
  font-size:48px;
  line-height:1.05;
  margin-bottom:24px;
  color:#11161b;
}

.light-section p{
  color:#626d78;
  font-size:18px;
  line-height:1.7;
}

/* =========================
   IMAGE CARD
========================= */

.image-card{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  background:#111;
  box-shadow:0 25px 70px rgba(0,0,0,.18);
}

.image-card img{
  width:100%;
  height:430px;
  object-fit:cover;
  transition:transform .6s ease;
}

.image-card:hover img{
  transform:scale(1.03);
}

.image-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.3));
  pointer-events:none;
}

/* =========================
   DARK SECTION
========================= */

.dark-section{
  background:var(--dark);
  color:white;
  padding:120px 0;
}

.dark-section h2{
  font-size:48px;
  line-height:1.05;
  margin-bottom:22px;
}

.dark-section p{
  color:#89939e;
  font-size:17px;
  line-height:1.7;
}

/* =========================
   CARDS
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:60px;
}

.card{
  padding:34px;
  min-height:240px;
  background:#12171c;
  border:1px solid #252d35;
  transition:transform .25s ease, border-color .25s ease;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#3b4651;
}

.card-number{
  color:var(--amber);
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  margin-bottom:35px;
}

.card h3{
  font-size:25px;
  margin-bottom:14px;
}

.card p{
  font-size:15px;
}

/* =========================
   ROBOTICS SECTION
========================= */

.robotics{
  background:#f3f5f7;
  padding:120px 0;
}

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

.robot-card{
  background:white;
  border:1px solid #e1e5e9;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.robot-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.robot-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.robot-card-content{
  padding:26px;
}

.robot-card-content .mono{
  color:#e99a00;
  font-size:11px;
  letter-spacing:2px;
}

.robot-card h3{
  font-size:25px;
  margin:10px 0;
}

.robot-card p{
  color:#6c7680;
  font-size:14px;
}

/* =========================
   ROLE LISTINGS (Careers page)
========================= */

.roles-list{
  margin-top:60px;
  border-top:1px solid #252d35;
}

.role-row{
  display:grid;
  grid-template-columns:1.4fr .7fr .7fr auto;
  gap:24px;
  align-items:center;
  padding:30px 0;
  border-bottom:1px solid #252d35;
  transition:padding-left .3s ease;
}

.role-row:hover{
  padding-left:10px;
}

.role-title{
  font-size:19px;
  font-weight:600;
}

.role-title span{
  display:block;
  margin-top:6px;
  color:#89939e;
  font-size:14px;
  font-weight:400;
}

.role-meta{
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--amber);
}

.role-apply{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 20px;
  border:1px solid #33404b;
  color:#8f2323;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:.5px;
  text-transform:uppercase;
  white-space:nowrap;
  transition:.2s ease;
}

.role-apply:hover{
  border-color:var(--amber);
  color:var(--amber);
}

@media(max-width:760px){
  .role-row{
    grid-template-columns:1fr;
    gap:12px;
  }
  .role-apply{ justify-self:start; }
}

/* =========================
   SYLLABUS MODULE LIST (Course pages)
========================= */

.module-list{
  margin-top:60px;
  border-top:1px solid #252d35;
}

.module-row{
  display:grid;
  grid-template-columns:2.4fr .9fr;
  gap:24px;
  align-items:center;
  padding:28px 0;
  border-bottom:1px solid #252d35;
  transition:padding-left .3s ease;
}

.module-row:hover{ padding-left:10px; }

.module-num{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  color:var(--amber);
  margin-bottom:8px;
}

.module-title{
  font-size:19px;
  font-weight:600;
}

.module-title span{
  display:block;
  margin-top:6px;
  color:#89939e;
  font-size:14px;
  font-weight:400;
}

.module-meta{
  justify-self:end;
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#8f99a3;
  border:1px solid #33404b;
  padding:8px 14px;
  white-space:nowrap;
}

@media(max-width:760px){
  .module-row{ grid-template-columns:1fr; gap:12px; }
  .module-meta{ justify-self:start; }
}

/* =========================
   INDUSTRIAL VISITS
========================= */

.visit-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin-top:70px;
  border-top:1px solid #252d35;
  border-left:1px solid #252d35;
}

.visit-stat{
  padding:30px 26px;
  border-right:1px solid #252d35;
  border-bottom:1px solid #252d35;
}

.visit-stat .num{
  font-family:'Space Grotesk',sans-serif;
  font-size:40px;
  font-weight:700;
  color:var(--amber);
  line-height:1;
  margin-bottom:10px;
}

.visit-stat .label{
  color:#89939e;
  font-size:13.5px;
}

@media(max-width:760px){
  .visit-stats{ grid-template-columns:repeat(2,1fr); }
}

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

.visit-card{
  background:white;
  border:1px solid #e1e5e9;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.visit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.visit-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.visit-card-content{
  padding:24px 26px 28px;
}

.visit-date{
  font-family:'JetBrains Mono',monospace;
  color:#e99a00;
  font-size:10.5px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.visit-card h3{
  font-size:20px;
  line-height:1.25;
  margin-bottom:10px;
}

.visit-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  margin-bottom:14px;
}

.visit-meta span{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#6c7680;
}

.visit-meta span strong{
  color:#171b20;
  font-weight:600;
}

.visit-card p{
  color:#6c7680;
  font-size:14px;
  line-height:1.65;
}

@media(max-width:900px){
  .visits-grid{ grid-template-columns:1fr; }
}

/* =========================
   ABOUT PAGE
========================= */

.about-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  margin-top:64px;
}

.about-stat{
  padding:30px 26px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.about-stat .num{
  font-family:'Space Grotesk',sans-serif;
  font-size:38px;
  font-weight:700;
  color:var(--amber);
  line-height:1;
  margin-bottom:10px;
}

.about-stat .label{
  color:#89939e;
  font-size:13.5px;
}

@media(max-width:760px){
  .about-stats{ grid-template-columns:repeat(2,1fr); }
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid #e1e5e9;
  border-left:1px solid #e1e5e9;
  margin-top:60px;
}

.value-item{
  padding:30px 26px;
  border-right:1px solid #e1e5e9;
  border-bottom:1px solid #e1e5e9;
  min-height:180px;
}

.value-item .value-num{
  font-family:'JetBrains Mono',monospace;
  color:#e99a00;
  font-size:11px;
  letter-spacing:1.5px;
  margin-bottom:22px;
  display:block;
}

.value-item h3{
  font-size:17px;
  margin-bottom:10px;
  color:#11161b;
}

.value-item p{
  color:#626d78;
  font-size:14px;
  line-height:1.65;
}

@media(max-width:900px){
  .values-grid{ grid-template-columns:repeat(2,1fr); }
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-section{
  background:var(--white);
  padding:70px 0 130px;
}

.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:50px 0 46px;
}

.gfilter{
  padding:10px 18px;
  border:1px solid #dfe3e7;
  background:transparent;
  color:#4d565f;
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.2s ease;
}
.gfilter:hover{
  border-color:#c9ced3;
  color:#171b20;
}
.gfilter.is-active{
  background:var(--dark);
  border-color:var(--dark);
  color:#fff;
}

.masonry{
  columns:4 240px;
  column-gap:20px;
}

.gitem{
  break-inside:avoid;
  margin-bottom:20px;
  position:relative;
  overflow:hidden;
  border-radius:4px;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(15,20,25,.08);
}
.gitem.is-hidden{ display:none; }

.gitem img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .55s ease;
}
.gitem:hover img{
  transform:scale(1.06);
}

.gitem-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(6,8,10,.88) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
  opacity:0;
  transition:opacity .3s ease;
}
.gitem:hover .gitem-overlay{ opacity:1; }
.gitem-tag{
  font-family:'JetBrains Mono',monospace;
  font-size:10px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--amber);
  margin-bottom:6px;
}
.gitem-title{
  color:#fff;
  font-family:'Space Grotesk',sans-serif;
  font-size:16px;
  font-weight:600;
}

/* lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(6,8,10,.95);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox-stage{ width:min(80vw,900px); text-align:center; }
.lightbox-stage img{
  width:100%;
  max-height:74vh;
  object-fit:contain;
  border-radius:2px;
}
.lightbox-caption{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  color:#c7cdd3;
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.lightbox-close,.lightbox-nav{
  position:absolute;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s ease;
}
.lightbox-close:hover,.lightbox-nav:hover{
  border-color:var(--amber);
  color:var(--amber);
}
.lightbox-close{ top:26px; right:26px; font-size:20px; }
.lightbox-prev{ left:26px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:26px; top:50%; transform:translateY(-50%); }
.lightbox-nav svg{ width:16px; height:16px; }

/* =========================
   CONTACT
========================= */

.contact{
  background:linear-gradient(135deg, #ffffff, #eef2f5);
  padding:120px 0;
}

.contact-box{
  max-width:800px;
  margin:auto;
  text-align:center;
}

.contact-box h2{
  font-size:56px;
  margin-bottom:22px;
}

.contact-box p{
  color:#6d7781;
  font-size:18px;
  margin-bottom:35px;
}

.contact-button{
  display:inline-block;
  background:var(--amber);
  color:#111;
  padding:15px 28px;
  font-family:'JetBrains Mono',monospace;
  font-size:14px;
  transition:.2s ease;
}

.contact-button:hover{
  background:#ffc34d;
  transform:translateY(-2px);
}

/* =========================
   FOOTER
========================= */

footer{
  background:#0b0e11;
  color:#7e8791;
  padding:55px 0;
  border-top:1px solid #242b33;
}

.footer-inner{
  max-width:var(--maxw);
  margin:auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* new multi-column footer */
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:48px;
  flex-wrap:wrap;
  padding-bottom:48px;
  border-bottom:1px solid #1c222a;
}

.footer-brand .brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}

.brand-mark{
  width:34px;
  height:34px;
  border:1px solid #33404b;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  object-fit:cover;
  flex:none;
}

.brand-word{
  color:#f2f4f6;
  font-family:'Space Grotesk',sans-serif;
  font-size:18px;
  font-weight:700;
}

.brand-word span{
  color:var(--amber);
}

.footer-brand p{
  color:#7e8791;
  font-size:13.5px;
  max-width:280px;
  line-height:1.7;
}

.footer-cols{
  display:flex;
  gap:64px;
  flex-wrap:wrap;
}

.footer-col h4{
  font-family:'JetBrains Mono',monospace;
  font-size:10.5px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#5c6570;
  margin-bottom:16px;
}

.footer-col a{
  display:block;
  color:#a7afb9;
  font-size:13.5px;
  margin-bottom:10px;
  transition:color .2s ease;
}

.footer-col a:hover{
  color:var(--amber);
}

.footer-col p{
  color:#5c6570;
  font-size:12.5px;
  line-height:1.7;
  max-width:220px;
  margin-top:10px;
}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:14px;
}

.footer-contact-item .footer-icon{
  width:14px;
  height:14px;
  min-width:14px;
  margin-top:2px;
  color:var(--amber);
}

.footer-contact-item p{
  margin-top:0;
}

.footer-contact-item a{
  display:block;
  margin:0;
  color:#5c6570;
  font-size:12.5px;
  line-height:1.7;
  transition:color .2s ease;
}

.footer-contact-item a:hover{
  color:var(--amber);
}

.footer-map{
  margin-top:16px;
  width:100%;
  max-width:260px;
  height:130px;
  border:1px solid #242b33;
  border-radius:4px;
  overflow:hidden;
  filter:grayscale(.15) contrast(1.05);
}

.footer-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media(max-width:760px){
  .footer-map{ max-width:100%; }
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:26px;
  flex-wrap:wrap;
  gap:16px;
}

.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:32px;
  height:32px;
  border:1px solid #242b33;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#a7afb9;
  transition:.2s ease;
}

.footer-social a:hover{
  border-color:var(--amber);
  color:var(--amber);
}

.footer-social svg{
  width:14px;
  height:14px;
}

@media(max-width:760px){
  .footer-top{ flex-direction:column; gap:36px; }
  .footer-cols{ gap:40px; }
}

.footer-copy{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:1px;
  color:#7e8791;
}

/* =========================
   MOBILE
========================= */

/* hamburger menu takes over earlier (1140px) so the added
   Courses / Contact Us links always have room on desktop */
@media(max-width:1140px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:fixed;
    top:72px; right:0; bottom:0;
    width:min(78vw,320px);
    background:#0e1319;
    border-left:1px solid var(--line);
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:26px;
    padding:36px 26px;
    overflow-y:auto;
    transform:translateX(100%);
    transition:transform .35s ease;
    z-index:999;
  }
  .nav-links.is-open{ transform:translateX(0); }
  .nav-links a:not(.nav-cta){ display:block !important; font-size:15px; }
  .nav-links a.is-active::after{ bottom:-6px; }
  .nav-cta{ align-self:flex-start; }

  .nav-item{ width:100%; }
  .nav-dropdown-toggle{
    width:100%;
    justify-content:space-between;
    font-size:15px;
    color:#929ba7;
  }
  .nav-item.has-active .nav-dropdown-toggle::after{ display:none; }
  .nav-item.has-active .nav-dropdown-toggle{ color:var(--amber); }
  .nav-dropdown-menu{
    position:static;
    transform:none;
    left:auto;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    max-height:0;
    overflow:hidden;
    border:none;
    background:transparent;
    box-shadow:none;
    padding:0;
    transition:max-height .3s ease, padding .3s ease;
  }
  .nav-item.is-open .nav-dropdown-menu{
    transform:none;
    max-height:220px;
    padding:4px 0 4px 14px;
  }
  .nav-dropdown-menu a{
    padding:10px 0 !important;
    font-size:14px !important;
    color:#8b95a1;
  }
  .nav-dropdown-menu a.is-active{ color:var(--amber); }
}

@media(max-width:900px){
  .hero-content{ padding:80px 22px 110px; }
  .hero h1{ font-size:clamp(45px,12vw,70px); letter-spacing:-2px; }
  .hero-description{ font-size:17px; }
  .hero-logo{ width:105px; height:105px; }
  .section-grid{ grid-template-columns:1fr; gap:45px; }
  .cards{ grid-template-columns:1fr; }
  .robotics-grid{ grid-template-columns:1fr; }
  .masonry{ columns:3 200px; }
}

@media(max-width:700px){
  nav{ height:64px; padding:0 18px; }
  .logo-word{ font-size:17px; }

  .nav-links{ top:64px; }

  .hero{ min-height:calc(100vh - 64px); }
  .hero-track{ animation-duration:15s; }
  .hero-slide{ background-position:center; }

  .eyebrow{ font-size:10px; letter-spacing:2px; gap:9px; flex-wrap:wrap; }
  .glow-dot{ width:12px; height:12px; min-width:12px; }
  .hero h1{ font-size:48px; }
  .hero-description{ font-size:15px; }
  .hero-label{ right:15px; bottom:15px; }

  .light-section, .dark-section, .robotics, .contact{ padding:80px 0; }
  .light-section h2, .dark-section h2{ font-size:38px; }
  .contact-box h2{ font-size:42px; }
  .footer-inner{ flex-direction:column; gap:18px; text-align:center; }

  .page-hero{ padding:150px 0 70px; }
  .masonry{ columns:2 150px; }
  .gallery-filters{ margin:36px 0 30px; }
  .lightbox-prev,.lightbox-next{ width:36px; height:36px; }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-info-list{
  margin-top:36px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

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

.contact-info-icon{
  width:20px;
  height:20px;
  min-width:20px;
  margin-top:3px;
  color:#e99a00;
}

.contact-info-item .contact-info-label{
  display:block;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#8a939d;
  margin-bottom:5px;
}

.contact-info-item a,
.contact-info-item p{
  color:#171b20;
  font-size:15px;
  line-height:1.6;
}

.contact-info-item a:hover{
  color:#e99a00;
}

.contact-form-card{
  background:#ffffff;
  border:1px solid #e1e5e9;
  border-radius:4px;
  padding:44px;
  box-shadow:0 20px 50px rgba(15,20,25,.08);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

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

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-group label{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#6c7680;
}

.form-group input,
.form-group textarea{
  font-family:'Inter',sans-serif;
  font-size:15px;
  color:#171b20;
  padding:12px 14px;
  border:1px solid #dfe3e7;
  border-radius:2px;
  background:#fbfbfc;
  transition:border-color .2s ease, background .2s ease;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--amber);
  background:#fff;
}

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

.contact-form .contact-button{
  align-self:flex-start;
  border:none;
  cursor:pointer;
}

.form-note{
  margin-top:16px;
  font-family:'JetBrains Mono',monospace;
  font-size:13px;
  letter-spacing:.3px;
  color:#e99a00;
  min-height:1.2em;
}

.contact-map-frame{
  width:100%;
  height:380px;
  border:1px solid #e1e5e9;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(15,20,25,.08);
}

.contact-map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media(max-width:760px){
  .contact-form-card{ padding:28px; }
  .form-row{ grid-template-columns:1fr; }
  .contact-map-frame{ height:280px; }
}
/* ---- Enquiry form (contact CTA) ---- */
  .contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .contact-box-intro {
    flex: 1 1 280px;
    min-width: 260px;
  }

  .enquiry-form {
    flex: 1 1 380px;
    min-width: 300px;
    max-width: 480px;
    display: grid;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px;
  }

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

  .enquiry-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #b7bec6;
    margin-bottom: 6px;
  }

  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #171b20;
    background: #ffffff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 14px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
  }

  .enquiry-form input:focus,
  .enquiry-form select:focus,
  .enquiry-form textarea:focus {
    border-color: #7c5cff;
    box-shadow: 0 0 0 3px rgba(124,92,255,0.25);
  }

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

  .enquiry-form .field-error {
    display: none;
    font-size: 12px;
    color: #ff8c8c;
    margin-top: 6px;
  }

  .enquiry-form .field.has-error input,
  .enquiry-form .field.has-error select,
  .enquiry-form .field.has-error textarea {
    border-color: #ff6b6b;
  }

  .enquiry-form .field.has-error .field-error {
    display: block;
  }

  .enquiry-submit {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7c5cff;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
  }

  .enquiry-submit:hover { background: #6a4bef; transform: translateY(-1px); }
  .enquiry-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .enquiry-status {
    font-size: 14px;
    margin-top: 4px;
    min-height: 20px;
  }

  .enquiry-status.success { color: #7CE0A0; }
  .enquiry-status.error { color: #ff8c8c; }

  @media (max-width: 620px) {
    .enquiry-form .form-row { grid-template-columns: 1fr; }
  }