/* aabroo programs styles starts here  */
.abroo-programs-section {
    background: #fff;
    padding: 80px 30px;
    text-align: center;
  }
  
  .abroo-programs-container {
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .abroo-programs-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #000;
  }
  
  .abroo-programs-title span {
    color: #0070f3;
  }
  
  .abroo-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .abroo-program-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px 15px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .abroo-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  
  .abroo-program-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
  }
  
  .abroo-program-card h3 {
    font-size: 18px;
    color: #003087;
    margin-bottom: 15px;
     
  }
  
  .abroo-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0070f3;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .abroo-btn:hover {
    background: #005bb5;
  }
  
  