:root {
  --primary-color: #4a90e2;
  --secondary-color: #f0f4f8;
  --text-color: #333;
  --accent-color: #5cb85c;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
  height: 100%;
}

.container {
  display: flex;
  height: 100vh;
}

nav {
  width: 250px;
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  padding: 1rem 2rem;
  transition: background-color 0.3s ease;
}

nav ul li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

main {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}

h1,
h2 {
  color: var(--primary-color);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 3rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

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

.service-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  color: var(--primary-color);
}

.testimonial {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blogpost {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}