.head-cctv
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    line-height: 1.8;
}

.head-cctv img
{
    width: 200 px;
    height: 200 px;
}

.head-cctv h3
{
    font-size: 22 px;
    color: #000;
}

.cctv-section{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap:30px;
    padding: 30px;
}

.cctv-card{
    background:var(--secondary);
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 10px rgba(0,0,0,0.2);
    transition:0.3s;
}

.cctv-card:hover{
    transform:translateY(-5px);
}

.cctv-header{
    padding:15px 20px;
    background:var(--primary);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cctv-header h3{
    margin:0;
    font-size:16px;
    letter-spacing:1px;
}

.status{
    font-size:12px;
    padding:5px 10px;
    border-radius:20px;
    background:var(--accent);
}

.cctv-video{
    width:100%;
    aspect-ratio:16/9;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#888;
    font-size:14px;
}