/* Reset some default styles */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: black;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Section Styles */
.section {
    padding: 60px 20px;
}

.container {
    width: 80%;
    margin: auto;
    max-width: 1200px;
}

/* About Section */
#about {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #f5f5f5;
    margin-bottom: 40px;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#about p {
    margin-bottom: 15px;
}


/* Projects Section */
#projects h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.project-card {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
}

.project-card h3 {
    margin-top: 0;
    color: #333;
}

.project-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

.project-card a:hover {
    text-decoration: underline;
}
.project-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Contact Form Styles */
#contact h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Skills Bars Styling */
.skills-bars {
    margin-top: 20px;
}

.skill-container {
    margin-bottom: 15px;
}

.skill-container span {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.skill-bar {
    background-color: #e0e0e0;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    background-color: #007bff;
    height: 100%;
    width: 0;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Shooting Stars Background */
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: shooting 5s linear infinite;
}

@keyframes shooting {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) translateX(300px);
        opacity: 0;
    }
}
/* Resume Image Card */
.resume-card {
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.resume-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

.resume-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.resume-button:hover {
    background-color: #0056b3;
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
video {
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.skills-list li i {
    margin-right: 10px;
    font-size: 1.5rem;
}





