/* --- Modern Landing Page Enhancements --- */
.hero h1, .hero p, .hero .btn {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.hero h1 {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px rgba(37,117,252,0.08);
  animation: fadeIn 0.8s cubic-bezier(.2,.9,.3,1) both, slideUp 0.8s cubic-bezier(.2,.9,.3,1) both;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 18px;
  animation: fadeIn 1.1s cubic-bezier(.2,.9,.3,1) both, slideUp 1.1s cubic-bezier(.2,.9,.3,1) both;
}
.hero .btn {
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,117,252,0.10);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  animation: fadeIn 1.3s cubic-bezier(.2,.9,.3,1) both, slideUp 1.3s cubic-bezier(.2,.9,.3,1) both;
}
.hero .btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
}
.hero .btn-primary:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(37,117,252,0.18);
}
.hero .btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.hero .btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(37,117,252,0.10);
}
.hero .actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.hero-card {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(37,117,252,0.10);
  background: linear-gradient(120deg, #e3eafc 0%, #f8fafc 100%);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeIn 1.2s cubic-bezier(.2,.9,.3,1) both;
}
.hero-card:hover {
  box-shadow: 0 8px 32px rgba(37,117,252,0.18);
  transform: translateY(-6px) scale(1.03);
}
.tilt {
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tilt:hover {
  box-shadow: 0 8px 32px rgba(37,117,252,0.16);
  transform: scale(1.04) rotate(-2deg);
}
.services .service.card {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  background: linear-gradient(120deg, #f8fafc 0%, #e3eafc 100%);
}
.services .service.card:hover {
  box-shadow: 0 8px 32px rgba(37,117,252,0.16);
  transform: translateY(-6px) scale(1.03);
}
.icon-circle {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37,117,252,0.10);
  margin-bottom: 12px;
}
.portfolio-grid .work {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.portfolio-grid .work:hover {
  box-shadow: 0 8px 32px rgba(37,117,252,0.16);
  transform: scale(1.04) rotate(-2deg);
}
.btn, .tag {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary, .cta .btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,117,252,0.10);
}
.btn-primary:hover, .cta .btn-primary:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(37,117,252,0.18);
}
/* .jl-footer-modern .social-icons a {
  transition: transform 0.2s, color 0.2s;
}
.jl-footer-modern .social-icons a:hover {
  color: var(--accent);
  transform: scale(1.15);
} */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-card {
    padding: 18px 8px;
    border-radius: 10px;
  }
  .services .service.card {
    padding: 18px 8px;
    border-radius: 10px;
  }
  .portfolio-grid .work {
    border-radius: 10px;
  }
}
