@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s17-body-bg: transparent;
  --s17-body-bg-hover: transparent;
  --s17-body-border-radius: 0;
  --s17-body-border-width: 0;
  --s17-body-border-color: transparent;

  /* Card  */

  --s17-card-border-radius: 20px;
  --s17-card-bg-color-1: #ffafbdb0;
  --s17-card-bg-color-2: #ffc3a082;
  --s17-card-border-width: 0;
  --s17-card-shadow-color-hover: #00000033;
  --s17-card-border-color: transparent;

  /* Image Container  */

  --s17-image-container-border-radius: 0;
  --s17-image-container-bg-color-1: #ffafbd;
  --s17-image-container-bg-color-2: #ffc3a0;
  --s17-image-container-border-width: 0;
  --s17-image-container-border-color: transparent;

  /* Image  */

  --s17-image-border-radius: 0;
  --s17-image-border-width: 0;
  --s17-image-border-color: transparent;
  --s17-image-shadow-color: #0000001a;

  /* Info Box  */
  --s17-info-box-border-radius: 0;
  --s17-info-box-border-width: 3px;
  --s17-info-box-bg: transparent;
  --s17-info-box-bg-hover: transparent;

  /* Info  */
  --s17-info-color: #333;
  --s17-info-font-family: "Montserrat", sans-serif;
  --s17-info-font-size: 14px;
  /* Name  */

  --s17-name-font-family: "Pacifico", cursive;
  --s17-name-font-size: 1.3rem;
  --s17-name-font-weight: 500;
  --s17-name-margin-top: 20px;
  --s17-name-margin-bottom: 0;
  --s17-name-color: #333;
  --s17-name-color-hover: #333;

  /* Designation  */

  --s17-designation-font-size: 0.95em;
  --s17-designation-color: #001426;
  --s17-designation-font-weight: normal;
  --s17-designation-font-family: 500;
  --s17-designation-margin-top: 5px;
  --s17-designation-margin-bottom: 5px;
  --s17-designation-color-hover: #001426;

  /* Social Links  */

  --s17-social-links-bg: transparent;
  --s17-social-links-border-width: 0;
  --s17-social-links-border-radius: 0;
  --s17-social-links-border-color: transparent;
  --s17-social-links-margin-top: 0;
  --s17-social-links-margin-bottom: 0;
  --s17-social-links-bg-hover: transparent;

  /* Social Link  */

  --s17-social-link-bg: #2f2c2c91;
  --s17-social-link-hover-bg: #fff;
  --s17-social-link-color: #fff;
  --s17-social-link-hover-color: #2f2c2c;
  --s17-social-link-width: auto;
  --s17-social-link-height: auto;
  --s17-social-link-border-radius: 4px;
  --s17-social-link-border-width: 0;
  --s17-social-link-border-color: transparent;
  --s17-social-link-shadow-color-hover: #00000033;
  --s17-social-link-size: 15px;

  /* ................................... */
  /* Expertise Section  */
  --s17-exp-section-font-family: Arial;
  --s17-exp-section-bg: #f8f9fa00;
  --s17-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s17-exp-item-bg: #fff;
  --s17-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s17-exp-label-font-size: 10px;
  --s17-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s17-exp-progress-bar-container-bg: #e0e0e0;
  --s17-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s17-exp-progress-bar-color-1: #43a047;
  --s17-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s17-exp-progress-percentage-color: #111;
}

.style_17 {
  background-color: var(--s17-body-bg);
  border-radius: var(--s17-body-border-radius);
  border-width: var(--s17-body-border-width);
  border-color: var(--s17-body-border-color);
}

.style_17:hover {
  background-color: var(--s17-body-bg-hover);
}

.style_17 .card {
  background: linear-gradient(45deg,
      var(--s17-card-bg-color-1),
      var(--s17-card-bg-color-2));
  border-radius: var(--s17-card-border-radius);
  border-width: var(--s17-card-border-width);
  border-color: var(--s17-card-border-color);
  border-style: solid;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  margin: 10px;
  padding: 5px;
  justify-content: center;
  max-width: 210px;
}

.style_17 .card:hover {
  transform: translateY(-10px) rotate(-3deg);
  box-shadow: 0 15px 35px var(--s17-card-shadow-color-hover);
}

.style_17 .image-container {
  background: linear-gradient(45deg, var(--s17-image-container-bg-color-1), var(--s17-image-container-bg-color-2));
  display: flex;
  position: relative;
  width: 106%;
  height: 100%;
  overflow: hidden;
  justify-content: center;
  margin: -3%;
  box-shadow: 0 2px 20px var(--s17-image-shadow-color);
  border-radius: var(--s17-image-container-border-radius);
  border-width: var(--s17-image-container-border-width);
  border-color: var(--s17-image-container-border-color);
  border-style: solid;
}

.style_17 .image-container img {
  scale: 1.21;
  transition: transform 0.5s ease;
  will-change: transform;
  max-height: 210px;
  border-radius: var(--s17-image-border-radius);
  border-width: var(--s17-image-border-width);
  border-color: var(--s17-image-border-color);
  border-style: solid;
  object-fit: cover;
}

.style_17 .card:hover .image-container img {
  transform: scale(1.05);
}

.style_17 .info-box {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--s17-info-box-bg);
  border-top: var(--s17-info-box-border-width) solid var(--s17-image-container-bg-color-2);
}

.style_17 .card:hover .info-box {
  background-color: var(--s17-info-box-bg-hover);
}

.style_17 .info {
  margin: 0;
  color: var(--s17-info-color);
  font-family: var(--s17-info-font-family);
  font-size: var(--s17-info-font-size);
  font-weight: 400;
  line-height: 1.5;
}

.style_17 .info.name {
  transition: color 0.3s;
  color: var(--s17-name-color);
  font-family: var(--s17-name-font-family);
  font-size: var(--s17-name-font-size);
  font-weight: var(--s17-name-font-weight);
  margin-top: var(--s17-name-margin-top);
  margin-bottom: var(--s17-name-margin-bottom);
}

.style_17 .card:hover .name {
  color: var(--s17-name-color-hover);
}

.style_17 .info.designation {
  font-size: var(--s17-designation-font-size);
  color: var(--s17-designation-color);
  font-weight: var(--s17-designation-font-weight);
  font-family: var(--s17-designation-font-family);
  margin-top: var(--s17-designation-margin-top);
  margin-bottom: var(--s17-designation-margin-bottom);
}

.style_17 .card:hover .designation {
  color: var(--s17-designation-color-hover);
}

.style_17 a.tweb {
  color: var(--s17-info-color);
  text-decoration: none !important;
}

.style_17 .social-links {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
  transform: translateY(5px);
  transition: transform 0.3s ease-in-out;
  opacity: 0.92;
  background-color: var(--s17-social-links-bg);
  border-width: var(--s17-social-links-border-width);
  border-color: var(--s17-social-links-border-color);
  border-radius: var(--s17-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s17-social-links-margin-top);
  margin-bottom: var(--s17-social-links-margin-bottom);
}

.style_17 .card:hover .social-links {
  background-color: var(--s17-social-links-bg-hover);
}

.style_17 .social-links .social-link {
  text-align: center;
  padding: 7px;
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--s17-social-link-bg);
  color: var(--s17-social-link-color);
  width: var(--s17-social-link-width);
  height: var(--s17-social-link-height);
  border-radius: var(--s17-social-link-border-radius);
  border-width: var(--s17-social-link-border-width);
  border-color: var(--s17-social-link-border-color);
  font-size: var(--s17-social-link-size);
  border-style: solid;
}

.style_17 .link {
  border-radius: var(--s17-social-link-border-radius);

}

.style_17 .social-link:hover {
  background-color: var(--s17-social-link-hover-bg);
  color: var(--s17-social-link-hover-color);
  box-shadow: 0 2px 5px var(--s17-social-link-shadow-color-hover);
}

.style_17 .tweb::before,
.style_17 .info-box .phone::before,
.style_17 .info-box .email::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_17 .info-box .email::before {
  content: "\f0e0";
}

.style_17 .info-box .phone::before {
  content: "\f095";
}

.style_17 .tweb::before {
  content: "\f57d";
}

/* ....................................... */


.style_17  .expertise-section {
  font-family: var(--s17-exp-section-font-family);
  background-color: var(--s17-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s17-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_17  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_17  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s17-exp-item-bg);
}

.style_17  .expertise-label {
  font-size: var(--s17-exp-label-font-size);
  font-weight: var(--s17-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_17  .progress-container {
  background-color: var(--s17-exp-progress-bar-container-bg);
  border-radius: var(--s17-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_17  .progress-bar {
  background: linear-gradient(60deg, var(--s17-exp-progress-bar-color-1), var(--s17-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_17  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s17-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}