/* Services Section Styles */
#services {
    padding: 80px 0; /* Increased padding for more spacing */
    text-align: center;
    background-color: #f9f9f9; /* Light background */
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px; /* Increased margin for spacing */
    color: #333; /* Dark text color */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted min-width */
    gap: 30px; /* Increased gap between service items */
    margin-top: 60px; /* More space at the top */
}

.service {
    background-color: #fff; /* White background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-10px); /* Lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.service .icon {
    font-size: 4em; /* Larger icon size */
    color: #ff5a5f; /* Accent color */
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.8em; /* Larger heading size */
    margin-bottom: 15px;
    color: #333; /* Dark text color */
}

.service p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666; /* Slightly darker gray text */
}

/* Skills Section Styles */
#skills {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

#skills h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.skill {
    text-align: left;
}

.skill h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.skill-bar {
    background-color: #555;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.skill-progress {
    height: 10px;
    background-color: #ff5a5f;
}

/* Contact Section Styles */
#contact {
    padding: 80px 0; /* Increased padding for more spacing */
    text-align: center;
    background-color: #f9f9f9; /* Light background */
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px; /* Increased margin for spacing */
    color: #333; /* Dark text color */
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 60px; /* More space at the top */
}

#contact-form, .contact-info {
    flex: 1;
    margin-right: 30px; /* Increased margin between form and info */
}

#contact-form .form-group {
    margin-bottom: 20px; /* Increased margin for form elements */
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
}

#contact-form button {
    background-color: #ff5a5f; /* Accent color */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #e44b4e; /* Darker accent color on hover */
}

.contact-info {
    flex: 1;
    margin-left: 30px; /* Increased margin between info and form */
}

.contact-info p,
.contact-info h3 {
    margin-bottom: 20px; /* Increased margin for contact info */
}

.contact-info .social-links a {
    color: #333; /* Dark text color */
    font-size: 1.5em;
    margin-right: 15px; /* Reduced margin between social icons */
    transition: color 0.3s;
}

.contact-info .social-links a:hover {
    color: #ff5a5f; /* Accent color on hover */
}