/* ===========================
   ROOT VARIABLES
=========================== */
:root {
  --primary-dark: #0d1b2a;
  --accent-blue: #1565c0;
  --bright-accent: #2196f3;
  --white: #ffffff;
  --light-grey: #f5f7fa;
  --text-grey: #555555;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-dark);
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-dark);
  padding: 14px 0;
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

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

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
}

.nav-logo span { color: var(--bright-accent); }

.navbar-logo {
  height: 50px;
  width: 50px;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  overflow: visible;
  border-radius: 0;
  clip-path: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover .navbar-logo {
  transform: scale(1.05);
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.4px;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bright-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bright-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.75) 40%, rgba(13,27,42,0.3) 100%),
    url('../images/workforce-hero.png') right center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  overflow: visible;
}

#particle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

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

.hero-content {
  text-align: left;
  max-width: 560px;
}

.hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bright-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 26px;
  padding: 7px 20px;
  border: 1px solid rgba(33,150,243,0.4);
  border-radius: 24px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.22;
}

.hero-sub {
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.68);
  margin-bottom: 42px;
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--bright-accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--bright-accent);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(33,150,243,0.4);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.65);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-trust {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

.hero-trust .check { color: #66bb6a; }

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow i {
  color: rgba(255,255,255,0.45);
  font-size: 1.4rem;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: #080f18;
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

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

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--bright-accent);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ===========================
   SECTION HEADER UTILITIES
=========================== */
.section-header { margin-bottom: 44px; }

.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bright-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

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

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--bright-accent);
  border-radius: 2px;
}

.section-divider.center { margin: 0 auto; }

/* ===========================
   ABOUT SNIPPET (HOME)
=========================== */
.about-snippet {
  background: var(--light-grey);
  padding: 80px 0;
}

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

.about-left p {
  font-size: 0.98rem;
  color: var(--text-grey);
  line-height: 1.85;
  margin-bottom: 30px;
}

.about-right-box {
  background: var(--primary-dark);
  padding: 42px 38px;
  border-radius: 4px;
}

.about-right-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.strength-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.strength-item i {
  color: var(--bright-accent);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.strength-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* ===========================
   SERVICES GRID
=========================== */
.services-section {
  background: var(--white);
  padding: 80px 0;
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #2196f3);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 32px rgba(21,101,192,0.3);
  border-color: rgba(33,150,243,0.25);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1565c0, #2196f3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.service-card:hover .service-icon { background: linear-gradient(135deg, #0d47a1, #1565c0); }

.service-icon i {
  font-size: 1.35rem;
  color: var(--white);
}

.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-grey);
  line-height: 1.72;
}

/* ===========================
   INDUSTRIES STRIP
=========================== */
.industries-strip {
  background: var(--primary-dark);
  padding: 48px 0;
}

.industries-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.industry-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 38px;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s;
}

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

.industry-strip-item i {
  color: var(--bright-accent);
  font-size: 1.1rem;
}

.industry-strip-item:hover { color: var(--white); }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section {
  background: var(--light-grey);
  padding: 80px 0;
}

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

.why-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #2196f3);
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 32px rgba(21,101,192,0.3);
  border-color: rgba(33,150,243,0.25);
}

.why-icon {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, #1565c0, #2196f3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: background 0.3s;
}

.why-card:hover .why-icon { background: linear-gradient(135deg, #0d47a1, #1565c0); }

.why-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.why-card:hover .why-icon i { color: var(--white); }

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.845rem;
  color: var(--text-grey);
  line-height: 1.72;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, #1565c0 0%, #2196f3 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 700;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 34px;
}

.btn-white {
  display: inline-block;
  padding: 14px 42px;
  background: var(--white);
  color: var(--accent-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

/* ===========================
   PAGE HERO BANNER
=========================== */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  background: linear-gradient(135deg, #0d1b2a 0%, #0f2744 55%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.ph-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ph-blob {
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(33,150,243,0.17) 0%, transparent 65%);
  border-radius: 50%;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  animation: phBlobPulse 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes phBlobPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%, -50%) scale(1.22); }
}

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

.page-hero-content {
  max-width: 640px;
}

.ph-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bright-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  animation: phSlideUp 0.55s ease forwards 0.15s;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.18;
  opacity: 0;
  animation: phSlideUp 0.6s ease forwards 0.3s;
}

.ph-underline {
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #1565c0, #2196f3);
  border-radius: 2px;
  margin-bottom: 18px;
  animation: phUnderlineDraw 0.7s ease forwards 0.72s;
}

.ph-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
  opacity: 0;
  animation: phFadeIn 0.6s ease forwards 0.9s;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: phFadeIn 0.6s ease forwards 1.05s;
}

.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--bright-accent); }
.breadcrumb .sep    { color: rgba(255,255,255,0.25); }
.breadcrumb .bc-active { color: var(--bright-accent); }

@keyframes phSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes phUnderlineDraw {
  to { width: 64px; }
}

@keyframes phFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   TYPEWRITER CURSOR
=========================== */
.type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: #2196f3;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: twBlink 0.75s step-end infinite;
}

@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ===========================
   ABOUT PAGE — INTRO
=========================== */
.about-intro {
  background: var(--white);
  padding: 80px 0;
}

.about-intro p {
  font-size: 1rem;
  color: var(--text-grey);
  line-height: 1.88;
  max-width: 820px;
}

/* ===========================
   VISION & MISSION
=========================== */
.vision-mission {
  background: var(--light-grey);
  padding: 80px 0;
}

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

.vm-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 4px;
  border-left: 4px solid var(--bright-accent);
  transition: box-shadow 0.3s;
}

.vm-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

.vm-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-card h3 i { color: var(--bright-accent); font-size: 1.15rem; }

.vm-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.82;
}

/* ===========================
   ACHIEVEMENTS
=========================== */
.achievements {
  background: var(--white);
  padding: 80px 0;
}

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

.achievement-card {
  background: var(--light-grey);
  padding: 32px 28px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #2196f3);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,101,192,0.25);
  background: var(--white);
}

.achievement-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #1565c0, #2196f3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.achievement-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.55;
  padding-top: 6px;
}

/* ===========================
   STRENGTHS
=========================== */
.strengths-section {
  background: var(--light-grey);
  padding: 80px 0;
}

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

.strength-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.strength-card:hover {
  border-left-color: var(--bright-accent);
  background: var(--primary-dark);
  transform: translateX(6px);
}

.strength-card:hover .strength-card-text { color: var(--white); }

.strength-card i {
  color: var(--bright-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.strength-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
  transition: color 0.3s;
}

/* ===========================
   SERVICES PAGE
=========================== */
.services-page-grid {
  padding: 80px 0;
  background: var(--white);
}

.compliance-box {
  background: var(--primary-dark);
  padding: 56px 0;
}

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

.compliance-inner h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.compliance-tag {
  padding: 9px 22px;
  border: 1px solid rgba(33,150,243,0.35);
  border-radius: 24px;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  transition: all 0.3s;
}

.compliance-tag:hover {
  background: var(--bright-accent);
  border-color: var(--bright-accent);
  color: var(--white);
}

.responsibility-section {
  background: var(--light-grey);
  padding: 80px 0;
}

.responsibility-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  counter-reset: resp-counter;
}

.responsibility-item {
  counter-increment: resp-counter;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.responsibility-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.responsibility-item::before {
  content: counter(resp-counter, decimal-leading-zero);
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bright-accent);
  opacity: 0.55;
  min-width: 44px;
}

.responsibility-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.services-note {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.services-note p {
  font-style: italic;
  color: var(--text-grey);
  font-size: 0.9rem;
}

/* ===========================
   INDUSTRIES PAGE
=========================== */
.industries-main {
  background: var(--white);
  padding: 80px 0;
}

.industries-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.industry-card {
  background: var(--light-grey);
  padding: 44px 28px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #2196f3);
}

.industry-card:hover {
  background: var(--primary-dark);
  transform: translateY(-7px);
  box-shadow: 0 12px 32px rgba(21,101,192,0.35);
}

.industry-card-icon {
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, #1565c0, #2196f3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  transition: background 0.3s;
}

.industry-card:hover .industry-card-icon { background: linear-gradient(135deg, #0d47a1, #1565c0); }

.industry-card-icon i {
  font-size: 2rem;
  color: var(--white);
  transition: color 0.3s;
}

.industry-card:hover .industry-card-icon i { color: var(--white); }

.industry-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.industry-card:hover h3 { color: var(--white); }

.industry-card p {
  font-size: 0.86rem;
  color: var(--text-grey);
  line-height: 1.72;
  transition: color 0.3s;
}

.industry-card:hover p { color: rgba(255,255,255,0.65); }

.industries-tagline {
  background: var(--primary-dark);
  padding: 52px 0;
  text-align: center;
}

.industries-tagline p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.industries-tagline p strong {
  color: var(--bright-accent);
  font-weight: 600;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section {
  background: var(--white);
  padding: 80px 0;
}

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

.contact-info-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.office-card {
  background: var(--light-grey);
  padding: 26px 28px;
  border-radius: 4px;
  margin-bottom: 18px;
  border-left: 4px solid var(--bright-accent);
  transition: box-shadow 0.3s;
}

.office-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

.office-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-card h4 i { color: var(--bright-accent); }

.office-card p {
  font-size: 0.875rem;
  color: var(--text-grey);
  line-height: 1.72;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
  color: var(--text-grey);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail i {
  color: var(--bright-accent);
  width: 18px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--text-grey);
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--bright-accent); }

.contact-form-wrap {
  background: var(--light-grey);
  padding: 42px 38px;
  border-radius: 4px;
}

.contact-form-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--primary-dark);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--bright-accent);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.12);
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--bright-accent);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
}

.btn-submit:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(33,150,243,0.4);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--primary-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-logo span { color: var(--bright-accent); }

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.845rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--bright-accent);
  font-size: 1.1rem;
}

.footer-links a:hover { color: var(--bright-accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--bright-accent);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-family: 'Inter', sans-serif;
  font-size: 0.845rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a.dev-credit {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a.dev-credit:hover {
  color: rgba(255,255,255,0.65);
}

/* ===========================
   THANK YOU PAGE
=========================== */
.thankyou-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  background: var(--white);
}

.thankyou-box {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.thankyou-icon {
  font-size: 4.5rem;
  color: var(--bright-accent);
  margin-bottom: 24px;
  line-height: 1;
}

.thankyou-box h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.thankyou-box p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Contact form error banner */
.form-error-banner {
  background: #fff3f3;
  border: 1px solid #f44336;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 22px;
  color: #c62828;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  display: none;
}

.form-error-banner.visible { display: block; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===========================
   PRIVACY POLICY PAGE
=========================== */
.policy-section {
  padding: 80px 0;
  background: var(--white);
}

.policy-block {
  margin-bottom: 28px;
  padding: 36px 40px;
  background: var(--light-grey);
  border-radius: 4px;
  border-left: 4px solid var(--bright-accent);
  transition: box-shadow 0.3s ease;
}

.policy-block:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.policy-block h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-block h2 i {
  color: var(--bright-accent);
  font-size: 1.05rem;
}

.policy-block p {
  font-size: 0.94rem;
  line-height: 1.82;
  color: var(--text-grey);
}

.policy-block ul {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}

.policy-block ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-grey);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.7;
}

.policy-block ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--bright-accent);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.5;
}

.policy-updated {
  text-align: center;
  margin-top: 36px;
  padding: 18px 24px;
  background: var(--primary-dark);
  border-radius: 4px;
}

.policy-updated p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ===========================
   RESPONSIVE — 1024px
=========================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

/* ===========================
   RESPONSIVE — 768px
=========================== */
@media (max-width: 768px) {
  .navbar-logo {
    height: 42px;
    width: 42px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 290px;
    height: 100vh;
    background: #080f18;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 28px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
    z-index: 1050;
  }

  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .about-snippet, .services-section, .why-section,
  .about-intro, .vision-mission, .achievements,
  .strengths-section, .services-page-grid, .responsibility-section,
  .industries-main, .contact-section, .policy-section {
    padding: 40px 0;
  }

  .policy-block { padding: 28px 24px; }

  .cta-banner { padding: 48px 0; }

  .about-grid,
  .vm-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-grid,
  .industries-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .achievement-grid,
  .strengths-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }

  .industries-strip-inner {
    flex-direction: column;
  }

  .industry-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .industry-strip-item:last-child { border-bottom: none; }

  .page-hero {
    height: auto;
    min-height: 320px;
    padding: 100px 0 50px;
  }
  .ph-blob {
    width: 300px;
    height: 300px;
    left: 50%;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.92) 100%),
      url('../images/workforce-hero.png') right center / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
  }
}

/* ===========================
   RESPONSIVE — 480px
=========================== */
@media (max-width: 480px) {
  .services-grid,
  .industries-main-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .contact-form-wrap { padding: 28px 20px; }
  .about-right-box { padding: 28px 20px; }
  .vm-grid { grid-template-columns: 1fr; }
}
