/* Benefit Cards */
.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #fdf2f2;
    color: #FD1D1D;
    font-size: 30px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.benefit-card:hover .benefit-icon {
    background: #FD1D1D;
    color: #fff;
}

/* Form Styling */
.partner-glass-form {
    background: #fff;
    padding: 40px;
    border-radius: 35px;
    border: 1px solid #eee;
}

.custom-input {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.custom-input:focus {
    background: #fff;
    border-color: #FD1D1D;
    box-shadow: none;
}

.partner-perks li {
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
}

/* --- Ultra Premium Submit Button --- */
.btn-premium-shiny {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: #3a3d74;
    background-size: 200% auto;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(253, 29, 29, 0.3);
    z-index: 1;
}
.btn-premium-shiny:hover {
    background-color: #FD1D1D;
}

.btn-text {
    z-index: 2;
    letter-spacing: 1px;
}

.section-heading{
    font-size: 32px;
    font-weight: bold;
    color:#3a3d74;
}
.section-heading .red-text {
    color: #FD1D1D;
}