
.publisher-pricing {
    background: linear-gradient(135deg, #000000 0%, #ec0203 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-header p {
    opacity: 0.85;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    color: black;
    width: 320px;
    border-radius: 20px;
    padding: 60px 30px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #ec0203;
}

.ribbon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ec0203;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0 30px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin: 12px 0;
    font-size: 14px;
}

.buy-btn {
    display: inline-block;
    background: #ec0203;
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.buy-btn:hover {
    background: black;
}

.pricing-footer-note {
    margin-top: 50px;
    font-size: 14px;
    opacity: 0.85;
}

/*for logo slider*/


.sponsors-section .image-box {
    display:flex;
    align-items:center;
    justify-content:center;
    height:80px;
    padding:10px 20px;
}

.sponsors-section img {
    max-height:40px;
    width:auto;
    filter: grayscale(100%);
    opacity:0.8;
    transition:0.3s ease;
}

.sponsors-section img:hover {
    filter: grayscale(0%);
    opacity:1;
}

/*modal*/


.popup-overlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box {
    background:#ffffff;
    width:400px;
    max-width:90%;
    padding:40px 30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.popup-box h2 {
    color:#ec0203;
    margin-bottom:15px;
}

.popup-box p {
    color:#000;
    margin-bottom:25px;
}

.popup-box button {
    background:#ec0203;
    color:#fff;
    border:none;
    padding:10px 30px;
    border-radius:25px;
    cursor:pointer;
    font-weight:600;
}

.popup-box button:hover {
    background:#000;
}


/*apply*/


.form-control{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
}


.success-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.success-box{
    background:#ffffff;
    padding:40px 35px;
    width:420px;
    max-width:90%;
    border-radius:10px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.success-box h2{
    background:#ec0203;
    color:#ffffff;
    padding:15px;
    margin:-40px -35px 25px -35px;
    border-radius:10px 10px 0 0;
}

.success-box p{
    color:#000;
    margin-bottom:25px;
    line-height:1.6;
}

.success-box button{
    background:#ec0203;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:25px;
    font-weight:600;
    cursor:pointer;
}

.success-box button:hover{
    background:#000;
}


.section-title{
    margin-bottom:20px;
    margin-top:10px;
    font-weight:600;
}

.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group select{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.divider{
    margin:30px 0;
}

.wallet-box{
    background:#000;
    color:#fff;
    padding:15px;
    border-radius:6px;
    margin-bottom:20px;
    font-size:14px;
}

.total-box{
    background:#f5f5f5;
    padding:15px;
    border-radius:6px;
    margin-bottom:20px;
}

.submit-btn{
    width:100%;
    padding:14px;
    background:#ec0203;
    color:#fff;
    border:none;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
}

.submit-btn:hover{
    background:#000;
}






