/* =========================
   GLOBAL RESET & TECH THEME
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body.tech-theme {
  background: #0a0a0c;
  color: #ffffff;
  overflow-x: hidden;
}

a, button, .service-card, .launch-card {
  transition: all 0.4s ease;
}

html { scroll-behavior: smooth; }

/* =========================
   GLASSMORPHISM NAVBAR
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 72px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo-area { display: flex; align-items: center; gap: 14px; }
.logo img { height: 54px; width: auto; object-fit: contain; }
.brand-text {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 8px;
  color: #d4af37;
  text-transform: uppercase;
}

.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links a:hover { color: #d4af37; }

.nav-cta {
  padding: 10px 18px;
  border: 1px solid #d4af37;
  border-radius: 6px;
  color: #d4af37;
  text-decoration: none;
  font-size: 13px;
}
.nav-cta:hover { background: #d4af37; color: #000; }

/* =========================
   TECH HERO
========================= */
/* =========================
   TECH HERO
========================= */
.tech-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 20px;
  /* NEW IMAGE BACKGROUND WITH DARK OVERLAY */
  background: linear-gradient(rgba(10, 10, 12, 0.6), rgba(10, 10, 12, 0.95)), 
              url('../assets/images/applied-intellignce1.webp') center/cover no-repeat;
}

/* Background Animated Grid */
.hero-bg-animation {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  animation: bg-scroll 20s linear infinite;
}

@keyframes bg-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

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

.tech-tag {
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.tech-hero h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 24px;
}

.glow-text {
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.subtext {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn.primary {
  padding: 16px 32px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.btn.primary:hover {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-3px);
}

/* =========================
   SERVICES & LAUNCHPAD
========================= */
.tech-services, .launchpad-section {
  padding: 120px 60px;
  position: relative;
  z-index: 2;
}

/* Apply Image 2 specifically to the Consulting Section with a Parallax effect */
.tech-services {
  background: linear-gradient(rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.95)), 
              url('../assets/images/applied-intellignce2.webp') center/cover no-repeat;
  background-attachment: fixed; /* Creates a premium premium gliding/parallax effect */
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
}
.section-sub { color: #888; font-size: 18px; }

.services-grid, .launchpad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.card-icon {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 24px; margin-bottom: 15px; }
.service-card p { color: #aaa; line-height: 1.7; }

/* Launchpad Cards */
.launch-card {
  background: linear-gradient(145deg, #121317 0%, #0a0a0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.launch-status {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.launch-status.glowing {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.launch-card h3 { font-size: 28px; margin: 30px 0 10px; }
.launch-card .category { color: #d4af37; font-size: 13px; margin-bottom: 15px; }
.launch-card .desc { color: #888; line-height: 1.6; margin-bottom: 30px; }
.launch-btn {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
}
.launch-btn.disabled { opacity: 0.5; cursor: not-allowed; }

/* =========================
   FOOTER (ICONS ONLY)
========================= */
.tech-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 60px 20px;
  text-align: center;
  background: #050505;
}
.footer-logo {
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 30px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px);
}
.footer-cta {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  border-radius: 6px;
  margin-bottom: 30px;
}
.footer-cta:hover { background: #d4af37; color: #000; }
.copyright { color: #555; font-size: 14px; }

/* =========================
   ANIMATIONS & MOBILE
========================= */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@media (max-width: 768px) {
  .navbar { padding: 20px; flex-direction: column; gap: 20px; }
  .tech-hero h1 { font-size: 42px; }
  .services-grid, .launchpad-grid { grid-template-columns: 1fr; }
  .tech-services, .launchpad-section { padding: 80px 20px; }
}
