/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #1e1e2f;
  padding: 20px 0;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

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

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

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

.btn {
  background: #fff;
  color: #3b82f6;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e0e0e0;
}

/* Services Section */
.services {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.services h3 {
  font-size: 28px;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #f1f1f1;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  background: #3b82f6;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #1e1e2f;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  header .container {
    flex-direction: column;
    gap: 10px;
  }
}

