/*  سی اس اس بنر داخلی قران  */
.hero-header
{
    position:relative;
    height:300px;
    /*border-radius:24px;*/
    overflow:hidden;
    margin-bottom:30px;

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.hero-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    padding:35px 50px;
}

.hero-content{
    max-width:700px;

    background:rgba(0,0,0,.45);

    padding:25px 30px;
    border-radius:20px;

    color:#fff;
}

.hero-badge{
    display:inline-block;
    background:#d6ae69;
    color:#17322d;

    padding:8px 18px;
    border-radius:30px;

    font-size:13px;
    font-weight:bold;

    margin-bottom:12px;
}

.hero-title{
    margin:0 0 12px;

    font-size:32px;
    font-weight:700;
    line-height:1.7;

    color:#fff;
}

.hero-text{
    color:#e7e7e7;
    font-size:15px;
    line-height:2;
}

.hero-text p{
    margin:0;
}

@media(max-width:768px){

    .hero-header{
        height:220px;
    }

    .hero-overlay{
        padding:20px;
    }

    .hero-content{
        padding:18px;
    }

    .hero-title{
        font-size:22px;
        line-height:1.6;
    }

    .hero-text{
        font-size:13px;
        line-height:1.8;
    }
}
 
/*   سی اس اس دو تا باکس پایین بنر  */ 
 .info-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    margin-bottom:25px;
    margin-top:25px;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* کارت باقی مانده */
.remaining-card{
    background:
        linear-gradient(
            135deg,
            rgba(12,93,82,.95),
            rgba(8,48,42,.95)
        );
}

/* کارت ختم کامل */
.full-card{
    background:
        linear-gradient(
            135deg,
            rgba(214,174,105,.95),
            rgba(167,125,55,.95)
        );
}

.card-header-custom{
    padding:18px 25px;
    font-size:20px;
    font-weight:bold;
    border-bottom:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    gap:10px;
}

.card-header-custom i{
    font-size:22px;
}

.card-body-custom{
    padding:25px;
    line-height:2;
    font-size:16px;
}

.card-body-custom strong{
    color:#fff;
    font-size:18px;
}

.card-body-custom ul{
    margin:0;
    padding-right:20px;
}

.card-body-custom li{
    margin-bottom:8px;
}

/* افکت نور گوشه */
.info-card:before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-70px;
    left:-70px;
}
 