body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.project-header {
    background-color: #343a40;
    color: white;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.project-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #f8f9fa;
    transform: skewY(-3deg);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #28a745;
}

.step {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step h2 {
    color: #28a745;
    margin-bottom: 1rem;
}

.step h2 i {
    margin-right: 10px;
}

.step-image {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

pre {
    background-color: #f1f3f5;
    color: #333;
    padding: 1rem;
    border-radius: 10px;
    overflow-x: auto;
    max-height: 300px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

pre code {
    font-size: 0.875rem;
}

/* footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer a {
    color: #28a745;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
} */
@media (max-width: 575px) {
    .btn-custom, .btn-outline-secondary {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}
/* .btn-outline-secondary {
    border-color: #28a745;
    color: #28a745;
}

.btn-outline-secondary:hover {
    background-color: #28a745;
    color: white;
} */

@media (max-width: 767px) {
    .step {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    .step-image {
        margin-top: 1.5rem;
    }
}
/* Custom CSS for code blocks */
pre {
    background-color: #f1f3f5;
    color: #333;
    padding: 1rem;
    border-radius: 10px;
    overflow-x: auto;
    max-height: 300px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

pre code {
    font-size: 0.875rem;
}

/* Custom color for comments in code */
.comment {
    color: #6c757d; /* Example color for comments */
}
/* .token.comment { */
    /* color: #6a9955; */
     /* Example color for comments */
/* } */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: auto;
    max-width: 80%;
}

.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.code-block {
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: transparent;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
}

.copy-btn:hover {
    opacity: 0.7;
}

.copy-btn i {
    font-size: 16px;
    color: #6c757d;
}

