/* General body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styles */
header {
    color: #fff;
    padding: 1em 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #141E30;
    height: 150px;  /* Adjust as needed */
}

.header-content {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
    position: relative;
    z-index: 2;
}

h1, h2 {
    margin: 0;
}

/* Animation container and line styles */
.animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.line {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
}

/* Container styles for the main content */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Section styles */
section {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Contact section styles */
.contact ul {
    list-style: none;
    padding: 0;
}

.contact ul li {
    margin: 5px 0;
}

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

/* Skills section styles */
.skills ul {
    list-style: none;
    padding: 0;
}

.skills ul li {
    margin: 5px 0;
}

/* Footer styles */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    margin-top: 20px;
}

/* Link styles */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

