/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f0f0;
    color: #333;
    line-height: 1.6;
    padding: 0;
}

/* Container for page content */
.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Section */
header {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, #4b4b4b, #6c6c6c);
    color: #fff;
    border-bottom: 5px solid #e0e0e0;
}

header h1 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header nav ul {
    list-style: none;
    padding: 20px 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    color: #e0e0e0;
    transform: scale(1.1);
}

/* Sections Styling */
section {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #4b4b4b;
}

section p {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
}

ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

ul li a {
    color: #4b4b4b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

ul li a:hover {
    text-decoration: underline;
    color: #333;
}

/* Skills Section */
.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.skill-item {
    background-color: #e0e0e0;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background-color: #cccccc;
    transform: translateY(-5px);
}

/* Experience Section */
.experience-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.experience-item h3 {
    color: #4b4b4b;
    font-weight: 600;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #4b4b4b;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Hover and Animation Effects */
a:hover {
    color: #333;
    text-decoration: underline;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
