/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #34495e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: bold;
}

header p {
    font-size: 1.4rem;
    margin-top: 10px;
}

/* Section Titles */
section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #34495e;
    font-weight: bold;
}

/* About Me Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about-text {
    flex: 2;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Skills Section */
#skills ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#skills ul li {
    margin: 15px;
    font-size: 1.1rem;
    color: #555;
}

#skills ul li i {
    color: #1abc9c;
    margin-right: 8px;
}

/* Portfolio Section */
.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.project-box {
    flex: 1 1 30%;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-box h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.project-box p {
    color: #666;
    font-size: 1rem;
}

.project-box a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
}

.project-box a:hover {
    text-decoration: underline;
}

/* Events Participated Section */
#events {
    background-color: #f9fafc;
    padding: 60px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.event-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.event-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.event-card span {
    font-size: 0.9rem;
    color: #999;
}

/* Academic Qualifications Section */
#education ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

#education ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* Social Links Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    font-size: 1.5rem;
    color: #1abc9c;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Contact Section */
#contact {
    padding: 40px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
