@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM VARIABLES
   ========================================== */
:root {
  /* Colors */
  --color-bg-deep: #071126; /* Enterprise Dark Background */
  --color-bg-main: #071126; 
  --color-bg-surface: rgba(15, 27, 56, 0.65); /* Glassmorphism Base */
  --color-bg-surface-hover: rgba(15, 27, 56, 0.85);
  --color-border-subtle: rgba(0, 198, 255, 0.15);
  --color-border-glow: rgba(0, 198, 255, 0.4);
  
  --color-gold: #00c6ff; /* Accent Blue (formerly Gold) */
  --color-gold-bright: #33d1ff;
  --color-gold-light: #b3eeff;
  --color-gold-dark: #008ab3;
  --color-gold-rgb: 0, 198, 255;
  
  --color-text-white: #f8fafc; /* White */
  --color-text-off: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout sizes & spacers */
  --header-height: 80px;
  --max-width: 1280px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
}

/* ==========================================
   RESET & BASICS
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
  border-left: 1px solid var(--color-border-subtle);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-surface-hover);
  border-radius: 6px;
  border: 2px solid var(--color-bg-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 198, 255, 0.5);
}

body {
  background-color: var(--color-bg-deep);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(15, 27, 56, 0.4), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(15, 27, 56, 0.4), transparent 25%),
    linear-gradient(rgba(248, 250, 252, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  color: var(--color-text-off);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-white);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

.text-gold {
  color: var(--color-gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-text-white) 40%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--color-border-subtle);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  margin-bottom: 1.5rem;
}

.badge svg {
  width: 14px;
  height: 14px;
}

/* Headings */
.section-header {
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.75rem;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-gold-bright);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  height: 70px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
}

.logo-svg {
  width: 100%;
  height: 100%;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-subtext {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  color: #00c6ff;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-white);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-white);
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

/* Active Hambuger state */
.nav-toggle.open .hamburger {
  background-color: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-surface);
    border-left: 1px solid var(--color-border-subtle);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    padding: 3rem;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu .btn {
    width: 100%;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem 0;
  position: relative;
  background-image: radial-gradient(circle at 75% 30%, rgba(197, 160, 89, 0.04) 0%, transparent 60%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }
}

.hero-content {
  max-width: 620px;
}

@media (max-width: 992px) {
  .hero-content {
    margin: 0 auto;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-description {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-white);
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
  display: inline-block;
}

@media (max-width: 992px) {
  .hero-tagline {
    text-align: center;
    border-left: none;
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 0.5rem 1rem;
  }
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-actions {
    justify-content: center;
  }
}

/* Hero Visual Preview */
.hero-visual {
  position: relative;
  width: 100%;
}

.preview-wrapper {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-md);
  padding: 0.75rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(197, 160, 89, 0.05);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.preview-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4), transparent);
}

.preview-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-glow);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 50px rgba(197, 160, 89, 0.08);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.75rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
}
.dot:nth-child(1) { background-color: #ff5f56; }
.dot:nth-child(2) { background-color: #ffbd2e; }
.dot:nth-child(3) { background-color: #27c93f; }

.window-title {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.dashboard-img {
  border-radius: var(--border-radius-sm);
  filter: saturate(0.9) brightness(0.95);
  transition: var(--transition-smooth);
  width: 100%;
}

.preview-wrapper:hover .dashboard-img {
  filter: saturate(1) brightness(1.02);
}

/* ==========================================
   TRUST METRICS SECTION
   ========================================== */
.metrics {
  background-color: var(--color-bg-deep);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 4.5rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.metric-item {
  text-align: center;
  position: relative;
}

.metric-item::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -1.25rem;
  height: 60%;
  width: 1px;
  background-color: var(--color-border-subtle);
}

.metrics-grid .metric-item:last-child::after {
  display: none;
}

@media (max-width: 992px) {
  .metrics-grid .metric-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .metric-item::after {
    display: none;
  }
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.metric-label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */
.about-preview {
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: 0.75rem;
  background-color: var(--color-bg-surface);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-img {
  border-radius: calc(var(--border-radius-lg) - 8px);
  width: 100%;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-story-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.about-story-text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-village-meta {
  background-color: rgba(197, 160, 89, 0.05);
  border-left: 3px solid var(--color-gold);
  padding: 1.25rem 1.75rem;
  margin-top: 1rem;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.about-village-meta h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 0.25rem;
}

.about-village-meta p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  background-color: var(--color-bg-deep);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.25rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-glow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 25px rgba(197, 160, 89, 0.05);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
  transform: scale(1.05);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-white);
}

.service-card-desc {
  color: var(--color-text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition-fast);
}

.service-learn-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-learn-more {
  color: var(--color-gold-bright);
}

.service-card:hover .service-learn-more svg {
  transform: translateX(3px);
}

/* ==========================================
   WHY CHOOSE US & CORE PHILOSOPHY
   ========================================== */
.why-naduvai {
  position: relative;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.why-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.why-text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.why-point-item {
  display: flex;
  gap: 1.25rem;
}

.why-point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.why-point-icon svg {
  width: 12px;
  height: 12px;
}

.why-point-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.why-point-details p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Accent visual: card grid representing enterprise elements */
.why-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .why-visual-grid {
    grid-template-columns: 1fr;
  }
}

.why-visual-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition-smooth);
}

.why-visual-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.why-card-icon {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries {
  background-color: var(--color-bg-deep);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-glow);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.06);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  background-color: rgba(197, 160, 89, 0.12);
  color: var(--color-gold-bright);
}

.industry-icon svg {
  width: 26px;
  height: 26px;
}

.industry-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-white);
}

.industry-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ==========================================
   OUR APPROACH / TIMELINE
   ========================================== */
.approach {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(197,160,89,0.1) 0%, 
    rgba(197,160,89,0.6) 50%, 
    rgba(197,160,89,0.1) 100%
  );
  z-index: 1;
}

@media (max-width: 992px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .timeline::before {
    display: none;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .timeline-step {
    text-align: left;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
}

.step-number-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-bg-surface);
  border: 2px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-heading);
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .step-number-box {
    margin: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }
}

.timeline-step:hover .step-number-box {
  border-color: var(--color-gold);
  color: var(--color-text-white);
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.25);
  transform: scale(1.05);
}

.step-details {
  max-width: 250px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .step-details {
    max-width: 100%;
    margin: 0;
    padding-top: 0.5rem;
  }
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-white);
}

.step-desc {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ==========================================
   CALL TO ACTION SECTION
   ========================================== */
.cta-banner {
  background-color: var(--color-bg-deep);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-bg-surface) 0%, rgba(15, 28, 63, 0.6) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-desc {
    font-size: 1rem;
  }
}

/* ==========================================
   CONTACT & CONSULTATION SECTION
   ========================================== */
.contact {
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-white);
  transition: var(--transition-fast);
}

.contact-card-value:hover {
  color: var(--color-gold-bright);
}

/* Contact Form */
.contact-form-container {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@media (max-width: 576px) {
  .contact-form-container {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .form-group-full {
    grid-column: span 1;
  }
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-off);
}

.form-input, .form-textarea, .form-select {
  background-color: var(--color-bg-surface);
  border: 1px solid rgba(0, 198, 255, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 0.875rem 1.25rem;
  color: var(--color-text-white);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px var(--color-border-glow);
  background-color: var(--color-bg-surface-hover);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300c6ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 16px;
  padding-right: 3rem;
  cursor: pointer;
}

.form-select option {
  background-color: var(--color-bg-surface);
  color: var(--color-text-white);
}

.form-feedback {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  display: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  background-color: rgba(39, 201, 63, 0.1);
  border: 1px solid rgba(39, 201, 63, 0.3);
  color: #55efc4;
}

.form-feedback.error {
  display: block;
  background-color: rgba(255, 95, 86, 0.1);
  border: 1px solid rgba(255, 95, 86, 0.3);
  color: #ff7675;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--color-bg-deep);
  border-top: 1px solid var(--color-border-subtle);
  padding: 5rem 0 3rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.975rem;
  max-width: 300px;
}

.footer-tagline-motto {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-white);
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--color-gold-bright);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.copyright {
  color: var(--color-text-dim);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-link {
  color: var(--color-text-dim);
  font-size: 0.875rem;
}

.footer-bottom-link:hover {
  color: var(--color-gold);
}

/* ==========================================
   CONSULTATION MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 3.5rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 50px rgba(0, 198, 255, 0.15);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 576px) {
  .modal-container {
    padding: 2rem;
  }
}

.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-gold-bright);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.modal-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   SUBPAGES (ABOUT & CONTACT) STYLING
   ========================================== */
.hero-subpage {
  padding: 10rem 0 4.5rem 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(0, 198, 255, 0.04) 0%, transparent 60%);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
}

.about-hero-title, .contact-hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-hero-desc, .contact-hero-desc {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-subpage {
    padding: 8rem 0 3.5rem 0;
  }
  .about-hero-title, .contact-hero-title {
    font-size: 2.5rem;
  }
  .about-hero-desc, .contact-hero-desc {
    font-size: 1rem;
  }
}

/* Mission & Vision Split */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.mv-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-glow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background-color: rgba(0, 198, 255, 0.08);
  border: 1px solid rgba(0, 198, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c6ff;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.mv-card:hover .mv-icon-box {
  background-color: #00c6ff;
  color: var(--color-bg-deep);
  transform: scale(1.05);
}

.mv-icon-box svg {
  width: 26px;
  height: 26px;
}

.mv-title {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.mv-desc {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Company Story Layout */
.story-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 992px) {
  .story-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.story-text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: 0.75rem;
  background-color: var(--color-bg-surface);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.story-img {
  border-radius: calc(var(--border-radius-lg) - 8px);
  width: 100%;
  display: block;
}

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-glow);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  color: #00c6ff;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  color: var(--color-text-white);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Page specific layouts */
.contact-section {
  position: relative;
}

.trust-next-steps {
  margin-top: 3.5rem;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 2.5rem;
  width: 100%;
}

.trust-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: var(--color-text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 0;
  list-style: none;
}

.trust-steps li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(0, 198, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #00c6ff;
}

.trust-steps h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 0.25rem;
}

.trust-steps p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}
