/* GENERAL STYLES */
body {
    font-family: "IBM Plex Mono", "Courier Prime", "Source Code Pro", monospace, serif;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    color: #222;
    line-height: 1.7;
}

nav {
    text-align: center;
    padding-bottom: 20px;
}

nav a {
    text-decoration: none;
    color: #000;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.05em;
}

nav a:hover {
    text-decoration: underline;
    color: #0056b3;
}

h1 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.4em;
    font-weight: bold;
    margin-top: 30px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

ul {
    list-style-type: square;
    padding-left: 20px;
    font-size: 1em;
}

footer {
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
    color: #555;
}

/* HOMEPAGE STYLES */
.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-container {
    flex-shrink: 0;
    text-align: center;
}

.profile-pic {
    width: 140px;
    height: auto;
    max-height: 220px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid #ccc;
}

.intro-text {
    text-align: left;
}

.subtitle {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
}

/* EXPERIENCE PAGE STYLES */
.experience {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.company {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-logo {
    width: 60px;
    height: auto;
    max-height: 60px;
    border-radius: 5px;
    object-fit: contain;
    border: 1px solid #ddd;
}

.role {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.duration {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    body {
        max-width: 90%;
        margin: 30px auto;
        padding: 15px;
    }

    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .company {
        flex-direction: column;
        text-align: center;
    }

    .profile-pic {
        width: 120px;
        max-height: 180px;
    }

    .company-logo {
        width: 50px;
        max-height: 50px;
    }
}


/* PROJECTS PAGE STYLES */
.project {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.project-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-image {
    width: 180px;
    height: auto;
    max-height: 120px;
    border-radius: 5px;
   
    border: 2px solid #ddd;
}

.project-info {
    flex: 1;
}

.project-info h2 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 5px;
}

.description {
    font-size: 1em;
    color: #444;
    margin-bottom: 10px;
}

.project-links a {
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    color: #0056b3;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .project-container {
        flex-direction: column;
        text-align: center;
    }

    .project-image {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
}

/* CONTACT PAGE STYLES */
.contact-info {
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-links {
    text-align: left;
    margin-top: 20px;
}

.contact-links h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-links a {
    text-decoration: none;
    font-weight: bold;
    color: #0056b3;
}

.contact-links a:hover {
    text-decoration: underline;
}
/* Intro & Education Styling */
.education {
    text-align: center;
    font-size: 1em;
    color: #555;
    margin-top: 5px;
}

.education p {
    margin: 2px 0;
    line-height: 1.4;
}

.intro-text {
    text-align: center;
}

.resume-link {
    margin-top: 5px;
}

.resume-link a {
    text-decoration: none;
    font-weight: bold;
    color: #007bff; /* Adjust color as needed */
    font-size: 18px;
}

.resume-link a:hover {
    text-decoration: underline;
}