/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* Global Font Settings */
body, p, li, span, b {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #333;
}

/* Section Headings */
h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    color: #004aad;
    text-transform: uppercase;
    border-bottom: 2px solid #004aad;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

body {
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 900px;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* Top Section */
.top {
    background: linear-gradient(135deg, #004aad, #0077cc);
    padding: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.top h2 span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-top: 4px;
    color: #dbeafe;
}

.imgBx {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Section */
.bottom {
    display: flex;
    padding: 30px;
    gap: 30px;
}

/* Left Side */
.left_side {
    flex: 1;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.left_side h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #004aad;
    text-transform: uppercase;
    border-bottom: 2px solid #004aad;
    display: inline-block;
    padding-bottom: 4px;
}

.contactInfo {
    list-style: none;
    margin-bottom: 25px;
}

.contactInfo li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contactInfo .icon {
    margin-right: 10px;
    font-size: 16px;
    color: #004aad;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}


.contactInfo .text {
    font-size: 14px;
}

/* Skills */
.skillsBox {
    margin-bottom: 15px;
}

.skillsBox p {
    margin-bottom: 6px;
    font-weight: 500;
}

.skillsBox .value {
    height: 6px;
    background: #d1d5db;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skillsBox .value::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #0077cc;
    width: var(--i, 70%);
}

/* Right Side */
.right_side {
    flex: 2;
    padding-left: 20px;
}

.right_side h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #004aad;
    text-transform: uppercase;
    border-bottom: 2px solid #004aad;
    display: inline-block;
    padding-bottom: 4px;
    margin-top: 20px;
}

.right_side p {
    margin-bottom: 15px;
    
}

.edu_groupBx {
    margin-bottom: 15px;
}

.edu_groupBx p {
    
    font-weight: 600;
    color: #555;
}

.edu_groupBx b {
    
    display: block;
    margin-bottom: 5px;
}

.edu_groupBx .value p {
    font-size: 14px;
    color: #444;
}

/* Achievements */
.right_side ul {
    margin-left: 18px;
    list-style: none;
}

.right_side ul li {
    margin-bottom: 8px;
    
}
/* PDF Button */
.print-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #004aad;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: background 0.3s ease;
    z-index: 1000;
}

.print-btn:hover {
    background: #0077cc;
}

/* Print Styles */
@media print {
    .print-btn {
        display: none !important; /* Hide button */
    }
    body {
        background: #fff;
        -webkit-print-color-adjust: exact !important; /* Safari/Chrome */
        color-adjust: exact !important;               /* Firefox */
        print-color-adjust: exact !important;         /* Modern browsers */
    }
    .container {
        box-shadow: none;
        border-radius: 0;
    }
    .top {
        background: #004aad !important; /* Force blue header */
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
}




