/* ==========================================================================
   Aegis SolarBotix - Clean Energy, Robotics & AWS Cloud Solutions
   Core Stylesheet & Design System
   ========================================================================== */

:root {
  /* High-Tech Clean Energy & Solar Palette */
  --bg-dark: #0b1324;            /* Rich Slate / Deep Marine Navy */
  --bg-surface: #0f1a30;         /* Refined Navy Surface */
  --bg-card: #13223f;            /* Elevated Tech Card */
  --bg-card-hover: #192b50;      /* Card Hover State */
  --border-color: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(245, 158, 11, 0.45);

  --color-primary: #f59e0b;       /* Solar Gold/Amber */
  --color-primary-glow: rgba(245, 158, 11, 0.3);
  --color-robotics: #10b981;      /* Clean Tech Emerald */
  --color-robotics-glow: rgba(16, 185, 129, 0.3);
  --color-aws: #ff9900;           /* AWS Architecture Orange */
  --color-aws-glow: rgba(255, 153, 0, 0.3);
  --color-sky: #06b6d4;           /* High Voltage / Cyber Cyan */
  --color-sky-glow: rgba(6, 182, 212, 0.3);
  --color-bolt: #ef4444;          /* Circle 21 Electric Red Bolt */
  --color-bolt-glow: rgba(239, 68, 68, 0.35);

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;

  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(245, 158, 11, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 75%, rgba(16, 185, 129, 0.07) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-attachment: fixed;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Typography Helpers */
.gradient-text-solar {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-tech {
  background: linear-gradient(135deg, #38bdf8, #10b981, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section-tag.tech-tag {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.35);
  color: var(--color-sky);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b1324;
  box-shadow: 0 6px 22px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.btn-outline {
  background: rgba(15, 26, 48, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-aws {
  background: rgba(255, 153, 0, 0.15);
  border: 1px solid rgba(255, 153, 0, 0.45);
  color: #ff9900;
}

.btn-aws:hover {
  background: #ff9900;
  color: #090d16;
  box-shadow: 0 6px 20px var(--color-aws-glow);
  transform: translateY(-2px);
}

/* ==========================================================================
   Top Notification / Contact Bar
   ========================================================================== */
.top-bar {
  background: #060b16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item a {
  color: #e2e8f0;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar-item a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar-container {
    justify-content: center;
  }
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 36, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* Navigation Dropdown Menu (Training) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: rgba(15, 26, 48, 0.98);
  border: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 10px;
  min-width: 280px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  transform: translateX(4px);
}

.dropdown-item .dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-item .dd-text {
  display: flex;
  flex-direction: column;
}

.dropdown-item .dd-title {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.dropdown-item .dd-sub {
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================================
   Hero Section with REAL High-Res Solar Farm Background Image!
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 115px 0 85px;
  background: 
    linear-gradient(180deg, rgba(11, 19, 36, 0.74) 0%, rgba(15, 26, 48, 0.88) 55%, #0b1324 100%),
    url('../assets/images/user-solar-racking.jpg') center center / cover no-repeat;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero-badge-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(11, 19, 36, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
}

.hero-pill.solar {
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
}

.hero-pill.robotics {
  border-color: rgba(16, 185, 129, 0.5);
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
}

.hero-pill.aws {
  border-color: rgba(255, 153, 0, 0.5);
  color: #ffaa33;
  background: rgba(255, 153, 0, 0.12);
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-desc {
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
  color: #e2e8f0;
  line-height: 1.68;
  margin-bottom: 38px;
  max-width: 820px;
  margin-inline: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hero Stats Bar */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat-card {
  background: rgba(19, 34, 63, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-robotics));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number .highlight {
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Solutions & Domains (4 Pillars)
   ========================================================================== */
.section {
  padding: 95px 0;
  position: relative;
}

.section-divider {
  border-top: 1px solid var(--border-color);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.pillar-card.solar-pillar:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 12px 32px var(--color-primary-glow);
}

.pillar-card.robotics-pillar:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 12px 32px var(--color-robotics-glow);
}

.pillar-card.aws-pillar:hover {
  border-color: rgba(255, 153, 0, 0.5);
  box-shadow: 0 12px 32px var(--color-aws-glow);
}

.pillar-card.electric-pillar:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 12px 32px var(--color-sky-glow);
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.solar-pillar .pillar-icon-box {
  background: rgba(245, 158, 11, 0.16);
  color: var(--color-primary);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.robotics-pillar .pillar-icon-box {
  background: rgba(16, 185, 129, 0.16);
  color: var(--color-robotics);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.aws-pillar .pillar-icon-box {
  background: rgba(255, 153, 0, 0.16);
  color: var(--color-aws);
  border: 1px solid rgba(255, 153, 0, 0.35);
}

.electric-pillar .pillar-icon-box {
  background: rgba(6, 182, 212, 0.16);
  color: var(--color-sky);
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.pillar-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-list {
  list-style: none;
  margin-bottom: 24px;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.pillar-list li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Tech Synergy Architecture Diagram
   ========================================================================== */
.synergy-box {
  background: linear-gradient(145deg, #101c36, #142446);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 46px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.synergy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.synergy-node {
  background: rgba(11, 19, 36, 0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.synergy-node:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.synergy-node-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.synergy-node h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.synergy-node p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   Featured Projects (6 Projects with REAL Images & Proper Descriptions)
   ========================================================================== */
.project-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  background: rgba(19, 34, 63, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #0b1324;
  font-weight: 800;
  box-shadow: 0 4px 18px var(--color-primary-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.project-thumbnail-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #0b1324;
}

.project-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-thumbnail-wrapper img {
  transform: scale(1.08);
}

.project-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(11, 19, 36, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #ffffff;
}

.project-body p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.6;
}

.project-specs {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(11, 19, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.83rem;
}

.project-spec-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.96rem;
}

.project-spec-item span {
  color: var(--text-dim);
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: auto;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-badge {
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 4px;
  font-weight: 500;
}

.btn-view-project {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.btn-view-project:hover {
  gap: 8px;
  color: #fbbf24;
}

/* ==========================================================================
   About & Leadership Section (5 Team Members with REAL Photos)
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 70px;
}

.about-text h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
  color: #ffffff;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.18);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-item h5 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
}

.about-feature-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-metrics-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.metrics-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.metric-bar-item span {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.progress-track {
  width: 100%;
  height: 9px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
}

.progress-fill.solar {
  width: 96%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.progress-fill.robotics {
  width: 92%;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.progress-fill.aws {
  width: 99%;
  background: linear-gradient(90deg, #ff9900, #fb923c);
}

/* ==========================================================================
   Circle 21 - 9 Core Domains Grid
   ========================================================================== */
.domains-section-header {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 24px;
}

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

.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.domain-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: monospace;
  background: rgba(245, 158, 11, 0.14);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.domain-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
}

/* ==========================================================================
   Circle 21 - Corporate Philosophy (5 Core Pillars)
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 75px;
}

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.philosophy-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.philosophy-card.full-width {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(19, 34, 63, 0.95), rgba(15, 26, 48, 0.95));
  border-color: rgba(245, 158, 11, 0.4);
}

.philosophy-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.philosophy-card h4 svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.philosophy-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

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

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

/* ==========================================================================
   Circle 21 - Dedicated Vision for the Future Showcase
   ========================================================================== */
.vision-showcase {
  background: linear-gradient(135deg, rgba(19, 34, 63, 0.95), rgba(11, 19, 36, 0.98));
  border: 2px solid rgba(245, 158, 11, 0.55);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  margin-top: 36px;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 32px rgba(245, 158, 11, 0.18);
  overflow: hidden;
}

.vision-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f59e0b, #fbbf24, #ef4444);
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.vision-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
}

.vision-text-main {
  font-size: 1.14rem;
  line-height: 1.85;
  color: #e2e8f0;
  margin-bottom: 26px;
}

.vision-pledge-box {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.vision-pledge-icon {
  color: #fbbf24;
  flex-shrink: 0;
}

.vision-pledge-text {
  font-size: 1.08rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-showcase {
    padding: 28px 22px;
  }
  .vision-title {
    font-size: 1.45rem;
  }
  .vision-pledge-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ==========================================================================
   Circle 21 - Section 1.2 Organizational Information
   ========================================================================== */
.org-info-section {
  margin-top: 30px;
  margin-bottom: 75px;
}

.org-banner-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

.org-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b1324;
  font-size: 1.55rem;
  font-weight: 800;
  padding: 14px 38px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
  letter-spacing: 0.5px;
}

.org-table-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 36px;
}

.org-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.org-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition-fast);
}

.org-table tr:last-child {
  border-bottom: none;
}

.org-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.org-label-cell {
  width: 32%;
  padding: 16px 24px;
  font-weight: 700;
  color: #fbbf24;
  font-size: 0.96rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 19, 36, 0.5);
  vertical-align: middle;
}

.org-value-cell {
  width: 68%;
  padding: 16px 24px;
  color: #f1f5f9;
  font-size: 0.98rem;
  line-height: 1.6;
  vertical-align: middle;
}

.org-code-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
  color: #38bdf8;
  font-weight: 600;
}

/* Enlisted Organizations Grid */
.enlisted-header {
  text-align: center;
  margin-bottom: 24px;
}

.enlisted-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.enlisted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.enlisted-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-normal);
}

.enlisted-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.5);
  background: var(--bg-card-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.enlisted-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-robotics);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.enlisted-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .org-banner {
    font-size: 1.25rem;
    padding: 12px 24px;
  }
  .org-table tr {
    display: flex;
    flex-direction: column;
  }
  .org-label-cell {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 18px 6px;
  }
  .org-value-cell {
    width: 100%;
    padding: 6px 18px 14px;
  }
}

/* ==========================================================================
   Circle 21 - Section 1.3 Scope of Services
   ========================================================================== */
.scope-services-section {
  margin-top: 50px;
  margin-bottom: 75px;
}

.scope-banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.scope-header-badge {
  background: #0f1e38;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 10px 36px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  margin-bottom: -16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.scope-callout-box {
  width: 100%;
  max-width: 960px;
  background: linear-gradient(135deg, #f59e0b, #eab308);
  color: #0b1324;
  border-radius: var(--radius-lg);
  padding: 38px 36px 30px;
  font-size: 1.12rem;
  line-height: 1.7;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.scope-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.scope-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.scope-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.scope-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.scope-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scope-item-num {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}

.scope-item-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.scope-item-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Team Grid - 5 Executive Profiles */
.team-heading {
  text-align: center;
  margin-bottom: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.team-avatar-wrapper {
  width: 116px;
  height: 116px;
  margin-inline: auto;
  border-radius: 50%;
  margin-bottom: 18px;
  position: relative;
  border: 3px solid rgba(245, 158, 11, 0.35);
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.team-card:hover .team-avatar-wrapper {
  border-color: var(--color-primary);
  box-shadow: 0 0 22px var(--color-primary-glow);
}

.team-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.team-card:hover .team-avatar-wrapper img {
  transform: scale(1.06);
}

.team-role-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--color-primary);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.team-role-tag.gm {
  background: rgba(16, 185, 129, 0.16);
  color: var(--color-robotics);
  border-color: rgba(16, 185, 129, 0.35);
}

.team-role-tag.it {
  background: rgba(255, 153, 0, 0.16);
  color: var(--color-aws);
  border-color: rgba(255, 153, 0, 0.35);
}

.team-role-tag.hr {
  background: rgba(6, 182, 212, 0.16);
  color: var(--color-sky);
  border-color: rgba(6, 182, 212, 0.35);
}

.team-role-tag.tech {
  background: rgba(168, 85, 247, 0.16);
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.35);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
}

.team-title {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 42px;
}

.team-bio {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.social-link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  padding: 4px;
}

.social-link:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Certifications Banner
   ========================================================================== */
.cert-bar {
  background: rgba(15, 26, 48, 0.9);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 34px 0;
}

.cert-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.95rem;
}

.cert-item svg {
  color: var(--color-primary);
}

/* ==========================================================================
   Contact & Quotation Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 38px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-info-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.16);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-details h5 {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.channel-details a, .channel-details span {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 42px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

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

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

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  background: rgba(11, 19, 36, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
  background: rgba(11, 19, 36, 1);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #070d18;
  border-top: 1px solid var(--border-color);
  padding: 72px 0 28px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-top: 14px;
  max-width: 330px;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  margin-bottom: 12px;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Modal Dialog (Project Case Studies with Images)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 24, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(11, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-primary);
  color: #0b1324;
}

.modal-header-image {
  height: 260px;
  background: #0b1324;
  overflow: hidden;
}

.modal-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-inner {
  padding: 32px;
}

.modal-content-inner h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: rgba(11, 19, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 22px 0;
}

.modal-spec strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.modal-spec span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Circle 21 - SPECIAL REMARKS (Optimal Solar Technology for Bangladesh)
   ========================================================================== */
.remarks-showcase {
  background: linear-gradient(135deg, rgba(19, 34, 63, 0.95), rgba(11, 19, 36, 0.98));
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.remarks-banner-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.remarks-banner {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b1324;
  font-size: 1.55rem;
  font-weight: 800;
  padding: 12px 38px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
  letter-spacing: 0.5px;
}

.remarks-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #f1f5f9;
  margin-bottom: 32px;
  text-align: justify;
}

.remarks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.remarks-col {
  background: rgba(11, 19, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
}

.remarks-col h4 {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  padding-bottom: 12px;
}

.remarks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.remarks-item strong {
  color: #ffffff;
  font-size: 0.98rem;
  display: block;
  margin-bottom: 4px;
}

.remarks-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .remarks-grid {
    grid-template-columns: 1fr;
  }
  .remarks-showcase {
    padding: 24px 18px;
  }
}

/* ==========================================================================
   Circle 21 - 1.4 LIST OF COMPLETED / ONGOING PROJECTS
   ========================================================================== */
.track-record-section {
  margin-top: 50px;
  margin-bottom: 20px;
}

.track-banner-wrapper {
  text-align: center;
  margin-bottom: 26px;
}

.track-banner {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  padding: 12px 38px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

.track-sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: #38bdf8;
  font-size: 1.12rem;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  margin-top: 24px;
}

.track-table-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.track-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.track-table th {
  background: rgba(11, 19, 36, 0.9);
  color: #fbbf24;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

.track-table td {
  padding: 14px 18px;
  font-size: 0.93rem;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.track-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.track-period-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-family: monospace;
  font-size: 0.88rem;
}

.track-note-box {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 0.94rem;
  color: #f1f5f9;
  font-style: italic;
  margin-top: -14px;
  margin-bottom: 40px;
}

/* ==========================================================================
   Circle 21 - SITE MAN-POWER
   ========================================================================== */
.manpower-section {
  margin-top: 10px;
  margin-bottom: 60px;
}

.manpower-banner-wrapper {
  text-align: center;
  margin-bottom: 28px;
}

.manpower-banner {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  padding: 12px 38px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
  letter-spacing: 0.5px;
}

.manpower-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.manpower-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.manpower-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 6px;
}

.manpower-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.manpower-table-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.manpower-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 640px;
}

.manpower-table th {
  background: rgba(11, 19, 36, 0.9);
  color: #38bdf8;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 18px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.35);
}

.manpower-table td {
  padding: 12px 18px;
  font-size: 0.92rem;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.manpower-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.qual-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
}

.qual-badge.bsc {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.qual-badge.diploma {
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.qual-badge.trade {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.headcount-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-family: monospace;
  font-size: 1rem;
  color: #ffffff;
  padding: 2px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--color-robotics);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .synergy-grid {
    grid-template-columns: 1fr;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta .btn {
    display: none;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .modal-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Training Section & Interactive Syllabus Hub
   ========================================================================== */
.training-section {
  position: relative;
  background: linear-gradient(180deg, #0b1324 0%, #0e1a33 50%, #0b1324 100%);
  padding: 100px 0;
}

.training-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin: 36px 0 45px;
}

.training-tabs {
  display: inline-flex;
  background: rgba(15, 26, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6px;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
  justify-content: center;
}

.training-tab-btn {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 12px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.training-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.training-tab-btn.active[data-tab="aws"] {
  background: linear-gradient(135deg, #ff9900, #ea580c);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 153, 0, 0.45);
}

.training-tab-btn.active[data-tab="devops"] {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.45);
}

.training-tab-btn.active[data-tab="linux"] {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.45);
}

.training-pane {
  display: none;
  animation: fadeInPane 0.35s ease forwards;
}

.training-pane.active {
  display: block;
}

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

.training-card-hero {
  background: #13223f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.course-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.syllabus-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.syllabus-module {
  background: #13223f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.syllabus-module:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.syllabus-module.open {
  border-color: rgba(6, 182, 212, 0.55);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
}

.module-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background: rgba(19, 34, 63, 0.95);
  transition: background 0.2s ease;
}

.module-header:hover {
  background: rgba(25, 43, 80, 0.95);
}

.module-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-num {
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  letter-spacing: 0.5px;
}

.module-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
}

.module-chevron {
  color: #94a3b8;
  transition: transform 0.25s ease, color 0.2s;
}

.syllabus-module.open .module-chevron {
  transform: rotate(180deg);
  color: #38bdf8;
}

.module-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  background: #0f1a30;
}

.syllabus-module.open .module-body {
  padding: 20px 24px 24px;
  max-height: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.topic-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.55;
}

.topic-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #10b981;
}

.capstone-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(19, 34, 63, 0.9) 100%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 16px;
  padding: 30px;
  margin-top: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
