@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Teko:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s13-body-bg: transparent;
  --s13-body-bg-hover: transparent;
  --s13-body-border-radius: 0;
  --s13-body-border-width: 0;
  --s13-body-border-color: transparent;

  /* Card  */

  --s13-card-border-radius: 10px;
  --s13-card-bg-color-1: #3fbdaab3;
  --s13-card-bg-color-2: #16887654;
  --s13-card-bg-color-3: #8edfd39c;
  --s13-card-border-width: 0;
  --s13-card-border-color: transparent;

  /* Image Container  */

  --s13-image-container-border-radius: 0;
  --s13-image-container-border-width: 0;
  --s13-image-container-border-color: transparent;
  --s13-image-container-bg: transparent;
  --s13-image-container-bg-hover: transparent;

  /* Image  */

  --s13-image-size: 120px;
  --s13-image-border-radius: 50%;
  --s13-image-border-width: 5px;
  --s13-image-shadow-color: #0000004d;
  --s13-image-border-color: #f0f0f0;

  /* Info Box  */
  --s13-info-box-border-radius: 0;
  --s13-info-box-border-width: 0;
  --s13-info-box-border-color: transparent;
  --s13-info-box-bg: transparent;
  --s13-info-box-bg-hover: transparent;

  /* Info  */

  --s13-info-font-size: 0.75rem;
  --s13-info-bg: #f0f0f0;
  --s13-info-color: #1f695e;
  --s13-info-shadow-color-hover: #00000033;
  --s13-info-color-hover: #1f695e;
  --s13-info-bg-hover: #e1e1e1;
  --s13-info-font-family: "roboto";

  /* Name  */

  --s13-name-font-size: 0.75rem;
  --s13-name-color: #1f695e;
  --s13-name-font-weight: normal;
  --s13-name-margin-top: 5px;
  --s13-name-margin-bottom: 5px;
  --s13-name-color-hover: #1f695e;
  --s13-name-font-family: "roboto";

  /* Designation  */

  --s13-designation-font-size: 0.75rem;
  --s13-designation-color: #1f695e;
  --s13-designation-font-weight: normal;
  --s13-designation-margin-top: 0;
  --s13-designation-margin-bottom: 0;
  --s13-designation-color-hover: #1f695e;
  --s13-designation-font-family: "roboto";

  /* Social Links  */

  --s13-social-links-bg: transparent;
  --s13-social-links-border-width: 0;
  --s13-social-links-border-radius: 0;
  --s13-social-links-margin-top: 10px;
  --s13-social-links-margin-bottom: 0;
  --s13-social-links-bg-hover: transparent;

  /* Social Link  */
  --s13-social-link-width: auto;
  --s13-social-link-height: auto;
  --s13-social-link-border-radius: 5px;
  --s13-social-link-border-width: 0;
  --s13-social-link-font-size: 18px;
  --s13-social-link-color: #ffffff;
  --s13-social-link-border-color: transparent;
  --s13-social-link-bg: #2c3e50be;
  --s13-social-link-bg-hover: #1f695e;



  /* ................................... */
  /* Expertise Section  */
  --s13-exp-section-font-family: Arial;
  --s13-exp-section-bg: #f8f9fa00;
  --s13-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s13-exp-item-bg: #fff;
  --s13-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s13-exp-label-font-size: 10px;
  --s13-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s13-exp-progress-bar-container-bg: #e0e0e0;
  --s13-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s13-exp-progress-bar-color-1: #43a047;
  --s13-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s13-exp-progress-percentage-color: #111;
}

.style_13 {
  background-color: var(--s13-body-bg);
  border-radius: var(--s13-body-border-radius);
  border-width: var(--s13-body-border-width);
  border-color: var(--s13-body-border-color);
  border-style: solid;
}

.style_13:hover {
  background-color: var(--s13-body-bg-hover);
}

.style_13 .card-container {
  perspective: 1000px;
}

.style_13 .card {

  background-image: linear-gradient(45deg, var(--s13-card-bg-color-1), var(--s13-card-bg-color-2), var(--s13-card-bg-color-3));
  border-radius: var(--s13-card-border-radius);
  border-width: var(--s13-card-border-width);
  border-color: var(--s13-card-border-color);
  border-style: solid;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  transform: rotateX(-1deg) rotateY(10deg);
  padding: 21px 2px;
  width: 98%;
  margin-top: 30px !important;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.style_13 .card:hover {
  transform: rotateX(-20deg) rotateY(20deg);
}

.style_13 .image-container {
  display: flex;
  justify-content: center;
  margin-top: -50px;
  border-radius: var(--s13-image-container-border-radius);
  border-width: var(--s13-image-container-border-width);
  border-color: var(--s13-image-container-border-color);
  background: var(--s13-image-container-bg);
  border-style: solid;
}

.style_13 .image-container:hover {
  background: var(--s13-image-container-bg-hover);
}

.style_13 .profile-image {
  max-width: var(--s13-image-size);
  max-height: var(--s13-image-size);
  border-radius: var(--s13-image-border-radius);
  border: var(--s13-image-border-width) solid var(--s13-image-border-color);
  box-shadow: 0 5px 15px var(--s13-image-shadow-color);
}

.style_13 .info-box {
  width: -moz-available;
  width: 100%;
  border-radius: var(--s13-info-box-border-radius);
  border-width: var(--s13-info-box-border-width);
  border-color: var(--s13-info-box-border-color);
  background-color: var(--s13-info-box-bg);
  border-style: solid;
  transform-style: preserve-3d;
}

.style_13 .card:hover .info-box {
  background-color: var(--s13-info-box-bg-hover);
}

.style_13 .info {
  background-color: var(--s13-info-bg);
  font-size: var(--s13-info-font-size);
  color: var(--s13-info-color);
  font-family: var(--s13-info-font-family);
  border-radius: 5px;
  margin: 5px 0;
  padding: 5px;
  text-align: center;
  transform: translateZ(30px);
  transition: transform 0.3s, background-color 0.3s;
  font-weight: 500;
}

.style_13 .info:hover {
  transform: translateZ(50px);
  background-color: var(--s13-info-bg-hover);
  box-shadow: 0 5px 15px var(--s13-info-shadow-color-hover);
}

.style_13 .name {
  font-size: var(--s13-name-font-size);
  color: var(--s13-name-color);
  font-weight: var(--s13-name-font-weight);
  font-family: var(--s13-name-font-family);
  margin-top: var(--s13-name-margin-top);
  margin-bottom: var(--s13-name-margin-bottom);
}

.style_13 .card:hover .name {
  color: var(--s13-name-color-hover);
}

.style_13 .designation {
  font-size: var(--s13-designation-font-size);
  color: var(--s13-designation-color);
  font-weight: var(--s13-designation-font-weight);
  font-family: var(--s13-designation-font-family);
  margin-top: var(--s13-designation-margin-top);
  margin-bottom: var(--s13-designation-margin-bottom);
}

.style_13 .card:hover .designation {
  color: var(--s13-designation-color-hover);
}

.style_13 .social-links {
  background-color: var(--s13-social-links-bg);
  border-width: var(--s13-social-links-border-width);
  border-radius: var(--s13-social-links-border-radius);
  margin-top: var(--s13-social-links-margin-top);
  margin-bottom: var(--s13-social-links-margin-bottom);
  display: flex;
  justify-content: space-around;
  gap: 3px;
  border-style: solid;
  transform-style: preserve-3d;

}

.style_13 .card:hover .social-links {
  background-color: var(--s13-social-links-bg-hover);
}

.style_13 .social-link {
  border-radius: 5px;
  margin: 10px 0;
  text-align: center;
  text-align: center;
  background-color: var(--s13-social-link-bg);
  transition: all 0.3s;
  animation: pulse 2s infinite;
  visibility: visible;
  padding: 5px;
  transition: all 0.4s ease-out;
  color: var(--s13-social-link-color);
  width: var(--s13-social-link-width);
  height: var(--s13-social-link-height);
  border-radius: var(--s13-social-link-border-radius);
  border-width: var(--s13-social-link-border-width);
  border-color: var(--s13-social-link-border-color);
  font-size: var(--s13-social-link-font-size);
  border-style: solid;
}

.link {
  transform: translateZ(30px);
  transition: all 0.4s ease-out;
}

.link:hover {
  transform: translateZ(50px);
}

.style_13 .social-links .social-link:hover {
  background-color: var(--s13-social-link-bg-hover);
  color: rgba(44, 62, 80, 0.76);
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateZ(50px);
}

.style_13 .tweb {
  text-decoration: none !important;
  color: var(--s13-info-color);
}

.style_13 .tweb::before,
.style_13 .tweb::before,
.style_13 .info-box .email::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_13 .info-box .email::before {
  content: "\f0e0";
}

.style_13 .info-box .phone::before {
  content: "\f095";
}

.style_13 .tweb::before {
  content: "\f57d";
}

/* ....................................... */


.style_13  .expertise-section {
  font-family: var(--s13-exp-section-font-family);
  background-color: var(--s13-exp-section-bg);
  border-radius: var(--s13-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_13  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_13  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s13-exp-item-bg);
}

.style_13  .expertise-label {
  font-size: var(--s13-exp-label-font-size);
  font-weight: var(--s13-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_13  .progress-container {
  background-color: var(--s13-exp-progress-bar-container-bg);
  border-radius: var(--s13-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_13  .progress-bar {
  background: linear-gradient(60deg, var(--s13-exp-progress-bar-color-1), var(--s13-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_13  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s13-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}