/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
nav {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #007BFF;
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .btn {
  background: #fff;
  color: #007BFF;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* About Section */
.about {
  padding: 4rem 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
}

.about .team {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.about .team-member {
  text-align: center;
}

.about .team-member img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: #f4f4f4;
  padding: 4rem 0;
  text-align: center;
}

.services h2 {
  margin-bottom: 2rem;
}

.services .service-list {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.services .service-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services .service-item i {
  font-size: 2rem;
  color: #007BFF;
  margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio {
  padding: 4rem 0;
  text-align: center;
}

.portfolio h2 {
  margin-bottom: 2rem;
}

.portfolio .portfolio-grid {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.portfolio .portfolio-item {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-item img {
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background: #007BFF;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
}

.contact button {
  background: #fff;
  color: #007BFF;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

footer .social-links {
  margin-top: 1rem;
}

footer .social-links a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}