/* ===== RESET & TECH VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }

:root {
  --bg-main:      #0b0f17; /* Midnight Slate Dark */
  --bg-card:      #121824; /* Elevated Tech Panel */
  --mint-glow:    #39ffa0; /* Neon Mint Highlight */
  --mint-dark:    #13854e;
  --text-primary: #f1f5f9;
  --text-muted:   #94a3b8;
  --white:        #ffffff;
  --border-glow:  rgba(57, 255, 160, 0.15);
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-head:    'Space Grotesk', system-ui, sans-serif;
  --shadow-glow:  0 0 20px rgba(57, 255, 160, 0.08);
  --radius:       8px; /* Sharper industrial curves */
  --transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HIGH-TECH NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 24px 0;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul{
  list-style-type: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-icon {
  background-image: url('img/logo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover { 
  color: var(--mint-glow); 
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== NEW COMPLETELY CHANGED BANNER HERO ===== */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  /* Completely new dark-tinted epic landscape replacement banner */
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.4) 0%, rgba(11, 15, 23, 0.95) 100%),
              url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1920&q=80') center/cover no-repeat;
  padding: 140px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-tag {
  display: inline-block;
  background: rgba(57, 255, 160, 0.08);
  border: 1px solid rgba(57, 255, 160, 0.2);
  color: var(--mint-glow);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-content h1 { 
  font-family: var(--font-head); 
  font-size: clamp(2.4rem, 6vw, 4rem); 
  line-height: 1.1; 
  margin-bottom: 24px; 
  font-weight: 700;
  letter-spacing: -1px;
}

.accent { 
  color: var(--mint-glow); 
  text-shadow: 0 0 25px rgba(57, 255, 160, 0.25);
}

.hero-sub { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 40px; max-width: 680px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== TECH BUTTONS ===== */
.btn {
  display: inline-flex;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary { 
  background: var(--mint-glow); 
  color: var(--bg-main); 
  box-shadow: 0 4px 14px rgba(57, 255, 160, 0.3);
}
.btn-primary:hover { 
  background: var(--white); 
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px); 
}
.btn-outline { 
  background: transparent; 
  color: var(--text-primary); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
}
.btn-outline:hover { 
  border-color: var(--mint-glow); 
  color: var(--mint-glow);
}

/* ===== TYPE & LAYOUT STRUCTURING ===== */
section { padding: 100px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.section-tag { color: var(--mint-glow); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 12px; }
.section-tag.center { text-align: center; }
.section-title { font-family: var(--font-head); font-size: 2.4rem; color: var(--text-primary); margin-bottom: 20px; font-weight: 700; letter-spacing: -0.5px; }
.section-title.center { text-align: center; }
.section-sub { color: var(--text-muted); max-width: 620px; margin: 0 auto 56px; text-align: center; font-size: 1.05rem; }

/* ===== ABOUT (DARK ROW) ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center; }
.about-highlights { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.about-highlights li { display: flex; gap: 12px; color: var(--text-muted); }
.check { color: var(--mint-glow); font-weight: bold; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; height: 420px; border: 1px solid rgba(255, 255, 255, 0.05); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(80%); contrast(120%); }

/* ===== MATRIX SERVICES (GLOW CARDS) ===== */
#services { background: #080c12; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.service-card { 
  background: var(--bg-card); 
  padding: 40px 32px; 
  border-radius: var(--radius); 
  border: 1px solid rgba(255, 255, 255, 0.03); 
  box-shadow: var(--shadow-glow); 
  transition: var(--transition); 
}
.service-card:hover { 
  transform: translateY(-5px); 
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(57, 255, 160, 0.06);
}
.service-icon { font-size: 2rem; margin-bottom: 20px; display: inline-block; color: var(--mint-glow); }
.service-card h3 { margin-bottom: 14px; color: var(--text-primary); font-family: var(--font-head); font-size: 1.3rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ===== LINEAR TIMELINE PROTOCOL ===== */
.timeline { position: relative; max-width: 800px; margin: 40px auto 0; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; height: 100%; width: 1px; background: rgba(255, 255, 255, 0.1); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-badge { position: absolute; left: -34px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--bg-main); border: 2px solid var(--mint-glow); }
.timeline-content h3 { color: var(--text-primary); font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 8px; }
.timeline-content p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== TECHNICAL ACCESS HUB & FOOTER ===== */
.contact-box { 
  background: var(--bg-card); 
  border: 1px solid rgba(255, 255, 255, 0.04); 
  padding: 50px; 
  border-radius: var(--radius); 
  text-align: center; 
  box-shadow: var(--shadow-glow);
}
.contact-info h3 { margin-bottom: 20px; color: var(--text-primary); font-family: var(--font-head); }
.contact-info p { margin-bottom: 12px; color: var(--text-muted); font-size: 1rem; }
.contact-info strong { color: var(--text-primary); }

#footer { background: #05080c; color: var(--text-muted); padding: 32px 0; font-size: 0.85rem; border-top: 1px solid rgba(255, 255, 255, 0.03); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: var(--transition); }
.footer-links a:hover { color: var(--mint-glow); }

/* ===== HIGH-TECH RESPONSIVE TRANSITIONS ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 10000; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 300px;
    background: var(--bg-card);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
    gap: 32px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-primary); font-size: 1.05rem; }
  
  /* Precision Cross Toggle Action Settings */
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--mint-glow); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--mint-glow); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }
}















section { padding: 90px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.section-tag { color: var(--mint-glow); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 12px; }
.section-tag.center { text-align: center; }
.section-title { font-family: var(--font-head); font-size: 2.2rem; color: var(--text-primary); margin-bottom: 20px; letter-spacing: -0.5px; }
.section-title.center { text-align: center; }
.section-sub { color: var(--text-muted); max-width: 680px; margin: 0 auto 56px; text-align: center; font-size: 1.05rem; }

/* ===== SECTION 1: WHO WE ARE ===== */
.about-grid1 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.about-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.05rem; }
.about-text strong { color: var(--text-primary); }

.about-card-stat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint-glow);
  margin-bottom: 6px;
}

.stat-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== SECTION 2: SERVICES MATRIX ===== */
#services { background: #080c12; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-head); color: var(--text-primary); font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== SECTION 3: TABLE DESIGN ===== */
.table-container {
  overflow-x: auto;
  margin-top: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  text-align: left;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--mint-glow);
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table td {
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.98rem;
}

.comparison-table tr:last-child td { border-bottom: none; }

.feature-title {
  color: var(--text-primary) !important;
  font-weight: 600;
  width: 30%;
}

.highlight-icon { color: var(--mint-glow); margin-right: 8px; }

/* ===== SECTION 4: MISSION & VISION ===== */
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.mv-card {
  background: var(--bg-card);
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-glow);
}





































/* ===== CLIENTS SECTION ===== */
#clients {
  background: #090d14;
  position: relative;
}


/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.client-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mint-glow);
  background: rgba(57, 255, 160, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}



.client-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.client-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}



/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: #05080e;
  color: #a0aec0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand Column */
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #39ffa0; /* Accent Mint/Green Glow */
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #8c9ba5;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  font-size: 0.8rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  color: #05080e;
  background: #39ffa0;
  border-color: #39ffa0;
}

/* Column Headings & Links */
.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #8c9ba5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #39ffa0;
}

/* Contact Column */
.contact-item {
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #8c9ba5;
}

.contact-item strong {
  color: #cbd5e1;
}

/* Footer Bottom Bar */
.footer-bottom {
  background-color: #020408;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #39ffa0;
}

.footer-bottom-links .divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}