/* ===== Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fcf5ec;
  color: #333;
  line-height: 1.6;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 10%;
  max-width: 1800px;
  margin: 0 auto;

}


.logo {
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #a278f5;
}

.nav-links a {
  justify-content:space-between;
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #a278f5;
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 6%;
  background: linear-gradient(135deg, #fde2f3, #e2d1f9);
  border-bottom: 1px solid #f3eaff;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.0rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-text h1 span {
  color: #dcaff1;
}

.hero-text p {
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  color: #555;
}

.hero img {
  height: 300px;
  width: 480px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: #cca1e0;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #8e63e8;
}


/* ===== Cards Section ===== */
.section {
  padding: 4rem 15%;
  max-width: 1400px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  color: #a278f5;
  margin-bottom: 1rem;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #a278f5;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #fff;
  color: #777;
  border-top: 1px solid #f3eaff;
  font-size: 0.9rem;
}