body {
    color: #2E1402; /* Dark blue text color for better readability */
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Enables vertical scrolling */
}

header {
    background-color: #2E1402;
    color: #ffffff;
    padding: 20px 0;
}
header .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    text-align: center;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}
header nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}
nav {
    margin-left: auto;
}
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    
}

nav ul li {
    margin: 0 15px;
}

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

.hero {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
}

.hero-image {
    max-width: 200%;
    height: auto;
    border-radius: 10px;
}

img {
    max-width: 100%;
    height: auto;
    width: 100px; 
    height: 100px;
}

button {
    background-color: #946D43;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block; /* Makes the button take up the full width */
    margin: 0 auto; /* Centers the button */
}
button.btn {
    display: block;
    margin: 2rem auto;
    padding: 0.5rem 2rem;
}
button:hover {
    background-color: #f0ece8;
}

.btn-primary {
    background-color: #D2B48C !important;
    border-color: #D2B48C !important;
}

.btn-primary:hover {
    background-color: #BC9A6A !important;
    border-color: #BC9A6A !important;
}

.projects img, .contact-form label, .contact-form input, .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
}

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

html, body {
    height: 100%;
}

.info-box {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-links a {
    margin-right: 15px;
    font-size: 50px;
    color: #B7966B;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #B7966B; /* Change to your desired hover color */
}

.about-me {
    padding: 50px 20px;
    background-color: #f4f4f4; /* Light gray background */
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Adds spacing between image and text */
    padding: 40px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.right-section {
    flex: 2;
    max-width: 60%;
}

img {
    max-height: 1000px; /* Increase the maximum height */
    max-width: 9999px; /* Increase the maximum width */
    width: 400px; /* Set a larger width */
    height: 400px; /* Set a larger height */
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #131313; 
    text-align: left;

}
h1 .title {
    text-align: left;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333; /* Softer text color */
}
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-thumb {
    background-color: #2E1402;
    border-radius: 4px;
}
.social-links a:last-child {
    margin-right: 0;
}
nav ul li a {
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #f7f4f1;
}
footer {
    background-color: #fcfdfe;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
footer a {
    color: #946D43;
    text-decoration: none;
}
.title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fefefe; 
    font-family: 'Pacifico', cursive; 
    text-align: left;
    margin-left: 0;
}
.title2 {
    font-family: 'Pacifico', cursive;
    text-align: center;
}
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.skills-section {
    padding: 40px;
    background-color: #fff;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.skills-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.skill-box {
    background-color: #2E1402;
    color: rgb(245, 237, 237);
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.education-section {
    padding: 40px;
    background-color: #fff;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.education-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.about-me-section {
    padding: 40px;
    background-color: #fff;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.projects-section {
    padding: 40px;
    background-color: #fff;
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.project {
    margin-bottom: 40px;
}

.project-description {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

