/* ===============================
   GLOBAL
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
    color:#111;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}

/* ===============================
   NAVBAR (Premium Clean)
================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    border-bottom:1px solid #f0f0f0;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    color:#b00020;
}

.logo span{
    color:#000;
    font-weight:500;
}

.navbar nav a{
    margin-left:30px;
    font-weight:500;
    color:#333;
    position:relative;
    transition:0.3s;
}

.navbar nav a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#b00020;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after{
    width:100%;
}


/* ================= PORTFOLIO SECTION ================= */

.portfolio-section {
    padding: 80px 8%;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-title h2 {
    font-size: 36px;
    color: #b00020;
    margin-bottom: 10px;
}

.portfolio-title p {
    color: #555;
}

/* ================= GRID ================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* ================= CARD ================= */

.portfolio-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 1px solid #eee;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(225,6,0,0.15);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.portfolio-content span {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #e10600;
    margin-bottom: 12px;
}

.portfolio-content p {
    font-size: 14px;
    color: #555;
}

/* ================= FOOTER ================= */

footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: #fff;
    margin-top: 60px;
    font-size: 14px;
}