@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400&display=swap");

:root {

  /* //////////////////////// */

  /* Body  */
  --s9-body-bg: transparent;
  --s9-body-border-radius: 0;
  --s9-body-border-width: 0;
  --s9-body-border-color: transparent;

  /* Card  */
  --s9-card-bg: #b0b0b0c2;
  --s9-card-bg-hover: #b0b0b0c2;
  --s9-card-border-radius: 15px;
  --s9-card-border-width: 0;
  --s9-card-border-color: transparent;
  --s8-card-shadow-color-hover: #00000026;

  /* Image Container  */

  --s9-image-container-border-radius: 0;
  --s9-image-container-border-width: 0;
  --s9-image-container-border-color: transparent;
  --s9-image-container-bg: transparent;
  --s9-image-container-bg-hover: transparent;

  /* Image  */

  --s9-image-shadow-color: #00000033;
  --s9-image-border-color: #0056b3;
  --s9-image-size: 120px;
  --s9-image-border-radius: 50%;
  --s9-image-border-width: 3px;

  /* Info Box  */

  --s9-info-box-border-radius: 0;
  --s9-info-box-border-width: 0;
  --s9-info-box-border-color: transparent;
  --s9-info-box-bg: transparent;
  --s9-info-box-bg-hover: transparent;

  /* Info   */

  --s9-info-font-size: 16px;
  --s9-info-color: #333;
  --s9-info-font-family: "Montserrat", sans-serif;

  /* Name  */

  --s9-name-font-size: 20px;
  --s9-name-font-weight: bold;
  --s9-name-margin-top: 0;
  --s9-name-margin-bottom: 7px;
  --s9-name-color: #0056b3;
  --s9-name-color-hover: #0056b3;
  --s9-name-font-family: "Teko", sans-serif;

  /* Designation  */

  --s9-designation-color: #333;
  --s9-designation-font-size: 14px;
  --s9-designation-font-weight: normal;
  --s9-designation-font-family: "Montserrat";
  --s9-designation-margin-top: 0;
  --s9-designation-margin-bottom: 15px;
  --s9-designation-color-hover: #333;

  /* Social Links  */

  --s9-social-links-bg: transparent;
  --s9-social-links-border-width: 0;
  --s9-social-links-border-radius: 0;
  --s9-social-links-margin-top: 0;
  --s9-social-links-margin-bottom: 0;
  --s9-social-links-bg-hover: transparent;

  /* Social Link  */

  --s9-social-link-color: #fff;
  --s9-social-link-color-bg: transparent;
  --s9-social-link-width: auto;
  --s9-social-link-height: auto;
  --s9-social-link-border-radius: 7px;
  --s9-social-link-border-width: 0;
  --s9-social-link-border-color: transparent;
  --s9-social-link-size: 14px;
  --s9-social-link-bg-hover: #fff;

  /* ................................... */
  /* Expertise Section  */
  --s9-exp-section-font-family: Arial;
  --s9-exp-section-bg: #f8f9fa00;
  --s9-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s9-exp-item-bg: #fff;
  --s9-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s9-exp-label-font-size: 10px;
  --s9-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s9-exp-progress-bar-container-bg: #e0e0e0;
  --s9-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s9-exp-progress-bar-color-1: #43a047;
  --s9-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s9-exp-progress-percentage-color: #111;
}

.style_9 {
  background-color: var(--s9-body-bg);
  border-radius: var(--s9-body-border-radius);
  border-width: var(--s9-body-border-width);
  border-color: var(--s9-body-border-color);
  border-style: solid;
}

.style_9:hover {
  background-color: var(--s9-body-bg-hover);
}

.style_9 .card {
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 20px 0;
  overflow: hidden;
  width: 100%;
  height: max-content;
  background-color: var(--s9-card-bg);
  border-radius: var(--s9-card-border-radius);
  border-width: var(--s9-card-border-width);
  border-color: var(--s9-card-border-color);
  border-style: solid;
}

.style_9 .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px var(--s8-card-shadow-color-hover);
  background-color: var(--s9-card-bg-hover);
}

.style_9 .image-container {
  display: flex;
  justify-content: center;
  border-radius: var(--s9-image-container-border-radius);
  border-width: var(--s9-image-container-border-width);
  border-color: var(--s9-image-container-border-color);
  background-color: var(--s9-image-container-bg);
  border-style: solid;
}

.style_ .card:hover .image-container {
  background-color: var(--s9-image-container-bg-hover);
}

.style_9 .image-container img {
  max-width: var(--s9-image-size) !important;
  max-height: var(--s9-image-size);
  border-radius: var(--s9-image-border-radius);
  box-shadow: 0 2px 6px var(--s9-image-shadow-color);
  border: var(--s9-image-border-width) solid var(--s9-image-border-color);
  margin: 9px;
}

.style_9 .info-box {
  padding: 10px;
  border-radius: var(--s9-info-box-border-radius);
  border-width: var(--s9-info-box-border-width);
  border-color: var(--s9-info-box-border-color);
  background-color: var(--s9-info-box-bg);
  border-style: solid;
}

.style_ .card:hover .info-box {
  background-color: var(--s9-info-box-bg-hover);
}

.style_9 .info-box .info {
  font-size: var(--s9-info-font-size);
  color: var(--s9-info-color);
  font-family: var(--s9-info-font-family);
}

.style_9 .info-box .name {
  font-weight: var(--s9-name-font-weight) !important;
  color: var(--s9-name-color) !important;
  font-size: var(--s9-name-font-size) !important;
  font-family: var(--s9-name-font-family) !important;
  margin-top: var(--s9-name-margin-top) !important;
  margin-bottom: var(--s9-name-margin-bottom) !important;
}

.style_9 .card:hover .name {
  color: var(--s9-name-color-hover);
}

.style_9 .designation {
  font-size: var(--s9-designation-font-size) !important;
  color: var(--s9-designation-color) !important;
  font-weight: var(--s9-designation-font-weight) !important;
  font-family: var(--s9-designation-font-family) !important;
  margin-top: var(--s9-designation-margin-top) !important;
  margin-bottom: var(--s9-designation-margin-bottom) !important;
}

.style_ .card:hover .designation {
  color: var(--s9-designation-color-hover);
}

.style_9 .info-box .email::before,
.style_9 .info-box .phone::before,
.style_9 .tweb::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_9 .info-box .email::before {
  content: "\f0e0";
  /* Email icon */
}

.style_9 .info-box .phone::before {
  content: "\f095";
  /* Phone icon */
}

.style_9 .tweb::before {
  content: "\f57d";
}

.style_9 .tweb {
  text-decoration: none !important;
  color: var(--s9-info-color);
}

.style_9 .social-links {
  bottom: -28px;
  position: relative;
  display: flex;
  justify-content: space-around;
  opacity: 0;
  transform: translateY(5px);
  transition: transform 0.3s ease-in-out;
  background-color: var(--s9-social-links-bg);
  border-width: var(--s9-social-links-border-width);
  border-radius: var(--s9-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s9-social-links-margin-top);
  margin-bottom: var(--s9-social-links-margin-bottom);
}

.style_9 .carousel-item:hover .social-links {
  opacity: 1;
  transform: translateY(-25px);
  background-color: var(--s9-social-links-bg-hover);
}

.style_9 .social-links .social-link {
  padding: 5px;
  text-decoration: none;
  position: relative;
  justify-content: space-evenly;
  display: inline-block;
  align-items: center;
  transform: translateZ(0);
  visibility: visible;
  text-align: center;
  transition: all 0.3s ease-in-out;
  color: var(--s9-social-link-color);
  background-color: var(--s9-social-link-color-bg);
  width: var(--s9-social-link-width);
  height: var(--s9-social-link-height);
  border-radius: var(--s9-social-link-border-radius);
  border-width: var(--s9-social-link-border-width);
  border-color: var(--s9-social-link-border-color);
  font-size: var(--s9-social-link-size);
  border-style: solid;
}

.link {
  border-radius: var(--s9-social-link-border-radius);

}

.style_9 .social-link:hover {
  background-color: var(--s9-social-link-bg-hover);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Facebook Style */
.style_9 .facebook {
  background-color: #3b5998;
}

.style_9 .facebook:hover {
  background-color: #fff;
  color: #3b5998;
}

/* Twitter Style */
.style_9 .twitter {
  background-color: #1da1f2;
}

.style_9 .twitter:hover {
  background-color: #fff;
  color: #1da1f2;
}

/* LinkedIn Style */
.style_9 .linkedin {
  background-color: #0077b5;
}

.style_9 .linkedin:hover {
  background-color: #fff;
  color: #0077b5;
}

/* WhatsApp Style */
.style_9 .whatsapp {
  background-color: #25d366;
}

.style_9 .whatsapp:hover {
  background-color: #fff;
  color: #25d366;
}

/* Instagram Style */
.style_9 .instagram {
  background-color: #e1306c;
}

.style_9 .instagram:hover {
  background-color: #fff;
  color: #e1306c;
}

/* Pinterest Style */
.style_9 .pinterest {
  background-color: #e60023;
}

.style_9 .pinterest:hover {
  background-color: #fff;
  color: #e60023;
}

/* Discord Style */
.style_9 .discord {
  background-color: #7289da;
}

.style_9 .discord:hover {
  background-color: #fff;
  color: #7289da;
}

/* YouTube Style */
.style_9 .youtube {
  background-color: #ff0000;
}

.style_9 .youtube:hover {
  background-color: #fff;
  color: #ff0000;
}

/* Reddit Style */
.style_9 .reddit {
  background-color: #ff4500;
}

.style_9 .reddit:hover {
  background-color: #fff;
  color: #ff4500;
}

/* TikTok Style */
.style_9 .tiktok {
  background-color: #000000;
}

.style_9 .tiktok:hover {
  background-color: #fff;
  color: #000000;
}

/* Telegram Style */
.style_9 .telegram {
  background-color: #0088cc;
}

.style_9 .telegram:hover {
  background-color: #fff;
  color: #0088cc;
}

/* Quora Style */
.style_9 .quora {
  background-color: #b92b27;
}

.style_9 .quora:hover {
  background-color: #fff;
  color: #b92b27;
}

/* Tumblr Style */
.style_9 .tumblr {
  background-color: #35465c;
}

.style_9 .tumblr:hover {
  background-color: #fff;
  color: #35465c;
}

/* Vimeo Style */
.style_9 .vimeo {
  background-color: #1ab7ea;
}

.style_9 .vimeo:hover {
  background-color: #fff;
  color: #1ab7ea;
}


/* ....................................... */



.style_9 .expertise-section {
  font-family: var(--s9-exp-section-font-family);
  background-color: var(--s9-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s9-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_9 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_9 .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s9-exp-item-bg);
}

.style_9 .expertise-label {
  font-size: var(--s9-exp-label-font-size);
  font-weight: var(--s9-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_9 .progress-container {
  background-color: var(--s9-exp-progress-bar-container-bg);
  border-radius: var(--s9-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_9 .progress-bar {
  background: linear-gradient(60deg, var(--s9-exp-progress-bar-color-1), var(--s9-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_9 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s9-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}