@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s10-body-bg: transparent;
  --s10-body-border-radius: 0;
  --s10-body-border-width: 0;
  --s10-body-border-color: transparent;

  /* Card  */

  --s10-card-border-radius: 20% 80% 30% 70% / 60% 40% 60% 40%;
  --s10-card-border-width: 3px;
  --s10-card-border-color: #fff;
  --s10-card-bg-color-1: #f0f;
  --s10-card-bg-color-2: #37b5b5;
  --s10-card-shadow-color: #ff149135;
  --s10-card-shadow-color-hover: #ff149399;
  /* Image Container  */


  --s10-image-container-shadow-color: #00000080;
  --s10-image-container-border-radius: 40% 60% / 60% 40%;
  --s10-image-container-border-width: 0;
  --s10-image-container-border-color: transparent;
  --s10-image-container-bg: transparent;
  --s10-image-container-bg-hover: transparent;

  /* Image  */

  --s10-image-border-radius: 20% 80% 40% 70% / 60% 40% 60% 40%;
  --s10-image-border-width: 0;
  --s10-image-border-color: transparent;

  /* Info Box  */
  --s10-info-box-border-radius: 50% / 20%;
  --s10-info-box-border-width: ;
  --s10-info-box-border-color: transparent;
  --s10-info-box-bg-hover: #000000b3;
  --s10-info-box-bg: #000000b3;
  --s10-color-info-hover-bg: #ffffff99;

  /* Info  */
  --s10-info-color: #ddd;
  --s10-info-font-size: small;
  --s10-info-font-family: "Courgette";

  /* Name  */

  --s10-name-font-size: 1.3em;
  --s10-name-color: #ddd;
  --s10-name-font-weight: bold;
  --s10-name-margin-top: 0;
  --s10-name-margin-bottom: 7px;
  --s10-name-color-hover: #ddd;
  --s10-name-font-family: "Courgette";

  /* Designation  */
  --s10-designation-color: #abbbd4;
  --s10-designation-font-size: 1.15em;
  --s10-designation-font-weight: normal;
  --s10-designation-font-family: 'roboto';
  --s10-designation-margin-top: 0;
  --s10-designation-margin-bottom: 8px;
  --s10-designation-color-hover: #abbbd4;

  /* Social Links  */

  --s10-social-links-border-width: 0;
  --s10-social-links-border-radius: 22px;
  --s10-social-links-margin-top: 0;
  --s10-social-links-margin-bottom: 10px;
  --s10-social-links-bg: rgba(255, 255, 255, 0.5);
  --s10-social-links-bg-hover: rgba(255, 255, 255, 0.5);

  /* Social Link  */
  --s10-social-link-size: 18px;
  --s10-social-link-width: auto;
  --s10-social-link-height: auto;
  --s10-social-link-border-radius: 75% 25% / 60% 40%;
  --s10-social-link-border-width: 0;
  --s10-social-link-bg: #5ca1dd00;
  --s10-social-link-border-color: transparent;
  --s10-social-link-bg-hover: #9bfaf2;
  --s10-social-link-color: #fff;

  /* ................................... */
  /* Expertise Section  */
  --s10-exp-section-font-family: Arial;
  --s10-exp-section-bg: #f8f9fa00;
  --s10-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s10-exp-item-bg: #fff;
  --s10-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s10-exp-label-font-size: 10px;
  --s10-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s10-exp-progress-bar-container-bg: #e0e0e0;
  --s10-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s10-exp-progress-bar-color-1: #43a047;
  --s10-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s10-exp-progress-percentage-color: #111;
}

.style_10 {
  background-color: var(--s10-body-bg);
  border-radius: var(--s10-body-border-radius);
  border-width: var(--s10-body-border-width);
  border-color: var(--s10-body-border-color);
  border-style: solid;
}

.style_10:hover {
  background-color: var(--s10-body-bg-hover);
}

.style_10 .card {
  height: 100%;
  perspective: 12000px;
  transform-style: preserve-3d;
  transition: transform 1s ease, box-shadow 1s;
  box-shadow: 0 10px 30px var(--s10-card-shadow-color);
  background: linear-gradient(135deg,
      var(--s10-card-bg-color-1),
      var(--s10-card-bg-color-2));
  border: var(--s10-card-border-width) solid var(--s10-card-border-color);
  border-radius: var(--s10-card-border-radius);
  border-width: var(--s10-card-border-width);
  overflow: hidden !important;
  position: relative;
  cursor: pointer;
}

.style_10 .card:hover {
  transform: scale(1.03) rotate(5deg);
  box-shadow: 0 15px 45px var(--s10-card-shadow-color-hover);
  overflow: hidden !important;
}

.style_10 .card:hover::before,
.style_10 .card:hover::after {
  transform: scale(0.9);
}

.style_10 .image-container {
  transition: all 0.8s ease-in-out;
  box-shadow: 0 5px 15px var(--s10-image-container-shadow-color);
  border-radius: var(--s10-image-container-border-radius);
  border-width: var(--s10-image-container-border-width);
  border-color: var(--s10-image-container-border-color);
  background-color: var(--s10-image-container-bg);
  border-style: solid;
}

.style_10 .card:hover .image-container {
  background-color: var(--s10-image-container-bg-hover);
}

.style_10 .image-container::before,
.style_10 .image-container::after {
  content: "";
  position: absolute;
  transition: transform 0.8s ease, opacity 0.8s;
  border-radius: 50%;
  z-index: -1;
}

.style_10 .image-container::before {
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(15px);
}

.style_10 .image-container::after {
  bottom: 5%;
  right: 5%;
  width: 90%;
  height: 90%;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(15px);
}

.style_10 .profile-image {
  border-radius: var(--s10-image-border-radius);
  border-width: var(--s10-image-border-width);
  border-color: var(--s10-image-border-color);
  border-style: solid;
  transition: transform 0.8s ease-in-out, box-shadow 0.8s;
  width: 100%;
}

.style_10 .info-box {
  background: var(--s10-info-box-bg);
  backdrop-filter: blur(30px);
  border-radius: var(--s10-info-box-border-radius);
  border-width: var(--s10-info-box-border-width);
  border-color: var(--s10-info-box-border-color);
  border-style: solid;
  padding: 20px 16px;
  transition: all 0.5s ease-out;
  position: relative;
}

.style_10 .info {
  color: var(--s10-info-color);
  font-size: var(--s10-info-font-size);
  font-family: var(--s10-info-font-family);
}

.style_10 .name {
  font-size: var(--s10-name-font-size);
  color: var(--s10-name-color);
  font-weight: var(--s10-name-font-weight);
  font-family: var(--s10-name-font-family);
  margin-top: var(--s10-name-margin-top);
  margin-bottom: var(--s10-name-margin-bottom);
}

.style_10 .card:hover .name {
  color: var(--s10-name-color-hover);
}

.style_10 .designation {
  color: var(--s10-designation-color);
  font-size: var(--s10-designation-font-size);
  font-weight: var(--s10-designation-font-weight);
  font-family: var(--s10-designation-font-family);
  margin-top: var(--s10-designation-margin-top);
  margin-bottom: var(--s10-designation-margin-bottom);
}

.style_10 .card:hover .designation {
  color: var(--s10-designation-color-hover);
}

.style_10 .social-links {
  display: flex;
  justify-content: center;
  padding: 7px;
  backdrop-filter: blur(20px);
  background-color: var(--s10-social-links-bg);
  position: relative;
  width: 100%;
  bottom: 10px;
  border-width: var(--s10-social-links-border-width);
  border-radius: var(--s10-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s10-social-links-margin-top);
  margin-bottom: var(--s10-social-links-margin-bottom);
}

.style_10 .card:hover .social-links {
  background-color: var(--s10-social-links-bg-hover);
}

.style_10 .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s10-social-link-bg);
  transition: transform 0.3s ease-out, background-color 0.8s ease-out;
  text-decoration: none !important;
  color: var(--s10-social-link-color);
  width: var(--s10-social-link-width);
  height: var(--s10-social-link-height);
  border-radius: var(--s10-social-link-border-radius);
  border-width: var(--s10-social-link-border-width);
  border-color: var(--s10-social-link-border-color);
  font-size: var(--s10-social-link-size);
  border-style: solid;
}

.style_10 .social-links .social-link:hover {
  transform: scale(1.2);
  background-color: var(--s10-social-link-bg-hover);
}

.style_10 .link {
  padding: 2px;
  border-radius: var(--s10-social-link-border-radius);
  transition: transform 0.8s ease-out, color 0.8s ease-out;
}

.style_10 .link:hover {
  transform: rotate(360deg);
}

.style_10 .tweb {
  color: var(--s10-info-color);
  text-decoration: none !important;
}

.style_10 .info-box .phone::before,
.style_10 .tweb::before,
.style_10 .info-box .email::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_10 .info-box .email::before {
  content: "\f0e0";
}

.style_10 .info-box .phone::before {
  content: "\f095";
}

.style_10 .tweb::before {
  content: "\f57d";
}

/* Facebook Style */
.style_10 .facebook {
  background-color: #3b5998;
}

.style_10 .facebook:hover {
  background-color: #fff;
  color: #3b5998;
}

/* Twitter Style */
.style_10 .twitter {
  background-color: #1da1f2;
}

.style_10 .twitter:hover {
  background-color: #fff;
  color: #1da1f2;
}

/* LinkedIn Style */
.style_10 .linkedin {
  background-color: #0077b5;
}

.style_10 .linkedin:hover {
  background-color: #fff;
  color: #0077b5;
}

/* WhatsApp Style */
.style_10 .whatsapp {
  background-color: #25d366;
}

.style_10 .whatsapp:hover {
  background-color: #fff;
  color: #25d366;
}

/* Instagram Style */
.style_10 .instagram {
  background-color: #e1306c;
}

.style_10 .instagram:hover {
  background-color: #fff;
  color: #e1306c;
}

/* Pinterest Style */
.style_10 .pinterest {
  background-color: #e60023;
}

.style_10 .pinterest:hover {
  background-color: #fff;
  color: #e60023;
}

/* Discord Style */
.style_10 .discord {
  background-color: #7289da;
}

.style_10 .discord:hover {
  background-color: #fff;
  color: #7289da;
}

/* YouTube Style */
.style_10 .youtube {
  background-color: #ff0000;
}

.style_10 .youtube:hover {
  background-color: #fff;
  color: #ff0000;
}

/* Reddit Style */
.style_10 .reddit {
  background-color: #ff4500;
}

.style_10 .reddit:hover {
  background-color: #fff;
  color: #ff4500;
}

/* TikTok Style */
.style_10 .tiktok {
  background-color: #000000;
}

.style_10 .tiktok:hover {
  background-color: #fff;
  color: #000000;
}

/* Telegram Style */
.style_10 .telegram {
  background-color: #0088cc;
}

.style_10 .telegram:hover {
  background-color: #fff;
  color: #0088cc;
}

/* Quora Style */
.style_10 .quora {
  background-color: #b92b27;
}

.style_10 .quora:hover {
  background-color: #fff;
  color: #b92b27;
}

/* Tumblr Style */
.style_10 .tumblr {
  background-color: #35465c;
}

.style_10 .tumblr:hover {
  background-color: #fff;
  color: #35465c;
}

/* Vimeo Style */
.style_10 .vimeo {
  background-color: #1ab7ea;
}

.style_10 .vimeo:hover {
  background-color: #fff;
  color: #1ab7ea;
}

/* ///////////////////////// */


.style_10 .expertise-section {
  font-family: var(--s10-exp-section-font-family);

  background-color: var(--s10-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s10-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_10 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_10 .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s10-exp-item-bg);
}

.style_10 .expertise-label {
  font-size: var(--s10-exp-label-font-size);
  font-weight: var(--s10-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_10 .progress-container {
  background-color: var(--s10-exp-progress-bar-container-bg);
  border-radius: var(--s10-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_10 .progress-bar {
  background: linear-gradient(60deg, var(--s10-exp-progress-bar-color-1), var(--s10-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_10 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s10-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}