
/* General Setup */
body {
  font-family: 'Inter', sans-serif;
  color: #1F1F47;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

a {
  color: #6A5ACD;
  text-decoration: none;
}

a:hover {
  color: #5A4BB5;
}

/* Header */
header nav {
  background: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

header nav a {
  font-weight: bold;
  font-size: 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6A5ACD, #00CFC1);
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #1F1F47;
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
  font-size: 18px;
}

.btn-primary:hover {
  background: #5A4BB5;
}

/* About, Services, Portfolio, Testimonials, Contact */
section {
  padding: 80px 0;
}

.about, .portfolio {
  background: #FFFFFF;
}

.services, .testimonials, .contact {
  background: #E0D9F6;
}

.services ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}

.services ul li {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.testimonials blockquote {
  background: #00CFC1;
  color: #1F1F47;
  padding: 30px;
  border-radius: 16px;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form */
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact input, .contact textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact button {
  background: #6A5ACD;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
}

.contact button:hover {
  background: #5A4BB5;
}

/* Footer */
footer {
  background: #FFFFFF;
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }
}
