/* Section backgrounds */
.about-section, .projects-section, .experience-section, .skills-section {
    padding: 40px;
    margin: 20px;
    background: #184931; /* Deep green that aligns with your jacket */
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

/* Project cards */
.card {
    background: #2c3e50; /* Darker tone for contrast */
    color: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
.card h5 {
    color: #00cc99; /* Accent color for titles */
}

/* Offset sections creatively */
.about-section {
    margin-right: 100px;
}
.projects-section {
    margin-left: 100px;
}
.experience-section {
    margin-right: 100px;
}
.skills-section {
    margin-left: 100px;
}

/* Media query for small devices */
@media (max-width: 768px) {
    /* Center sections */
    .about-section, .projects-section, .experience-section, .skills-section {
        margin: 20px auto;
        padding: 30px;
    }
}