body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background-color: #222;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffdda9;
}

/* Hero */
.hero {
  background-color: #8e62d9;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero span {
  color: #ffdda9;
}

.cta-button {
  display: inline-block;
  background-color: #ffdda9;
  color: #333;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #ffc96f;
}

/* Sections */
section {
  padding: 4rem 0;
  text-align: center;
}

.service-cards,
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card,
.testimonial {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.card:hover,
.testimonial:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 2rem;
  color: #8e62d9;
  margin-bottom: 1rem;
}

.testimonial h4 {
  margin-top: 1rem;
  font-style: italic;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 3rem 0;
}

.social-links a {
  margin: 0 0.5rem;
  color: #fff;
  font-size: 1.5rem;
}

.social-links a:hover {
  color: #ffdda9;
}

.footer-credit {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links li {
    margin-bottom: 0.75rem;
  }
}
