body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}
.container {
    text-align: center;
    padding: 20px;
    position: relative;
     background-color: #000000;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 20px 5px #6a0dad;
    margin-top: 50px;
}
.name {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 10px;
}
.title {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}
.resume-btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}
.resume-btn:hover {
    box-shadow: 0 0 20px 5px rgba(106, 13, 173, 0.7);
}
.section {
    background-color: #333;
    border-radius: 10px;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    transition: box-shadow 0.3s ease;
}
.section:hover {
    box-shadow: 0 0 20px 5px rgba(106, 13, 173, 0.7);
}
.section-title {
    background: linear-gradient(135deg, #6a0dad, #ff69b4);
    border-radius: 10px 10px 0 0;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    margin-top: -20px;
}
.section-content {
    text-align: left;
    padding: 20px;
}
.highlight {
    color: #ff69b4;
}
.skills, .services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.skill-item, .service-item {
    background-color: #444;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 30%;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover, .skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.service-item::before, .skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.7), rgba(255, 105, 180, 0.7));
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.5s ease;
}
.service-item:hover::before, .skill-item:hover::before {
    clip-path: circle(150% at 50% 50%);
}
.service-item h3, .skill-item h3 {
    position: relative;
    z-index: 1;
}
.service-item p, .skill-item ul {
    position: relative;
    z-index: 1;
}
.skill-item ul {
    list-style: none;
    padding: 0;
}
.skill-item ul li {
    background: #555;
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.skill-item ul li:hover {
    background: #6a0dad;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form input, .contact-form textarea {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
.contact-form textarea {
    height: 150px;
}
.contact-form button {
    background-color: #6a0dad;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}
.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}
.contact-form button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}
.contact-form button:hover {
    color: #000;
}
.footer {
    background: linear-gradient(to right, #6a0dad, #ff69b4);
    padding: 20px;
    text-align: center;
}
.footer p {
    margin: 5px 0;
}
.social-media {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.social-media a i {
    font-size: 24px;
}
.menu {
position: absolute;
top: 20px;
left: 20px;
cursor: pointer;
z-index: 1000;
}

.menu div {
width: 30px;
height: 3px;
background-color: #fff;
margin: 6px 0;
transition: 0.4s;
}

.dropdown {
display: none; /* Hidden by default */
position: absolute;
top: 50px;
left: 20px;
background-color: #333;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.dropdown.active {
display: block; /* Show when active */
}

.dropdown a {
color: #fff;
padding: 10px 20px;
text-decoration: none;
display: block;
transition: background 0.3s ease;
}

.dropdown a:hover {
background-color: #444;
}
