/* =======================================
   Objectives & Text Background Styling
   File: text-back.css
   ======================================= */

/* Card style for Objectives or any text-box */
.objective-card {
  background: #fff;              /* White background */
  border-radius: 12px;           /* Rounded corners */
  padding: 25px;
  height: 100%;                  /* Same height for alignment */
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Light shadow */
  transition: all 0.3s ease-in-out;
}

/* Hover effect for attraction */
.objective-card:hover {
  transform: translateY(-5px);   /* Slight upward movement */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Headings inside objective cards */
.objective-heading {
  font-size: 24px;       /* Balanced size */
  font-weight: 700;
  color: #006699;
  margin-bottom: 20px;
  text-align: center;    /* Center aligned */
}

/* Lists inside cards */
.objective-card ul {
  margin: 0;
  padding-left: 20px;
}

.objective-card li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .objective-heading {
    font-size: 20px;
  }

  .objective-card {
    padding: 20px;
  }

  .objective-card li {
    font-size: 15px;
  }
}

