.projects-container {
    margin-top: 45px;
    margin-bottom: 15px;
    padding-left: 5%;
    padding-right: 5%;
}

.project-card {
    width: 86%;
    height: max-content;
    background-color: #1f2833;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin: 20px auto;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ffffff, 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Görsel stili */
.project-card img {
    width: 100%;
    height: 35%;
    object-fit: cover;
    border: 4px solid #808292;
    border-radius: 10px;
}

/* Kart içeriği */
.project-card-content {
    padding-top: 11px;
    padding: 20px;
}

.project-card a {
    position: absolute;
    background-color: #45a29e;
    color: #1f2833;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 25px;
    bottom: auto;
    visibility: hidden;
}

.project-card h3 {
    margin-bottom: 11px;
    color: white;
    font-size: 26px;
    border-bottom: 2px solid #1b2277;
}

.project-card p {
    color: #b3b3b3;
    font-size: 16px;
    height: fit-content;
    width: fit-content;
}

.project-card a:hover {
    background-color: #66fcf1;
    color: #0b0c10;
}