body, h1, h2, p, a, form input, form textarea {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    text-align: center;
}

body {
    line-height: 1.6;
    background-color: #F9F9F9;
    color: #333;
    font-size: 16px;
}

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

.logo {
    font-weight: 700;
    font-size: 2em;
    color: #FFF;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#navbar {
    background: linear-gradient(90deg, #007BFF, #333);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    color: white;
    padding: 5px 10px;
}

.nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.nav-links a.active {
    border-bottom: 2px solid white;
}

#welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

#welcome-section h1 {
    font-size: 4em;
}

#welcome-section p {
    font-size: 1.5em;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #005BDF;
}

#about, #projects, #contact {
    padding: 40px 0;
}

#projects h2, #about h2, #contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#projects .projects-grid {
    display: inline-block;
    text-align: center;
}

#projects .project-tile img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.img:hover {
    transform: scale(1.05);
}

#projects .project-tile {
    text-align: center;
    margin-top: 10px;
    color: #333;
}

.terraform {
    text-align: center;
    margin-top: 10px;
    color: #333;
}

.terraform:hover {
    color: #005BDF; 
}

.tech {
    color: #333;
}

.tech:hover {
    color: #005BDF;
}

.titles {
    margin: 0; 
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact form input, #contact form textarea {
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 4px;
}

#contact form button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact form button:hover {
    background-color: #005BDF;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    font-weight: 600; /* Increased font weight */
    font-size: 1.1em; /* Increased font size */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); /* Added text-shadow */
}

.social-media {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

#profile-link {
    color: #0e76a8; /* This is a typical LinkedIn blue color. Change this value to your desired color. */
}

#profile-link:hover {
    color: #005288; /* This is a darker shade of the LinkedIn blue for hover effect. */
}



footer .social-media a img {
    height: 24px;
    transition: opacity 0.3s;
}

footer .social-media a:hover img {
    opacity: 0.7;
}










