@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  */
  --s11-body-bg: transparent;
  --s11-body-bg-hover: transparent;
  --s11-body-border-radius: 0;
  --s11-body-border-width: 0;
  --s11-body-border-color: transparent;

  /* Card  */

  --s11-card-bg: #fff;
  --s11-card-bg-hover: #fff;
  --s11-card-shadow-color: #00000033;
  --s11-card-border-radius: 10px;
  --s11-card-border-width: 0;
  --s11-card-border-color: transparent;

  /* Image Container  */

  --s11-image-container-border-radius: 10px 10px 20px 20px;
  --s11-image-container-border-width: 0;
  --s11-image-container-border-color: transparent;
  --s11-image-container-bg: #e0e0e0;
  --s11-image-container-bg-hover: #e0e0e0;

  /* Image  */
  --s11-image-border-radius: 0;
  --s11-image-size: 9rem;
  --s11-image-border-width: 0;
  --s11-image-shadow-color: #00000033;
  --s11-image-border-color: transparent;

  /* Info Box  */
  --s11-info-box-border-radius: 8px;
  --s11-info-box-border-width: 0;
  --s11-info-box-border-color: #00000000;
  --s11-info-box-bg: #fafafa;
  --s11-info-box-bg-hover: #fafafa;
  --s11-info-box-margin-top: .5em;
  --s11-info-box-margin-bottom: .5em;

  /* Info  */

  --s11-info-color: #333;
  --s11-info-font-size: 14px;
  --s11-info-font-family: "Segoe UI";

  /* Name  */

  --s11-name-color: #000;
  --s11-name-font-weight: bold;
  --s11-name-margin-top: 0;
  --s11-name-font-size: 20px;
  --s11-name-margin-bottom: 07px;
  --s11-name-color-hover: #000;
  --s11-name-font-family: "Courgette", cursive;

  /* Designation  */

  --s11-designation-font-size: 14px;
  --s11-designation-color: #333;
  --s11-designation-font-weight: normal;
  --s11-designation-font-family: "roboto";
  --s11-designation-margin-top: 0;
  --s11-designation-margin-bottom: 0;
  --s11-designation-color-hover: #333;

  /* Social Links  */

  --s11-social-links-border-width: 0;
  --s11-social-links-border-radius: 8px;
  --s11-social-links-margin-top: 0;
  --s11-social-links-margin-bottom: 0;
  --s11-social-links-bg: #f2f2f2;
  --s11-social-links-bg-hover: #f2f2f2;
  --s1-social-links-border-color: transparent;

  /* Social Link  */

  --s11-social-link-color: #fff;
  --s11-social-link-color-bg: transparent;
  --s11-social-link-width: auto;
  --s11-social-link-height: auto;
  --s11-social-link-border-radius: 3px;
  --s11-social-link-border-width: 2px;
  --s11-social-link-border-color: transparent;
  --s11-social-link-size: 20px;

  /* ................................... */
  /* Expertise Section  */
  --s11-exp-section-font-family: Arial;
  --s11-exp-section-bg: #f8f9fa00;
  --s11-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s11-exp-item-bg: #fff;
  --s11-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s11-exp-label-font-size: 10px;
  --s11-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s11-exp-progress-bar-container-bg: #e0e0e0;
  --s11-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s11-exp-progress-bar-color-1: #43a047;
  --s11-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s11-exp-progress-percentage-color: #111;
}

.style_11 {
  background-color: var(--s11-body-bg);
  border-radius: var(--s11-body-border-radius);
  border-width: var(--s11-body-border-width);
  border-color: var(--s11-body-border-color);
  border-style: solid;
}

.style_11:hover {
  background-color: var(--s11-body-bg-hover);
}

.style_11 .card {
  padding: 5px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  margin: 20px 0px;
  width: 100%;
  border-radius: var(--s11-card-border-radius);
  border-width: var(--s11-card-border-width);
  border-color: var(--s11-card-border-color);
  background-color: var(--s11-card-bg);
  border-style: solid;
}

.style_11 .card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 25px var(--s11-card-shadow-color);
  background-color: var(--s11-card-bg-hover);
}

.style_11 .image-container {
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  border-radius: var(--s11-image-container-border-radius);
  border-width: var(--s11-image-container-border-width);
  border-color: var(--s11-image-container-border-color);
  background-color: var(--s11-image-container-bg);
  border-style: solid;
  transition: all 0.3s;
}

.style_11 .card:hover .image-container {
  background-color: var(--s11-image-container-bg-hover);
}

.style_11 .image-container img {
  max-width: var(--s11-image-size) !important;
  max-height: var(--s11-image-size);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  box-shadow: 0 4px 8px var(--s11-image-shadow-color);
  border-radius: var(--s11-image-border-radius);
  border-width: var(--s11-image-border-width);
  border-color: var(--s11-image-border-color);
  border-style: solid;
  transition: transform 0.3s;
}

.style_11 .info-box {
  background: var(--s11-info-box-bg);
  padding: 10px;
  margin-bottom: var(--s11-info-box-margin-bottom);
  margin-top: var(--s11-info-box-margin-top);
  border-radius: var(--s11-info-box-border-radius);
  border-width: var(--s11-info-box-border-width);
  border-color: var(--s11-info-box-border-color);
  border-style: solid;
}

.style_11 .card:hover .info-box {
  background-color: var(--s11-info-box-bg-hover);
}

.style_11 .info-box .info {
  font-size: var(--s11-info-font-size);
  color: var(--s11-info-color);
  font-family: var(--s11-info-font-family);
  line-height: 1.1;
}

.style_11 .tweb {
  text-decoration: none !important;
  color: var(--s11-info-color);
}

.style_11 .info-box .name {
  font-size: var(--s11-name-font-size);
  font-family: var(--s11-name-font-family);
  color: var(--s11-name-color);
  font-weight: var(--s11-name-font-weight);
  margin-top: var(--s11-name-margin-top);
  margin-bottom: var(--s11-name-margin-bottom);
}

.style_11 .info-box .designation {
  font-size: var(--s11-designation-font-size);
  color: var(--s11-designation-color);
  font-weight: var(--s11-designation-font-weight);
  font-family: var(--s11-designation-font-family);
  margin-top: var(--s11-designation-margin-top);
  margin-bottom: var(--s11-designation-margin-bottom);
}

.style_11 .card:hover .designation {
  color: var(--s11-designation-color-hover);
}



.style_11 .social-links {
  background: var(--s11-social-links-bg);
  padding: 10px;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: space-around;
  border-width: var(--s11-social-links-border-width);
  border-radius: var(--s11-social-links-border-radius);
  border-color: var(--s1-social-links-border-color);
  border-style: solid;
  margin-top: var(--s11-social-links-margin-top);
  margin-bottom: var(--s11-social-links-margin-bottom);
}

.style_11 .card:hover .social-links {
  background: var(--s11-social-links-bg-hover);
}

.style_11 .social-links .social-link {
  text-align: center;
  transition: all 0.3s, transform 0.3s ease;
  animation: pulse 2s infinite;
  visibility: visible;
  padding: 3px;
  text-decoration: none;
  color: var(--s11-social-link-color);
  background-color: var(--s11-social-link-color-bg);
  width: var(--s11-social-link-width);
  height: var(--s11-social-link-height);
  border-radius: var(--s11-social-link-border-radius);
  border-width: var(--s11-social-link-border-width);
  border-color: var(--s11-social-link-border-color);
  font-size: var(--s11-social-link-size);
  border-style: solid;
}

.style_11 .link {
  transition: transform 1.3s ease-out, color 1.3s ease-out;
}

.style_11 .social-link.facebook {
  background-color: #3b5998;
  border: 1px solid #3b5998;
}

.style_11 .social-link.facebook:hover {
  color: #3b5998;
  background-color: #fff;
}

/* Twitter */
.style_11 .social-link.twitter {
  background-color: #1da1f2;
  border: 1px solid #1da1f2;
}

.style_11 .social-link.twitter:hover {
  color: #1da1f2;
  background-color: #fff;
}

/* LinkedIn */
.style_11 .social-link.linkedin {
  background-color: #0077b5;
  border: 1px solid #0077b5;
}

.style_11 .social-link.linkedin:hover {
  color: #0077b5;
  background-color: #fff;
}

/* WhatsApp */
.style_11 .social-link.whatsapp {
  background-color: #25d366;
  border: 1px solid #25d366;
}

.style_11 .social-link.whatsapp:hover {
  color: #25d366;
  background-color: #fff;
}

/* Instagram */
.style_11 .social-link.instagram {
  background-color: #c13584;
  border: 1px solid #c13584;
}

.style_11 .social-link.instagram:hover {
  color: #c13584;
  background-color: #fff;
}

/* Pinterest */
.style_11 .social-link.pinterest {
  background-color: #bd081c;
  border: 1px solid #bd081c;
}

.style_11 .social-link.pinterest:hover {
  color: #bd081c;
  background-color: #fff;
}

/* Discord */
.style_11 .social-link.discord {
  background-color: #7289da;
  border: 1px solid #7289da;
}

.style_11 .social-link.discord:hover {
  color: #7289da;
  background-color: #fff;
}

/* YouTube */
.style_11 .social-link.youtube {
  background-color: #ff0000;
  border: 1px solid #ff0000;
}

.style_11 .social-link.youtube:hover {
  color: #ff0000;
  background-color: #fff;
}

/* Reddit */
.style_11 .social-link.reddit {
  background-color: #ff4500;
  border: 1px solid #ff4500;
}

.style_11 .social-link.reddit:hover {
  color: #ff4500;
  background-color: #fff;
}

/* TikTok */
.style_11 .social-link.tiktok {
  background-color: #000000;
  border: 1px solid #000000;
}

.style_11 .social-link.tiktok:hover {
  color: #000000;
  background-color: #fff;
}

/* Telegram */
.style_11 .social-link.telegram {
  background-color: #0088cc;
  border: 1px solid #0088cc;
}

.style_11 .social-link.telegram:hover {
  color: #0088cc;
  background-color: #fff;
}

/* Quora */
.style_11 .social-link.quora {
  background-color: #b92b27;
  border: 1px solid #b92b27;
}

.style_11 .social-link.quora:hover {
  color: #b92b27;
  background-color: #fff;
}

/* Tumblr */
.style_11 .social-link.tumblr {
  background-color: #35465c;
  border: 1px solid #35465c;
}

.style_11 .social-link.tumblr:hover {
  color: #35465c;
  background-color: #fff;
}

/* Vimeo */
.style_11 .social-link.vimeo {
  background-color: #1ab7ea;
  border: 1px solid #1ab7ea;
}

.style_11 .social-link.vimeo:hover {
  color: #1ab7ea;
  background-color: #fff;
}


/* ....................................... */

.style_11  .expertise-section {
  font-family: var(--s11-exp-section-font-family);
  background-color: var(--s11-exp-section-bg);
  border-radius: var(--s11-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_11  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_11  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s11-exp-item-bg);
}

.style_11  .expertise-label {
  font-size: var(--s11-exp-label-font-size);
  font-weight: var(--s11-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_11  .progress-container {
  background-color: var(--s11-exp-progress-bar-container-bg);
  border-radius: var(--s11-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_11  .progress-bar {
  background: linear-gradient(60deg, var(--s11-exp-progress-bar-color-1), var(--s11-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_11  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s11-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}