.hms-demo {
    text-align: center;
    padding: 80px 20px;
}

.hms-demo h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hms-demo-sub {
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.hms-demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.hms-demo-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.hms-demo-card:hover {
    transform: translateY(-5px);
}

/* LIST */
.hms-demo-card ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
    color: #555;
}

/* BUTTON */
.hms-demo-card .hms-btn {
    margin-top: 15px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hms-demo-grid {
        grid-template-columns: 1fr;
    }
}

.hms-btn-primary{
    background:#0d6efd;
    color:#fff;
    border-radius: 10px;
}

.hms-demo-card .hms-btn {
    margin-top: 15px;
    display: inline-block;
}

.hms-demo-card .hms-btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
}

.hms-demo-card .hms-btn-primary:hover {
    background: #1d4ed8;
}
