/* Basic Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #007bff;
    margin: 10px auto 0;
}

/* Project Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-weight: 600;
}

/* Skills */
.skills-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.skills-list li {
    display: inline-block;
    background: #e9ecef;
    color: #343a40;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #007bff;
}