*,
*::before,
*::after {
  box-sizing: border-box;
}

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

:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --border-subtle: #e1e4e8;
  --text-main: #002D62;
  /* Navy Blue */
  --text-muted: #546b81;
  --accent: #F68D2E;
  /* Vibrant Orange */
  --primary-blue: #002D62;
  --shadow-sm: 0 4px 6px -1px rgba(0, 45, 98, 0.1), 0 2px 4px -1px rgba(0, 45, 98, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 45, 98, 0.1), 0 4px 6px -2px rgba(0, 45, 98, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 45, 98, 0.1), 0 10px 10px -5px rgba(0, 45, 98, 0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  /* More modern, geometric font */
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* --- ANIMATIONS --- */

/* Hero Text Reveal */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background Zoom (Ken Burns) */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

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

/* Nav Slide Down */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

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

/* Pulse for Scroll Indicator */
@keyframes scrollPulse {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* --- LAYOUT & COMPONENTS --- */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Premium Top Nav */
/* Premium Top Nav */
.top-nav {
  position: fixed;
  /* Fixed to overlay hero */
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225, 228, 232, 0.5);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

.top-nav.scrolled .nav-inner {
  height: 70px;
  /* Slightly compacted on scroll */
}

.nav-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  /* White by default on hero */
  position: relative;
  transition: color 0.3s ease;
}

.top-nav.scrolled .nav-logo {
  color: var(--primary-blue);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  /* White text default */
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.top-nav.scrolled .nav-links a {
  color: var(--text-main);
}

/* Animated Nav Line */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Removed static background here, moving to pseudo-element for animation */
}

/* Dynamic Hero Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-bg-new.png') no-repeat center center/cover;
  z-index: 0;
  animation: kenBurns 20s ease-out infinite alternate;
  /* Smooth constant movement */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 45, 98, 0.85) 0%, rgba(0, 20, 50, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(246, 141, 46, 0.15);
  /* Orange tint */
  border: 1px solid var(--accent);
  color: var(--accent);
  /* Orange text */
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  border-radius: 4px;
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  /* Hidden by default for scroll/animation */
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: slideUpFade 1s ease 1s forwards;
  /* Entrance */
  opacity: 0;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

/* Shimmer Hover Effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover {
  background: #ff9940;
  /* Slightly lighter orange */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(246, 141, 46, 0.4);
}

.btn-primary:hover::after {
  animation: shimmer 0.6s ease-in-out;
}

/* --- SECTIONS & SCROLL ANIMATIONS --- */
.section {
  padding: 120px 0;
  /* More breathing room */
  position: relative;
  opacity: 0;
  /* Managed by JS IntersectionObserver */
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  /* Dot instead of line */
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 10px rgba(246, 141, 46, 0.5);
  /* Glow dot */
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Card Reveal Animation Styles */
.service-card-premium,
.project-card,
.dna-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-premium.visible,
.project-card.visible,
.dna-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services */
.services {
  border-top: none;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  grid-auto-rows: min-content;
  margin-top: 64px;
  perspective: 1000px;
  /* Enable 3D transitions */
}

/* Premium Card (Glass/White style) */
.service-card-premium {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid rgba(225, 228, 232, 0.5);
  border-radius: 12px;
  padding: 48px 32px;
  /* Taller padding */
  min-height: 100%;
  box-shadow: var(--shadow-md);
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.service-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.service-card-premium:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px -12px rgba(0, 45, 98, 0.15);
  border-color: transparent;
}

.service-card-premium:hover::after {
  transform: scaleX(1);
}

.service-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
  background: rgba(246, 141, 46, 0.05);
  /* Tint background for quote */
  padding: 16px;
  border-radius: 0 8px 8px 0;
}

/* Stats Section (Facts) */
.about-stats {
  background: var(--primary-blue);
  color: #fff;
  padding: 80px 40px;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 80px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Add a subtle world map or texture overlay to stats */
.about-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: rotateSlow 60s linear infinite;
  pointer-events: none;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stat-value {
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.service-card-small {
  grid-column: span 3;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  min-height: auto;
  justify-content: flex-start;
}

.service-card-small:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}




.service-price-container {
  margin-bottom: 12px;
}

.price-main {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.price-period {
  font-size: 10px;
  padding: 2px 5px;
}

.price-sub {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
}

.service-list li {
  margin-bottom: 6px;
  padding-left: 14px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.service-list li::before {
  font-size: 9px;
  top: 3px;
}

/* Small Card Internal Styles */
.service-header-small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.service-title-small {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
  line-height: 1.3;
}

.service-price-small {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  display: inline-block;
}

[data-theme="dark"] .service-price-small {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-light);
}

.service-body-small {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  opacity: 0.9;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}






/* FAQ Section */
.faq {
  border-top: 1px solid var(--border-subtle);
}

.faq-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin: 16px 0 48px;
  text-align: left;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question span {
  flex: 1;
  padding-right: 24px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--accent);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"]+.faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 0 24px 0;
}

.faq-answer-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ Hover Effects */
.faq-item:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.01) 50%, transparent 100%);
}

[data-theme="dark"] .faq-item:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
}

/* FAQ Glow Effect */
.faq-question[aria-expanded="true"] {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

[data-theme="dark"] .faq-question[aria-expanded="true"] {
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .fade-in,
  .project-card,
  .faq-answer {
    transition: none !important;
    animation: none !important;
  }
}


/* Projects Grid (Standardized 12-col) */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  grid-auto-rows: min-content;
  margin-top: 64px;
}


/* Responsive adjustments */
@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card-small {
    grid-column: span 1;
  }

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

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-right {
    margin-top: 32px;
  }
}


@media (max-width: 720px) {
  .nav-inner {
    justify-content: space-between;
  }

  .nav-links {
    gap: 12px;
    font-size: 10px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

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


/* --- ABOUT / COMPANY SECTION --- */
.centered-section {
  text-align: center;
}

.about-header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.about-lead {
  font-size: 18px;
  /* Slightly larger lead text */
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 800px;
  margin: 24px auto 0;
}

/* Redesigned Features Grid (Why Choose Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  text-align: left;
  /* Keep feature text left-aligned for readability inside the grid */
}

.feature-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--primary-blue);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Features */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Contact */
.contact {
  background-color: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
}

.contact-body {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.contact-info li+li {
  margin-top: 14px;
}

.contact-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info a {
  color: var(--text-main);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form {
  background-color: #fafafa;
  border: 1px solid var(--border-subtle);
  padding: 20px 20px 22px;
}

[data-theme="dark"] .contact-form {
  background-color: var(--bg-card);
  border-color: var(--border-subtle);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

[data-theme="dark"] .field label {
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 0;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  background-color: var(--bg-card);
  color: var(--text-main);
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .field input,
[data-theme="dark"] .field textarea {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

[data-theme="dark"] .field input::placeholder,
[data-theme="dark"] .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--text-main);
}

[data-theme="dark"] .field input:focus,
[data-theme="dark"] .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1), var(--glow-accent);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Footer */
.site-footer {
  background-color: #111111;
  color: #f5f5f5;
  padding: 32px 0;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  font-size: 12px;
}

.footer-logo {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 11px;
  color: #a0a0a0;
}

.footer-nav,
.footer-social {
  display: flex;
  gap: 18px;
}

.footer-nav a,
.footer-social a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-nav a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-right {
    margin-top: 32px;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    justify-content: space-between;
  }

  .nav-links {
    gap: 12px;
    font-size: 10px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Text Highlight - Corporate Orange */
.text-highlight {
  color: var(--accent);
  font-weight: 700;
}



/* Projects / Industries (Horizontal List Style) */
.project-card {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
  grid-column: span 12;
  /* Full width list item */
  position: relative;
  align-items: stretch;
  min-height: 140px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.project-visual {
  flex: 0 0 200px;
  /* Fixed width for image */
  height: auto;
  min-height: 100%;
  width: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.visual-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-card:hover .visual-inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-content {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta {
  padding: 0;
  margin-bottom: 4px;
}

.project-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 12px;
  transition: color 0.3s;
  padding: 0 !important;
  /* Override specificity */
}

.project-card:hover .project-title {
  color: var(--accent);
}

/* Internal padding override */
.project-card h3.project-title {
  padding: 0;
}

/* Network/Industries Content Styles */
.project-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-specs li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.project-specs li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.project-specs strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Network Section Background */
#network {
  background: linear-gradient(to bottom, #ffffff, #f0f4f8);
  position: relative;
  overflow: hidden;
}

#network::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/global-trade.png') no-repeat center center/cover;
  opacity: 0.05;
  /* Subtle map effect */
  pointer-events: none;
  filter: grayscale(100%);
}



/* Responsive */
@media (max-width: 1024px) {
  .project-card {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .project-card {
    grid-column: span 12;
  }

}