/* Copyright Bar */
.copyright-bar {
    text-align: center;
    color: #888;
    font-size: 0.98rem;
    margin: 32px 0 10px 0;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    letter-spacing: 0.02em;
}
/* Contact Icons Styling */
.contact-icons {
    display: flex;
    gap: 18px;
    list-style: none;
    padding-left: 0;
    align-items: center;
    margin-top: 12px;
}

.contact-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    object-fit: contain;
    border: 2px solid #e0e0e0;
}

.contact-logo:hover {
    transform: scale(1.12) rotate(-4deg);
    box-shadow: 0 4px 16px rgba(75,144,226,0.18);
    border-color: #4b90e2;
    background: #f4f6f8;
}
/* Resume Professional CSS */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
    margin: 0;
    padding: 0;
}

.resume-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 48px 40px 40px 40px;
}

.header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e0e0e0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    margin: 0 auto 12px auto;
    background: #fff;
}

.header-info {
    flex: 1;
}

.header-info h1 {
    margin: 0 0 8px 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3a4b;
}

.header-info h2 {
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: #4b5c6b;
}

.header-info .contact {
    font-size: 1rem;
    color: #6b7b8c;
}

.section {
    margin-bottom: 36px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3a4b;
    margin-bottom: 16px;
    border-left: 4px solid #4b90e2;
    padding-left: 12px;
}

.section-content {
    padding-left: 16px;
}

ul {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .resume-container {
        padding: 20px 8px;
    }
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-pic {
        margin-bottom: 16px;
        margin-right: 0;
    }
}
