body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: #ffffff;
    text-align: center;
}

header {
    padding: 20px;
    background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
hr{
    border: 1px solid cyan;
    width: 80%;
    margin: auto;
}
h1 {
    color: cyan;
    text-shadow: 0 0 5px cyan;
}
h2 {
    color: cyan;
    text-shadow: 0 0 5px cyan;
}
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav a {
    color: cyan;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}
section {
    padding: 50px 20px;
}

img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid cyan;
    box-shadow: 0 0 10px cyan;
    margin-top: 20px;
}
/* Skills Section Styling */
/* Dark Theme */
body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Skills Section */
#skills {
    width: 85%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}

#skills h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: cyan;
    text-shadow: 0 0 5px cyan;
} 

/* Skills Grid */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Skill Card */
.skill {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    transition: transform 0.3s ease-in-out;
}

.skill:hover {
    transform: scale(1.05);
}

/* Skill Icon */
.skill i {
    font-size: 40px;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
    margin-bottom: 10px;
}

.skill h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.skill p {
    font-size: 14px;
    opacity: 0.8;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.progress {
    height: 100%;
    border-radius: 6px;
    animation: load 2s ease-in-out;
    box-shadow: 0 0 10px;
}

/* Custom Progress Colors */
.c { width: 85%; background: #00aaff; box-shadow: 0 0 10px #00aaff; }
.cpp { width: 80%; background: #ff4c4c; box-shadow: 0 0 10px #ff4c4c; }
.python { width: 75%; background: #ffcc00; color: #000; box-shadow: 0 0 10px #ffcc00; }
.js { width: 70%; background: #f7df1e; color: #000; box-shadow: 0 0 10px #f7df1e; }
.css { width: 90%; background: #2965f1; box-shadow: 0 0 10px #2965f1; }
.electronics { width: 65%; background: #27ae60; box-shadow: 0 0 10px #27ae60; }

/* Progress Animation */
@keyframes load {
    from { width: 0; }
}

.project {
    background-color: #1e1e1e;
    padding: 15px;
    margin: 10px auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 0 10px cyan;
}

a {
    color: cyan;
    text-decoration: none;
}

a:hover {
    color: lime;
    text-shadow: 0 0 10px lime;
}
form{
    margin: 20px auto;
    width: 80%;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 10px cyan;
}
textarea{
    width: 50%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    background-color: #0d1117;
    color: cyan;
    border: 1px solid cyan;
}
input[type="text"]{
    width: 25%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    background-color: #0d1117;
    color: cyan;
    border: 1px solid cyan;
}
input[type="email"]{
    width: 25%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    background-color: #0d1117;
    color: cyan;
    border: 1px solid cyan;
}
button[type="submit"]{
    padding: 10px 20px;
    border: none;
    background-color: cyan;
    color: #0d1117;
    border-radius: 8px;
    cursor : pointer;
    align-self: center;
}
