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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Made header sticky for better usability */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #3a8ef6, #8b3af6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
  max-height: 70px;
  width: auto;
  background: transparent;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Added hover animation */
nav a:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

/* Enhanced hero section with background gradient */
.hero {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(58, 142, 246, 0.05) 0%, rgba(139, 58, 246, 0.05) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=800&width=1200") center / cover;
  opacity: 0.03;
  z-index: -1;
}

.hero h1 {
  font-size: 3.2rem;
  color: #0a1428;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Added multiple CTA buttons */
.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta.primary {
  background: linear-gradient(90deg, #3a8ef6, #8b3af6);
  color: white;
}

.cta.secondary {
  background: transparent;
  color: #3a8ef6;
  border: 2px solid #3a8ef6;
}

/* Enhanced hover effects */
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 142, 246, 0.3);
}

.cta.secondary:hover {
  background: #3a8ef6;
  color: white;
}

/* Added mockup styling */
.hero-mockup {
  margin-top: 40px;
}

.dashboard-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
  transform: scale(1.02);
}

.section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 2.5rem;
  color: #0a1428;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(58, 142, 246, 0.1);
}

/* Enhanced card hover animation */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(58, 142, 246, 0.15);
}

.card h3 {
  color: #3a8ef6;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Service-specific styling */
.service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.services-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(58, 142, 246, 0.05) 0%, rgba(139, 58, 246, 0.05) 100%);
  border-radius: 15px;
}

.services-cta h3 {
  color: #0a1428;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.services-cta p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* About page specific styling */
.mission-statement {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(58, 142, 246, 0.05) 0%, rgba(139, 58, 246, 0.05) 100%);
  border-radius: 15px;
}

.mission-statement h3 {
  color: #3a8ef6;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.mission-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.unique-value {
  margin-bottom: 50px;
}

.unique-value h3 {
  color: #0a1428;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
}

.unique-points {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.unique-point {
  padding: 20px;
  background: white;
  border-radius: 8px;
  border-left: 4px solid #3a8ef6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-values {
  margin-top: 60px;
}

.company-values h3 {
  color: #0a1428;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.8rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.value-item {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-item h4 {
  color: #3a8ef6;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Case studies specific styling */
.case-study-card {
  text-align: left;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.case-study-metric {
  background: linear-gradient(90deg, #3a8ef6, #8b3af6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.case-study-card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial {
  margin-top: 25px;
  padding: 20px;
  background: rgba(58, 142, 246, 0.05);
  border-radius: 8px;
  border-left: 4px solid #3a8ef6;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial cite {
  color: #666;
  font-size: 0.9rem;
}

.testimonials-section {
  margin-top: 60px;
}

.testimonials-section h3 {
  color: #0a1428;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.8rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3a8ef6;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.testimonial-card cite {
  color: #3a8ef6;
  font-weight: 600;
}

footer {
  background: #0a1428;
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  margin-top: 80px;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

/* Added mobile responsiveness */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    gap: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Added subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.hero,
.section {
  animation: fadeInUp 0.6s ease-out;
}