/* Custom Sponsor Section */
.custom-sponsor-section {
    background: #fff;
    padding: 100px 0;
}

/* Header (Reusing styles from testimonial for consistency) */
.sponsor-header {
    text-align: center;
    margin-bottom: 60px;
}

.sponsor-header-btn {
    display: inline-block;
    background: linear-gradient(90deg, #e4f3e6 0%, #e0f0ef 100%);
    color: #4b9e8c;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.sponsor-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sponsor-title .text-navy {
    color: #0A2540;
}

.sponsor-title .text-orange {
    color: #F38400;
}

.sponsor-title-underline {
    height: 2px;
    width: 150px;
    margin: 0 auto;
    background: linear-gradient(90deg, #0A2540 50%, #F38400 50%);
}

/* Sponsor Pills Grid */
.custom-sponsor-pill {
    background-color: #f5f6fc;
    border-radius: 50px;
    padding: 20px 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.custom-sponsor-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.custom-sponsor-pill img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .sponsor-title {
        font-size: 30px;
    }
}

/* Apply for Sponsors CTA */
.custom-sponsor-apply {
    background: linear-gradient(90deg, #138936 0%, #0d264e 100%);
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.custom-sponsor-apply h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
}

.custom-sponsor-apply p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #fff;
}

.custom-apply-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #0A2540;
    font-weight: 400;
    padding: 10px 15px 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-apply-btn span {
    margin-right: 15px;
    font-size: 18px;
}

.custom-apply-btn i {
    background: #0A2540;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.custom-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #0A2540;
}


