/* ------------------------------ */
/* Variables & Global Styles      */
/* ------------------------------ */
:root {
    --primary-color: #1E61F0;
    --accent-color: #2563eb;
    --bg-color: #f8fafc;
    --text-primary: #334155;
    --text-secondary: #4b5563;
    --radius-card: 0.75rem;
    --radius-bubble: 9999px; /* Pill shape */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
  }
  
  /* ------------------------------ */
  /* Components                     */
  /* ------------------------------ */
  .section-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
  }
  
  .card {
    background-color: var(--bg-color);
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .card-image {
    width: 100%;
    height: 200px; /* Gives images a uniform height */
    object-fit: cover;
  }
  
  .card-title-overlay {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-bubble);
    position: relative;
    z-index: 10;
    margin-top: -2rem; /* Pulls the title up over the image */
    box-shadow: var(--shadow-lg);
  }
  
  .bubble-content {
    color: var(--text-secondary);
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem; /* Increased top padding to make space for the overlay title */
  }
  
  /* ------------------------------ */
  /* Typography                     */
  /* ------------------------------ */
  .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
  }
  
  .service-list li {
    margin-bottom: 0.75rem;
  }
  
  .service-list strong {
    color: var(--accent-color);
  }