/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
/*     color: #333; */
/*     background-color: #f4f4f4; */
    padding: 20px;
}
body {
    background-image: url('images/my-background.png');
    background-size: cover;
    background-position: center;
}

/* Navigation Bar */
header {
    background: #35515F;
/*     background-image: url('images/my-background.png'); */
    color: #fff;
    padding: 10px 0;
    box-shadow: 0px 4px 2px -2px green;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
/* Hero section styling */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    background-image: url('images/my-background.png');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 400px; /* Adjust as needed */
}

.hero-logo {
    width: 250px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    padding: 10px 20px;
    background-color: #00aaff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.btn-cv {
    padding: 10px 20px;
    background-color: #056C11;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.btn-cv:hover {
    background-color: #044E0C;
}
.btn:hover {
    background-color: #065B7A;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
    text-align: center;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.content-section ul li i {
    margin-right: 10px;
    color: #333; /* Adjust color as needed */
    font-size: 1.2em; /* Adjust size as needed */
}

.content-section ul li a {
    color: #007bff; /* Link color */
    text-decoration: none;
}

.content-section ul li a:hover {
    text-decoration: underline;
}

* Work Experience Section */
/* #experience {
    background-color: #f9f9f9; /* Light background color */
    padding: 60px 20px;
    text-align: center;
} */

/* .experience-card {
    background-color: #444; /* Dark background color */
    color: white;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */

/* .experience-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
} */

/* .experience-card p {
    font-size: 1.2em;
    margin-bottom: 10px;
} */

/* .experience-card ul {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
} */

/* .experience-card ul li {
    margin-bottom: 10px;
    text-align: left;
} */

.project {
        margin-bottom: 20px; /* Adjust the value to increase or decrease the gap */
    }

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

footer p {
    margin-bottom: 10px;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Projects section styling */
.projects-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.projects-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.project-card {
/*     background-color: #333; */
    color: white;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 1em;
    margin-bottom: 10px;
}

.project-card.rdol {
    background-color: #A95909; /* Dark blue background for RDOL */
}

.project-card.techlog {
    background-color: #004d80; /* Dark blue background for Techlog */
}

.project-card.scp {
    background-color: #800040; /* Dark purple background for SCP */
}

.project-card.wax {
    background-color: #006633; /* 006633 Dark green background for Wax Precipitation */
}

/* .project-card:nth-child(odd) {
    background-color: #2a2a2a; /* Dark gray background for other projects */
} */

/* Add some animations */
.project-card {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

