/*==================================================
                ACCOUNT PAGE
==================================================*/

.account-hero{
    background:var(--dark-main);
    padding:120px 0 90px;
    text-align:center;
}

.account-hero h1{
    font-size:4rem;
    color:#fff;
    margin:20px 0;
}

.account-hero h1 span{
    color:var(--primary-gold);
}

.account-hero p{
    max-width:720px;
    margin:auto;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:1.05rem;
}

/*==================================================
                    SECTION
==================================================*/

.account-section{
    padding:90px 0;
    background:#f7f8fc;
}

.account-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:40px;

    align-items:start;

}

/*==================================================
                    BANK CARD
==================================================*/

.bank-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.bank-logo{

    text-align:center;

    margin-bottom:25px;

}

.bank-logo img{

    width:220px;

    max-width:100%;

}

.bank-card h2{

    text-align:center;

    font-size:2rem;

    margin-bottom:40px;

    color:#0b57b7;

    line-height:1.3;

}

/*==================================================
                    DETAIL BOX
==================================================*/

.detail-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 22px;

    border-radius:18px;

    background:#f9fbff;

    margin-bottom:20px;

    border:1px solid #edf1f7;

    transition:.35s;

}

.detail-box:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.icon{

    width:60px;

    height:60px;

    background:#0b57b7;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    flex-shrink:0;

}

.icon i{

    font-size:28px;

}

.text{

    flex:1;

}

.text label{

    display:block;

    font-size:13px;

    color:#888;

    margin-bottom:6px;

}

.text h4{

    margin:0;

    font-size:24px;

    color:#222;

    word-break:break-word;

}

.detail-box button{

    border:none;

    width:48px;

    height:48px;

    border-radius:50%;

    cursor:pointer;

    background:var(--primary-gold);

    color:#fff;

    transition:.3s;

}

.detail-box button:hover{

    background:#111;

}

.detail-box button i{

    font-size:20px;

}

/*==================================================
                    PAYMENT CARD
==================================================*/

.payment-card{

    background:#fff;

    border-radius:25px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:sticky;

    top:120px;

}

.payment-card h3{

    margin-bottom:25px;

    font-size:2rem;

}

.qr-image{

    margin-bottom:25px;

}

.qr-image img{

    width:100%;

    max-width:280px;

    border-radius:15px;

    border:10px solid #f5f5f5;

}

.upi-box{

    background:#f8f8f8;

    border-radius:18px;

    padding:20px;

}

.upi-box label{

    display:block;

    color:#777;

    margin-bottom:8px;

}

.upi-box h4{

    font-size:18px;

    word-break:break-word;

    margin-bottom:20px;

}

.upi-box button{

    width:100%;

    padding:14px;

    border:none;

    background:#0b57b7;

    color:#fff;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    font-size:15px;

    font-weight:600;

}

.upi-box button:hover{

    background:#111;

}

/*==================================================
                PAN CARD
==================================================*/

.pan-section{

    margin-top:70px;

}

.pan-card{

    display:flex;

    gap:35px;

    background:#fff;

    border-radius:25px;

    padding:30px;

    align-items:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.pan-image img{

    width:260px;

    border-radius:15px;

    border:1px solid #eee;

}

.pan-content{

    flex:1;

}

.pan-content h3{

    color:#888;

    margin-bottom:15px;

}

.pan-content h2{

    font-size:3rem;

    color:#0b57b7;

    margin-bottom:20px;

}

.pan-content h4{

    font-size:1.3rem;

}

.pan-content p{

    color:#888;

    margin-bottom:10px;

}

/*==================================================
                NOTICE
==================================================*/

.notice-box{

    margin-top:60px;

    background:#fffbe7;

    border-left:6px solid var(--primary-gold);

    border-radius:20px;

    padding:30px;

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.notice-icon{

    width:65px;

    height:65px;

    background:var(--primary-gold);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    flex-shrink:0;

}

.notice-icon i{

    font-size:32px;

}

.notice-box h3{

    margin-bottom:10px;

}

.notice-box p{

    color:#555;

    line-height:1.8;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:992px){

.account-grid{

grid-template-columns:1fr;

}

.payment-card{

position:relative;

top:0;

}

.pan-card{

flex-direction:column;

text-align:center;

}

.pan-image img{

width:100%;

max-width:350px;

}

}

@media(max-width:768px){

.account-hero{

padding:90px 0;

}

.account-hero h1{

font-size:2.8rem;

}

.bank-card{

padding:25px;

}

.detail-box{

flex-direction:column;

text-align:center;

}

.detail-box button{

width:100%;

border-radius:10px;

height:45px;

}

.text h4{

font-size:20px;

}

.payment-card{

padding:25px;

}

.notice-box{

flex-direction:column;

text-align:center;

}

.notice-icon{

margin:auto;

}

.pan-content h2{

font-size:2rem;

}

}