* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #06b6d4;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

/* Background */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
}

/* 3D Atom Background */
.atom-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.atom-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #00d9ff, #0076ff);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.7), inset 0 0 5px rgba(255, 255, 255, 0.5);
    animation: float-atom 20s infinite ease-in-out;
    transform-style: preserve-3d;
}

.atom-particle::before,
.atom-particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 204, 255, 0.4);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.atom-particle::before {
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%) rotateY(70deg) rotateX(20deg);
    animation: rotate-ring 10s infinite linear;
}

.atom-particle::after {
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%) rotateY(-60deg) rotateX(40deg);
    animation: rotate-ring 8s infinite linear reverse;
}

.atom-1 { width: 15px; height: 15px; top: 15%; left: 20%; animation-duration: 18s; }
.atom-2 { width: 10px; height: 10px; top: 40%; left: 40%; animation-duration: 25s; animation-delay: -3s; }
.atom-3 { width: 12px; height: 12px; top: 70%; left: 15%; animation-duration: 20s; animation-delay: -6s; }
.atom-4 { width: 18px; height: 18px; top: 80%; left: 50%; animation-duration: 28s; animation-delay: -9s; }
.atom-5 { width: 10px; height: 10px; top: 10%; left: 60%; animation-duration: 16s; animation-delay: -1s; }
.atom-6 { width: 14px; height: 14px; top: 50%; left: 80%; animation-duration: 22s; animation-delay: -5s; }
.atom-7 { width: 11px; height: 11px; top: 25%; left: 90%; animation-duration: 19s; animation-delay: -8s; }
.atom-8 { width: 16px; height: 16px; top: 85%; left: 75%; animation: float-atom 26s infinite ease-in-out, collide 3s infinite ease-in-out; animation-delay: -11s, -0.5s; }
.atom-9 { width: 12px; height: 12px; top: 5%; left: 30%; animation-duration: 23s; animation-delay: -2s; }
.atom-10 { width: 16px; height: 16px; top: 90%; left: 5%; animation-duration: 29s; animation-delay: -12s; }
.atom-11 { width: 10px; height: 10px; top: 30%; left: 5%; animation: float-atom 17s infinite ease-in-out, collide 3.5s infinite ease-in-out; animation-delay: -4s, -2s; }
.atom-12 { width: 14px; height: 14px; top: 60%; left: 95%; animation: float-atom 21s infinite ease-in-out, collide 4.5s infinite ease-in-out; animation-delay: -7s, -2.5s; }
.atom-13 { width: 18px; height: 18px; top: 5%; left: 5%; animation-duration: 30s; animation-delay: -10s; }
.atom-14 { width: 13px; height: 13px; top: 95%; left: 30%; animation: float-atom 24s infinite ease-in-out, collide 2.8s infinite ease-in-out; animation-delay: -13s, -1.2s; }
.atom-15 { width: 11px; height: 11px; top: 75%; left: 90%; animation: float-atom 18s infinite ease-in-out, collide 3.2s infinite ease-in-out; animation-delay: -14s, -1s; }
.atom-16 { width: 15px; height: 15px; top: 45%; left: 65%; animation-duration: 27s; animation-delay: -15s; }

/* Scientific Shapes - CRED Style */
.scientific-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* DNA Helix - Subtle */
.dna-helix {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 120px;
  height: 300px;
  animation: slowRotate 30s infinite linear;
  opacity: 0.7;
}

.dna-strand {
  position: absolute;
  width: 2px;
  height: 300px;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.5), rgba(0, 204, 255, 0.5));
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.strand-1 {
  left: 0;
  transform: rotateY(0deg);
}

.strand-2 {
  right: 0;
  transform: rotateY(180deg);
}

.dna-base {
  position: absolute;
  width: 1px;
  height: 40px;
  background: linear-gradient(45deg, rgba(255, 0, 102, 0.5), rgba(255, 170, 0, 0.5));
  border-radius: 0.5px;
  box-shadow: 0 0 8px rgba(255, 0, 102, 0.4);
  animation: gentlePulse 4s infinite ease-in-out;
}

.base-1 { top: 20px; left: 50%; transform: translateX(-50%) rotateZ(45deg); animation-delay: 0s; }
.base-2 { top: 70px; left: 50%; transform: translateX(-50%) rotateZ(-45deg); animation-delay: 1s; }
.base-3 { top: 120px; left: 50%; transform: translateX(-50%) rotateZ(45deg); animation-delay: 2s; }
.base-4 { top: 170px; left: 50%; transform: translateX(-50%) rotateZ(-45deg); animation-delay: 3s; }
.base-5 { top: 220px; left: 50%; transform: translateX(-50%) rotateZ(45deg); animation-delay: 4s; }
.base-6 { top: 270px; left: 50%; transform: translateX(-50%) rotateZ(-45deg); animation-delay: 5s; }

/* Molecular Structure - Minimal */
.molecule {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation: gentleFloat 20s infinite ease-in-out;
  opacity: 0.6;
}

.atom {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.6), rgba(238, 90, 36, 0.6));
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
  animation: atomGentlePulse 6s infinite ease-in-out;
}

.atom-1 { width: 12px; height: 12px; top: 0; left: 50%; transform: translateX(-50%); }
.atom-2 { width: 10px; height: 10px; top: 30px; left: 15px; animation-delay: 1.5s; }
.atom-3 { width: 11px; height: 11px; top: 30px; right: 15px; animation-delay: 3s; }
.atom-4 { width: 9px; height: 9px; bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 4.5s; }

.bond {
  position: absolute;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.5), rgba(0, 204, 255, 0.5));
  box-shadow: 0 0 5px rgba(0, 255, 136, 0.4);
  border-radius: 0.5px;
}

.bond-1 { width: 1px; height: 30px; top: 6px; left: 50%; transform: translateX(-50%) rotateZ(45deg); }
.bond-2 { width: 1px; height: 30px; top: 6px; left: 50%; transform: translateX(-50%) rotateZ(-45deg); }
.bond-3 { width: 1px; height: 30px; bottom: 6px; left: 50%; transform: translateX(-50%); }

/* Geometric Shapes - Elegant */
.geometric-shapes {
  position: absolute;
  bottom: 20%;
  left: 15%;
  opacity: 0.5;
}

.cube {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.6), rgba(139, 92, 246, 0.6));
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  animation: slowRotate 25s infinite linear;
  position: relative;
  transform-style: preserve-3d;
}

.cube::before,
.cube::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  box-shadow: inherit;
}

.cube::before {
  transform: rotateY(90deg) translateZ(20px);
}

.cube::after {
  transform: rotateX(90deg) translateZ(20px);
}

.sphere {
  width: 35px;
  height: 35px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.6), rgba(8, 145, 178, 0.6));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
  animation: gentleFloat 12s infinite ease-in-out;
  margin-top: 15px;
}

.pyramid {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 40px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
  animation: slowRotate 18s infinite linear;
  margin-top: 15px;
}

.cylinder {
  width: 25px;
  height: 50px;
  background: linear-gradient(45deg, rgba(236, 72, 153, 0.6), rgba(190, 24, 93, 0.6));
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.5);
  animation: gentleFloat 10s infinite ease-in-out;
  margin-top: 15px;
}

/* Tech Elements - Subtle */
.tech-elements {
  position: absolute;
  bottom: 20%;
  right: 15%;
  opacity: 0.5;
}

.circuit-board {
  width: 80px;
  height: 60px;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(0, 255, 136, 0.4) 49%, rgba(0, 255, 136, 0.4) 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(0, 255, 136, 0.4) 49%, rgba(0, 255, 136, 0.4) 51%, transparent 51%);
  background-size: 15px 15px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  animation: gentlePulse 8s infinite ease-in-out;
}

.data-stream {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0, 204, 255, 0.5), transparent);
  box-shadow: 0 0 10px rgba(0, 204, 255, 0.4);
  animation: gentleDataFlow 6s infinite linear;
  margin-top: 15px;
}

.neural-network {
  position: relative;
  width: 70px;
  height: 60px;
  margin-top: 15px;
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 107, 107, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 107, 107, 0.5);
  animation: nodeGentlePulse 4s infinite ease-in-out;
}

.node-1 { top: 0; left: 0; }
.node-2 { top: 0; right: 0; }
.node-3 { bottom: 0; left: 0; }
.node-4 { bottom: 0; right: 0; }

.connection {
  position: absolute;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.5), rgba(0, 204, 255, 0.5));
  box-shadow: 0 0 3px rgba(0, 255, 136, 0.4);
  border-radius: 0.5px;
}

.conn-1 { width: 1px; height: 30px; top: 3px; left: 50%; transform: translateX(-50%); }
.conn-2 { width: 1px; height: 30px; top: 3px; right: 3px; transform: rotateZ(45deg); }
.conn-3 { width: 1px; height: 30px; bottom: 3px; left: 3px; transform: rotateZ(-45deg); }

/* Floating Particles - Minimal */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  animation: gentleParticleFloat 15s infinite linear;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 50%; left: 10%; animation-delay: 4s; }
.particle-4 { top: 70%; left: 70%; animation-delay: 6s; }
.particle-5 { top: 20%; left: 60%; animation-delay: 8s; }
.particle-6 { top: 60%; left: 30%; animation-delay: 10s; }
.particle-7 { top: 80%; left: 50%; animation-delay: 12s; }
.particle-8 { top: 40%; left: 90%; animation-delay: 14s; }

/* CRED-Style Animations */
@keyframes slowRotate {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  100% { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes atomGentlePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 107, 107, 0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 107, 107, 0.6); }
}

@keyframes gentleDataFlow {
  0% { transform: translateY(-80px); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translateY(80px); opacity: 0; }
}

@keyframes nodeGentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes gentleParticleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

@keyframes slowPan {
  from { transform: translate(0, 0); }
  to { transform: translate(50px, 100px); }
}

@keyframes float {
  0% { transform: translate(0, 0); }
  25% { transform: translate(15px, 20px); }
  50% { transform: translate(0, 40px); }
  75% { transform: translate(-15px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes float-atom {
  0% { transform: translate3d(0, 0, 0) rotateZ(0deg); }
  20% { transform: translate3d(25px, -35px, 15px) rotateZ(72deg); }
  40% { transform: translate3d(-15px, 25px, -15px) rotateZ(144deg); }
  60% { transform: translate3d(35px, 15px, 10px) rotateZ(216deg); }
  80% { transform: translate3d(-25px, -15px, 20px) rotateZ(288deg); }
  100% { transform: translate3d(0, 0, 0) rotateZ(360deg); }
}

@keyframes rotate-ring {
    from { transform: translate(-50%, -50%) rotateY(0deg) rotateX(20deg); }
    to { transform: translate(-50%, -50%) rotateY(360deg) rotateX(20deg); }
}

@keyframes collide {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.7), inset 0 0 5px rgba(255, 255, 255, 0.5); 
    transform: scale3d(1, 1, 1);
  }
  50% { 
    box-shadow: 0 0 50px rgba(255, 255, 255, 1), inset 0 0 15px rgba(255, 255, 255, 1); 
    transform: scale3d(1.3, 1.3, 1.3);
  }
}

/* Navigation - CRED Style */
nav {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
}

.logo i {
  color: var(--accent-color);
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul li {
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

nav ul li:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-1px);
}

nav ul li.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Container and Content - CRED Style */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.content-box,
.careers-section,
.contact-template {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(40px);
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 1.5rem auto;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}

.active-section {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

/* Hero Section - CRED Style */
.hero-content {
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), #f97316);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3rem;
  animation: gentlePulse 3s infinite ease-in-out;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid - CRED Style */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  opacity: 0.03;
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* About Section - CRED Style */
.about-content {
  text-align: center;
}

.about-intro {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.mission-card,
.vision-card {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mission-card i,
.vision-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.mission-card p,
.vision-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

.company-info {
  margin-top: 4rem;
  text-align: left;
}

.company-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-primary);
}

.info-grid {
  display: grid;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 2rem;
}

.info-item span {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Careers Section - CRED Style */
.careers-section {
  text-align: center;
}

.careers-intro {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.6;
  font-weight: 400;
}

.careers-status {
  margin: 4rem 0;
}

.status-card {
  background: var(--bg-secondary);
  padding: 4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-color);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.status-card i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.status-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.status-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

.culture-section {
  margin-top: 4rem;
}

.culture-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.culture-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.culture-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.culture-item span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Contact Section - CRED Style */
.contact-template {
  text-align: center;
}

.contact-intro {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.6;
  font-weight: 400;
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  background: white;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Footer - CRED Style */
footer {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(30px);
  color: white;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  color: var(--accent-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  nav ul {
    gap: 1.5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .content-box,
  .careers-section,
  .contact-template {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 1rem;
  }
  
  .content-box,
  .careers-section,
  .contact-template {
    padding: 2.5rem 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .culture-grid {
    grid-template-columns: 1fr;
  }
}
