/* Website Section Styles */
.website-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff80ab;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

#websites .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#websites .card {
    position: relative;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#websites .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#websites .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #f0f0f0;
}

#websites .card h3 {
    margin: 15px 15px 5px;
    font-size: 18px;
    color: #333;
}

#websites .card p {
    margin: 0 15px 15px;
    color: #666;
    font-size: 14px;
}

#websites .card .btn {
    display: block;
    margin: 0 15px 15px;
    text-align: center;
    background-color: #ff80ab;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

#websites .card .btn:hover {
    background-color: #e65c8a;
}

#websites .card .btn i {
    margin-left: 5px;
}
