/* ================= RESET ================= */
/**{*/
/*    margin:0;*/
/*    padding:0;*/
/*    box-sizing:border-box;*/
/*}*/

/* ================= SECTION ================= */
.taj-category-section{
    background:#f2f2f2;
    padding:80px 0 1px;
}

/* ================= WRAPPER ================= */
.taj-slider-wrapper{
    width:92%;
    max-width:1600px;
    margin:auto;
    position:relative;
    overflow:hidden; /* Required for sliding */
}

/* ================= SLIDER ================= */
.taj-slider{
    display:flex;
    transition:transform 0.7s ease;
}

/* ================= CARD ================= */
.taj-card{
    position:relative;
    flex:0 0 33.333%;
    padding:0 25px 100px; /* Bottom spacing added */
}

/* IMAGE */
.taj-card img{
     width: 82%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= CONTENT BOX ================= */
.taj-card-content{
      position: absolute;
    bottom: 38px;
    left: 40px;
    background: #fff;
    padding: 18px 24px;
    width: 68%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.taj-card-content h3{
    font-family:'Cinzel', serif;
    font-size:20px;
    font-weight:400;
    letter-spacing:1px;
    color:#6b6b6b;
    margin-bottom:18px;
}

.taj-card-content a{
    text-decoration:none;
    font-size:14px;
    letter-spacing:3px;
    color:#b08a32;
    font-weight:600;
}

/* ================= NAV BUTTONS ================= */
.taj-nav{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid #fff;
    background:rgba(255,255,255,0.2);
    color:#fff;
    font-size:26px;
    cursor:pointer;
    backdrop-filter:blur(4px);
    z-index:10;
}

.taj-prev{ left:20px; }
.taj-next{ right:20px; }

.taj-nav:hover{
    background:#b08a32;
    border-color:#b08a32;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){

    .taj-card{
        flex:0 0 123%;
        padding:0 15px 80px;
    }

    .taj-card img{
        height:450px;
    }

    .taj-card-content{
        width:85%;
        left:25px;
        bottom:25px;
        padding:25px 30px;
    }

}