
    /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff; /* FIXED: no body gradient */
  color: #333;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 56px; /* FIXED: proper logo size */
  display: block;
}

/* NAV ICON */
.nav-icons a {
  color: #667eea;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-icons a:hover {
  color: #764ba2;
  transform: translateY(-3px);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.35;
  animation: float 60s linear infinite; /* FIXED: lighter animation */
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* HERO TEXT */
.hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-inline: auto;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
}

/* SERVICES + WHY */
.services,
.why-us {
  padding: 5rem 2rem;
  background: #f8f9fa;
}

.services h2,
.why-us h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #2d3748;
  position: relative;
}

.services h2::after,
.why-us h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* CARD */
.card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d3748;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0; /* FIXED: fade instead of slide */
  border-radius: 20px;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px); /* FIXED: softer hover */
  box-shadow: 0 20px 45px rgba(102, 126, 234, 0.3);
  color: #ffffff;
}

.card * {
  position: relative;
  z-index: 1;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.why-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(102, 126, 234, 0.25);
}

.why-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
}

.why-card p {
  color: #4a5568;
  line-height: 1.7;
}

/* FINAL CTA */
.final-cta {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}

.final-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services h2,
  .why-us h2,
  .final-cta h2 {
    font-size: 2rem;
  }
}
