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

:root {
  --primary-color: #2ec4a0;
  --primary-glow: rgba(46, 196, 160, 0.4);
  --primary-glow-subtle: rgba(46, 196, 160, 0.15);
  --dark-bg: #0a1628;
  --dark-surface: #0e2038;
  --dark-surface-hover: #122b4c;
  --darker-bg: #06111e;
  --light-bg: #f8fafc;
  --light-surface: #ffffff;
  --light-text: #ffffff;
  --dark-text: #0f172a;
  --muted-text: rgba(255, 255, 255, 0.65);
  --muted-dark-text: #64748b;
  --font-sans: 'Outfit', sans-serif;
  --nav-height: 80px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
}

/* Base resets & styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(46, 196, 160, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
}

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

button, input, textarea {
  font-family: var(--font-sans);
  outline: none;
}

/* Common Classes & Layouts */
.section {
  position: relative;
  padding: 100px 0;
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.label-teal {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.text-dark .section-title {
  color: var(--dark-text);
}

/* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 999;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(6, 17, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46, 196, 160, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-weight: 800;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--primary-color);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  font-weight: 300;
  opacity: 0.8;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-text);
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--light-text);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-filled {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

.btn-filled:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 6px;
}

/* Hamburger mobile menu trigger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--light-text);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Video Background Layer */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-video-fallback {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 22, 40, 0.6);
  z-index: 2;
}

/* SECTION 1: HERO */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  position: relative;
  background-color: var(--dark-bg);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-headline {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  margin: 16px 0 24px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-headline span {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted-text);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--primary-color);
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
}

.scroll-indicator i {
  font-size: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* SECTION 2: ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-media video,
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.4), transparent);
  pointer-events: none;
}

.about-text h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  color: var(--muted-text);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
}

.stats-container {
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
  display: block;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-text);
}

/* SECTION 3: SERVICES */
.services-section {
  background-color: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

/* IT Risk Grid */
.it-risk-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.it-risk-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.it-risk-card:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 25px rgba(46, 196, 160, 0.06);
}

.service-card {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(46, 196, 160, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.service-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: inline-flex;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--muted-text);
  font-size: 14px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 196, 160, 0.4);
  box-shadow: 0 10px 30px rgba(46, 196, 160, 0.12);
  background-color: var(--dark-surface-hover);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* SECTION 4: INFORMATION TECHNOLOGY */
.it-solutions-section {
  padding: 120px 0;
}

.it-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  position: relative;
  z-index: 10;
}

.it-column h3 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 20px;
}

.it-column p {
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.7;
}

/* SECTION 5: ENTERPRISE CONTENT MANAGEMENT (Light background) */
.light-section {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

.light-section .label-teal {
  color: #1b8a70; /* slightly darker teal for contrast on light background */
}

.ecm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.ecm-content h3 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 20px;
  color: var(--dark-text);
}

.ecm-content p {
  color: var(--muted-dark-text);
  font-size: 16px;
  margin-bottom: 30px;
}

.ecm-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ecm-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
}

.ecm-list li i {
  color: #1b8a70;
  font-size: 18px;
}

.ecm-media {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  border: 1px solid rgba(0,0,0,0.06);
}

.ecm-media video,
.ecm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION 6: DIGITAL PEN AND FORMS */
.field-solutions-section {
  padding: 120px 0;
}

.field-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.field-body {
  color: var(--muted-text);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.pills-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.pill i {
  color: var(--primary-color);
}

.pill:hover {
  background: var(--primary-glow-subtle);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow-subtle);
  transform: translateY(-2px);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usecase-card {
  background: rgba(14, 32, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.usecase-card i {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: inline-block;
}

.usecase-card h4 {
  font-size: 16px;
  font-weight: 600;
}

.usecase-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(46, 196, 160, 0.1);
  background: var(--dark-surface);
}

/* SECTION 7: TRAINING AND LEARNING */
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.training-media {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.training-media video,
.training-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-content h3 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 20px;
}

.training-content p {
  color: var(--muted-text);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.feature-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.training-feat-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: var(--transition-smooth);
}

.training-feat-card i {
  font-size: 26px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.training-feat-text h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.training-feat-text p {
  font-size: 13px;
  color: var(--muted-text);
  margin-bottom: 0;
  line-height: 1.5;
}

.training-feat-card:hover {
  transform: translateX(6px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(46, 196, 160, 0.08);
}

/* SECTION 8: AR AND VR */
.immersive-section {
  padding: 120px 0;
  text-align: center;
}

.immersive-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.immersive-content p {
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.7;
}

.immersive-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.immersive-card {
  background: rgba(14, 32, 56, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  text-align: left;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.immersive-card i {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 24px;
  display: inline-block;
}

.immersive-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.immersive-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.immersive-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(46, 196, 160, 0.15);
  background: var(--dark-surface);
}

/* SECTION 9: HARDWARE AND SOFTWARE (Light background) */
.hardware-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hardware-content h3 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 20px;
  color: var(--dark-text);
}

.hardware-content p {
  color: var(--muted-dark-text);
  font-size: 16px;
  line-height: 1.7;
}

.hardware-media {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
  border: 1px solid rgba(0,0,0,0.06);
}

.hardware-media video,
.hardware-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION 10: CLIENTS */
.clients-section {
  background-color: var(--darker-bg);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.clients-section h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.client-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.client-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 24px;
  color: var(--light-text);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.client-logo:hover {
  color: var(--primary-color);
}

.client-logo:hover::after {
  transform: scaleX(1);
}

.logo-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* SECTION 11: CONTACT */
.contact-section {
  padding: 120px 0;
}

.contact-section h3 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 50px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto 50px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1001;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #fff !important;
}

/* Direct Contacts & WhatsApp support styling */
.contact-person {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 14px;
  text-align: left;
}

.contact-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-person h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--light-text);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-text) !important;
  transition: var(--transition-smooth);
}

.contact-link-item:hover {
  color: var(--primary-color) !important;
}

.contact-link-item i {
  font-size: 14px;
  color: var(--primary-color);
}

.contact-link-item.whatsapp-link i {
  color: #25D366;
}

.contact-card {
  background: rgba(14, 32, 56, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(46, 196, 160, 0.1);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.contact-card-header i {
  font-size: 24px;
  color: var(--primary-color);
}

.contact-card-header h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.5;
}

.detail-item strong {
  color: var(--light-text);
  font-weight: 500;
}

.detail-item a:hover {
  color: var(--primary-color);
}

/* Contact Form */
.contact-form-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(14, 32, 56, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(6, 17, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  color: var(--light-text);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 12px rgba(46, 196, 160, 0.2);
  background: rgba(6, 17, 30, 0.9);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-label {
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 14px;
  color: var(--muted-text);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 12px;
  font-size: 11px;
  background-color: var(--dark-bg);
  padding: 2px 8px;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 4px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-status.success {
  color: var(--primary-color);
  display: block;
}

.form-status.error {
  color: #ef4444;
  display: block;
}

/* FOOTER */
.footer {
  background-color: var(--darker-bg);
  padding: 40px 0;
  border-top: 1px solid var(--primary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 10;
  position: relative;
}

.footer-logo {
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-color);
  letter-spacing: 1.5px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-link {
  font-size: 13px;
  color: var(--muted-text);
}

.footer-link:hover {
  color: var(--primary-color);
}

/* Footer QR Code Styling */
.footer-qr {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid rgba(46, 196, 160, 0.3);
  padding: 2px;
  background-color: #0e2038;
}

.footer-qr span {
  font-size: 10px;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* MOBILE RESPONSIVENESS */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .navbar {
    background: rgba(6, 17, 30, 0.95);
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--darker-bg);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 998;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .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);
  }
  
  .about-grid,
  .it-grid,
  .it-risk-grid,
  .ecm-grid,
  .training-grid,
  .immersive-cards-grid,
  .hardware-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media, .ecm-media, .training-media, .hardware-media {
    order: -1; /* Place media on top of text in mobile layout */
  }
  
  .client-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .logo-divider {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}
