/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg-primary: #1E2E44;
  --bg-darker: #162438;
  --bg-darkest: #111a26;
  --bg-light: #FFFFFF;
  --bg-light-alt: #F4F6F9;
  --accent-green: #8CC63F;
  --accent-green-dark: #7ab332;
  --accent-blue: #2196D3;
  --accent-blue-dark: #1a7eb4;
  --text-white: #FFFFFF;
  --text-white-85: rgba(255,255,255,0.85);
  --text-white-60: rgba(255,255,255,0.6);
  --text-dark: #222222;
  --text-body: #4a5568;
  --font-family: 'Segoe UI Symbol', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-light);
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent-green);
  color: var(--bg-primary);
  border-color: var(--accent-green);
}

.btn-primary:hover {
  background: var(--accent-green-dark);
  border-color: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140,198,63,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--text-white);
  color: var(--bg-primary);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

/* ===== HEADER / NAVIGATION ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}

#header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.14);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 250px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent-green);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--accent-green);
}

.nav-link.active {
  color: #111111;
}

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

.nav-cta:hover {
  background: var(--accent-green-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #111111;
  border-radius: 3px;
  transition: all var(--transition);
}

body.nav-active .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

body.nav-active .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  padding: 130px 24px 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(140, 198, 63, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(33, 150, 211, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(17, 26, 38, 0.40) 0%, rgba(22, 36, 56, 0.60) 50%, rgba(30, 46, 68, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/hero_factory_line.jpg') center/cover no-repeat;
  opacity: 0.36;
  z-index: 0;
}

.hero-ambient-glow {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(140, 198, 63, 0.15) 0%, rgba(33, 150, 211, 0.10) 45%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: heroAmbientPulse 7s ease-in-out infinite alternate;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero h1 {
  margin-bottom: 14px;
}

.hero-logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  animation: heroLogoFloat 4.5s ease-in-out infinite alternate;
  will-change: transform, filter;
}

@keyframes heroLogoFloat {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 14px rgba(140, 198, 63, 0.25));
  }
  50% {
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 22px rgba(33, 150, 211, 0.35));
  }
  100% {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(140, 198, 63, 0.45));
  }
}

.hero-tagline {
  display: block;
  font-family: 'Formal436 BT', 'Formal 436 BT', 'Formal436BT', 'Segoe UI Symbol', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: capitalize;
  text-shadow: none;
  animation: heroTaglineLeftToRight 4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroTaglineLeftToRight {
  0% {
    transform: translateX(-14px);
  }
  100% {
    transform: translateX(14px);
  }
}

.hero-badge {
  display: block;
  font-family: 'Formal436 BT', 'Formal 436 BT', 'Formal436BT', 'Segoe UI Symbol', sans-serif;
  background: transparent;
  color: var(--accent-green);
  font-size: 2.2rem;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 22px;
  border: none;
  text-shadow: none;
  animation: heroBadgeRightToLeft 4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroBadgeRightToLeft {
  0% {
    transform: translateX(14px);
  }
  100% {
    transform: translateX(-14px);
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-white-85);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-btn-main {
  background: linear-gradient(135deg, #8CC63F 0%, #76b12f 100%);
  color: #111e2e !important;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.4);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.hero-btn-main:hover {
  background: linear-gradient(135deg, #9be043 0%, #8CC63F 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(140, 198, 63, 0.55);
}

.hero-btn-main i {
  transition: transform 0.3s ease;
}

.hero-btn-main:hover i {
  transform: translateX(4px);
}

.hero-btn-alt {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 15px 34px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all var(--transition);
}

.hero-btn-alt:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(140, 198, 63, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), 0 0 16px rgba(140, 198, 63, 0.2);
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(140, 198, 63, 0.15);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stat-card:nth-child(2) .hero-stat-icon {
  background: rgba(33, 150, 211, 0.15);
  color: var(--accent-blue);
}

.hero-stat-data {
  text-align: left;
}

.hero-stat-number {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-stat-card:nth-child(2) .hero-stat-number {
  color: #4dc2f8;
}

.hero-stat-label {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-indicator:hover {
  color: var(--accent-green);
}

.hero-scroll-indicator i {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: var(--accent-green);
}

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

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

.section-bar {
  width: 60px;
  height: 4px;
  background: var(--accent-green);
  border-radius: 4px;
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-subtitle.light {
  color: var(--text-white-85);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 40px 0 100px;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.about-quote {
  background: linear-gradient(135deg, rgba(30,46,68,0.04), rgba(140,198,63,0.06));
  border-left: 4px solid var(--accent-green);
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bg-primary);
  font-weight: 500;
  line-height: 1.7;
}

.about-quote i {
  color: var(--accent-green);
  margin-right: 8px;
  font-size: 1.2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(140,198,63,0.1);
  color: var(--accent-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
  padding: 40px 0;
  background: var(--bg-primary);
  min-height: 875.98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.leadership-info {
  color: var(--text-white);
}

.leadership-info .section-tag { margin-bottom: 8px; }

.leadership-role {
  font-size: 1.15rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 20px;
}

.leadership-info p {
  color: var(--text-white-85);
  margin-bottom: 16px;
}

.leadership-info strong {
  color: var(--accent-green);
}

.leadership-experience {
  margin: 28px 0;
}

.leadership-experience h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exp-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-white-85);
  font-weight: 500;
}

.leadership-values {
  font-style: italic;
  color: var(--text-white-60) !important;
  font-size: 0.95rem;
}

.leadership-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.leadership-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 380px;
  width: 100%;
}

.leadership-image img {
  width: 100%;
  height: auto;
  display: block;
}

.leadership-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.leader-social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #162438;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.leader-social-link:hover {
  background: var(--accent-green);
  color: var(--bg-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.4);
  border-color: var(--accent-green);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 40px 0 100px;
  background: var(--bg-light-alt);
}

.services-section .section-header {
  margin-bottom: 24px;
}

.services-division {
  margin-bottom: 50px;
}

.services-division:last-child {
  margin-bottom: 0;
}

.division-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.division-number {
  display: none;
}

.division-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 0;
}

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

.service-card {
  background: var(--bg-light);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-blue);
  transition: background var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  background: var(--accent-green);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(33,150,211,0.08);
  color: var(--accent-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(140,198,63,0.1);
  color: var(--accent-green);
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.methodology-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.methodology-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.methodology-step {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(140,198,63,0.12);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.methodology-card:hover .methodology-step {
  background: var(--accent-green);
  color: var(--bg-primary);
  transform: scale(1.08);
}

.methodology-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.methodology-card p {
  font-size: 0.85rem;
  color: var(--text-white-60);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 70px 0;
  background: var(--bg-darker);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  position: relative;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent-blue);
  margin-bottom: 14px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-green);
  display: inline;
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  display: inline;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--text-white-60);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== PROJECTS / SLIDER SECTION ===== */
.projects-section {
  padding: 30px 0;
  background: var(--bg-light);
  min-height: 875.98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-section .section-header {
  margin-bottom: 12px;
}

.projects-section .section-bar {
  margin: 0 auto 0;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.slider {
  position: relative;
  width: 100%;
  height: 640px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 22px;
  background: linear-gradient(to top, rgba(17,26,38,0.92) 0%, rgba(17,26,38,0.65) 60%, transparent 100%);
  z-index: 2;
}

.slide-content h3 {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 4px;
  line-height: 1.25;
}

.slide-content p {
  font-size: 0.88rem;
  color: var(--text-white-85);
  max-width: 680px;
  line-height: 1.35;
  margin-bottom: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--text-white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-arrow:hover {
  background: var(--accent-green);
  color: var(--bg-primary);
  transform: translateY(-50%) scale(1.08);
}

.slider-dots {
  position: relative;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(30, 46, 68, 0.28);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--accent-green);
  transform: scale(1.3);
}

.slider-dot:hover {
  background: var(--accent-green-dark, #6fa832);
}

/* ===== WHY PRISM SECTION ===== */
.why-section {
  padding: 40px 0;
  background: var(--bg-primary);
}

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

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(140,198,63,0.12);
  color: var(--accent-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-white-60);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== OUR VALUABLE CLIENTS SECTION ===== */
.clients-section {
  padding: 40px 0 60px;
  background: #FFFFFF;
}

.clients-section .section-header {
  margin-bottom: 32px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: center;
}

.client-logo-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all var(--transition);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: transparent;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 125px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform var(--transition), filter var(--transition);
}

.client-logo-card:hover img {
  transform: scale(1.08);
}

/* ===== CONTACT SECTION — Redesigned ===== */
.contact-section {
  padding: 0;
  background: var(--bg-primary);
  overflow: hidden;
  min-height: 875.98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero .container,
.contact-form-section .container {
  max-width: 1012px;
  margin: 0 auto;
}

/* --- HERO HEADER (dark, world-map bg) --- */
.contact-hero {
  position: relative;
  padding: 80px 0 45px;
  background: var(--bg-primary);
  /* SVG-based subtle world-dot-map overlay */
  background-image:
    radial-gradient(circle at 20% 80%, rgba(140,198,63,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(33,150,211,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: auto, auto, 28px 28px;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,46,68,0.0) 0%, rgba(30,46,68,0.7) 100%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero-inner .section-tag {
  color: var(--accent-green);
  margin-bottom: 10px;
  display: block;
}

.contact-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.contact-hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.contact-hero-address {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.2px;
}

.contact-hero-address i {
  color: var(--accent-green);
  font-size: 0.92rem;
  flex-shrink: 0;
}

.contact-hero-channels {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.chi-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.chi-item i {
  color: var(--accent-green);
  font-size: 0.88rem;
  flex-shrink: 0;
}

a.chi-item:hover {
  color: var(--accent-green);
}

.chi-sep {
  color: rgba(255, 255, 255, 0.40);
  font-weight: 600;
  user-select: none;
}

/* --- FORM AREA (dark background) --- */
.contact-form-section {
  background: var(--bg-primary);
  padding: 0 0 100px;
}

.contact-form-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.consultation-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-group-full {
  grid-column: 1 / -1;
}

.contact-form-section .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

/* Inputs and textarea matching the clean light-grey rectangular style in screenshot */
.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
  background: #EFEFEF;
  border: 1.5px solid transparent;
  color: #1E2E44;
  border-radius: 4px;
  padding: 16px 20px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  width: 100%;
  transition: all var(--transition);
  outline: none;
  box-shadow: none;
}

.contact-form-section .form-group input::placeholder,
.contact-form-section .form-group textarea::placeholder {
  color: #7A8699;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
  background: #FFFFFF;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.2);
}

.contact-form-section .form-group textarea {
  resize: vertical;
  min-height: 160px;
}

/* Centered send button */
.contact-submit-wrap {
  text-align: center;
  margin-top: 10px;
}

.contact-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-green);
  color: var(--bg-primary);
  padding: 15px 52px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-family);
}

.contact-send-btn:hover {
  background: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140, 198, 63, 0.35);
}

.contact-send-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ===== MAP SECTION (below contact) ===== */
.map-section {
  width: 100%;
  height: 465px;
  background: var(--bg-darker);
}

.map-section-inner {
  width: 100%;
  height: 465px;
}

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

.map-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 32px;
  background: var(--bg-darker);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.map-label i {
  color: var(--accent-green);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Footer address */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.footer-address i {
  color: var(--accent-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-address span {
  color: rgba(255,255,255,0.65);
}



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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group label span {
  color: #e74c3c;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  font-family: var(--font-family);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-light-alt);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(33,150,211,0.1);
  background: var(--bg-light);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

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

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 4px;
  min-height: 18px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(140,198,63,0.1);
  border: 1px solid rgba(140,198,63,0.2);
  border-radius: var(--radius);
  color: var(--accent-green-dark);
}

.form-success.show {
  display: flex;
}

.form-success i {
  font-size: 1.4rem;
  color: var(--accent-green);
}

.form-success p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Info */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-owner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.owner-photo {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-green);
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-details h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.owner-role {
  font-size: 0.88rem;
  color: var(--accent-green);
  font-weight: 500;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateX(4px);
}

.info-card .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(33,150,211,0.08);
  color: var(--accent-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-text h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-text a,
.info-text p {
  font-size: 0.92rem;
  color: var(--bg-primary);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
}

.info-text a:hover {
  color: var(--accent-green);
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent-green);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

/* Contact Map */
.contact-map {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-primary);
  padding: 48px 0 0;
  color: var(--text-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.9fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
}

/* Column heading */
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: none;
}

/* Green underline bar beneath each heading */
.footer-col-bar {
  width: 40px;
  height: 3px;
  background: var(--accent-green);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Information column — icon + text rows */
.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-info-list li i {
  color: var(--accent-green);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-info-list li a,
.footer-info-list li span {
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  line-height: 1.55;
  display: inline-block;
}

.footer-info-list li a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

/* Menu / Quick Links columns */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li {
  line-height: 1.5;
}

.footer-col a {
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

/* At a Glance column */
.footer-glance-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 12px 0 0;
}

.footer-glance-brand-name {
  color: #8CC63F;
  font-weight: 700;
  display: inline;
}

.footer-glance-col .footer-logo {
  display: inline-block;
  margin-bottom: 0;
}

/* ── Full-width divider ── */
.footer-full-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.90);
  margin: 0;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 16px;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.footer-glance-col .footer-logo {
  margin-bottom: 6px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 2px;
}

.footer-logo img {
  height: 46px;
  width: auto;
  max-width: 240px;
  display: block;
}

.footer-tagline {
  font-family: 'Formal436 BT', 'Formal 436 BT', 'Formal436BT', 'Segoe UI Symbol', sans-serif;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
}

.footer-copyright {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin: 4px 0 0;
  line-height: 1.4;
}

.footer-copyright strong {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.footer-copyright-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

/* Unified hover — all footer links turn accent green */
.footer-col a:hover,
.footer-info-list li a:hover,
.footer-copyright-link:hover {
  color: var(--accent-green);
}

/* Social icons */
.footer-bottom-right {
  display: flex;
  align-items: center;
}

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


/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-green);
  color: var(--bg-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--accent-green-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ===== SCROLL FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ===== RESPONSIVE DESIGN SYSTEM ===== */

/* --- Laptop & Medium Screens (max-width: 1199px) --- */
@media (max-width: 1199px) {
  .hero-content {
    max-width: 1080px;
  }

  .hero-tagline,
  .hero-badge {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .hero-description {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 920px;
  }

  .methodology-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    gap: 32px;
  }

  .client-logo-card {
    height: 135px;
  }

  .client-logo-card img {
    max-height: 115px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 36px;
  }
}

/* --- Tablet Screens (max-width: 991px) --- */
@media (max-width: 991px) {
  .hero {
    padding: 110px 20px 60px;
  }

  .hero-logo-img {
    max-width: 250px;
    margin-bottom: 12px;
  }

  .hero-tagline,
  .hero-badge {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .hero-badge {
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 800px;
    margin-bottom: 22px;
  }

  .hero-stats {
    gap: 14px;
    max-width: 760px;
  }

  .hero-stat-card {
    padding: 12px 20px;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .leadership-info .section-bar {
    margin: 0 auto 16px;
  }

  .experience-tags {
    justify-content: center;
  }

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

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

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

  .slider {
    height: 480px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    gap: 24px;
  }

  .client-logo-card {
    height: 120px;
  }

  .client-logo-card img {
    max-height: 100px;
  }

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

  .about-section,
  .services-section,
  .methodology-section,
  .projects-section,
  .why-section,
  .leadership-section {
    padding: 65px 0;
  }
}

/* --- Mobile Screens (max-width: 767px) --- */
@media (max-width: 767px) {
  /* Navigation */
  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .logo img {
    height: 36px;
    max-width: 180px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    transition: right 0.4s ease;
    z-index: 1000;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .nav-links.nav-active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 6px 0;
  }

  /* Section Padding & Header Common */
  .about-section,
  .services-section,
  .methodology-section,
  .projects-section,
  .why-section,
  .leadership-section {
    padding: 42px 0;
    min-height: auto;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-tag {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .section-bar {
    width: 40px;
    height: 3px;
    margin: 0 auto 10px;
  }

  .section-subtitle {
    font-size: 0.84rem;
    line-height: 1.38;
    margin: 0 auto;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 85px 16px 36px;
  }

  .hero-ambient-glow {
    width: 320px;
    height: 160px;
    filter: blur(40px);
  }

  .hero-logo-img {
    max-width: 175px;
    margin: 0 auto 10px;
  }

  .hero h1 {
    margin-bottom: 8px;
  }

  .hero-tagline {
    font-size: 1.22rem;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }

  .hero-badge {
    font-size: 1.22rem;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.86rem;
    line-height: 1.42;
    margin-bottom: 18px;
    max-width: 100%;
    padding: 0 2px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    gap: 10px;
  }

  .hero-btn-main,
  .hero-btn-alt {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.86rem;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .hero-stat-card {
    padding: 9px 10px;
    border-radius: 8px;
    gap: 8px;
    flex: 1 1 90px;
    max-width: 130px;
    justify-content: flex-start;
  }

  .hero-stat-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .hero-stat-number {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 2px;
  }

  .hero-stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* About / Who We Are */
  .about-lead {
    font-size: 0.90rem;
    line-height: 1.42;
    margin-bottom: 10px;
  }

  .about-content p {
    font-size: 0.84rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .about-quote {
    padding: 10px 14px;
    font-size: 0.82rem;
    line-height: 1.35;
    margin: 12px 0;
    border-left-width: 3px;
  }

  .feature-card {
    padding: 12px 14px;
    gap: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .feature-text h4 {
    font-size: 0.90rem;
    margin-bottom: 2px;
    line-height: 1.25;
  }

  .feature-text p {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  /* Executive Leadership */
  .leadership-grid {
    gap: 22px;
    text-align: center;
  }

  .leadership-image {
    max-width: 230px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .leadership-role {
    font-size: 0.96rem;
    margin-bottom: 8px;
  }

  .leadership-info p {
    font-size: 0.84rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .leadership-experience {
    margin: 14px 0;
  }

  .leadership-experience h4 {
    font-size: 0.86rem;
    margin-bottom: 6px;
  }

  .experience-tags {
    gap: 6px;
    justify-content: center;
  }

  .exp-tag {
    padding: 4px 10px;
    font-size: 0.74rem;
  }

  .leadership-social {
    gap: 10px;
  }

  .leader-social-link {
    width: 40px;
    height: 40px;
    font-size: 0.92rem;
  }

  /* Services */
  .division-title {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 16px 14px;
    border-radius: 8px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 8px;
    border-radius: 6px;
  }

  .service-card h4 {
    font-size: 0.98rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .service-card p {
    font-size: 0.80rem;
    line-height: 1.35;
  }

  /* Slider */
  .slider {
    height: 350px;
    border-radius: 8px;
  }

  .slide-content {
    padding: 18px 14px 12px;
  }

  .slide-content h3 {
    font-size: 0.98rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .slide-content p {
    font-size: 0.76rem;
    line-height: 1.26;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.80rem;
  }

  .slider-prev { left: 6px; }
  .slider-next { right: 6px; }

  .slider-dots {
    margin-top: 10px;
    gap: 5px;
  }

  .slider-dot {
    width: 5.5px;
    height: 5.5px;
  }

  /* Methodology & Why */
  .methodology-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-card,
  .why-card {
    padding: 16px 14px;
    border-radius: 8px;
  }

  .why-icon,
  .method-step {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin: 0 auto 8px;
    border-radius: 8px;
  }

  .why-card h4,
  .method-card h4 {
    font-size: 0.96rem;
    line-height: 1.22;
    margin-bottom: 4px;
  }

  .why-card p,
  .method-card p {
    font-size: 0.80rem;
    line-height: 1.35;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
  }

  .client-logo-card {
    padding: 8px;
    height: 95px;
    border-radius: 6px;
  }

  .client-logo-card img {
    max-height: 82px;
  }

  /* Counter Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 16px 10px;
    border-radius: 8px;
  }

  .stat-number {
    font-size: 1.85rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.72rem;
    margin-top: 4px;
    line-height: 1.2;
  }

  /* Consultation Form */
  .contact-hero {
    padding: 45px 16px 24px;
  }

  .contact-hero-title {
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .contact-hero-info {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .contact-hero-address {
    font-size: 0.80rem;
    line-height: 1.35;
    text-align: center;
    padding: 0 6px;
  }

  .contact-hero-channels {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .chi-sep {
    display: none;
  }

  .chi-item {
    font-size: 0.80rem;
    line-height: 1.3;
  }

  .contact-form-section {
    padding: 0 0 45px;
  }

  .consultation-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form-section .form-group input,
  .contact-form-section .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents auto-zoom on iOS */
    border-radius: 4px;
  }

  .contact-form-section .form-group textarea {
    min-height: 110px;
    font-size: 16px;
  }

  .contact-send-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  /* Location Map */
  .map-section,
  .map-section-inner,
  .map-section iframe {
    height: 320px;
  }

  /* Footer */
  .footer {
    padding: 32px 0 0;
  }

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

  .footer-logo img {
    height: 32px;
    max-width: 160px;
  }

  .footer-glance-text {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-top: 6px;
  }

  .footer-col h4 {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .footer-col-bar {
    margin-bottom: 8px;
    width: 28px;
    height: 2px;
  }

  .footer-col ul {
    gap: 5px;
  }

  .footer-col a,
  .footer-info-list li a,
  .footer-info-list li span {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 10px 0 14px;
  }

  .footer-copyright {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .footer-social .leader-social-link {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }
}

/* --- Small Mobile Screens (max-width: 480px) --- */
@media (max-width: 480px) {
  .logo img {
    height: 30px;
    max-width: 145px;
  }

  .hero-logo-img {
    max-width: 145px;
    margin-bottom: 8px;
  }

  .hero-tagline,
  .hero-badge {
    font-size: 1.05rem;
    line-height: 1.18;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 0.80rem;
    line-height: 1.36;
    margin-bottom: 14px;
  }

  .hero-stats {
    gap: 6px;
  }

  .hero-stat-card {
    padding: 7px 8px;
    gap: 6px;
    flex: 1 1 80px;
    max-width: 105px;
  }

  .hero-stat-icon {
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }

  .hero-stat-number {
    font-size: 1.1rem;
  }

  .hero-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.2px;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .slider {
    height: 280px;
  }

  .slide-content {
    padding: 14px 10px 10px;
  }

  .slide-content h3 {
    font-size: 0.88rem;
  }

  .slide-content p {
    font-size: 0.72rem;
    line-height: 1.22;
  }

  .map-section,
  .map-section-inner,
  .map-section iframe {
    height: 280px;
  }
}

/* --- Extra Small Screens (max-width: 375px) --- */
@media (max-width: 375px) {
  .logo img {
    height: 26px;
    max-width: 125px;
  }

  .hero-logo-img {
    max-width: 125px;
    margin-bottom: 6px;
  }

  .hero-tagline,
  .hero-badge {
    font-size: 0.95rem;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .hero-description {
    font-size: 0.76rem;
    line-height: 1.32;
    margin-bottom: 12px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-stat-card {
    width: 100%;
    max-width: 100%;
    padding: 6px 10px;
    justify-content: center;
  }

  .section-title {
    font-size: 1.22rem;
    line-height: 1.18;
  }

  .slider {
    height: 240px;
  }

  .slide-content h3 {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .slide-content p {
    font-size: 0.68rem;
    line-height: 1.20;
  }

  .footer-logo img {
    height: 26px;
    max-width: 125px;
  }
}
