/* =============================
   styles.css — Custom Styles
   ============================= */

/* Hero Section */
.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b4332 50%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

/* Feature icon size */
.feature-icon {
  font-size: 2.5rem;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Card hover effect */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}
