/* ==========================================================================
   ITPlusPoint — Style Sheet
   ========================================================================== */

/* ---------------------------------- Fonts -------------------------------- */

@font-face 
{
  font-family: 'Poppins-Regular';
  src: url('../fonts/Poppins-Regular.TTF');
  src: local("?"), url('../fonts/Poppins-Regular.woff') format("woff"), url('../fonts/Poppins-Regular.TTF') format("truetype"); 
}

@font-face 
{
  font-family: 'Poppins-SemiBold';
  src: url('../fonts/Poppins-SemiBold.TTF');
  src: local("?"), url('../fonts/Poppins-SemiBold.woff') format("woff"), url('../fonts/Poppins-SemiBold.TTF') format("truetype"); 
}

@font-face 
{
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.TTF');
  src: local("?"), url('../fonts/Roboto-Regular.woff') format("woff"), url('../fonts/Roboto-Regular.TTF') format("truetype"); 
}


/* ---------------------------------- Root --------------------------------- */

:root {
    --bg-body: #080b14;
    --bg-section-a: #0a0e1a;
    --bg-section-b: #0b1020;
    --bg-card: rgba(255, 255, 255, 0.035);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.09);
    --border-color-strong: rgba(255, 255, 255, 0.16);

    --orange: #f7871d;
    --orange-light: #ff9d3d;
    --blue: #2fa4e0;
    --blue-light: #5cc4f5;
    --green: #22c55e;
    --green-light: #3fdc7a;

    --text-heading: #f4f6fb;
    --text-body: #b7c0d1;
    --text-muted: #7c879c;
    --text-faint: #56607a;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --container-width: 1240px;
    --header-height: 78px;

    --transition: all 0.3s ease;
}


/* ---------------------------------- Reset -------------------------------- */

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


/* ---------------------------------- HTML --------------------------------- */

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}


/* ---------------------------------- Body --------------------------------- */

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}


/* -------------------------------- Headings -------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-heading);
}


/* -------------------------------- Paragraphs ------------------------------ */

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px;
} */

section { position: relative; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #04121c;
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------- Type --------------------------------- */
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow.blue { color: var(--blue-light); }
.eyebrow.muted { color: var(--text-muted); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}


/* ------------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-green {
  background: linear-gradient(180deg, #2ee878, var(--green));
  color: #06210f;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5), 0 8px 24px -6px rgba(34, 197, 94, 0.45);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18), 0 12px 28px -6px rgba(34, 197, 94, 0.55);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-light);
  border: 1px solid rgba(92, 196, 245, 0.45);
}
.btn-outline-blue:hover {
  background: rgba(92, 196, 245, 0.08);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.btn-blue-solid {
  background: linear-gradient(180deg, #4fc3f7, var(--blue));
  color: #04121c;
  box-shadow: 0 8px 24px -6px rgba(47, 164, 224, 0.45);
}
.btn-blue-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(47, 164, 224, 0.55);
}

.btn i, .btn .bi { font-size: 15px; }

/* ------------------------------- Header (site-wide top nav) -------------- */
/* Ported from the main ITPlusPoint site's shared nav layout (site.css)      */
.logo{padding:6px 0 6px 0; display:inline-block; font-weight:bold; color:#333;}
.logo img{height: 45px;}
.logo a{color:#333; text-decoration:none;}
.logo a:hover{color:#333; text-decoration:none;}

.main-nav, .main-nav * {margin:0; padding:0; list-style:none; }
.main-nav a{display:block; color:#787f68; position:relative; margin:0 1px; padding:10px 15px; text-decoration:none; transition:0.3s; font-weight:600; line-height:20px; font-size:16px; border-radius:15px;}
.main-nav a:hover,
.main-nav li:hover > a {color: #0099cc; background: transparent;}
.main-nav li a {position: relative; text-decoration: none;}
.main-nav li a::after {content: "";position: absolute;left: 0;bottom: 0;width: 0%;height: 2px;background-color: #0099cc;transition: width 0.3s ease;}
.main-nav li a:hover::after {width: 100%;}
.main-nav .active > a {color:#0099cc; text-decoration:none;}
.main-nav li a:focus{color:#787f68; text-decoration:none;}
.main-nav li.active > a::after,
.main-nav li a.active::after {width: 100%;}

.nav_bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 10px 0;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1100;
}
.nav_bar.scrolled {
  background: #ffffff;
  color: #555;
  box-shadow: 0 5px 25px rgba(0, 153, 255, 0.35);
  padding: 8px 0;
}
.nav_bar.scrolled .nav-menu li a { color: #555; }
.nav_bar.scrolled .nav-menu li a:hover { color: #0099cc; }

/* .nav-container { display: flex; align-items: center; justify-content: space-between; } */

.nav-menu { display: flex; gap: 20px; list-style: none; margin: 0; align-items: center; }
.nav-menu li { position: relative; }
.nav-menu li a { font-size: 16px; font-weight: 600; color: #ffffff; padding: 8px 10px; transition: 0.3s; }
.nav-menu li a:hover { color: #0099cc; }

.dropdown-menu {position: absolute;top: 100%;left: 0;margin-top: 0;background: #fff;padding: 10px 0;min-width: 250px;border-radius: 10px;box-shadow: 0 8px 20px rgba(0,0,0,0.08);display: none; color: #555 !important;}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: 14px; color: #555; }
.dropdown-menu li a.active { color: #0099cc; font-weight: 700; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: #ffffff; border-radius: 3px; }
.nav_bar.scrolled .hamburger span { background: #0099cc !important; }

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; left: -100%;
    width: 280px;
    height: 100%;
    background: #fbfeff;
    padding: 20px 0;
    transition: 0.4s ease;
    z-index: 1200;
    overflow-y: auto;
  }
  .main-nav.active { left: 0; }
  .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; padding: 0; margin: 0; gap: 2px; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { display: block; width: 100%; padding: 15px 20px; font-size: 18px; font-weight: 600; border-bottom: 1px solid #e2e5dc; color: #333 !important; }
  .nav-menu li a:hover { background: transparent; color: #0099cc !important; }
  .nav-menu li.active > a,
  .nav-menu li a.active { color: #0099cc !important; }
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #555;
  }
  .dropdown.active .dropdown-menu { display: block; max-height: 500px; }
  .dropdown-menu li a { font-size: 15px; padding: 12px 20px; border-bottom: 1px solid #e2e5dc; }
}

/* ------------------------------- Hero ------------------------------------ */
.hero {
  padding: calc(var(--header-height) + 70px) 0 90px;
  background:
    radial-gradient(700px 500px at 100% 0%, rgba(47,164,224,0.16), transparent 60%),
    radial-gradient(650px 500px at 0% 100%, rgba(247,135,29,0.16), transparent 60%),
    var(--bg-section-a);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-body);
  border: 1px solid var(--border-color-strong);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -1px;
}
.hero h1 .line-orange { color: var(--orange); display: block; }
.hero h1 .line-white { color: var(--text-heading); display: block; }

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
}
.hero-sub2 {
  margin-top: 6px;
  font-size: 16px;
  color: var(--text-muted);
}
.hero-sub2 a { color: var(--blue-light); font-weight: 600; }
.hero-sub2 a:hover { text-decoration: underline; }

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-faint);
}

/* Hero visual card */
.hero-visual { position: relative; }
.stat-card {
  background: rgba(15, 20, 36, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(6px);
}
.stat-dots { display: flex; gap: 6px; margin-bottom: 18px; }
.stat-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-faint);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.stat-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.stat-value { font-size: 26px; font-weight: 700; color: var(--text-heading); }
.stat-value.orange { color: var(--orange-light); }
.stat-bar {
  margin-top: 12px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.stat-bar span { display: block; height: 100%; background: var(--blue-light); border-radius: 2px; }
.stat-box:first-child .stat-bar span { background: var(--orange); width: 42%; }
.stat-box:last-child .stat-bar span { background: var(--blue-light); width: 78%; }

.chart-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 90px;
  margin-top: 16px;
}
.chart-bars span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--blue-light);
  opacity: 0.85;
}
.chart-bars span.hi { background: var(--orange); }

.ai-badge {
  position: absolute;
  bottom: -18px;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(160deg, #63c9f9, #2596d1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06202f;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 12px 30px -8px rgba(47,164,224,0.6);
}

/* ---------------------------- Pills / Badges ------------------------------ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-heading);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  background: var(--bg-card);
  transition: var(--transition);
}
.pill i { font-size: 15px; color: var(--orange); }
.pill.pill-blue i { color: var(--blue-light); }
.pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-strong);
  transform: translateY(-2px);
}

.pills-block { margin-bottom: 46px; }
.pills-block:last-child { margin-bottom: 0; }
.pills-block .eyebrow { text-align: center; }

/* ---------------------------- Why training -------------------------------- */
.why-training { text-align: center; }
.why-training h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
}
.why-training h2 .line1 { color: var(--text-heading); display: block; }
.why-training h2 .line2 { color: var(--orange); display: block; }
.why-training p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------------------------- Who will benefit ----------------------------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card i {
  font-size: 26px;
  color: var(--blue-light);
  margin-bottom: 14px;
  display: block;
}
.benefit-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(92,196,245,0.4);
  background: var(--bg-card-hover);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.5);
}

/* ---------------------------- Outcomes list -------------------------------- */
.outcome-list { max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.outcome-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: var(--transition);
}
.outcome-item i { color: var(--orange); font-size: 19px; flex-shrink: 0; }
.outcome-item span { color: var(--text-heading); font-size: 15.5px; font-weight: 500; }
.outcome-item:hover { background: var(--bg-card-hover); border-color: var(--border-color-strong); }

/* ---------------------------- Modules -------------------------------------- */
.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}
.module-card:hover {
  border-color: rgba(47,164,224,0.35);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.module-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.module-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(47,164,224,0.12);
  border: 1px solid rgba(47,164,224,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  font-size: 19px;
  flex-shrink: 0;
}
.module-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(247,135,29,0.12);
  border: 1px solid rgba(247,135,29,0.35);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}
.module-card h3 { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.module-card > p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.module-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.module-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text-body);
}
.module-card ul li i { color: var(--blue-light); font-size: 14px; margin-top: 3px; }
.module-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
}
.module-cta { text-align: center; margin-top: 40px; }

/* ---------------------------- Department pills ------------------------------ */
.dept-block { text-align: center; }
.dept-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.dept-pills a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue-light);
  border: 1px solid rgba(47,164,224,0.4);
  border-radius: var(--radius-pill);
  padding: 11px 24px;
  transition: var(--transition);
}
.dept-pills a:hover {
  background: rgba(47,164,224,0.12);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

/* ---------------------------- Impact stats ---------------------------------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}
.impact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(247,135,29,0.14);
  border: 1px solid rgba(247,135,29,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-light);
  font-size: 21px;
  margin-bottom: 20px;
}
.impact-card p { font-size: 17px; font-weight: 600; color: var(--text-heading); line-height: 1.5; }
.impact-card:hover { transform: translateY(-4px); border-color: rgba(247,135,29,0.35); background: var(--bg-card-hover); }

/* ---------------------------- How it works ----------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
}
.step-num { font-size: 30px; font-weight: 800; color: var(--orange); margin-bottom: 14px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-card:hover { transform: translateY(-4px); border-color: var(--border-color-strong); background: var(--bg-card-hover); }

/* ---------------------------- Why ITPlusPoint --------------------------------- */
.why-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin-top: 60px;
}
.why-box .eyebrow { color: var(--text-muted); letter-spacing: 2px; }
.why-box h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; color: var(--text-heading); margin-bottom: 18px; }
.why-box p { max-width: 760px; margin: 0 auto; color: var(--text-muted); font-size: 15.5px; line-height: 1.75; }
.why-tags {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-weight: 700;
  font-size: 15.5px;
}
.why-tags span:nth-child(1) { color: var(--orange); }
.why-tags span:nth-child(2) { color: var(--text-heading); }
.why-tags span:nth-child(3) { color: var(--blue-light); }

/* ---------------------------- Case studies ------------------------------------ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.case-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(247,135,29,0.12);
  border: 1px solid rgba(247,135,29,0.35);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 18px;
}
.case-card h3 { font-size: 18px; font-weight: 700; color: var(--text-heading); line-height: 1.4; margin-bottom: 16px; }
.case-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex-grow: 1; }
.case-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.case-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  transition: var(--transition);
}
.read-more i { transition: transform 0.25s ease; }
.case-card:hover { transform: translateY(-4px); border-color: var(--border-color-strong); background: var(--bg-card-hover); }
.read-more:hover i { transform: translateX(4px); }

/* ---------------------------- LinkedIn -------------------------------------- */
.linkedin-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.linkedin-box h3 { font-size: 22px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.linkedin-box p { color: var(--text-muted); font-size: 14.5px; }

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: var(--transition);
}
.insight-card h4 { font-size: 15.5px; font-weight: 700; color: var(--blue-light); margin-bottom: 10px; }
.insight-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.insight-card:hover { transform: translateY(-3px); background: var(--bg-card-hover); border-color: var(--border-color-strong); }

/* ---------------------------- FAQ --------------------------------------------- */
.faq-list { max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-color-strong); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: left;
}
.faq-question i {
  color: var(--blue-light);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
/* ---------------------------- On the Ground Gallery ---------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.gallery-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;

    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);

    background: linear-gradient(
        160deg,
        rgba(47, 164, 224, 0.08),
        rgba(10, 14, 26, 0.4)
    );

    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-strong);
}


/* ---------------------------- Gallery Image / Carousel ---------------------------- */

.gallery-img {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;

    overflow: hidden;
    padding: 0;

    display: block;
    flex-shrink: 0;

    color: var(--text-faint);
    text-align: center;
}


/* Carousel container */

.gallery-img .gallery-slider,
.gallery-img .carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* Carousel track */

.gallery-img .gallery-track {
    display: flex;
    width: 300%;
    height: 100%;

    animation: galleryAutoScroll 9s infinite;
}


/* Individual slide */

.gallery-img .gallery-slide {
    width: 33.333333%;
    height: 100%;
    flex: 0 0 33.333333%;
}


/* Images */

.gallery-img img,
.gallery-img .gallery-slide img,
.gallery-img .carousel-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ---------------------------- Auto Scroll ---------------------------- */

@keyframes galleryAutoScroll {

    0%,
    28% {
        transform: translateX(0);
    }

    33.333%,
    61% {
        transform: translateX(-33.333333%);
    }

    66.666%,
    94% {
        transform: translateX(-66.666666%);
    }

    100% {
        transform: translateX(0);
    }
}


/* ---------------------------- Caption ---------------------------- */

.gallery-caption {
    flex: 1;

    display: flex;
    align-items: flex-start;

    padding: 16px 20px 20px;

    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;

    color: var(--text-heading);

    border-top: 1px solid var(--border-color);
}


/* ---------------------------- Placeholder Image ---------------------------- */

.gallery-img > i {
    font-size: 26px;
}

.gallery-img > span {
    font-size: 12.5px;
}

.gallery-img > span b {
    color: var(--text-muted);
    font-weight: 600;
}


/* ---------------------------- Responsive ---------------------------- */

@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-img {
        aspect-ratio: 16 / 9;
    }

}

@media (max-width: 576px) {

    .gallery-grid {
        gap: 16px;
    }

    .gallery-caption {
        padding: 14px 16px 18px;
        font-size: 14px;
    }

}
/* ---------------------------- Contact box -------------------------------------- */
.contact-box {
    position: relative;
    border: none;
    border-radius: var(--radius-lg);

    padding: 50px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
}

.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;

    background: linear-gradient(
        120deg,
        var(--orange),
        var(--blue-light)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}
.contact-box h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; color: var(--text-heading); line-height: 1.3; margin-bottom: 18px; }
.contact-box .desc { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 26px; font-size: 14.5px; }
.contact-links a { color: var(--blue-light); font-weight: 600; }
.contact-links a:hover { text-decoration: underline; }
.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.qr-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.qr-box {
  width: 190px;
  height: 190px;
  margin: 0 auto 20px;
  border-radius: 14px;
  border: 3px solid var(--green);
  overflow: hidden;
  box-shadow: 0 0 24px -2px rgba(34,197,94,0.5);
}
.qr-box img { width: 100%; height: 100%; object-fit: cover; }
.qr-card h4 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.qr-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.qr-card .btn-green { width: 100%; }
.qr-call { display: block; margin-top: 14px; font-size: 13.5px; color: var(--blue-light); font-weight: 600; }
.qr-call:hover { text-decoration: underline; }

/* ---------------------------- Footer -------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  background: var(--bg-section-a);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .logo img { height: 26px; }
.footer-copy { font-size: 13.5px; color: var(--text-faint); }

.section-pad { padding: 40px 0; }

/* ============================== TTT INTRO SECTION ============================== */
.ttt-intro {
  padding: 40px 0px 40px;
  background: var(--bg-section-a);
}

.ttt-intro-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ttt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

/* Logo block (replaces heading) */
.ttt-logo-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.25);
}
.ttt-logo-top-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  display: block;
}

.ttt-subtext {
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}
.ttt-subtext strong { color: var(--text-body); }

/* Buttons under subtext */
.ttt-actions-top {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Buttons */
.ttt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}
.ttt-btn i { font-size: 16px; }

.ttt-btn-primary {
  background: linear-gradient(180deg, var(--orange-light), var(--orange));
  color: #2a1300;
  box-shadow: 0 8px 24px -6px rgba(247, 135, 29, 0.45);
}
.ttt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(247, 135, 29, 0.55);
}

.ttt-btn-outline {
  background: transparent;
  color: var(--blue-light);
  border: 1px solid rgba(92, 196, 245, 0.45);
}
.ttt-btn-outline:hover {
  background: rgba(92, 196, 245, 0.08);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 480px) {
  .ttt-intro {
    padding: 70px 18px;
  }
  .ttt-logo-top {
    padding: 16px 28px;
  }
  .ttt-logo-top-img {
    max-width: 190px;
  }
  .ttt-info-card {
    padding: 26px;
  }
  .ttt-stats {
    gap: 24px;
  }
  .ttt-actions-top {
    flex-direction: column;
    width: 100%;
  }
  .ttt-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .case-grid, .impact-grid, .insight-grid { gap: 16px; }
}

@media (max-width: 991px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .hero { text-align: left; padding-top: calc(var(--header-height) + 50px); }

  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: 1fr; }
  .impact-grid, .case-grid, .insight-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .qr-card { max-width: 360px; margin: 0 auto; }

  .section-pad { padding: 30px 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding-top: calc(var(--header-height) + 36px); padding-bottom: 60px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid, .case-grid, .insight-grid, .gallery-grid, .steps-grid { grid-template-columns: 1fr; }

  .why-box { padding: 36px 22px; }
  .why-tags { flex-direction: column; gap: 10px; }

  .linkedin-box { flex-direction: column; align-items: flex-start; text-align: left; }
  .linkedin-box .btn { width: 100%; justify-content: center; }

  .contact-buttons { flex-direction: column; align-items: stretch; }
  .contact-buttons .btn { width: 100%; }

  .site-footer .container { flex-direction: column; text-align: center; }

  .module-card, .why-box, .contact-box { padding: 26px 20px; }
  .pill { font-size: 13.5px; padding: 10px 16px; }
}
