/* General styles for the page */
body {
    font-family: 'Arial', sans-serif;
    background-color: wheat;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 {
    text-align: center;
    color: #333;
    margin: 0.5rem 0;
}

h1 {
    color: #D63384;
}

h2 {
    color: #007BFF;
}

.section {
    padding: 2rem;
    margin: 1rem auto;
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact, .education, .skills {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

.contact li, .education li {
    margin: 0.5rem 0;
}

.highlight {
    color: #D63384;
}

.card {
    background-color: #f8f9fa;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
}

.cv-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 2rem;
}

.cv-button:hover {
    background-color: #0056b3;
}

.animated-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    margin: 5px 0;
}

.progress-bar span {
    height: 100%;
    border-radius: 10px;
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 10% auto;
    width: 60%;
}

.close-btn {
    font-size: 30px;
    color: #333;
    float: right;
    cursor: pointer;
}

.close-btn:hover {
    color: #D63384;
}

/* Smooth Scroll */
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #007BFF;
}

.contact .fa, .skills .fa {
    margin-right: 10px;
    color: #007BFF;
}

.contact a {
    text-decoration: none;
    color: #007BFF;
}
