@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family:"Quattrocento Sans", sans-serif;
    background: white;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #777;
}

h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #333;
}

h1 .highlight {
    color: #7d2ae8;
}

.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.skills-section {
    background: #ffffff;
    border: 2px solid #7d2ae8;
    border-radius: 15px;
    padding: 30px 100px;
    box-shadow: 0 4px 6px rgba(125, 42, 232, 0.1);
    align-items: center ;
    position: relative;
    margin-left: 60px;
    margin-right: 60px;
}

.skills-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.skill-item {
    margin-bottom: 30px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-name {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.skill-percentage {
    color: #7d2ae8;
    font-size: 1.1rem;
    font-weight: 600;
}

.skill-bar-container {
    width: 100%;
    height: 12px;
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(90deg, #7d2ae8 0%, #a855f7 100%);
    border-radius: 10px;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px #7d2ae8;
}

