/*==============================
 TechJaga Demo Section
 No Conflict CSS
==============================*/

.tj-demo-section{
    padding:80px 20px;
    background:#f7f9fc;
    font-family:Arial,Helvetica,sans-serif;
}

.tj-container{
    max-width:1200px;
    margin:auto;
}

.tj-heading{
    text-align:center;
    margin-bottom:50px;
}

.tj-subtitle{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#eef4ff;
    color:#0d6efd;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.tj-heading h2{
    margin:15px 0;
    font-size:38px;
    color:#1d2939;
}

.tj-heading p{
    color:#667085;
    font-size:18px;
}

.tj-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.tj-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.tj-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.tj-featured{

    border:2px solid #ff5722;

}

.tj-badge{

    display:inline-block;
    background:#ff5722;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:20px;

}

.tj-blue{

    background:#0d6efd;

}

.tj-card h3{

    margin:0 0 25px;
    font-size:30px;
    color:#222;

}

.tj-item{

    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid #ececec;

}

.tj-item strong{

    color:#333;
    font-weight:700;

}

.tj-item span{

    color:#666;
    text-align:right;

}

.tj-btn{

    display:block;
    margin-top:30px;
    text-align:center;
    text-decoration:none;
    background:linear-gradient(90deg,#ff5722,#ff8f00);
    color:#fff;
    padding:16px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    transition:.3s;

}

.tj-btn:hover{

    transform:scale(1.02);

}

@media(max-width:992px){

.tj-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.tj-demo-section{

padding:60px 15px;

}

.tj-heading h2{

font-size:30px;

}

.tj-card{

padding:28px;

}

.tj-card h3{

font-size:24px;

}

.tj-item{

display:block;

}

.tj-item strong{

display:block;
margin-bottom:6px;

}

.tj-item span{

text-align:left;

}

.tj-btn{

font-size:17px;

}

}

@media(max-width:480px){

.tj-heading h2{

font-size:26px;

}

.tj-heading p{

font-size:15px;

}

.tj-card{

padding:22px;

}

}