@import url("https://fonts.googleapis.com/css2?family=Arial&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s15-body-bg: transparent;
  --s15-body-bg-hover: transparent;
  --s15-body-border-radius: 0;
  --s15-body-border-width: 0;
  --s15-body-border-color: transparent;

  /* Card  */

  --s15-card-bg: #f8f8f8;
  --s15-card-bg-hover: #f8f8f8;
  --s15-card-shadow-color-hover: #00000080;
  --s15-card-border-radius: 15px;
  --s15-card-border-width: 0;
  --s15-card-border-color: transparent;

  /* Image Container  */

  --s15-image-container-border-radius: 0;
  --s15-image-container-border-width: 0;
  --s15-image-container-border-color: 0;
  --s15-image-container-bg: transparent;
  --s15-image-container-bg-hover: transparent;

  /* Image  */

  --s15-image-shadow-color: #0000004d;
  --s15-image-border-radius: 10px;
  --s15-image-border-width: 0;
  --s15-image-border-color: 0;

  /* Info Box  */
  --s15-info-box-border-radius: 10px;
  --s15-info-box-border-width: 0;
  --s15-info-box-border-color: 0;
  --s15-info-box-bg: #ffffffcc;
  --s15-info-box-bg-hover: #ffffffcc;
  --s15-info-box-shadow-color: #00000033;

  /* Info  */

  --s15-info-font-family: "Arial", sans-serif;
  --s15-info-color: #333;
  --s15-info-bg: #f8f8f8;
  --s15-info-bg-2: #7ee7ff;
  --s15-info-font-size: 15px;

  /* Name  */

  --s15-name-font-size: 17px;
  --s15-name-font-weight: bold;
  --s15-name-margin-top: 0;
  --s15-name-margin-bottom: 10px;
  --s15-name-color: #02647a;
  --s15-name-color-hover: #02647a;
  --s15-name-font-family: "Arial";

  /* Designation  */

  --s15-designation-font-size: 16px;
  --s15-designation-color: #222;
  --s15-designation-font-weight: normal;
  --s15-designation-font-family: "Arial";
  --s15-designation-margin-top: 0;
  --s15-designation-margin-bottom: 10px;
  --s15-designation-color-hover: #222;

  /* Social Links  */

  --s15-social-links-bg: transparent;
  --s15-social-links-border-width: 0;
  --s15-social-links-border-radius: 10px;
  --s15-social-links-border-color: transparent;
  --s15-social-links-margin-top: 0;
  --s15-social-links-margin-bottom: 0;
  --s15-color-shadow-social-links: #0000004d;
  --s15-social-links-bg-hover: transparent;

  /* Social Link  */

  --s15-social-link-color: #0085ba;
  --s15-social-link-color-bg: transparent;
  --s15-social-link-width: 30px;
  --s15-social-link-height: 30px;
  --s15-social-link-border-radius: 0;
  --s15-social-link-border-width: 0;
  --s15-social-link-border-color: transparent;
  --s15-social-link-size: 20px;
  --s15-social-link-box-shadow-hover-color: #00000099;

  /* ................................... */
  /* Expertise Section  */
  --s15-exp-section-font-family: Arial;
  --s15-exp-section-bg: #f8f9fa00;
  --s15-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s15-exp-item-bg: #fff;
  --s15-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s15-exp-label-font-size: 10px;
  --s15-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s15-exp-progress-bar-container-bg: #e0e0e0;
  --s15-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s15-exp-progress-bar-color-1: #43a047;
  --s15-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s15-exp-progress-percentage-color: #111;
}

.style_15 {
  background-color: var(--s15-body-bg);
  border-radius: var(--s15-body-border-radius);
  border-width: var(--s15-body-border-width);
  border-color: var(--s15-body-border-color);
  border-style: solid;
}

.style_15:hover {
  background-color: var(--s15-body-bg-hover);
}

.style_15 .card {
  background-color: var(--s15-card-bg);
  border-radius: var(--s15-card-border-radius);
  border-width: var(--s15-card-border-width);
  border-color: var(--s15-card-border-color);
  border-style: solid;
  transform: perspective(600px) rotateY(0deg) rotateX(0deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin: 20px auto;
}

.style_15 .card:hover {
  transform: perspective(900px) rotateY(-10deg) rotateX(5deg) translateY(-20px);
  box-shadow: 0 30px 60px var(--s15-card-shadow-color-hover);
  background-color: var(--s15-card-bg-hover);
}

.style_15 .image-container {
  transform: translateZ(50px);
  border-radius: var(--s15-image-container-border-radius);
  border-width: var(--s15-image-container-border-width);
  border-color: var(--s15-image-container-border-color);
  background-color: var(--s15-image-container-bg);
  border-style: solid;
}

.style_15 .card:hover .image-container {
  background-color: var(--s15-image-container-bg-hover);
}

.style_15 .profile-image {
  width: 100%;
  height: 100%;
  border-radius: var(--s15-image-border-radius);
  border-width: var(--s15-image-border-width);
  border-color: var(--s15-image-border-color);
  border-style: solid;
  box-shadow: 0 5px 15px var(--s15-image-shadow-color);
}

.style_15 .info-box {
  background-color: var(--s15-info-box-bg);
  padding: 15px;
  transform: translateZ(50px);
  box-shadow: 0 10px 25px var(--s15-info-box-shadow-color);
  border-radius: var(--s15-info-box-border-radius);
  border-width: var(--s15-info-box-border-width);
  border-color: var(--s15-info-box-border-color);
  border-style: solid;
}

.style_15 .info {
  font-family: var(--s15-info-font-family);
  color: var(--s15-info-color);
  transform: translateZ(20px);
  background-color: var(--s15-info-bg);
  transform-style: preserve-3d;
  font-size: var(--s15-info-font-size);
}

.style_15 .info-box .name {
  color: var(--s15-name-color);
  font-size: var(--s15-name-font-size);
  font-weight: var(--s15-name-font-weight);
  font-family: var(--s15-name-font-family);
  margin-top: var(--s15-name-margin-top);
  margin-bottom: var(--s15-name-margin-bottom);
  transform: translateZ(-30px);
}

.style_15 .card:hover .name {
  color: var(--s15-name-color-hover);
}

.style_15 .designation {
  font-size: var(--s15-designation-font-size);
  color: var(--s15-designation-color);
  font-weight: var(--s15-designation-font-weight);
  font-family: var(--s15-designation-font-family);
  margin-top: var(--s15-designation-margin-top);
  margin-bottom: var(--s15-designation-margin-bottom);
}

.style_15 .card:hover .designation {
  color: var(--s15-designation-color-hover);
}

.style_15 .info-box .phone,
.style_15 .info-box .email,
.style_15 .info-box .website {
  display: block;
  padding: 5px;
  background-color: var(--s15-info-bg-2);
  transform: translateZ(-10px);
  transition: transform 0.3s ease;
}

.style_15 .info-box .phone {
  margin-top: 5px;
  border-radius: 10px 10px 0 0;
}

.style_15 .info-box .email {
  margin-top: -5px;
  border-top: none;
}

.style_15 .info-box .website {
  margin-top: -5px;
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin-bottom: 5px;
}

.style_15 .tweb {
  text-decoration: none !important;
  color: var(--s15-info-color);
}

.style_15 .info-box:hover .phone,
.style_15 .info-box:hover .email,
.style_15 .info-box:hover .website {
  transform: translateZ(-5px);
}

.style_15 .social-links {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 2px;
  transition: right 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  transform: perspective(600px) rotateX(-20deg) translateZ(0px);
  background-color: var(--s15-social-links-bg);
  border-width: var(--s15-social-links-border-width);
  border-color: var(--s15-social-links-border-color);
  border-radius: var(--s15-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s15-social-links-margin-top);
  margin-bottom: var(--s15-social-links-margin-bottom);
}

.style_15 .card:hover .social-links {
  opacity: 1;
  right: 10px;
  transform: perspective(600px) rotateX(0deg) translateZ(50px);
  background-color: var(--s15-social-links-bg-hover);
}

.style_15 .social-links .social-link {
  color: var(--s15-social-link-color);
  background-color: var(--s15-social-link-color-bg);
  width: var(--s15-social-link-width);
  height: var(--s15-social-link-height);
  border-radius: var(--s15-social-link-border-radius);
  border-width: var(--s15-social-link-border-width);
  border-color: var(--s15-social-link-border-color);
  font-size: var(--s15-social-link-size);
  border-style: solid;
  visibility: visible;
  transition: transform 0.3s ease;
  padding: 3px 4px;
}

.style_15 .social-links .link {
  border-radius: var(--s15-social-link-border-radius);
}

.style_15 .social-links .link:hover {
  transform: translateZ(20px) scale(1.1);
  box-shadow: 0 10px 20px var(--s15-social-link-box-shadow-hover-color);
}

.style_15 .tweb::before,
.style_15 .info-box .phone::before,
.style_15 .info-box .email::before {
  content: " ";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_15 .info-box .email::before {
  content: "\f0e0";
}

.style_15 .info-box .phone::before {
  content: "\f095";
}

.style_15 .tweb::before {
  content: "\f57d";
}

.style_15 .link.whatsapp {
  display: flex;
  justify-content: center;
}


/* ....................................... */


.style_15  .expertise-section {
  font-family: var(--s15-exp-section-font-family);
  background-color: var(--s15-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s15-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_15  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_15  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s15-exp-item-bg);
}

.style_15  .expertise-label {
  font-size: var(--s15-exp-label-font-size);
  font-weight: var(--s15-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_15  .progress-container {
  background-color: var(--s15-exp-progress-bar-container-bg);
  border-radius: var(--s15-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_15  .progress-bar {
  background: linear-gradient(60deg, var(--s15-exp-progress-bar-color-1), var(--s15-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_15  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s15-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}