.partners{
    background:white;
    padding:40px 20px;
    text-align:center;
  }
  .partners h2{
    font-size:1.5rem;
    margin-bottom:20px;
  }
  .partners-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
  }
  .partner{
    width:120px;
  }
  .partner img{
    width:100%;
    height:auto;
    display:block;
    margin:0 auto 10px;
  }
  .partner span{
    display:block;
    font-size:.9rem;
    color:#333;
  }


  .about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease both;
}

.about-card {
    background: white;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid #0e3495;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.8s forwards;
}

.about-card:nth-child(1) { animation-delay: 0.2s; }
.about-card:nth-child(2) { animation-delay: 0.4s; }
.about-card:nth-child(3) { animation-delay: 0.6s; }
.about-card:nth-child(4) { animation-delay: 0.8s; }
.about-card:nth-child(5) { animation-delay: 1s; }

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-card h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block; 
}

.about-card h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000, #000000);
    border-radius: 2px;
    transition: width 0.6s ease; 
}

.about-card:hover h2::after {
    width: 100%; 
}


@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes cardFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

  

.about-image-wrapper {
    width: 100%;
    text-align: center;  
    margin: 20px 0;
    overflow: hidden;
}

.about-image {
    width: 70%;           
    height: 400px;        
    object-fit: cover;    
    object-position: 50% 25%; 
    border-radius: 20px;  
}
