@import url("https://fonts.googleapis.com/css2?family=Foldit&family=Yanone+Kaffeesatz:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300&display=swap");

:root {

  /* //////////////////////// */

  /* Body  */
  --s20-body-bg: transparent;
  --s20-body-bg-hover: transparent;
  --s20-body-border-radius: 0;
  --s20-body-border-width: 0;
  --s20-body-border-color: transparent;

  /* Card  */

  --s20-card-bg-color-1: #e6e9f0;
  --s20-card-bg-color-2: #eef1f5;
  --s20-card-border-radius: 20px;
  --s20-card-border-width: 0;
  --s20-card-shadow-color-hover: #00000073;
  --s20-card-border-color: transparent;

  /* Image Container  */

  --s20-image-container-border-radius: 20px 20px 0 0;
  --s20-image-container-border-width: 0;
  --s20-image-container-border-color: transparent;
  --s20-image-container-background-color: transparent;
  --s20-image-container-background-color-hover: transparent;

  /* Image  */

  --s20-image-border-radius: 0;
  --s20-image-border-width: 0;
  --s20-image-border-color: transparent;

  /* Info Box  */

  --s20-info-box-border-radius: 0;
  --s20-info-box-border-width: 0;
  --s20-info-box-border-color: transparent;
  --s20-info-box-bg-color-1: #ffffffcc;
  --s20-info-box-bg-color-2: #fffffff2;
  --s20-info-box-shadow-color: #0000001a;


  /* Info  */
  --s20-info-font-size: 0.75rem;
  --s20-info-font-family: "Dosis";
  --s20-info-color: #333;


  /* Name  */

  --s20-name-font-weight: bold;
  --s20-name-margin-top: 0;
  --s20-name-font-size: 20px;
  --s20-name-margin-bottom: 7px;
  --s20-name-color: #222;
  --s20-name-color-hover: #222;
  --s20-name-font-family: "Dosis", sans-serif;


  /* Designation  */

  --s20-designation-font-weight: normal;
  --s20-designation-font-family: "Yanone Kaffeesatz";
  --s20-designation-font-size: 16px;
  --s20-designation-margin-top: 0;
  --s20-designation-margin-bottom: 10px;
  --s20-designation-color: #0c3f2e;
  --s20-designation-color-hover: #0c3f2e;

  /* Social Links  */

  --s20-social-links-border-width: 10px;
  --s20-social-links-border-radius: 0;
  --s20-social-links-margin-top: 0;
  --s20-social-links-margin-bottom: 0;
  --s20-social-links-bg: #ffffffcc;
  --s20-social-links-border-color: transparent;
  --s20-social-links-bg-hover: transparent;
  --s20-social-links-shadow-color: #00000026;

  /* Social Link  */
  --s20-social-link-width: 30px;
  --s20-social-link-height: 30px;
  --s20-social-link-border-radius: 0;
  --s20-social-link-border-width: 0;
  --s20-social-link-size: 20px;
  --s20-social-link-color: transparent;
  --s20-social-link-bg: transparent;
  --s20-social-link-border-color: transparent;
  --s20-social-link-color: #2c3e50;
  --s20-social-link-color-hover: #007bff;
  /* ................................... */
  /* Expertise Section  */
  --s20-exp-section-font-family: Arial;
  --s20-exp-section-bg: #f8f9fa00;
  --s20-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s20-exp-item-bg: #fff;
  --s20-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s20-exp-label-font-size: 10px;
  --s20-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s20-exp-progress-bar-container-bg: #e0e0e0;
  --s20-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s20-exp-progress-bar-color-1: #43a047;
  --s20-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s20-exp-progress-percentage-color: #111;
}

.style_20 {
  background-color: var(--s20-body-bg);
  border-radius: var(--s20-body-border-radius);
  border-width: var(--s20-body-border-width);
  border-color: var(--s20-body-border-color);
}

.style_20:hover {
  background-color: var(--s20-body-bg-hover);
}

.style_20 .card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  padding: 5px;
  height: 100%;
  background-image: linear-gradient(to top right, var(--s20-card-bg-color-1) 0%, var(--s20-card-bg-color-2) 100%);
  border-radius: var(--s20-card-border-radius);
  border-width: var(--s20-card-border-width);
  border-color: var(--s20-card-border-color);
  border-style: solid;

}

.style_20 .card:hover {
  box-shadow: 0 40px 80px var(--s20-card-shadow-color-hover);
  transform: rotateZ(10px) scale(1.02);
}

.style_20 .image-container {
  transform: translateZ(100px);
  padding: 5px;
  overflow: hidden;
  border-radius: var(--s20-image-container-border-radius);
  border-width: var(--s20-image-container-border-width);
  border-color: var(--s20-image-container-border-color);
  background-color: var(--s20-image-container-background-color);
  border-style: solid;
}

.style_20 .profile-image {
  transition: transform 0.3s ease-in-out;
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(90%);
  overflow: hidden;
  scale: 1.1;
  border-radius: var(--s20-image-border-radius);
  border-width: var(--s20-image-border-width);
  border-color: var(--s20-image-border-color);
  border-style: solid;
  transition: all 0.3s;
}

.style_20 .profile-image:hover {
  transform: scale(1.05);
  filter: brightness(100%);
}

.style_20 .info-box {
  padding: 12px;
  background: linear-gradient(135deg, var(--s20-info-box-bg-color-1) 0%, var(--s20-info-box-bg-color-2) 100%);
  backdrop-filter: blur(20px);
  position: relative;
  box-shadow: inset 0 -10px 20px var(--s20-info-box-shadow-color);
  border-radius: var(--s20-info-box-border-radius);
  border-width: var(--s20-info-box-border-width);
  border-color: var(--s20-info-box-border-color);
  background-color: var(--s20-info-box-background-color);
  border-style: solid;

}

.style_20 .info-box .info {
  text-shadow: 1px 1px 2px #0000001a;
  color: var(--s20-info-color);
  font-size: var(--s20-info-font-size);
  font-family: var(--s20-info-font-family);
}


.style_20 .name {
  font-size: var(--s20-name-font-size) !important;
  font-family: var(--s20-name-font-family) !important;
  color: var(--s20-name-color) !important;
  margin-top: var(--s20-name-margin-top) !important;
  margin-bottom: var(--s20-name-margin-bottom) !important;
  font-weight: var(--s20-name-font-weight) !important;
}

.style_20 .card:hover .name {
  color: var(--s20-name-color-hover);
}

.style_20 .designation {
  font-size: var(--s20-designation-font-size) !important;
  color: var(--s20-designation-color) !important;
  font-weight: var(--s20-designation-font-weight) !important;
  font-family: var(--s20-designation-font-family) !important;
  margin-top: var(--s20-designation-margin-top) !important;
  margin-bottom: var(--s20-designation-margin-bottom) !important;

}

.style_20 .card:hover .designation {
  color: var(--s20-designation-color-hover);
}

.style_20 .tweb {
  text-decoration: none !important;
  color: var(--s20-info-color);
}

.style_20 .social-links {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background: var(--s20-social-links-bg);
  box-shadow: 0 2px 4px var(--s20-social-links-shadow-color);
  position: relative;
  border-width: var(--s20-social-links-border-width);
  border-color: var(--s20-social-links-border-color);
  border-radius: var(--s20-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s20-social-links-margin-top);
  margin-bottom: var(--s20-social-links-margin-bottom);

}

.style_20 .social-link {
  text-shadow: 1px 1px 2px #00000033;
  text-decoration: none !important;
  display: flex;
  margin: auto;
  color: var(--s20-social-link-color);
  visibility: visible;
  padding: 2px;
  background-color: var(--s20-social-link-bg);
  width: var(--s20-social-link-width);
  height: var(--s20-social-link-height);
  border-radius: var(--s20-social-link-border-radius);
  border-width: var(--s20-social-link-border-width);
  border-color: var(--s20-social-link-border-color);
  font-size: var(--s20-social-link-size);
  border-style: solid;
}

.style_20 .social-link:hover {
  color: var(--s20-social-link-color-hover);
  transform: scale(1.4);
}

.style_20 .link.whatsapp .whatsapp-number {
  z-index: 999;
}

.style_20 .tweb::before,
.style_20 .info-box .phone::before,
.style_20 .info-box .email::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_20 .info-box .email::before {
  content: "\f199";
}

.style_20 .info-box .phone::before {
  content: "\f095";
}

.style_20 .tweb::before {
  content: "\f0ac";
}


/* ....................................... */

.style_20  .expertise-section {
  font-family: var(--s20-exp-section-font-family);
  background-color: var(--s20-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s20-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_20  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_20  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s20-exp-item-bg);
}

.style_20  .expertise-label {
  font-size: var(--s20-exp-label-font-size);
  font-weight: var(--s20-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_20  .progress-container {
  background-color: var(--s20-exp-progress-bar-container-bg);
  border-radius: var(--s20-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_20  .progress-bar {
  background: linear-gradient(60deg, var(--s20-exp-progress-bar-color-1), var(--s20-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_20  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s20-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}