/* ---------------- Apps Page Styles ---------------- */

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0e1a2b, #007bff);
    padding: 100px 40px;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
  }
  
  /* Featured App Section */
  section {
    padding: 60px 40px;
    text-align: center;
    background-color: #f9f9fb;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
  }
  
  .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .overview-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .overview-card:hover {
    transform: translateY(-5px);
  }
  
  .overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .overview-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .cta-link {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .cta-link:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  
  .service-icon {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
    margin: 4px auto 4px auto;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.01);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #0e1a2b;
    color: white;
    font-size: 0.9rem;
    margin-top: 40px;
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .overview-grid {
      grid-template-columns: 1fr;
    }
  }
  