/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #1e1e1e;
    line-height: 1.6;
}

/* Header */
.header {
    text-align: center;
    background: #333;
    padding: 20px;
    border-bottom: 2px solid #444;
}

.header h1 {
    margin: 0;
    font-size: 2em;
}

.header p {
    margin: 5px 0 20px;
    font-size: 1.2em;
}

/* Main Heading */
h2 {
    font-size: 2.5em;
    color: #f9c74f;
    margin-bottom: 20px;
}

hr {
    border: none;
    height: 2px;
    background-color: #f9c74f;
    margin: 20px 0;
}

/* Navigation Bar */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background-color: #333;
    border-bottom: 2px solid #444;
}

/* General Button Styles */
.nav-button {
    display: flex;
    justify-content: center;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background-color: #444;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover Effects */
.nav-button:hover {
    background-color: #555;
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Individual Button Colors */
.about-button:hover,
.education-button:hover,
.certifications-button:hover,
.projects-button:hover,
.contacts-button:hover,
.summary-button:hover {
    background-color: #ffd700;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 50px;
    font-size: 1.5em;
}

p {
    font-size: 1.2em;
    line-height: 1.6em;
}

/* Certifications Box */
.certification-box {
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certification-box ul {
    list-style: none;
    padding-left: 20px;
    font-size: 1.1em;
    text-align: left;
    line-height: 1.8;
}

.certification-box ul ul {
    padding-left: 40px;
}

.certification-box li {
    margin-bottom: 10px;
}

.certification-box strong {
    color: #f9c74f;
}

/* Footer */
.footer {
    text-align: center;
    background: #333;
    padding: 10px;
    border-top: 2px solid #444;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
}

/* Skills Box */
.skills-box {
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skills-box li {
    margin-bottom: 10px;
}

.skills-box ul ul {
    padding-left: 40px;
}

.skills-box strong {
    color: #f9c74f;
}

/* Projects Section */
.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

/* Project Box */
.project-box {
    background-color: #2c2c2c;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Project Title */
.project-box h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #f9c74f;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333; /* Adjust as needed */
    padding: 10px;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px; /* Adjust spacing between items */
}

.navbar ul li {
    display: inline-block; /* Ensures items stay in a row */
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #444;
}


/* Project Description */
.project-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #f9c74f;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* Hyperlink Colors */
.link1 a,
.link2 a {
    -webkit-text-fill-color: #ffd700;
}
