/* =========================================
   KDS & Associates — Premium Design System
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --color-navy: #0a1628;
  --color-navy-light: #111d32;
  --color-navy-mid: #162340;
  --color-blue: #03569b;
  --color-blue-bright: #0b7dda;
  --color-blue-glow: #2196f3;
  --color-accent: #e8b931;
  --color-accent-soft: #f0c75e;
  --color-white: #ffffff;
  --color-gray-100: #f4f6f9;
  --color-gray-200: #e2e6ed;
  --color-gray-300: #c5cbd6;
  --color-gray-400: #8a94a6;
  --color-gray-500: #5a6478;
  --color-dark-card: rgba(22, 35, 64, 0.65);
  --color-glass: rgba(255, 255, 255, 0.06);
  --color-glass-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-200);
  background-color: var(--color-navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

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

/* --- Section Defaults --- */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-blue-bright);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue-bright), var(--color-blue-glow));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  max-width: 600px;
  line-height: 1.8;
}

/* =========================================
   HEADER / NAVIGATION — Frosted Glass
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-medium);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08),
    0 1px 0 rgba(0, 0, 0, 0.04);
}

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

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

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--color-blue-bright);
}

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

.nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-gray-500);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-bright));
  transition: width var(--transition-medium);
  border-radius: 2px;
}

.nav a:hover,
.nav a.active {
  color: var(--color-navy);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast) !important;
  box-shadow: 0 4px 15px rgba(3, 86, 155, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(3, 86, 155, 0.5);
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-medium);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* =========================================
   HERO SECTION — Cinematic
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 22, 40, 0.6) 0%,
      rgba(10, 22, 40, 0.4) 30%,
      rgba(10, 22, 40, 0.5) 60%,
      rgba(10, 22, 40, 0.85) 100%),
    linear-gradient(135deg,
      rgba(3, 86, 155, 0.2) 0%,
      transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 160px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-blue-glow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue-glow);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(33, 150, 243, 0.6);
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.6);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
    box-shadow: 0 0 4px rgba(33, 150, 243, 0.3);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-gray-300);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(3, 86, 155, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(3, 86, 155, 0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-blue-bright);
  color: var(--color-blue-glow);
  box-shadow: 0 0 30px rgba(3, 86, 155, 0.15);
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1px;
  background: var(--color-glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 60px;
  max-width: 640px;
}

.hero-stat {
  flex: 1;
  background: rgba(22, 35, 64, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 24px;
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
}

.hero-stat .number span {
  color: var(--color-blue-bright);
}

.hero-stat .label {
  font-size: 0.78rem;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* =========================================
   AMBIENT GLOW BACKGROUNDS — Floating Orbs
   ========================================= */
.about,
.services,
.leadership,
.contact {
  overflow: hidden;
}

.about::after,
.services::after,
.leadership::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 86, 155, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about::after {
  top: -100px;
  right: -200px;
}

.services::after {
  bottom: -200px;
  left: -200px;
}

.leadership::after {
  top: 50%;
  right: -250px;
  transform: translateY(-50%);
}

/* Ensure content sits above ambient glows */
.about .container,
.services .container,
.leadership .container,
.contact .container {
  position: relative;
  z-index: 1;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
  background: var(--color-navy);
}

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

.about-content .lead {
  font-size: 1.15rem;
  color: var(--color-gray-300);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-content .body-text {
  color: var(--color-gray-400);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.about-value:hover {
  background: rgba(255, 255, 255, 0.03);
}

.about-value .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(3, 86, 155, 0.25), rgba(11, 125, 218, 0.12));
  border: 1px solid rgba(3, 86, 155, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(3, 86, 155, 0.15);
}

.about-value .text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-value .text p {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* Decorative glow */
.about-image::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(3, 86, 155, 0.3), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
  background: var(--color-navy-light);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: linear-gradient(145deg, rgba(22, 35, 64, 0.6), rgba(17, 29, 50, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-bright), var(--color-blue-glow));
  opacity: 0;
  transition: opacity var(--transition-medium);
}

/* Service card inner glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(3, 86, 155, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 125, 218, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(3, 86, 155, 0.08);
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(3, 86, 155, 0.25), rgba(11, 125, 218, 0.12));
  border: 1px solid rgba(3, 86, 155, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(3, 86, 155, 0.15);
  transition: box-shadow var(--transition-medium), transform var(--transition-medium);
}

.service-card:hover .service-icon {
  box-shadow: 0 8px 30px rgba(3, 86, 155, 0.3);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-gray-400);
  margin-bottom: 28px;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-gray-300);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.service-list li:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue-bright);
  box-shadow: 0 0 8px rgba(11, 125, 218, 0.5);
}

/* =========================================
   PROJECTS SECTION
   ========================================= */
.projects {
  background: var(--color-navy);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

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

.project-card {
  display: block;
  background: linear-gradient(145deg, rgba(22, 35, 64, 0.6), rgba(17, 29, 50, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 125, 218, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(3, 86, 155, 0.1);
}

.project-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.project-card-image .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--color-blue-glow);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card-content {
  padding: 28px;
}

.project-card-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-card-content .meta {
  font-size: 0.82rem;
  color: var(--color-gray-400);
  margin-bottom: 12px;
}

.project-card-content p {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   LEADERSHIP SECTION
   ========================================= */
.leadership {
  background: var(--color-navy-light);
  position: relative;
}

.leadership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.leadership-header {
  text-align: center;
  margin-bottom: 64px;
}

.leadership-header .section-subtitle {
  margin: 0 auto;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  background: linear-gradient(145deg, rgba(22, 35, 64, 0.55), rgba(17, 29, 50, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-medium);
}

.leader-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 125, 218, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(3, 86, 155, 0.1);
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid rgba(11, 125, 218, 0.3);
  position: relative;
  box-shadow: 0 8px 30px rgba(3, 86, 155, 0.2);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.leader-card:hover .leader-avatar {
  border-color: rgba(11, 125, 218, 0.5);
  box-shadow: 0 8px 40px rgba(3, 86, 155, 0.35);
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.leader-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.leader-card .title {
  font-size: 0.88rem;
  color: var(--color-blue-bright);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
  background: var(--color-navy);
  position: relative;
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.contact-item .icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(3, 86, 155, 0.25), rgba(11, 125, 218, 0.12));
  border: 1px solid rgba(3, 86, 155, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(3, 86, 155, 0.15);
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

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

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 400px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.4) brightness(0.8) contrast(1.1);
}

/* =========================================
   CTA BANNER — Elevated
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
  animation: ctaGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes ctaGlow {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, -30px);
  }
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* =========================================
   FOOTER — Refined
   ========================================= */
.footer {
  background: var(--color-navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 125, 218, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-blue-bright);
  transform: translateX(4px);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-gray-500);
}

/* =========================================
   PROJECTS PAGE SPECIFIC
   ========================================= */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--color-navy);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* Project Tabs */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-gray-400);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--color-blue-bright);
  color: var(--color-white);
  background: rgba(3, 86, 155, 0.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(3, 86, 155, 0.35);
}

/* Project Detail Cards — Horizontal Layout */
.project-detail-card {
  background: linear-gradient(145deg, rgba(22, 35, 64, 0.6), rgba(17, 29, 50, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 0;
  margin-bottom: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.project-detail-card .project-image {
  position: relative;
  width: 420px;
  min-width: 420px;
  min-height: 320px;
  overflow: hidden;
}

.project-detail-card .project-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, rgba(22, 35, 64, 0.6), transparent);
  z-index: 1;
  pointer-events: none;
}

.project-detail-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-detail-card:hover .project-image img {
  transform: scale(1.05);
}

.project-detail-card .project-body {
  padding: 36px 40px 36px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-detail-card:hover {
  border-color: rgba(11, 125, 218, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(3, 86, 155, 0.08);
  transform: translateY(-4px);
}

.project-detail-card .project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.project-detail-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.project-detail-card .project-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.project-detail-card .project-meta span {
  font-size: 0.82rem;
  color: var(--color-gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-detail-card .project-meta span strong {
  color: var(--color-gray-300);
}

.project-detail-card>p,
.project-detail-card .project-body p {
  color: var(--color-gray-400);
  line-height: 1.8;
  font-size: 0.94rem;
}

.project-status-badge {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-status-badge.current {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.project-status-badge.completed {
  background: rgba(3, 86, 155, 0.15);
  color: var(--color-blue-glow);
  border: 1px solid rgba(3, 86, 155, 0.3);
}

/* =========================================
   CAREERS PAGE SPECIFIC
   ========================================= */
.careers-content {
  padding: 80px 0 120px;
}

.careers-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.careers-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.careers-text p {
  color: var(--color-gray-400);
  line-height: 1.8;
  margin-bottom: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.benefit-card {
  background: linear-gradient(145deg, rgba(22, 35, 64, 0.6), rgba(17, 29, 50, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-medium);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 125, 218, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 0.82rem;
  color: var(--color-gray-400);
  margin-bottom: 0;
}

.careers-cta-box {
  background: linear-gradient(145deg, rgba(22, 35, 64, 0.6), rgba(17, 29, 50, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 120px;
}

.careers-cta-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.careers-cta-box p {
  font-size: 0.92rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
}

.careers-cta-box .contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-gray-300);
}

/* =========================================
   SCROLL ANIMATIONS — Premium
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays for grid items */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .about-grid {
    gap: 48px;
  }

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

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

  .careers-layout {
    grid-template-columns: 1fr;
  }

  .careers-cta-box {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(17, 29, 50, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-medium);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    font-size: 1.1rem;
    color: var(--color-gray-300);
  }

  .nav a:hover,
  .nav a.active {
    color: var(--color-white);
  }

  .hamburger {
    display: flex;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .nav-overlay.open {
    display: block;
  }

  /* Hero */
  .hero-content {
    padding: 140px 0 60px;
  }

  .hero-stats {
    flex-direction: column;
  }

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

  /* Grids */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-detail-card {
    flex-direction: column;
  }

  .project-detail-card .project-image {
    width: 100%;
    min-width: 100%;
    min-height: 220px;
    max-height: 260px;
  }

  .project-detail-card .project-image::after {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(22, 35, 64, 0.6), transparent);
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .service-card {
    padding: 32px 24px;
  }

  .project-detail-card {
    padding: 28px 24px;
  }

  .project-detail-card .project-header {
    flex-direction: column;
  }
}