/* Reset some basic elements for consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    color: #333;
}

/* Navigation */
nav {
    background-color: #003d80; /* Darker blue background color */
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Home Section */
#home {
    background: url('background.jpg') no-repeat center center/cover;
    background-color: #0056b3; /* Blue background color */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#home h1 {
    font-size: 3em;
}

#home p {
    font-size: 1.5em;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #587ca3;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background-color: #003d80;
}

.button-get-in-touch {
    background-color: #333; /* Change this to your desired darker color */
    color: white; /* Change this to your desired text color */
  }

/* Intro Text */
.intro-text {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.intro-text h1, .intro-text p {
    color: #333; /* Dark gray text color */
}

/* About Section */
#about ul {
    list-style: none;
    padding: 0;
}

#about ul li {
    margin-bottom: 10px;
}

/* Portfolio Section */
#portfolio .project {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#portfolio .project h3 {
    margin-bottom: 10px;
}

/* Contact Section */
form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-blue {
    background-color: #0056b3;
}

form button {
    padding: 10px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #003d80;
}

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

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Profile Picture */
.profile-picture {
    width: 250px; /* Adjust the width as needed */
    height: 250px; /* Adjust the height as needed */
    border-radius: 50%; /* Make it a circle */
    margin-bottom: 20px;
    border: 5px solid #fff; /* Add a white border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.skills-list, .education-list {
    list-style: none;
    padding: 0;
}

.skills-list li, .education-list li {
    margin-bottom: 10px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
}

.skills-list li {
    flex: 1 1 30%; /* Adjust the percentage as needed */
    margin: 5px;
}