:root {
    --header-gradient: linear-gradient(to right, #d4b45c, #a45a1abe, #5a2a00);
    --navbar-gradient: linear-gradient(135deg, #2e0b03, #6b1414, #d97706);
    --footer-gradient: linear-gradient(135deg, #1a0702, #3b1a05, #8b5a20);
    --bg-gradient: linear-gradient(to bottom, #f2d6a0, #d4aa6a, #b07c3a);
    --card-bg: linear-gradient(145deg, #f3e0c3, #d4b07a);
    --text-dark: #1a0b05;
    --text-light: #fdf3e7;
    --saffron: #d97706;
    --gold: #b8860b;
}

/* ================= COMMON CARD ================= */
.info-box{
    background:var(--card-bg);
    border-radius:14px;
    padding:25px;
    padding-top:65px;                 /* ✅ image ke liye space */
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    position:relative;
    color:var(--text-dark);
}

/* ================= IMAGE INSIDE CARD ================= */
.corner-img{
    position:absolute;
    top:15px;
    left:15px;
    width:70px;
    height:70px;
    border-radius:50%;
    border:4px solid var(--gold);
    background:#fff;
    overflow:hidden;
    z-index:2;
}

.corner-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ================= TEXT ALIGN WITH IMAGE ================= */
.has-img p{
    padding-left:85px;                /* image width + gap */
}

/* ================= CENTER HEADING ================= */
.section-title{
    text-align:center;
    font-weight:700;
    color:#b71c1c;
    margin:40px 0 25px;
}

/* ================= ORDER LIST ================= */
ol{
    padding-left:20px;
}
ol li{
    margin-bottom:8px;
    font-weight:500;
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 576px){

    .info-box{
        padding-top:95px;             /* image + spacing */
    }

    .corner-img{
        left:50%;
        transform:translateX(-50%);
    }

    .has-img p{
        padding-left:0;
        margin-top:85px;
        text-align:center;
    }
}
