:root {
  --primary-color: #00d4ff;
  --secondary-color: #0a1628;
  --text-light: #e0e0e0;
  --text-dark: #ffffff;
  --bg-dark: #0a1628;
  --bg-darker: #051019;
  --accent-hover: #00b8d4;
  --border-color: #1a2f42;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--bg-darker);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.logo-text h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

.logo-text p {
  font-size: 12px;
  color: var(--primary-color);
  margin: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.cta-btn {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: var(--accent-hover);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  margin: 4rem 6rem;
}
@media screen  and (max-width: 900px) {
  .hero {
    margin: 1rem 1rem;
    grid-template-columns: 1fr;
    text-align: left;
  }
  
}

.hero-content h1 {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 1rem 0;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 1.5rem 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

/* Who Section */
.who-section {
  padding: 4rem 0;
  background-color: var(--bg-darker);
  margin: 2rem 0;
}

.who-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.who-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.who-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.who-card ul {
  list-style: none;
}

.who-card li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.who-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.work-with {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
}

.dont-work {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

/* Different Section */
.different-section {
  padding: 4rem 0;
}

.different-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.different-card {
  background-color: var(--bg-darker);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.different-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.card-number {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.different-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.different-card p {
  color: var(--text-light);
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--bg-darker);
}

.services-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--text-light);
}

/* Process Section */
.process-section {
  padding: 4rem 0;
}

.process-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
}

.step-number {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background-color: var(--bg-darker);
}

.trust-section h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trust-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  background: rgba(0, 212, 255, 0.05);
}

.trust-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.trust-card p {
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  text-align: center;
  margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--bg-darker);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .who-grid,
  .different-grid,
  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }
}
