@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

:root {

  /* //////////////////////// */

  /* Body  */
  --s19-body-bg: transparent;
  --s19-body-bg-hover: transparent;
  --s19-body-border-radius: 0;
  --s19-body-border-width: 0;
  --s19-body-border-color: transparent;

  /* Card  */
  --s19-card-bg-color-1: #023e38ed;
  --s19-card-bg-color-2: #2d826ae6;
  --s19-card-shadow-color: #00000033;
  --s19-card-border-radius: 10px;
  --s19-card-border-width: 0;
  --s19-card-border-color: transparent;

  /* Image Container  */

  --s19-image-container-border-radius: 50%;
  --s19-image-container-border-width: 0;
  --s19-image-container-bg: #ffef00;
  --s19-image-container-border-color: transparent;
  --s19-image-container-bg-hover: transparent;
  --s19-image-container-shadow-color: #00000033;

  /* Image  */

  --s19-image-border-radius: 50%;
  --s19-image-border-width: 0;
  --s19-image-border-color: transparent;

  /* Info Box  */

  --s19-info-box-border-radius: 10px;
  --s19-info-box-border-width: 0;
  --s19-info-box-border-color: transparent;
  --s19-info-box-bg-color-1: #3333330d;
  --s19-info-box-bg-color-2: #33333305;

  /* Info  */

  --s19-info-font-family: "Montserrat", sans-serif;
  --s19-info-color: #fff2f2;
  --s19-info-font-size: 0.7rem;
  /* Name  */

  --s19-name-font-weight: bold;
  --s19-name-margin-top: 0;
  --s19-name-margin-bottom: 15px;
  --s19-name-font-family: "Cursive";
  --s19-name-color: #fff2f2;
  --s19-name-color-hover: #fff2f2;
  --s19-name-shadow-color: #00000033;
  --s19-name-font-size: 17px;

  /* Designation  */

  --s19-designation-font-size: 0.7rem;
  --s19-designation-color: #fff2f2;
  --s19-designation-font-weight: normal;
  --s19-designation-font-family: "Cursive";
  --s19-designation-margin-top: 0;
  --s19-designation-margin-bottom: 0;
  --s19-designation-color-hover: #fff2f2;

  /* Social Links  */

  --s19-social-links-border-width: 0;
  --s19-social-links-border-radius: 5px;
  --s19-social-links-margin-top: 0;
  --s19-social-links-margin-bottom: 0;
  --s19-social-links-border-color: transparent;
  --s19-social-links-bg-color-1: #33333333;
  --s19-social-links-bg-color-2: #3333334d;

  /* Social Link  */

  --s19-social-link-color: #fff2f2;
  --s19-social-link-color-bg: transparent;
  --s19-social-link-color-hover: #3b82f6;
  --s19-social-link-width: 30px;
  --s19-social-link-height: 30px;
  --s19-social-link-border-radius: 10px;
  --s19-social-link-border-width: 0;
  --s19-social-link-border-color: transparent;
  --s19-social-link-size: 24px;
  /* ................................... */
  /* Expertise Section  */
  --s19-exp-section-font-family: Arial;
  --s19-exp-section-bg: #f8f9fa00;
  --s19-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s19-exp-item-bg: #fff;
  --s19-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s19-exp-label-font-size: 10px;
  --s19-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s19-exp-progress-bar-container-bg: #e0e0e0;
  --s19-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s19-exp-progress-bar-color-1: #43a047;
  --s19-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s19-exp-progress-percentage-color: #111;

  /* ___________________________________________ */

  --s19-info-box-bg: linear-gradient(90deg, var(--s19-info-box-bg-color-1), var(--s19-info-box-bg-color-2));

}

.style_19 {
  background-color: var(--s19-body-bg);
  border-radius: var(--s19-body-border-radius);
  border-width: var(--s19-body-border-width);
  border-color: var(--s19-body-border-color);
}

.style_19 .card {
  background: linear-gradient(90deg,
      var(--s19-card-bg-color-1),
      var(--s19-card-bg-color-2));
  box-shadow: 0 0 20px var(--s19-card-shadow-color);
  text-align: center;
  width: 100%;
  height: calc(90% + 30px);
  padding: 10px 0 0 0 !important;
  transition: transform 0.3s, box-shadow 0.5s;
  margin: 20px;
  overflow: hidden;

  border-radius: var(--s19-card-border-radius);
  border-width: var(--s19-card-border-width);
  border-color: var(--s19-card-border-color);
  border-style: solid;
}

.style_19 .card:hover {
  transform: scale(1.02);
}

.style_19 .image-container {
  position: relative;
  max-width: 150px;
  max-height: 150px;
  margin: 0 auto 12px;
  overflow: hidden;
  background-color: var(--s19-image-container-bg);
  box-shadow: 0 5px 15px var(--s19-image-container-shadow-color);
  display: flex;
  justify-content: center;
  border-radius: var(--s19-image-container-border-radius);
  border-width: var(--s19-image-container-border-width);
  border-color: var(--s19-image-container-border-color);
  border-style: solid;
}

.style_19 .image-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 3px solid var(--s19-image-container-bg);
  border-radius: 50%;
  border-style: dotted dashed double outset;
  scale: 0.95;
  animation: rotate-border 5s linear infinite,
    change-border-style 6s ease-out infinite;
  scale: 0.95;
}

.style_19 .profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--s19-image-border-radius);
  border-width: var(--s19-image-border-width);
  border-color: var(--s19-image-border-color);
  border-style: solid;
}

.style_19 .profile-image:hover {
  transform: scale(1.1);
}

.style_19 .info-box {
  padding: 10px;
  margin: 0 0 30px;
  border-radius: var(--s19-info-box-border-radius);
  border-width: var(--s19-info-box-border-width);
  border-color: var(--s19-info-box-border-color);
  background: var(--s19-info-box-bg);
  border-style: solid;
}

.style_19 .info {
  margin: 10px 10px 0 0;
  color: var(--s19-info-color);
  line-height: 1;
  letter-spacing: 0.8px;
  font-size: var(--s19-info-font-size);
  font-family: var(--s19-info-font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--s19-info-color);
}

.style_19 .info.name {
  font-size: var(--s19-name-font-size);
  text-shadow: 2px 2px 4px var(--s19-name-shadow-color);
  color: var(--s19-name-color);
  font-weight: var(--s19-name-font-weight);
  font-family: var(--s19-name-font-family);
  margin-top: var(--s19-name-margin-top);
  margin-bottom: var(--s19-name-margin-bottom);
}

.style_19 .card:hover .name {
  color: var(--s19-name-color-hover);
}

.style_19 .info.designation {
  font-size: var(--s19-designation-font-size);
  color: var(--s19-designation-color);
  font-weight: var(--s19-designation-font-weight);
  font-family: var(--s19-designation-font-family);
  margin-top: var(--s19-designation-margin-top);
  margin-bottom: var(--s19-designation-margin-bottom);
}

.style_19 .card:hover .designation {
  color: var(--s19-designation-color-hover);
}

.style_19 .tweb {
  text-decoration: none;
  color: var(--s19-info-color);
}

.style_19 .card .social-links {
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, var(--s19-social-links-bg-color-1), var(--s19-social-links-bg-color-2));
  padding: 5px;
  gap: 10px;
  width: 100%;
  transition: bottom 0.3s;
  opacity: 0;
  border-style: solid;
  border-width: var(--s19-social-links-border-width);
  border-color: var(--s19-social-links-border-color);
  border-radius: var(--s19-social-links-border-radius);
  margin-top: var(--s19-social-links-margin-top);
  margin-bottom: var(--s19-social-links-margin-bottom);
}

.style_19 .card:hover .social-links {
  bottom: -5px;
  opacity: 1;
}

.style_19 .social-links .social-link {
  display: inline-block;
  animation: pulse 2s infinite;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
  padding: 3px;
  text-decoration: none;
  color: var(--s19-social-link-color);
  width: var(--s19-social-link-width);
  height: var(--s19-social-link-height);
  font-size: var(--s19-social-link-size);
  line-height: var(--s19-social-link-height);
  border-width: var(--s19-social-link-border-width);
  border-color: var(--s19-social-link-border-color);
  background-color: var(--s19-social-link-color-bg);
  border-radius: var(--s19-social-link-border-radius);
  border-style: solid;
}

.style_19 .social-link:hover {
  color: var(--s19-social-link-color-hover);
}

.style_19 .tweb::before,
.style_19 .info-box .phone::before,
.style_19 .info-box .email::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_19 .info-box .email::before {
  content: "\f0e0";
}

.style_19 .info-box .phone::before {
  content: "\f095";
}

.style_19 .tweb::before {
  content: "\f57d";
}

@keyframes rotate-border {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes change-border-style {

  0%,
  70% {
    opacity: 100%;
  }

  70%,
  100% {
    opacity: 100%;
  }
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


/* ....................................... */

.style_19  .expertise-section {
  font-family: var(--s19-exp-section-font-family);
  background-color: var(--s19-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s19-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_19  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_19  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s19-exp-item-bg);
}

.style_19  .expertise-label {
  font-size: var(--s19-exp-label-font-size);
  font-weight: var(--s19-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_19  .progress-container {
  background-color: var(--s19-exp-progress-bar-container-bg);
  border-radius: var(--s19-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_19  .progress-bar {
  background: linear-gradient(60deg, var(--s19-exp-progress-bar-color-1), var(--s19-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_19  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s19-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}