/* =========================================================
       PROFILE PAGE VARIABLES
    ========================================================= */

:root {
  --ph-primary: #0756d9;
  --ph-primary-light: #f0e8ff;
  --ph-green: #08a66a;
  --ph-green-dark: #078b5b;
  --ph-green-light: #eafbf4;
  --ph-text: #171717;
  --ph-text-light: #555555;
  --ph-muted: #777777;
  --ph-border: #e6e6e6;
  --ph-bg: #ffffff;
  --ph-soft-bg: #fafafa;
  --ph-purple-border: #7a48ff;
  --ph-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  --ph-radius: 7px;
}

/* =========================================================
       GLOBAL
    ========================================================= */

.ph-profile-page {
  width: 100%;
  background: #fff;

  font-size: 14px;
  line-height: 1.45;
}

.ph-profile-page *,
.ph-profile-page *::before,
.ph-profile-page *::after {
  box-sizing: border-box;
}

.ph-section {
  margin-top: 34px;
}

/* =========================================================
       PROFILE HERO
    ========================================================= */

.ph-profile-hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 0 0 12px 12px;
  background: #0756d91f;
}


.ph-profile-hero-inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;
  padding: 35px 24px;
}

.ph-avatar {
 
  flex: 0 0 100px;

}

.ph-avatar img {
  width: 100%;

}

.ph-profile-heading {
  padding-bottom: 5px;
}

.ph-profile-name {
  margin: 0 0 6px;
  color: #151515;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.ph-profile-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: #0756d9;
  font-size: 16px;
  font-weight: 500;
}

.ph-meta-separator {
  opacity: 0.55;
}

/* =========================================================
       PROFILE INFORMATION
    ========================================================= */

.ph-profile-info {
  padding-top: 25px;
}

.ph-info-grid {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  row-gap: 9px;
  column-gap: 10px;
}

.ph-info-label {
  color: #0025ad;

  font-size: 16px;
  font-weight: 500;
}

.ph-info-value {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
}

.ph-info-value a {
  color: #0756d9;
  text-decoration: none;
}

.ph-info-value a:hover {
  text-decoration: underline;
}

/* =========================================================
       SKILL TAGS
    ========================================================= */

.ph-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.ph-tag {
  display: inline-flex;
  align-items: center;
  /* min-height: 22px; */
  padding: 10px;
  border: 1px solid rgba(101, 55, 245, 0.08);
  border-radius: 3px;
  background: #f7f3ff;
  color: #0756d9;
  font-size: 14px;
  line-height: 1;
}

.ph-tag.green {
  background: var(--ph-green-light);
  color: var(--ph-green-dark);
  border-color: rgba(8, 166, 106, 0.1);
}

/* =========================================================
       STATISTICS
    ========================================================= */

.ph-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.ph-stat-card {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  background: #fff;
  box-shadow: var(--ph-shadow);
}

.ph-stat-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
 

}

.ph-stat-content {
  min-width: 0;
  flex: 1;
}

.ph-stat-number {
  display: block;
  margin-bottom: 3px;
  color: #202020;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.ph-stat-text {
  font-size: 16px;
}


/* =========================================================
       PROFESSIONAL PROFILE
    ========================================================= */

.ph-profile-box {
  padding: 17px 18px;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  background: #fff;
  box-shadow: var(--ph-shadow);
}

.profile-box-title {
  margin: 0 0 15px;
  color: #0025ad;
  font-size: 18px;
  font-weight: 600;
}

.para {
  margin: 0 0 10px;
  color: #3f3f3f;
  font-size: 16px;
  line-height: 1.5;
}

.ph-profile-box p:last-child {
  margin-bottom: 0;
}

/* =========================================================
       EDUCATION
    ========================================================= */

.ph-education-list {
  border-top: 1px solid var(--ph-border);
}

.ph-education-item {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ph-border);
}

.ph-education-year {
  font-size: 14px;
  font-weight: 500;
}

.ph-education-title {
  margin: 0 0 3px;
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

/* =========================================================
       CORE AREAS OF EXPERTISE
    ========================================================= */



.ph-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.ph-expertise-card {
  height: 100%;
  padding: 20px;
  border: 1px solid #0025ad1a;
  border-top: 2px solid #0025ad;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.025);
}

.ph-expertise-card:nth-child(even) {
  border-top-color: #0025ad;
}

.ph-expertise-card h3 {
  margin: 0 0 6px;
  color: #222;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

/* =========================================================
       INDUSTRY COVERAGE
    ========================================================= */

.ph-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ph-industry-card {
  padding: 12px;
  border: 1px solid var(--ph-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--ph-shadow);
}

.ph-industry-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  background: #ecfdf5;
}

.ph-industry-card h3 {
  margin: 0 0 5px;
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

/* =========================================================
       SELECTED RESEARCH PROJECTS
    ========================================================= */

.ph-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ph-project-card {
  overflow: hidden;
  border: 1px solid var(--ph-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--ph-shadow);
}

.ph-project-heading {
  padding: 12px;
  background: #0025ad0f;
  color: #0756d9;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.ph-project-body {
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.ph-project-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  background: #fafafa;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.1;
}

/* =========================================================
       KEY PROFESSIONAL SKILLS
    ========================================================= */

.ph-skills-box {
  padding: 16px;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  background: #fff;
  box-shadow: var(--ph-shadow);
}

.ph-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ph-skill {
  padding: 10px;
  border-radius: 3px;
  background: #0025ad17;
  color: #3c6254;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #e4f3ed;
}

/* =========================================================
       ORGANIZATIONS
    ========================================================= */

.ph-organizations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.ph-org-column h3 {
  margin: 0 0 5px;
  color: #777;
  font-size: 16px;
  font-weight: 500;
}

.ph-org-name {
  margin: 10px 0 10px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
}

.ph-org-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ph-org-list li {
  position: relative;
  padding: 6px 0 10px 13px;
  border-bottom: 1px solid var(--ph-border);
  color: #555;
  font-size: 14px;
  line-height: 1.35;
}

.ph-org-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0756d9;
}
