@import url("https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@300&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s30-body-bg: transparent;
  --s30-body-bg-hover: transparent;
  --s30-body-border-radius: 0;
  --s30-body-border-width: 0;
  --s30-body-border-color: transparent;

  /* Card  */
  --s30-card-bg-color-1: #93939359;
  --s30-card-bg-color-2: #c6c3c366;
  --s30-card-shadow-color-hover: #00000066;
  --s30-card-bg-hover: transparent;
  --s30-card-border-radius: 25px;
  --s30-card-border-width: 0;
  --s30-card-border-color: transparent;

  /* Image Container  */

  --s30-image-container-shadow-color: #0000001a;
  --s30-image-container-border-radius: 20px;
  --s30-image-container-border-width: 0;
  --s30-image-container-border-color: transparent;
  --s30-image-container-bg: transparent;
  --s30-image-container-bg-hover: transparent;

  /* Image  */

  --s30-image-border-radius: 20px;
  --s30-image-border-width: 1px;
  --s30-image-border-color: #d68484d6;
  --s30-image-border-color-hover: #ff758c;

  /* Info Box  */
  --s30-info-box-bg: #ffffff99;
  --s30-info-box-bg-hover: #ffffff4d;
  --s30-info-box-border-radius: 20px;
  --s30-info-box-border-width: 1px;
  --s30-info-box-border-color: #ffffff4d;
  --s30-info-box-shadow-color: #00000033;

  /* Info  */

  --s30-info-color: #0c3f2e;
  --s30-info-font-size: 0.75rem;
  --s30-info-font-family: "Yanone Kaffeesatz";


  /* Name  */

  --s30-name-font-size: 20px;
  --s30-name-font-weight: bold;
  --s30-name-margin-top: 0;
  --s30-name-margin-bottom: 0;
  --s30-name-font-family: "Teko";
  --s30-name-color: #0c3f2e;
  --s30-name-color-hover: #0c3f2e;

  /* Designation  */
  --s30-designation-font-size: 16px;
  --s30-designation-font-weight: normal;
  --s30-designation-font-family: "Teko";
  --s30-designation-margin-top: 5px;
  --s30-designation-margin-bottom: 15px;
  --s30-designation-color: #0c3f2e;
  --s30-designation-color-hover: #0c3f2e;

  /* Social Links  */

  --s30-social-links-border-width: 0;
  --s30-social-links-border-radius: 22px;
  --s30-social-links-margin-top: 0;
  --s30-social-links-margin-bottom: 0;
  --s30-social-links-border-color: transparent;
  --s30-social-links-bg-hover: #ffffff99;
  --s30-social-links-bg: #ffffff99;
  --s30-social-links-shadow-color: #ffffff54;

  /* Social Link  */

  --s30-social-link-color-bg: transparent;
  --s30-social-link-width: 30px;
  --s30-social-link-height: 30px;
  --s30-social-link-border-radius: 0;
  --s30-social-link-border-width: 0;
  --s30-social-link-border-color: transparent;
  --s30-social-link-size: 1.8rem;
  --s30-social-link-color: #333;
  --s30-social-link-color-hover: #fff;

  /* ................................... */
  /* Expertise Section  */
  --s30-exp-section-font-family: Arial;
  --s30-exp-section-bg: #f8f9fa00;
  --s30-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s30-exp-item-bg: #fff;
  --s30-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s30-exp-label-font-size: 10px;
  --s30-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s30-exp-progress-bar-container-bg: #e0e0e0;
  --s30-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s30-exp-progress-bar-color-1: #43a047;
  --s30-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s30-exp-progress-percentage-color: #111;
}

.style_30 {
  background-color: var(--s30-body-bg);
  border-radius: var(--s30-body-border-radius);
  border-width: var(--s30-body-border-width);
  border-color: var(--s30-body-border-color);
  border-style: solid;
}

.style_30:hover {
  background-color: var(--s30-body-bg-hover);
}

.style_30 .card {
  background: linear-gradient(135deg, var(--s30-card-bg-color-1) 10%, var(--s30-card-bg-color-2) 100%);
  border-radius: var(--s30-card-border-radius);
  border-width: var(--s30-card-border-width);
  border-color: var(--s30-card-border-color);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  position: relative;
  padding: 5px;
  overflow: hidden;
  background-size: 200% 200%;
  animation: GradientShift 8s ease infinite;
  border-style: solid;
}

.style_30 .card:hover {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 15px 30px var(--s30-card-shadow-color-hover);
}

.style_30 .image-container {
  padding: 5px;
  transition: all 0.4s ease-in-out;
  position: relative;
  margin-top: -5px;
  margin-bottom: 5px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 4px 6px var(--s30-image-container-shadow-color);
  border-radius: var(--s30-image-container-border-radius);
  border-width: var(--s30-image-container-border-width);
  border-color: var(--s30-image-container-border-color);
  background-color: var(--s30-image-container-bg);
  border-style: solid;
}

.style_30 .card:hover .image-container {
  background-color: var(--s30-image-container-bg-hover);
}

.style_30 .image-container .profile-image {
  border-radius: var(--s30-image-border-radius);
  border-width: var(--s30-image-border-width);
  border-color: var(--s30-image-border-color);
  border-style: solid;
  transition: transform 0.4s ease-in-out, border-color 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

.style_30 .image-container:hover .profile-image {
  border-color: var(--s30-image-border-color-hover);
}

.style_30 .info-box {
  background: var(--s30-info-box-bg);
  backdrop-filter: blur(15px);
  padding: 7px;
  box-shadow: 0 2px 5px var(--s30-info-box-shadow-color);
  transition: background-color 0.3s ease;
  border-radius: var(--s30-info-box-border-radius);
  border-width: var(--s30-info-box-border-width);
  border-color: var(--s30-info-box-border-color);
  border-style: solid;
}

.style_30 .info-box:hover {
  background: var(--s30-info-box-bg-hover);
}

.style_30 .info {
  line-height: 1.2;
  color: var(--s30-info-color);
  font-size: var(--s30-info-font-size);
  font-family: var(--s30-info-font-family);
}

.style_30 .name {
  font-size: var(--s30-name-font-size) !important;
  color: var(--s30-name-color);
  font-weight: var(--s30-name-font-weight);
  font-family: var(--s30-name-font-family);
  margin-top: var(--s30-name-margin-top);
  margin-bottom: var(--s30-name-margin-bottom);
}

.style_30 .card:hover .name {
  color: var(--s30-name-color-hover);
}

.style_30 .designation {
  font-size: var(--s30-designation-font-size);
  color: var(--s30-designation-color);
  font-weight: var(--s30-designation-font-weight);
  font-family: var(--s30-designation-font-family);
  margin-top: var(--s30-designation-margin-top);
  margin-bottom: var(--s30-designation-margin-bottom);
}

.style_30 .card:hover .designation {
  color: var(--s30-designation-color-hover);
}

.style_30 .card:hover .info-box,
.style_30 .card:hover .image-container {
  transform: translateY(-2px);
}


.style_30 .tweb {
  text-decoration: none !important;
  color: var(--s30-info-color);
}

.style_30 .social-links {
  display: flex;
  justify-content: space-evenly;
  padding: 5px;
  backdrop-filter: blur(25px);
  box-shadow: 0 0 20px var(--s30-social-links-shadow-color);
  position: relative;
  background: var(--s30-social-links-bg);
  border-width: var(--s30-social-links-border-width);
  border-color: var(--s30-social-links-border-color);
  border-radius: var(--s30-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s30-social-links-margin-top);
  margin-bottom: var(--s30-social-links-margin-bottom);
}

.style_30 .card:hover .social-links {
  background-color: var(--s30-social-links-bg-hover);
}

.style_30 .social-link {
  color: var(--s30-social-link-color);
  text-align: center;
  transition: all 0.3s ease;
  background-color: var(--s30-social-link-color-bg);
  width: var(--s30-social-link-width);
  height: var(--s30-social-link-height);
  border-radius: var(--s30-social-link-border-radius);
  border-width: var(--s30-social-link-border-width);
  border-color: var(--s30-social-link-border-color);
  font-size: var(--s30-social-link-size);
  border-style: solid;

}

.style_30 .social-link:hover {
  transform: scale(1.04);
  color: var(--s30-social-link-color-hover);
}


.style_30 .tweb::before,
.style_30 .info-box .phone::before,
.style_30 .info-box .email::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_30 .info-box .email::before {
  content: "\f0e0";
}

.style_30 .info-box .phone::before {
  content: "\f095";
}

.style_30 .tweb::before {
  content: "\f57d";
}

@keyframes GradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* ....................................... */


.style_30  .expertise-section {
  font-family: var(--s30-exp-section-font-family);
  background-color: var(--s30-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s30-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_30  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_30  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s30-exp-item-bg);
}

.style_30  .expertise-label {
  font-size: var(--s30-exp-label-font-size);
  font-weight: var(--s30-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_30  .progress-container {
  background-color: var(--s30-exp-progress-bar-container-bg);
  border-radius: var(--s30-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_30  .progress-bar {
  background: linear-gradient(60deg, var(--s30-exp-progress-bar-color-1), var(--s30-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_30  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s30-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}