/* Projelerimiz Başlığı */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px; /* Kartlarla daha yakın olmasi için */
    font-weight: bold;
    color: #333;
}

/* Ürün Kartları Bölümü */
.product-section {
    padding: 50px 8%;
    background-color: #f4f4f4;
}

/* Ürün Kartlarının Bulunduğu Alan */
.product-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Kartların alt satırlara kayabilmesi için */
}

/* Ürün Kartı Stili */
.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Ürün Resmi */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Ürün Başlığı */
.product-name {
    font-size: 20px;
    margin: 20px 0;
    color: #333;
}

/* Ürün Açıklaması */
.product-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Detaylar Butonu */
.product-btn {
    text-decoration: none;
    background-color: #1890ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: #0056b3;
}
