﻿.project-wrapper {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 25%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Heading */
.project-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1c7c54;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

    .project-heading::after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: #ffd700;
        margin: 12px auto 0;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .project-heading:hover::after {
        width: 180px;
    }
/* Content paragraphs */
.project-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* Highlighted intro */
.project-intro {
    background: #f9f9f9;
    border-left: 4px solid #d4af37;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-weight: 500;
}
/* Download Button */
.download-btn {
    display: inline-block;
    padding: 10px 40px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 8px;
    border: 0px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #1c7c54 0%, #28a745 51%, #1c7c54 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-bottom: 25px;
}

    .download-btn:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
/* Responsive */
@media (max-width: 768px) {
    .project-wrapper {
        padding: 30px 20px;
    }

    .project-heading {
        font-size: 24px;
    }
}
