* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: white;
  line-height: 1.6;
  background-color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styles */
header {
  background-color: transparent;
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #6a11cb;
  border-radius: 50px;
  padding: 10px 20px;
  background-image: linear-gradient(to right, #6a11cb, #2575fc);
}

.logo {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

/* Hero section */
.hero {
  background-color: #222;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 400px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  background-image: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover {
  background-image: linear-gradient(to right, #5810a7, #1e64d5);
  transform: translateY(-3px);
}

/* Strengths section */
.strengths {
  padding: 60px 0;
  background-color: #222;
  text-align: center;
}

.strengths h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.strengths p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-image: linear-gradient(to bottom, #6a11cb, #2575fc);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 14px;
  flex-grow: 1;
}

/* Mission section */
.mission {
  padding: 60px 0;
  background-color: #222;
}

.mission-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.mission-image {
  flex: 1;
  max-width: 300px;
}

.mission-image img {
  width: 100%;
  border-radius: 10px;
}

.mission-content {
  flex: 2;
}

.mission-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mission-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

/* Values section */
.values {
  padding: 60px 0;
  background-color: #222;
  text-align: center;
}

.values h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.values p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.value-item {
  padding: 20px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.value-item p {
  font-size: 14px;
}

.values-image {
  margin: 40px auto;
  max-width: 300px;
}

.values-image img {
  width: 100%;
}

.innovation-development {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.innovation,
.development {
  max-width: 300px;
  text-align: center;
}

.innovation h3,
.development h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.innovation p,
.development p {
  font-size: 14px;
}

/* Contact section */
.contact {
  padding: 60px 0;
  background-color: #222;
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact p {
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  background-color: #333;
  color: white;
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background-image: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}

.submit-btn:hover {
  background-image: linear-gradient(to right, #5810a7, #1e64d5);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-image: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    position: static;
    transform: none;
    width: 80%;
    margin: 30px auto 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-container {
    flex-direction: column;
    text-align: center;
  }

  .mission-image {
    margin: 0 auto 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .innovation-development {
    flex-direction: column;
    align-items: center;
  }

  .innovation,
  .development {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    padding: 15px;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .strengths h2,
  .mission-content h2,
  .values h2,
  .contact h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
