.hero-section {
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    color:black;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero-content .button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.projects-section,
.blogs-section {
    padding: 50px 0;
    text-align: center;
}

.projects-section h2,
.blogs-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.projects-grid,
.blogs-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.project-card,
.blog-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project-card h3,
.blog-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-card p,
.blog-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.project-card .button,
.blog-card .button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
