* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background: #eef2f5;
            font-family: 'Inter', sans-serif;
            line-height: 1.45;
            color: #1a2c3e;
            padding: 2rem 1rem;
        }
        .resume-card {
            max-width: 1050px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .resume-inner { padding: 2rem 2.5rem; }
        
        /* header with photo */
        .header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .name-title { flex: 1; }
        .name {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1F3B4C 0%, #2C5A6E 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.25rem;
        }
        .job-headline {
            font-size: 1rem;
            font-weight: 500;
            color: #2c6e6e;
            border-left: 4px solid #2c6e6e;
            padding-left: 0.75rem;
        }
        .profile-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #2c6e6e;
            box-shadow: 0 8px 14px rgba(0,0,0,0.1);
            background: #f0f4f7;
        }
        /* rest of the styles same as before (compact) */
        .contact-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            background: #F8FBFE;
            padding: 0.9rem 1rem;
            border-radius: 20px;
            margin: 1.2rem 0 1.6rem;
            border: 1px solid #e2edf2;
        }
        .contact-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #2c5a6e;
            text-decoration: none;
            font-weight: 500;
        }
        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1F3B4C;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 3px solid #cbdde6;
            padding-bottom: 0.4rem;
            margin: 1.5rem 0 1rem 0;
        }
        .summary-text {
            background: #FBFEF9;
            padding: 0.8rem 1rem;
            border-left: 4px solid #2c6e6e;
            border-radius: 18px;
            line-height: 1.5;
        }
        .skill-badge {
            background: white;
            border: 1px solid #cde3ec;
            padding: 0.25rem 0.9rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin: 0.2rem;
        }
        .exp-item, .project-item { margin-bottom: 1.6rem; }
        .exp-header {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 0.5rem;
        }
        .exp-role { font-weight: 700; color: #173e4c; }
        .exp-date {
            background: #f0f4f7;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        .exp-list { list-style: none; }
        .exp-list li {
            padding-left: 1.4rem;
            margin-bottom: 0.55rem;
            position: relative;
        }
        .exp-list li:before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #2c6e6e;
        }
        .education-detail {
            background: #F9FCFD;
            padding: 0.8rem 1.2rem;
            border-radius: 18px;
            border: 1px solid #e2edf2;
        }
        .action-buttons {
            display:flex;
            gap:10px;
            margin-bottom:10px;
            }

        .btn {
            padding:5px 10px;
            border-radius:20px;
            text-decoration:none;
            font-size: 10px;
}           
         .primary-btn {
            background: #2c6e6e;
             color: white;
          }
        
          .secondary-btn {
             border: 1px solid #2c6e6e;
              color: #2c6e6e;
          }
        .profile-pic {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
         }
        @media print {
            body { background: white; padding: 0; }
            .resume-card { box-shadow: none; }
            .contact-bar { background: #f5f5f5; }
        }
        @media (max-width: 680px) {
            .resume-inner { padding: 1.2rem; }
            .name { font-size: 2rem; }
            .header-row { flex-direction: column; align-items: flex-start; }
            .profile-pic { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
        }