/* Pixel Solution Web Styles */
:root {
  --color-primary: #1565c0;
  --color-secondary: #42a5f5;
  --color-bg: #f5f8fa;
  --color-text: #222;
  --color-text-secondary: #444444;
  --color-accent: #1976d2;
  --color-card-bg: #fff;
  --color-border: #e3eaf2;
  --font-main: 'Montserrat', 'Roboto', Arial, sans-serif;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
}
p {
  color: var(--color-text-secondary);
}
.navbar {
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.logo {
  height: 50px;
  width: auto;
  opacity: 0.95;
}
.navbar nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.navbar ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar a.active, .navbar a:hover {
  color: var(--color-secondary);
}
.hero {
  padding: 4rem 3rem 2rem 3rem;
  background: var(--color-card-bg);
  box-shadow: 0 2px 8px rgba(21,101,192,0.05);
  animation: fadeIn 1s;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-image {
  flex: 1;
}
.hero-text {
  flex: 1;
  text-align: left;
}
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-primary);
  line-height: 1.2;
}
.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(21,101,192,0.15);
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin: 2rem 0;
  line-height: 1.4;
}
.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(21,101,192,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(21,101,192,0.12);
}
.services {
  padding: 3rem;
  background: var(--color-bg);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(21,101,192,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(21,101,192,0.10);
  transform: translateY(-4px) scale(1.03);
}
.card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.about {
  padding: 3rem;
  background: var(--color-card-bg);
  animation: fadeIn 1.4s;
}
.values-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.partners {
  padding: 3rem;
  background: var(--color-bg);
  animation: fadeIn 1.6s;
}
.partner-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.partner-logos img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(21,101,192,0.05);
}
.contact {
  padding: 3rem;
  background: var(--color-card-bg);
  animation: fadeIn 1.8s;
  text-align: center;
}
.email-img {
  max-width: 200px;
  height: auto;
  margin: 1rem 0;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.social-links img {
  width: 32px;
  height: 32px;
  transition: filter 0.2s;
}
.social-links img:hover {
  filter: brightness(1.2) drop-shadow(0 0 4px var(--color-secondary));
}
footer {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  margin-top: 2rem;
  font-size: 1rem;
}
footer a {
  color: var(--color-secondary);
  margin-left: 1rem;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .navbar nav {
    justify-content: center;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .hero {
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-img {
    max-width: 350px;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .services, .about, .partners, .contact {
    padding: 3rem 1.5rem;
  }
  .service-cards, .values-cards {
    grid-template-columns: 1fr;
  }
  .partner-logos {
    flex-direction: column;
    gap: 1rem;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
