/* ==========================================================
   WCMS Frontend Theme
   Version: 2.0
   ========================================================== */

:root{

    --primary:#0B5ED7;
    --secondary:#1F2937;
    --success:#16A34A;

    --background:#F8F9FA;
    --surface:#FFFFFF;

    --text:#212529;
    --muted:#6C757D;

    --radius:16px;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --transition:.30s ease;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:Inter,Segoe UI,Tahoma,sans-serif;

}

.navbar{

    background:var(--surface) !important;

    box-shadow:var(--shadow);

    padding:14px 0;

}

.navbar-brand{

    font-weight:700;

}

.navbar-brand img{

    max-height:60px;

    width:auto;

}

.navbar-brand img{

    max-height:60px;

    width:auto;

}

.navbar-brand img{

    max-height:60px;

    width:auto;

}

.hero{
    padding:90px 0;
}

.section{
    padding:80px 0;
}

.card{

    border:none;

    border-radius:var(--radius);

    overflow:hidden;

    transition:var(--transition);

}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.card-img-top{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-body{
    padding:1.5rem;
}

.card-title{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:.75rem;
}

.card-text{
    color:#6c757d;
}

.section-title{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:.5rem;
}

.section-subtitle{
    color:#6c757d;
    margin-bottom:3rem;
}

footer{
    background:#212529;
    color:#fff;
    padding:60px 0;
    margin-top:80px;
}

footer a{
    color:#adb5bd;
    text-decoration:none;
}

footer a:hover{
    color:#fff;
}

.btn-primary,
.btn-outline-primary{

    border-radius:10px;

    padding:.75rem 1.5rem;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-primary:hover{

    filter:brightness(0.95);

}

.btn-outline-primary{

    color:var(--primary);

    border-color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    border-color:var(--primary);

}

.navbar-nav .nav-link{

    color:var(--secondary);

    font-weight:600;

    margin-left:10px;

    transition:var(--transition);

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link.active{

    color:var(--primary);

}

/* ==========================================================
   Product Cards
   ========================================================== */

.product-card{

    border-radius:20px;

    overflow:hidden;

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.product-image-wrapper{

    height:260px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    padding:20px;

}

.product-image-wrapper img{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

}

.product-category{

    display:inline-block;

    background:#E9F2FF;

    color:var(--primary);

    padding:6px 12px;

    border-radius:999px;

    font-size:.80rem;

    font-weight:600;

}

.product-card .card-title{

    min-height:60px;

}

.product-card .btn{

    border-radius:12px;

    font-weight:600;

}

/* ==========================================================
   Project Cards
   ========================================================== */

.project-card{

    border-radius:20px;

    overflow:hidden;

    transition:var(--transition);

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.project-image-wrapper{

    height:260px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    padding:20px;

}

.project-image-wrapper img{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

}

.project-card .card-title{

    min-height:60px;

}

.project-card .btn{

    border-radius:12px;

    font-weight:600;

}

/* ==========================================================
   Footer
   ========================================================== */

footer{
    background:#111827;
    color:#ffffff;
}

footer h4,
footer h5{
    color:#ffffff;
    font-weight:700;
}

footer p{
    color:#d1d5db;
    margin-bottom:.75rem;
}

footer a{
    color:#d1d5db;
    text-decoration:none;
    transition:var(--transition);
}

footer a:hover{
    color:#ffffff;
}

footer hr{
    border-color:rgba(255,255,255,.15);
}
