
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: black;
    color: #e0e0e0; 
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    background: linear-gradient(90deg,rgb(64, 64, 64),rgb(16, 16, 16));
    max-width: 900px;
    margin: 0 auto; 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
}

header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #333; 
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #66b3ff; 
}

.header-text h1 {
    margin: 0;
    color: #66b3ff; 
    font-size: 2.5em;
}

.header-text p {
    margin: 0;
    font-size: 1.2em;
    color: white; 
}

.card {
    background: linear-gradient(90deg,rgb(16, 16, 16),rgb(64, 64, 64)); 
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid #3a3a3a; 
}

h2 {
    color: #ffffff; 
    border-bottom: 2px solid #66b3ff; 
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-links a {
    text-decoration: none;
    color: #66b3ff; 
    font-size: 1.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #99ccff; 
}

.skills-container {
    display: flex;
    gap: 40px;
}

.skills-list h3 {
    color: #cccccc; 
    margin-bottom: 10px;
}

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

.skills-list li {
    background: linear-gradient(90deg,rgb(64, 64, 64),rgb(16, 16, 16));
    color: #99ccff; 
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 500;
}

.project-grid {
    display: grid;
    gap: 20px;
}

.project-item {
    border: 1px solid #444; 
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(90deg,rgb(64, 64, 64),rgb(16, 16, 16));
}
.project-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #66b3ff; 
}
.project-item h3 {
    margin-top: 0;
    color: #66b3ff; 
}

.tools {
    margin: 15px 0;
}

.tools span {
    background-color: #555555; 
    color: #fff; 
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    margin-right: 5px;
}

.repo-link {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg,lightgreen,lime);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}



.live-link{
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg,lightblue,blue);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-left: 20px;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #888888; 
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .profile-pic {
        margin-bottom: 15px;
    }
}
