/* ==========================================
   Projects Grid & Card Styling
   ========================================== */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.project-card {
    background-color: #2E8B57;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.project-card h3 {
    font-size: 1.15rem;
    color: #111827;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 12px;
}

.project-link {
    font-size: 0.85rem;
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
}

.project-link:hover {
    text-decoration: underline;
}
body{
    background-color: #4169E1;

}
/* ==========================================
   Dark Theme Adjustments for Projects
   ========================================== */
body.dark-theme .project-card {
    background-color: #000000;
    border-color: #0f172a.s;
}

body.dark-theme .project-card h3 {
    color: #f7fafc;
}

body.dark-theme .project-card p {
    color: #cbd5e0;
}

body.dark-theme .project-link {
    color: #2E8B57;
}
.send-btn{
    background-color: #0f172a;
}