/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.resume {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* Header Section */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 12px 12px 0 0;
}

header h1 {
    font-size: 2.8em;
    margin: 0;
    font-weight: 700;
}

header h2 {
    font-size: 1.5em;
    margin: 10px 0;
    font-weight: 500;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffdd57;
}

/* Section Headings */
h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #6a11cb;
    display: inline-block;
}

/* Profile Section */
.profile p {
    font-size: 1.1em;
    color: #555;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h4 {
    font-size: 1.3em;
    color: #2575fc;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 1em;
    color: #666;
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.education-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.education-card h4 {
    font-size: 1.3em;
    color: #2575fc;
    margin-bottom: 10px;
}

.education-card p {
    font-size: 1em;
    color: #666;
}

.education-card ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
