/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;700;800&display=swap');

/* BASE */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f7f9fc;
    color: #222;
}

.projects-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 25px;
}

.projects-wrapper h1 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 800;
}

.sub-text {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

/* CARD */
.project-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e3e9f1;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #04d1ff;
}

/* LOGO */
.project-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.project-logo img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

/* TAGS */
.tags span {
    display: inline-block;
    background: #e8f6ff;
    color: #007bff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 6px;
    margin-top: 12px;
}

/* BUTTON */
.view-btn {
    margin-top: 25px;
    font-weight: 600;
    color: #00c28a;
    font-size: 15px;
}
