/* Project css */

.projects {
    background-color: #000000;  /* Black background for projects */
    color: white;
}

/* Projects Section */
.projects-section {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f9f9f9;
}

/* Project Card */
.project-card {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Project Image */
.project-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

/* Project Details */
.project-details {
    max-width: calc(100% - 170px); /* Prevent overflow when image is displayed */
}

.project-details h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.project-details p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Project Link Button */
.project-link {
    display: inline-blocsk;
    padding: 10px 15px;
    color: white;
    background-color: #0047AB;  /* Blue */
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;

    /* Add buffer (margin) above the project link */
    margin-top: 200px;  /* Adjust the value as needed */
}

.project-link:hover {
    background-color: #002147;  /* Darker blue on hover */
}

