@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s18-body-bg: transparent;
  --s18-body-bg-hover: transparent;
  --s18-body-border-radius: 0;
  --s18-body-border-width: 0;
  --s18-body-border-color: transparent;

  /* Card  */

  --s18-card-bg: transparent;
  --s18-card-bg-hover: transparent;
  --s18-card-shadow-color: #0000001a;
  --s18-card-border-color: #008000;
  --s18-card-shadow-color-hover: #00000033;
  --s18-card-border-radius: 5px;
  --s18-card-border-width: 2px;

  /* Image Container  */

  --s18-image-container-border-radius: 0;
  --s18-image-container-border-width: 0;
  --s18-image-container-overlay-color: #00800037;
  --s18-image-container-border-color: transparent;
  --s18-image-container-bg: transparent;
  --s18-image-container-bg-hover: transparent;

  /* Image  */

  --s18-image-border-radius: 0;
  --s18-image-border-width: 0;
  --s18-image-border-color: transparent;

  /* Info Box  */
  --s18-info-box-border-radius: 0;
  --s18-info-box-border-width: 0;
  --s18-info-box-border-color: transparent;
  --s18-info-box-bg: #fff;
  --s18-info-box-bg-hover: #fff;

  /* Info */

  --s18-info-color: #333;
  --s18-info-font-sizeo: 14px;
  --s18-info-font-family: "PT Sans Narrow", sans-serif;

  /* Name  */

  --s18-name-font-size: 16px;
  --s18-name-font-weight: bold;
  --s18-name-margin-top: 0;
  --s18-name-margin-bottom: 0;
  --s18-name-font-family: "PT Sans Narrow";
  --s18-name-color: #111;
  --s18-name-color-hover: #111;

  /* Designation  */

  --s18-designation-font-size: 14px;
  --s18-designation-color: #111;
  --s18-designation-font-weight: normal;
  --s18-designation-font-family: "PT Sans Narrow";
  --s18-designation-margin-top: 0;
  --s18-designation-margin-bottom: 0;
  --s18-designation-color-hover: #111;

  /* Social Links  */

  --s18-social-links-border-width: 0;
  --s18-social-links-border-radius: 0;
  --s18-social-links-margin-top: 0;
  --s18-social-links-margin-bottom: 0;
  --s18-social-links-border-color: transparent;
  --s18-social-links-bg: transparent;
  --s18-social-links-bg-hover: transparent;
  --s18-social-links-shadow-color-hover: #0000000a;

  /* Social Link  */

  --s18-social-link-bg: #027502;
  --s18-social-link-bg-hover: #338463;
  --s18-social-link-color: #fff;
  --s18-social-link-color-hover: #ffffff;
  --s18-social-link-shadow-color: #0000003a;
  --s18-social-link-width: 30px;
  --s18-social-link-height: 30px;
  --s18-social-link-border-radius: 5px;
  --s18-social-link-border-width: 0;
  --s18-social-link-border-color: transparent;
  --s18-social-link-size: 20px;

  /* ................................... */
  /* Expertise Section  */
  --s18-exp-section-font-family: Arial;
  --s18-exp-section-bg: #f8f9fa00;
  --s18-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s18-exp-item-bg: #fff;
  --s18-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s18-exp-label-font-size: 10px;
  --s18-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s18-exp-progress-bar-container-bg: #e0e0e0;
  --s18-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s18-exp-progress-bar-color-1: #43a047;
  --s18-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s18-exp-progress-percentage-color: #111;
}

.style_18 {
  background-color: var(--s18-body-bg);
  border-radius: var(--s18-body-border-radius);
  border-width: var(--s18-body-border-width);
  border-color: var(--s18-body-border-color);
}

.style_18:hover {
  background-color: var(--s18-body-bg-hover);
}

.style_18 .card {
  border: var(--s18-card-border-width) solid var(--s18-card-border-color);
  overflow: hidden;
  box-shadow: 0 4px 8px var(--s18-card-shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 15px auto;
  background-color: var(--s18-card-bg);
  border-radius: var(--s18-card-border-radius);
}

.style_18 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px var(--s18-card-shadow-color-hover);
  background-color: var(--s18-card-bg-hover);
}

.style_18 .image-container {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--s18-image-container-border-radius);
  border-width: var(--s18-image-container-border-width);
  border-color: var(--s18-image-container-border-color);
  background-color: var(--s18-image-container-bg);
  border-style: solid;
}

.style_18 .image-container .profile-image {
  width: 100%;
  display: block;
  border-radius: var(--s18-image-border-radius);
  border-width: var(--s18-image-border-width);
  border-color: var(--s18-image-border-color);
  border-style: solid;
}

.style_18 .image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: var(--s18-image-container-overlay-color);
  transition: height 0.5s ease;
}

.style_18 .card:hover .image-container::after {
  height: 100%;
}

.style_18 .info-box {
  padding: 15px;
  background-color: var(--s18-info-box-bg);
  border-radius: var(--s18-info-box-border-radius);
  border-width: var(--s18-info-box-border-width);
  border-color: var(--s18-info-box-border-color);
  border-style: solid;
}

.style_18 .card:hover .info-box {
  background-color: var(--s18-info-box-bg-hover);
}

.style_18 .info {
  margin-bottom: 3px;
  font-size: var(--s18-info-font-sizeo);
  color: var(--s18-info-color);
  font-family: var(--s18-info-font-family);
  font-weight: 500;
}

.style_18 .info.name {
  font-size: var(--s18-name-font-size);
  color: var(--s18-name-color);
  font-weight: var(--s18-name-font-weight);
  font-family: var(--s18-name-font-family);
  margin-top: var(--s18-name-margin-top);
  margin-bottom: var(--s18-name-margin-bottom);
  text-align: center;
  position: relative;
}

.style_18 .card:hover .name {
  color: var(--s18-name-color-hover);
}

.style_18 .info.name::before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--s18-card-border-color);
  position: absolute;
  left: 50%;
  transition-duration: 0.25s;
  transform: translateX(-50%);
  bottom: 3px;
}

.style_18 .card:hover .info.name::before {
  width: 110px;
}

.style_18 .info.name::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  margin-top: 0px;
  background: var(--s18-card-border-color);
  outline: 4px solid #fff;
}

.style_18 .designation {
  font-size: var(--s18-designation-font-size);
  color: var(--s18-designation-color);
  font-weight: var(--s18-designation-font-weight);
  font-family: var(--s18-designation-font-family);
  margin-top: var(--s18-designation-margin-top);
  margin-bottom: var(--s18-designation-margin-bottom);
}

.style_18 .card:hover .designation {
  color: var(--s18-designation-color-hover);
}

.style_18 .social-links {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
  text-align: left;
  position: absolute;
  right: 2%;
  top: -50%;
  transition: all 0.3s ease;
  gap: 2px 0;
  background-color: var(--s18-social-links-bg);
  border-width: var(--s18-social-links-border-width);
  border-color: var(--s18-social-links-border-color);
  border-radius: var(--s18-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s18-social-links-margin-top);
  margin-bottom: var(--s18-social-links-margin-bottom);
}

.style_18 .card:hover .social-links {
  display: flex;
  flex-direction: column;
  background-color: var(--s18-social-links-bg-hover);
  box-shadow: 0 5px 10px var(--s18-social-links-shadow-color-hover);
  text-align: left;
  position: absolute;
  right: 2%;
  top: 2%;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.style_18 .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s ease;
  background-color: var(--s18-social-link-bg);
  box-shadow: 0 5px 10px var(--s18-social-link-shadow-color);
  width: var(--s18-social-link-width);
  height: var(--s18-social-link-height);
  color: var(--s18-social-link-color);
  border-radius: var(--s18-social-link-border-radius);
  border-width: var(--s18-social-link-border-width);
  border-color: var(--s18-social-link-border-color);
  font-size: var(--s18-social-link-size);
  border-style: solid;
  padding: 5px;
}

.style_18 .card .social-link:hover {
  transform: scale(1.1);
  background-color: var(--s18-social-link-bg-hover);
}

.style_18 .card:hover .social-link {
  border-radius: 4px;
  transition: all 0.5s ease;
  color: var(--s18-social-link-color-hover);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.7);
}

.style_18 .tweb {
  text-decoration: none !important;
  color: var(--s18-info-color);
}

.style_18 .link.whatsapp .whatsapp-number {
  display: none !important;
}

.style_18 .tweb::before,
.style_18 .info-box .phone::before,
.style_18 .info-box .email::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_18 .info-box .email::before {
  content: "\f0e0";
}

.style_18 .info-box .phone::before {
  content: "\f095";
}

.style_18 .tweb::before {
  content: "\f57d";
}


/* ....................................... */


.style_18  .expertise-section {
    font-family: var(--s18-exp-section-font-family);
    background-color: var(--s18-exp-section-bg);
    /* padding: 1px 13px; */
    border-radius: var(--s18-exp-section-border-radius);
    width: 98%;
    margin: 15px 1% 0 1%;
  
  }
  
  .style_18  .expertise-item {
    display: flex;
    justify-content: space-between;
    margin: 2px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_18  .1);
    padding: 1px;
    border-radius: 5px;
    background: var(--s18-exp-item-bg);
  }
  
  .style_18  .expertise-label {
    font-size: var(--s18-exp-label-font-size);
    font-weight: var(--s18-exp-label-font-weight);
    flex-basis: 50%;
    text-align: left;
    margin-left: 2px;
  }
  
  .style_18  .progress-container {
    background-color: var(--s18-exp-progress-bar-container-bg);
    border-radius: var(--s18-exp-progress-bar-container-border-radius);
    overflow: hidden;
    height: 20px;
    position: relative;
    flex-grow: 1;
    margin-left: 10px;
    height: 11px;
    margin: auto;
  }
  
  .style_18  .progress-bar {
    background: linear-gradient(60deg, var(--s18-exp-progress-bar-color-1), var(--s18-exp-progress-bar-color-2));
    height: 100%;
    width: 0;
    transition: width 2s ease;
    position: relative;
  }
  
  .style_18  .progress-percentage {
    position: absolute;
    right: 5px;
    top: -5px;
    line-height: 20px;
    font-size: 10px;
    color: var(--s18-exp-progress-percentage-color);
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
  }
  