* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* Sections */
.highlights, .about {
    padding: 60px 20px;
    text-align: center;
}

.highlights h1,
.about h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Container */
.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

/* CARD */
.project-card {
    width: 320px;
    max-width: 20rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* FORCE IMAGE SIZE - CHANGE THE HEIGHT HERE */
.project-card img {
    width: 100% !important;
    height: 150px !important;  /* ← CHANGE THIS VALUE */
    object-fit: cover !important;
    display: block !important;
    flex-shrink: 0;
    

    object-fit: cover;
    object-position: top;
}

/* CONTENT */
.project-content {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

/* Divider */
hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}

/* Team badge */
.team-size {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

/* LINKS */
.links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.store-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    transition: 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    background: #e8e8e8;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.store-btn img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* Company link style */
.company {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    text-decoration: none;
}

.company:hover {
    color: #4da3ff;
}