/* Logo styling for header */
.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    vertical-align: middle;
    margin-bottom: 8px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 8px; /* optional: rounded corners */
}
/* Position the photo at the top-left corner responsively */
.my-photo {
    position: fixed;
    top: 10px;
    left: 10px;
    max-width: 12vw;
    width: 100%;
    height: auto;
    border-radius: 8px; /* optional: rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* optional: subtle shadow */
    z-index: 1000;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background:
        linear-gradient(rgba(244,244,244,0.75), rgba(224,231,255,0.75)),
        url('assets/robomed.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.trans-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.0); /* semi-transparent white */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 1000px;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 1000px;
}

.projects-container {
    background: #fff; /* fully opaque white */
    min-height: 100vh;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-container {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.justify-text {
    text-align: justify;
    margin-left: 40px;
    margin-right: 40px;
}

h1 {
    margin: 10px 0;
    color: #2c3e50;
}

h2 {
    margin: 5px 0;
    color: #555;
    font-weight: normal;
}

p {
    font-size: 18px;
    line-height: 1.6;
}
