/* === General Reset === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

/* === Layout === */
.container {
    display: flex;
    max-width: 1000px;
    margin: 20px auto;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
    padding: 10px;
}

/* === Sidebar === */
.sidebar {
    width: 30%;
    background: #121212;
    padding: 20px;
    text-align: center;
}

.sidebar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 1rem auto;
    border: 4px solid #fff;                  /* White inner ring */
    box-shadow: 0 0 0 3px #1a3a5f;           /* Outer dark blue ring */
}

/* === Headings === */
h3 {
    font-size: 20px;
    color: #f2f2f2;
    text-align: center;
    margin-bottom: 10px;
}

.new {
    font-size: 12px;
    text-align: center;
    color: #bbb;
}

.location {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

/* === Social Links === */
.social-links {
    text-align: center;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 8px;
}

.social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease-in-out;
}

.social-links img:hover {
    transform: scale(1.2);
}

/* === About & Skills === */
.about, .skills {
    margin-bottom: 20px;
}

.abouthd, .skillhd {
    font-size: 14px;
    margin-bottom: 5px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about p {
    font-size: 13px;
    color: #ccc;
}

.skills span {
    display: inline-block;
    background: #1a3a5f;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 4px 4px;
    color: #f0f8ff;
}

/* === Main Content === */
.content {
    width: 70%;
    padding: 20px;
    background-color: #1c1c1c;
}

/* === Headings === */
.projects h2, .experience h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #e5e5e5;
}

/* === Project / Experience Cards === */
.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-card {
    width: 100%;
    background: #2f2f2f;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #3a3a3a;
}

.project-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* === Card Text === */
.project-info h3 {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 6px;
}

.project-info p {
    font-size: 13px;
    color: #bdbdbd;
    margin-bottom: 10px;
}

/* === Project Skill Tags (Neatly Aligned) === */
.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.tags span {
    background: #1f4c73;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: #dbeeff;
    margin: 4px;
}

/* === Links === */
.project-info a {
    display: inline-block;
    color: #9fd4ff;
    margin-top: 5px;
    text-decoration: none;
    font-size: 13px;
}

.project-info a:hover {
    text-decoration: underline;
}

/* === Experience Section === */
.experience {
    margin-top: 15px;
}

.experience .school {
    margin-bottom: 20px;
}

.experience h5 {
    margin: 0;
    font-size: 16px;
    color: #e6e6e6;
}

.experience h5 + h5 {
    margin-top: 4px;
    font-weight: normal;
    color: #ccc;
}

.experience p {
    margin: 6px 0;
    font-size: 13px;
    color: #aaa;
}

.experience ul {
    margin: 10px 0 0 18px;
    padding: 0;
}

.experience li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #ddd;
}

/* === Education Section === */
.education .school {
    margin-bottom: 15px;
}

.eduhd {
    font-size: 13px;
    margin-bottom: 5px;
    color: #aaa;
}

.education p {
    font-size: 14px;
    color: #bbb;
    margin-top: 7px;
}

/* === Responsive === */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar, .content {
        width: 100%;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .project-card {
        width: 100%;
    }
}


