@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {

  /* Body  */

  --s8-body-border-radius: 0;
  --s8-body-border-color: transparent;
  --s8-body-border-width: 0;
  --s8-body-bg: transparent;
  --s8-body-bg-hover: transparent;

  /* Card  */
  --s8-card-border-radius: 20px;
  --s8-card-border-width: 2px;
  --s8-card-border-style: solid;
  --s8-card-shadow-color-hover: #8ce3f462;
  --s8-card-border-color: #2c3e505e;
  --s8-card-bg-color-1: #ffffff;
  --s8-card-bg-color-2: #e6e6e6;
  --s8-card-bg-color-hover-1: #ffffff;
  --s8-card-bg-color-hover-2: #e6e6e6;


  /* Image Container  */

  --s8-image-container-bg: transparent;
  --s8-image-container-bg-hover: transparent;
  --s8-image-container-border-radius: 0;
  --s8-image-container-border-color: transparent;
  --s8-image-container-border-width: 0;

  /* Image  */

  --s8-image-border-radius: 15px;
  --s8-image-border-width: 0;
  --s8-image-shadow-color: #7de2cf80;
  --s8-image-shadow-color-hover: #00000099;
  --s8-image-border-color: transparent;
  --s8-image-border-style: solid;

  /* Info Box   */

  --s8-info-box-border-width: 0;
  --s8-info-box-border-radius: 0 0 20px 20px;
  --s8-info-box-border-color: transparent;
  --s8-info-box-shadow-color: #00000033;
  --s8-info-box-bg: #fffffffa;
  --s8-info-box-bg-hover: #fffffffa;

  /* Info  */
  --s8-info-color: #555;
  --s8-info-font-family: "Roboto";
  --s8-info-font-size: 14px;

  /* Name  */
  --s8-name-font-weight: bold;
  --s8-name-color: #555;
  --s8-name-margin-top: 0;
  --s8-name-margin-bottom: 12px;
  --s8-name-font-size: 20px;
  --s8-name-font-family: 'roboto';
  --s8-name-color-hover: #555;

  /* Designation  */

  --s8-designation-font-weight: normal;
  --s8-designation-font-size: 16px;
  --s8-designation-margin-top: 0;
  --s8-designation-margin-bottom: 10px;
  --s8-designation-color: #555;
  --s8-designation-color-hover: #555;
  --s8-designation-font-family: 'roboto';

  /* Social Links Container  */

  --s8-social-links-bg: #f8f8f8;
  --s8-social-links-bg-hover: #f8f8f8;
  --s8-social-links-border-radius: 0;
  --s8-social-links-border-color: #e0e0e0;
  --s8-social-links-border-width: 1px;

  /* Social Link  */

  --s8-social-link-width: 30px;
  --s8-social-link-height: 30px;
  --s8-social-link-border-radius: 0;
  --s8-social-link-border-width: 0;
  --s8-social-link-color: #2c3e50;
  --s8-social-link-color-hover: #212e3b;
  --s8-social-link-border-color: transparent;
  --s8-social-link-size: 22px;
  /* ................................... */
  /* Expertise Section  */
  --s8-exp-section-font-family: Arial;
  --s8-exp-section-bg: #f8f9fa00;
  --s8-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s8-exp-item-bg: #fff;
  --s8-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s8-exp-label-font-size: 10px;
  --s8-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s8-exp-progress-bar-container-bg: #e0e0e0;
  --s8-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s8-exp-progress-bar-color-1: #43a047;
  --s8-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s8-exp-progress-percentage-color: #111;

  /* _________//////////*****\\\\\\\\\\__________ */

  --s8-card-bg: linear-gradient(145deg, var(--s8-card-bg-color-1), var(--s8-card-bg-color-2));
  --s8-card-bg-hover: linear-gradient(145deg, var(--s8-card-bg-color-hover-1), var(--s8-card-bg-color-hover-1));
}

.style_8 {
  background-color: var(--s8-body-bg);
  border-radius: var(--s8-body-border-radius);
  border-width: var(--s8-body-border-width);
  border-color: var(--s8-body-border-color);
  border-style: solid;
}

.style_8:hover {
  background-color: var(--s8-body-bg-hover);
}

.style_8 .card {
  perspective: 2000px;
  border-radius: var(--s8-card-border-radius);
  background: var(--s8-card-bg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67), box-shadow 0.3s;
  will-change: transform, box-shadow;
  border: var(--s8-card-border-width) var(--s8-card-border-style) var(--s8-card-border-color);
  margin: 20px 0;
}

.style_8 .card:hover {
  background-color: var(--s8-card-bg-hover);
  transform: translateY(-10px) scale(1.04) rotateX(5deg);
  box-shadow: 0 8px 24px var(--s8-card-shadow-color-hover);
}


.style_8 .image-container {
  transform-style: preserve-3d;
  border-radius: var(--s8-image-container-border-radius);
  border-color: var(--s8-image-container-border-color);
  border-width: var(--s8-image-container-border-width);
  background-color: var(--s8-image-container-bg);
  border-style: solid;
  transition: all 0.3s ease-in-out;
}

.style_8 .card:hover .image-container {
  background-color: var(--s8-image-container-bg-hover);
}

.style_8 .profile-image {
  width: 100%;
  border-radius: var(--s8-image-border-radius);
  border-color: var(--s8-image-border-color);
  border-width: var(--s8-image-border-width);
  border-style: var(--s8-image-border-style);
  transition: transform 0.1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  box-shadow: 0 5px 15px var(--s8-image-shadow-color);
  z-index: 100;
  position: relative;
}

.style_8 .image-container:hover .profile-image {
  transform: rotateY(180deg) scale(1.2);
  box-shadow: 0 8px 25px var(--s8-image-shadow-color-hover);
}

.style_8 .info-box {
  padding: 7px;
  background: var(--s8-info-box-bg);
  border-radius: var(--s8-info-box-border-radius);
  border-color: var(--s8-info-box-border-color);
  border-width: var(--s8-info-box-border-width);
  border-style: solid;
  box-shadow: 0 -5px 15px var(--s8-info-box-shadow-color);
  transition: background-color 0.5s, transform 0.5s;
  transform: translateY(0);
  will-change: transform, background-color;
}

.style_8 .card:hover .info-box {
  background: var(--s8-info-box-bg-hover);
  transform: translateY(-15px);
}


.style_8 .info {
  color: var(--s8-info-color);
  font-size: var(--s8-info-font-size);
  font-family: var(--s8-info-font-family);
}

.style_8 .name {
  font-size: var(--s8-name-font-size);
  font-weight: var(--s8-name-font-weight);
  color: var(--s8-name-color);
  font-weight: var(--s8-name-font-weight);
  font-family: var(--s8-name-font-family);
  margin-top: var(--s8-name-margin-top);
  margin-bottom: var(--s8-name-margin-bottom);
}

.style_8 .card:hover .name {
  color: var(--s8-name-color-hover);
}

.style_8 .designation {
  font-size: var(--s8-designation-font-size) !important;
  color: var(--s8-designation-color) !important;
  font-weight: var(--s8-designation-font-weight) !important;
  font-family: var(--s8-designation-font-family) !important;
  margin-top: var(--s8-designation-margin-top) !important;
  margin-bottom: var(--s8-designation-margin-bottom) !important;
}

.style_8 .card:hover .designation {
  color: var(--s8-designation-color-hover);
}

.style_8 .tweb {
  text-decoration: none !important;
  color: var(--s8-info-color);
}

.style_8 .social-links {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  background: var(--s8-social-links-bg);
  border-top: var(--s8-social-links-border-width) solid var(--s8-social-links-border-color);
  text-decoration: none !important;
  position: relative;
}

.style_8 .card:hover .social-links {
  background: var(--s8-social-links-bg-hover);
}

.style_8 .social-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: color 0.3s, transform 0.3s;
  background-color: var(--s8-social-link-color-bg);
  width: var(--s8-social-link-width);
  height: var(--s8-social-link-height);
  border-radius: var(--s8-social-link-border-radius);
  border-width: var(--s8-social-link-border-width);
  border-color: var(--s8-social-link-border-color);
  font-size: var(--s8-social-link-size);
  transition: transform 0.5s;
  text-align: center;
  color: var(--s8-social-link-color);
  transition: all 0.3s;
}

.style_8 .social-link:hover {
  color: var(--s8-social-link-color-hover);
  transform: translateY(-5px) scale(1.4);
}

.style_8 .info-box .phone::before,
.style_8 .info-box .email::before,
.style_8 .info-box .email::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_8 .info-box .email::before {
  content: "\f0e0";
}

.style_8 .info-box .phone::before {
  content: "\f095";
}

.style_8 .tweb::before {
  content: "\f57d";
}

/* ....................................... */


.style_8 .expertise-section {
  font-family: var(--s8-exp-section-font-family);
  background-color: var(--s8-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s8-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_8 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_8 .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s8-exp-item-bg);
}

.style_8 .expertise-label {
  font-size: var(--s8-exp-label-font-size);
  font-weight: var(--s8-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_8 .progress-container {
  background-color: var(--s8-exp-progress-bar-container-bg);
  border-radius: var(--s8-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_8 .progress-bar {
  background: linear-gradient(60deg, var(--s8-exp-progress-bar-color-1), var(--s8-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_8 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s8-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}