@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s16-body-bg: transparent;
  --s16-body-bg-hover: transparent;
  --s16-body-border-radius: 0;
  --s16-body-border-width: 0;
  --s16-body-border-color: transparent;

  /* Card  */

  --s16-card-border-radius: 15px;
  --s16-card-border-width: 5px;
  --s16-card-border-color: #2c3e504d;
  --card-box-shadow-color-hover: #00000033;
  --s16-card-bg-color-1: #ffa726;
  --s16-card-bg-color-2: #ff5f6d;
  --s16-card-bg-color-hover-1: #bdc3c7;
  --s16-card-bg-color-hover-2: #2c3e50;

  /* Image Container  */

  --s16-image-container-border-radius: 50% / 70%;
  --s16-image-container-border-width: 0;
  --s16-image-container-border-color: transparent;
  --s16-image-container-bg: transparent;
  --s16-image-container-bg-hover: transparent;

  /* Image  */

  --s16-image-border-radius: 0;
  --s16-image-border-width: 0;
  --s16-image-border-color: transparent;

  /* Info Box  */
  --s16-info-box-border-radius: 0;
  --s16-info-box-border-width: 0;
  --s16-info-box-border-color: 0;
  --s16-info-box-bg: #2c3e50;
  --s16-info-box-bg-hover: #2c3e50;

  /* Info  */

  --s16-info-color: #ecf0f1;
  --s16-info-font-family: "Montserrat", sans-serif;
  --s16-info-font-size: 13px;

  /* Name  */

  --s16-name-shadow-color: #00000033;
  --s16-name-color: #fff;
  --s16-name-font-size: 20px;
  --s16-name-font-weight: 500;
  --s16-name-margin-top: 20px;
  --s16-name-margin-bottom: 10px;
  --s16-name-color-hover: #fff;
  --s16-name-font-family: "Montserrat";

  /* Designation  */

  --s16-designation-color: #fff;
  --s16-designation-font-weight: 400;
  --s16-designation-font-size: 14px;
  --s16-designation-font-family: "Montserrat";
  --s16-designation-margin-top: 0;
  --s16-designation-margin-bottom: 10px;
  --s16-designation-color-hover: #fff;

  /* Social Links  */

  --s16-social-links-bg-color-1: #2c3e50e6;
  --s16-social-links-bg-color-2: #2c3e50f7;
  --s16-social-links-border-width: 0;
  --s16-social-links-border-radius: 0;
  --s16-social-links-border-color: transparent;
  --s16-social-links-margin-top: 0;
  --s16-social-links-margin-bottom: 0;

  /* Social Link  */
  --s16-social-link-bg-size: 10px;
  --s16-social-link-icon-size: 24px;
  --s16-social-link-border-radius: 10px;
  --s16-social-link-border-width: 0;
  --s16-social-link-color: #007bff;
  --s16-social-link-border-color: transparent;
  --s16-social-link-color-hover: #76aaff;

  /* ................................... */
  /* Expertise Section  */
  --s16-exp-section-font-family: Arial;
  --s16-exp-section-bg: #f8f9fa00;
  --s16-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s16-exp-item-bg: #fff;
  --s16-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s16-exp-label-font-size: 10px;
  --s16-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s16-exp-progress-bar-container-bg: #e0e0e0;
  --s16-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s16-exp-progress-bar-color-1: #43a047;
  --s16-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s16-exp-progress-percentage-color: #111;

  /* _______________________________________________________*/

  --s16-social-links-bg: linear-gradient(90deg, var(--s16-social-links-bg-color-1), var(--s16-social-links-bg-color-2));

}

.style_16 {
  background-color: var(--s16-body-bg);
  border-radius: var(--s16-body-border-radius);
  border-width: var(--s16-body-border-width);
  border-color: var(--s16-body-border-color);
  border-style: solid;
}

.style_16:hover {
  background-color: var(--s16-body-bg-hover);
}

.style_16 .card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  cursor: pointer;
  border-radius: var(--s16-card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: perspective(600px) rotateY(0deg);
  overflow: hidden;
  border: var(--s16-card-border-width) solid var(--s16-card-border-color);
  background-clip: padding-box;
  background-image: linear-gradient(white, white),
    radial-gradient(circle at top left,
      var(--s16-card-bg-color-1),
      var(--s16-card-bg-color-2));
  padding: 0px;
}

.style_16 .card:hover {
  width: 100%;
  height: 96%;
  box-shadow: 0 15px 40px var(--card-box-shadow-color-hover);
  transform: perspective(600px) rotateY(-10deg);
  background: linear-gradient(135deg,
      var(--s16-card-bg-color-hover-1),
      var(--s16-card-bg-color-hover-2));
  background-size: 1000px 1000px;
  animation: shimmer 2s infinite;
  transition: all 0.3 ease;
}

.style_16 .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  width: 100%;
  height: 70%;
  border-radius: var(--s16-image-container-border-radius);
  border-width: var(--s16-image-container-border-width);
  border-color: var(--s16-image-container-border-color);
  background-color: var(--s16-image-container-bg);
}

.style_16 .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--s16-image-border-radius);
  border-width: var(--s16-image-border-width);
  border-color: var(--s16-image-border-color);
  border-style: solid;
}

.style_16 .info-box {
  animation: slideUp 0.7s forwards 0.5s;
  flex: 1;
  padding: 0 10px 5px 10px;
  background-color: var(--s16-info-box-bg);
  border-radius: var(--s16-info-box-border-radius);
  border-width: var(--s16-info-box-border-width);
  border-color: var(--s16-info-box-border-color);
  border-style: solid;
}

.style_16 .card:hover .info-box {
  background-color: var(--s16-info-box-bg-hover);
}

.style_16 .info {
  font-weight: 300;
  text-decoration: none;
  color: var(--s16-info-color);
  font-family: var(--s16-info-font-family);
  font-size: var(--s16-info-font-size);
  transition: color 0.3s;
}

.style_16 .info.name {
  font-size: var(--s16-name-font-size);
  text-shadow: 0 2px 5px var(--s16-name-shadow-color);
  color: var(--s16-name-color);
  font-weight: var(--s16-name-font-weight);
  font-family: var(--s16-name-font-family);
  margin-top: var(--s16-name-margin-top);
  margin-bottom: var(--s16-name-margin-bottom);
}

.style_16 .card:hover .name {
  color: var(--s16-name-color-hover);
}

.style_16 .designation {
  font-size: var(--s16-designation-font-size);
  line-height: 1.8em;
  letter-spacing: 0.05em;
  opacity: 0.9;
  color: var(--s16-designation-color);
  font-weight: var(--s16-designation-font-weight);
  font-family: var(--s16-designation-font-family);
  margin-top: var(--s16-designation-margin-top);
  margin-bottom: var(--s16-designation-margin-bottom);
}

.style_16 .card:hover .designation {
  color: var(--s16-designation-color-hover);
}

.style_16 a.tweb {
  color: var(--s16-info-color);
}

.style_16 .social-links {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  padding: 4px;
  transition: bottom 2s ease-in-out;
  text-align: center;
  background: var(--s16-social-links-bg);
  border-width: var(--s16-social-links-border-width);
  border-color: var(--s16-social-links-border-color);
  border-radius: var(--s16-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s16-social-links-margin-top);
  margin-bottom: var(--s16-social-links-margin-bottom);
}

.style_16 .card:hover .social-links {
  background-color: var(--s16-social-links-bg-hover);
}

.style_16 .social-links .social-link {
  display: inline-block;
  padding: var(--s16-social-link-bg-size);
  font-size: var(--s16-social-link-icon-size);
  border-radius: var(--s16-social-link-border-radius);
  border-width: var(--s16-social-link-border-width);
  border-color: var(--s16-social-link-border-color);
  border-style: solid;
  visibility: visible;
  transition: transform 0.3s ease, all 0.3s;
  text-align: center;
  color: var(--s16-social-link-color);
  text-decoration: none;
}

.style_16 .social-link :hover {
  color: var(--s16-social-link-color-hover);
  transform: rotateZ(360deg) scale(1.2);
}

.style_16 .tweb::before,
.style_16 .info-box .phone::before,
.style_16 .info-box .email::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_16 .info-box .email::before {
  content: "\f0e0";
}

.style_16 .info-box .phone::before {
  content: "\f095";
}

.style_16 .tweb::before {
  content: "\f57d";
}

.style_16 .tweb {
  text-decoration: none !important;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ....................................... */


.style_16  .expertise-section {
  font-family: var(--s16-exp-section-font-family);
  background-color: var(--s16-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s16-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_16  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_16  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s16-exp-item-bg);
}

.style_16  .expertise-label {
  font-size: var(--s16-exp-label-font-size);
  font-weight: var(--s16-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_16  .progress-container {
  background-color: var(--s16-exp-progress-bar-container-bg);
  border-radius: var(--s16-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_16  .progress-bar {
  background: linear-gradient(60deg, var(--s16-exp-progress-bar-color-1), var(--s16-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_16  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s16-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}