
/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:#f4f8ff;
  color:#111;
}

/* ================= HEADER ================= */
.header{
  background:linear-gradient(90deg,#5f3bff,#a82ee6,#ff3c9e);
  color:#fff; 
  padding:16px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.2);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-box{
  width:42px;
  height:42px;
  background:#fff;
  color:#6b3cff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

.logo-text h1{
  font-size:22px;
}

.logo-text p{
  font-size:12px;
  opacity:0.85;
}

.header-right{
  display:flex;
  gap:20px;
  align-items:center;
}

.header-right a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.header-right button{
  padding:8px 16px;
  border:none;
  border-radius:10px;
  background:#fff;
  color:#7a2cff;
  font-weight:700;
  cursor:pointer;
}

/* ================= MAIN ================= */
.container{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

/* ================= SECTION CARD ================= */
.section-card{
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  margin-bottom:40px;
}

.section-card h2{
  color:#1d4ed8;
  margin-bottom:8px;
}

.section-card p{
  color:#555;
}

/* ================= GRID ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  border-radius:18px;
  padding:25px;
  box-shadow:0 12px 30px rgba(0,0,0,0.1);
  position:relative;
}
.button_color{
  display:inline-block;
  padding:12px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  color:#fff;
  transition:0.3s;
}

.card-icon{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  color:#fff;
  font-size:24px;
}

.green{
  background: linear-gradient(135deg, #00c97b, #00a86b);
}

.purple{
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.pink{
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.blue{
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

.orange{
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.card h3{
  margin-bottom:6px;
}

.card p{
  color:#555;
  font-size:14px;
  margin-bottom:16px;
}

.card button{
  width:100%;
  padding:10px;
  border:none;
  border-radius:12px;
  font-weight:700;
  color:#fff;
  cursor:pointer;
}

.btn-blue{
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color:#fff;
}

.btn-purple{
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color:#fff;
}

.btn-green{
  background: linear-gradient(135deg, #00c97b, #00a86b);
  color:#fff;
}

.btn-orange{
  background: linear-gradient(135deg, #fb923c, #ea580c);
  color:#fff;
}

.badge{
  position:absolute;
  top:18px;
  right:18px;
  background:#fb923c;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
}
