
/* Custom Properties from User Prompt */
:root {
  --color-base: #800080;
  --color4: #01082d;
  --color-zero: #0818A8;
  --color-uno: #031273;
  --color-black: #01082d;
  --gray-color: #F3F3F3;
  --background: #ffffff;
}

/* Base font for the entire page */
body,
input,
textarea,
button{
    font-family: "Space Grotesk", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: linear-gradient(90deg, #01082d, #0f0f0f, #01082d);
  color: #ffffff;
  border-top: 3px solid #01082d;
  border-top-right-radius: 20px;
}

/* SECTION */
.services-section {
  padding: 80px 20px;
}

.container {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 48px;
  font-weight: 800;
}

.section-header p {
  max-width: 720px;
  margin: 16px auto;
  color: #cbd5f5;
  font-size: 18px;
}

.category-title {
  margin-top: 40px;
  color: #27b1ff;
  font-size: 26px;
  font-weight: 700;
}

/* GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* CARD */
.service-card {
  background: linear-gradient(90deg, #01082d, #000000, #01082d);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* IMAGE */
.card-image {
  max-width: 90%;;
  height: auto;
  background: linear-gradient(90deg, #01082d, #000000, #01082d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 90%;
  border-radius: 8px;
}

/* CONTENT */
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  padding-left: 0px;
  margin: 10px 0;
  color: #800080;
  font-weight: 700;
}

.card-content p {
  color: #dbe3ff;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.card-content ul li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  color: #b7f3ff;
  font-size: 14px;
}

.card-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #29d1ff;
  font-weight: bold;
}

/* META */
.meta {
  font-size: 14px;
  margin-bottom: 8px;
}

/* BUTTON */
.btn {
  margin-top: auto;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #800080, #0818A8, #01082d);
  color: white;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

