.partner-hero {
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(rgba(15,40,80,0.45), rgba(15,40,80,0.45)),
        url('../img/hero-ourpatner.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partner-hero-img {
    max-width: 420px;
    margin-bottom: 30px;
}

.partner-hero-content h1 {
    font-size: 32px;
    color: #dddce0;
}

.partner-hero-content p {
    color: #f7f3f3;
    margin-top: 10px;
}

.partner-hero-content h1 {
    font-size: 30px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.partner-hero-content p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.9;
}
.partner-section{
    padding:80px 0;
    background:linear-gradient(to bottom,#eef2f8,#e3e9f3);
    }
    
    .partner-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
    }
    
    .partner-title{
    font-size:26px;
    color:#0a2342;
    margin-bottom:10px;
    text-align:center;
    }
    
    .partner-subtitle{
    color:#6b7280;
    margin-bottom:40px;
    text-align:center;
    }
    
    .support-title{
    margin-top:70px;
    text-align:center;
    margin-bottom:20px;
    }
    .partner-card{
        background:white;
        padding:40px;
        border-radius:12px;
        box-shadow:0 15px 35px rgba(0,0,0,0.08);
        max-width:900px;
        margin:40px auto;
        transition:0.3s;
        }
        .partner-card:hover{
            transform:translateY(-5px);
            box-shadow:0 20px 45px rgba(0,0,0,0.12);
            }
    .logo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px;
    align-items:center;
    justify-items:center;
    }
    
    .logo-grid img{
        max-width:250px;
        max-height:95px;
        object-fit:contain;
        filter:grayscale(100%);
        opacity:0.7;
        transition:0.3s;
        }
    
    .logo-grid img:hover{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.05);
    }