/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2c273e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(to right, #6c5b7b, #c06c84);
    color: white;
    text-align: center;
    padding: 2em 0;
    border-bottom: 3px solid #4f3a55;
}
a {
    text-decoration: none; 
} 
li:hover {
    /* transform: translateY(10px); */  
    transform: translateY(-2px);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
    padding: 2px;
    border-radius: 5px;
}

header h1 {
    margin: 0;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    background: #4f3a55;
    color: white;
    padding: 0.5em 0;
    text-align: center;
}

 

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

 
section {
    margin: 40px 0;
    padding: 30px;
    background-color: #433d57;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

section:hover {
    transform: translateY(-30px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

section h2 {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.5em;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.3em;
    text-align: left;
    text-transform: uppercase;
}

ul, .skills-list {
    list-style-type: none;
    padding: 0;
}

ul li, .skills-list li {
    margin: 10px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

ul li img, .skills-list li img {
    width: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #4f3a55;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1.1em;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    margin-left: 5px;
}
.experience-item {
    padding: 10px 0px 10px 0px;
}
.about-text {
    padding-top: 12px;
}
/* Updated Contact Section Email Link */
#contact a {
    color: #ffffff; /* Blueish color for email */
    background-color: rgba(255, 255, 255, 0.1); /* Light background */
    padding: 5px 10px;
    border-radius: 5px;
}
#contact p {
    padding-top: 10px;
}
#contact a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Slightly darker on hover */
}

/* Portfolio Section Styles */
.portfolio-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0px;
    margin-top:20px;
    border: 2px solid #433d57;
    border-radius: 8px;
    max-height: 450px; 
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    white-space: nowrap;
}

.portfolio-item {
    background-color: #4f3a55;
    padding: 10px;
    margin-right: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 0 0 300px; /* Adjust the width of each item */
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.portfolio-item p {
    margin: 0;
    font-size: 1em;
    color: #ffffff;
}
/* Custom Scrollbar Styles */
.portfolio-container::-webkit-scrollbar {
    height: 8px;
}

.portfolio-container::-webkit-scrollbar-thumb {
    background: #6c5b7b;
    border-radius: 4px;
}

.portfolio-container::-webkit-scrollbar-thumb:hover {
    background: #c06c84;
}

.portfolio-container::-webkit-scrollbar-track {
    background: #2c273e;
    border-radius: 4px;
}
/* Skill Badges */
.badges-container {
    margin-top:20px;
    margin-left: 0px;
}

.badges-container img {
    width: 150px; 
    height: auto; 
    margin-right: 15px;
    max-width: 100%; 
}

