* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  text-align: center;
  padding: 100px 20px;
}

.header {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: white;
  padding: 80px 20px;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.note {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  border-radius: 8px;
  max-width: 800px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note::before {
  content: "⚠️";
  font-size: 1.4rem;
}

.btn {
  background: white;
  color: #4f46e5;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e0e7ff;
}

.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  margin-top: 15px;
  color: #3b82f6;
  font-weight: bold;
  text-decoration: none;
}

.card-btn:hover {
  text-decoration: underline;
}

.coming-soon {
  background: #e0f2fe;
  padding: 60px 20px;
  text-align: center;
}

.coming-soon h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #f3f4f6;
  font-size: 0.9rem;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

#scrollTopBtn:hover {
  background: #4338ca;
}

/* Typewriter */
#typewriter {
  font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #fff;
  display: inline-block;
  width: 100%;
  max-width: 450px;
}

/* Hover bounce effect */
.card:hover h3 {
  animation: bounce 0.5s;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}
