* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, #4f46e5, #6d5dfc);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

header h1 {
  font-size: 28px;
}

.tagline {
  font-size: 14px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 40px;
  background: white;
}

.hero-text {
  max-width: 500px;
}

.hero-text h2 {
  font-size: 42px;
  color: #4f46e5;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #4f46e5;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
}

.hero-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 20px;
}

.about,
.why-us,
.contact-page {
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.about h2,
.why-us h2,
.contact-page h2 {
  color: #4f46e5;
  margin-bottom: 20px;
  font-size: 36px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h3 {
  color: #4f46e5;
  margin-bottom: 10px;
}

.image-section img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.why-us ul {
  margin-top: 20px;
  padding-left: 20px;
}

.why-us li {
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form button {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 32px;
  }

  header {
    text-align: center;
    justify-content: center;
    gap: 20px;
  }

  nav {
    width: 100%;
  }
}