.about-banner {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.section-title {
    color: #006fba;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-para{
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg, #006fba 0%, #4cb748 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 111, 186, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 111, 186, 0.3);
}

.micro-icon {
    font-size: 16px;
    color: #4cb748;
    margin-right: 0.5rem;
}

.content-section {
    padding: 1rem 0;
}

.essentials-list li {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.essentials-list li:hover {
    color: #4cb748;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

   .section-card {
      background: #fff;
      border-radius: 0.75rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      padding: 1.5rem;
      height: 100%;
    }
    .section-card h5 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: #0d6efd; /* nice deep blue */
    }
    .card-blue {
      background: #0d6efd;
      color: #fff;
    }
    .card-blue h5 {
      color: #fff;
    }
    .section-card p {
      margin-bottom: 0.4rem;
    }