@import url('https://fonts.googleapis.com/css2?family=Diphylleia&display=swap');

:root {
  /* //////////////////////// */

  /* Transition Speed  */
  --s28-transition-speed: 0.4s;

  /* Body  */
  --s28-body-bg: transparent;
  --s28-body-border-radius: 0;
  --s28-body-border-width: 0;
  --s28-body-border-color: transparent;

  /* Card  */

  --s28-card-border-radius: 15px;
  --s28-card-border-width: 0;
  --s28-card-border-color: transparent;
  --s28-card-shadow-color: #00000033;
  --s28-card-shadow-color-hover: #0000004d;
  --s28-card-before-bg-color-1: #ffffff00;
  --s28-card-before-bg-color-2: #ffffff4d;
  --s28-card-bg-color-1: #ff9a9e;
  --s28-card-bg-color-2: #fad0c4;
  --s28-card-bg-color-hover-1: #f6d365;
  --s28-card-bg-color-hover-2: #fda085;
  /* Image Container  */

  --s28-image-container-border-radius: 0;
  --s28-image-container-border-width: 0;
  --s28-image-container-border-color: transparent;
  --s28-image-container-bg: transparent;
  --s28-image-container-bg-hover: transparent;

  /* Image  */

  --s28-image-border-radius: 0;
  --s28-image-border-width: 0;
  --s28-image-border-color: transparent;

  /* Info Box  */

  --s28-info-box-border-width: 0;
  --s28-info-box-border-color: transparent;
  --s28-info-box-bg: #ffffffbe;
  --s28-info-box-bg-hover: #ffffffe6;
  /* Info  */
  --s28-info-font-color: #333;
  --s28-info-font-size: 13px;
  --s28-info-font-family: "Montserrat", sans-serif;

  /* Name  */

  --s28-name-font-weight: bold;
  --s28-name-margin-top: 0;
  --s28-name-margin-bottom: 4px;
  --s28-name-font-family: 'Diphylleia';
  --s28-name-font-size: 1.3em;
  --s28-name-color: #333;
  --s28-name-color-hover: #333;

  /* Designation  */

  --s28-designation-font-size: 1.1em;
  --s28-designation-font-weight: normal;
  --s28-designation-font-family: 'Diphylleia';
  --s28-designation-margin-top: 0;
  --s28-designation-margin-bottom: 10px;
  --s28-designation-color: #333;
  --s28-designation-color-hover: #333;

  /* Social Links  */

  --s28-social-links-border-width: 0;
  --s28-social-links-border-radius: 0;
  --s28-social-links-margin-top: 0;
  --s28-social-links-margin-bottom: 0;
  --s28-social-links-border-color: transparent;
  --s28-social-links-bg: transparent;
  --s28-social-links-bg-hover: transparent;

  /* Social Link  */
  --s28-social-link-shadow-color: #00000033;

  --s28-social-link-color: #333;
  --s28-social-link-bg: transparent;
  --s28-social-link-width: auto;
  --s28-social-link-height: auto;
  --s28-social-link-border-radius: 7px;
  --s28-social-link-border-width: 0;
  --s28-social-link-border-color: transparent;
  --s28-social-link-size: 20px;



  /* ................................... */
  /* Expertise Section  */
  --s28-exp-section-font-family: Arial;
  --s28-exp-section-bg: #f8f9fa00;
  --s28-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s28-exp-item-bg: #fff;
  --s28-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s28-exp-label-font-size: 10px;
  --s28-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s28-exp-progress-bar-container-bg: #e0e0e0;
  --s28-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s28-exp-progress-bar-color-1: #43a047;
  --s28-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s28-exp-progress-percentage-color: #111;




  /* ________________________//*\\_______________________ */

  --s28-card-before-bg: linear-gradient(135deg, var(--s28-card-before-bg-color-1) 50%, var(--s28-card-before-bg-color-2) 50%);
  --s28-card-bg-hover: linear-gradient(120deg, var(--s28-card-bg-color-hover-1) 0%, var(--s28-card-bg-color-hover-2) 100%);


}

.style_28 {
  background-color: var(--s28-body-bg);
  border-radius: var(--s28-body-border-radius);
  border-width: var(--s28-body-border-width);
  border-color: var(--s28-body-border-color);
}

.style_28:hover {
  background-color: var(--s28-body-bg-hover);
}


.style_28 .card {
  background: linear-gradient(135deg, var(--s28-card-bg-color-1) 10%, var(--s28-card-bg-color-2) 100%);
  border-radius: var(--s28-card-border-radius);
  overflow: hidden;
  transition: transform var(--s28-transition-speed),
    box-shadow var(--s28-transition-speed);
  box-shadow: 0px 10px 20px var(--s28-card-shadow-color);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 20px 0;
  border-color: var(--s28-card-border-color);
  border-width: var(--s28-card-border-width);
  border-style: solid;
}

.style_28 .card:hover {
  transform: scale(1.05);
  box-shadow: 0px 15px 30px var(--s28-card-shadow-color-hover);
  background: var(--s28-card-bg-hover);
}

.style_28 .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--s28-card-before-bg);
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity var(--s28-transition-speed);
}

.style_28 .card:hover::before {
  opacity: 1;
}


.style_28 .image-container {
  clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
  transition: clip-path var(--s28-transition-speed);
  border-radius: var(--s28-image-container-border-radius);
  border-width: var(--s28-image-container-border-width);
  border-color: var(--s28-image-container-border-color);
  background-color: var(--s28-image-container-bg);
  border-style: solid;
}

.style_28 .card:hover .image-container {
  background-color: var(--s28-image-container-bg-hover);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}

.style_28 .profile-image {
  width: 100%;
  height: auto;
  transition: transform var(--s28-transition-speed);
  display: block;
  border-radius: var(--s28-image-border-radius);
  border-width: var(--s28-image-border-width);
  border-color: var(--s28-image-border-color);
  border-style: solid;
}

.style_28 .info-box {
  background: var(--s28-info-box-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--s28-card-border-radius);
  margin: -20% 10px 10px 10px;
  padding: 0 0 20px 0.7em;
  transition: background-color var(--s28-transition-speed),
    margin var(--s28-transition-speed);
  position: relative;
  border-width: var(--s28-info-box-border-width);
  border-color: var(--s28-info-box-border-color);
  border-style: solid;
}

.style_28 .card:hover .info-box {
  background: var(--s28-info-box-bg-hover);
  margin: -10% 10px 10px 10px;
}

.style_28 .info {
  font-family: var(--s28-info-font-family);
  font-size: var(--s28-info-font-size);
  color: var(--s28-info-font-color);
  margin: 3px 0;
}

.style_28 .tweb {
  color: var(--s28-info-font-color);
  text-decoration: none !important;
}

.style_28 .name {
  font-size: var(--s28-name-font-size);
  color: var(--s28-name-color);
  font-weight: var(--s28-name-font-weight);
  font-family: var(--s28-name-font-family);
  margin-top: var(--s28-name-margin-top);
  margin-bottom: var(--s28-name-margin-bottom);
}

.style_28 .card:hover .name {
  color: var(--s28-name-color-hover);
}

.style_28 .designation {
  font-size: var(--s28-designation-font-size);
  color: var(--s28-designation-color);
  font-weight: var(--s28-designation-font-weight);
  font-family: var(--s28-designation-font-family);
  margin-top: var(--s28-designation-margin-top);
  margin-bottom: var(--s28-designation-margin-bottom);
}

.style_28 .card:hover .designation {
  color: var(--s28-designation-color-hover);
}


.style_28 .social-links {
  padding: 10px;
  display: flex;
  justify-content: space-evenly;
  margin: 5px;
  position: relative;
  border-style: solid;
  background-color: var(--s28-social-links-bg);
  border-width: var(--s28-social-links-border-width);
  border-color: var(--s28-social-links-border-color);
  border-radius: var(--s28-social-links-border-radius);
  margin-top: var(--s28-social-links-margin-top);
  margin-bottom: var(--s28-social-links-margin-bottom);
}

.style_28 .social-links:hover {
  background-color: var(--s28-social-links-bg-hover);
  padding: 10px;
  border-radius: 25px;
}

.style_28 .social-link {
  padding: 5px;
  box-shadow: 0px 5px 15px var(--s28-social-link-shadow-color);
  transition: transform var(--s28-transition-speed),
    background-color var(--s28-transition-speed);
  margin: 2px;
  color: var(--s28-social-link-color);
  background-color: var(--s28-social-link-bg);
  width: var(--s28-social-link-width);
  height: var(--s28-social-link-height);
  border-radius: var(--s28-social-link-border-radius);
  border-width: var(--s28-social-link-border-width);
  border-color: var(--s28-social-link-border-color);
  font-size: var(--s28-social-link-size);
  border-style: solid;

}

.style_28 .social-link:hover {
  transform: translateY(-5px);
  background-color: var(--s28-social-link-bg);
}



.style_28 .tweb::before,
.style_28 .info-box .phone::before,
.style_28 .info-box .email::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_28 .info-box .email::before {
  content: "\f0e0";
}

.style_28 .info-box .phone::before {
  content: "\f095";
}

.style_28 .tweb::before {
  content: "\f57d";
}

/* ....................................... */


.style_28  .expertise-section {
  font-family: var(--s28-exp-section-font-family);
  background-color: var(--s28-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s28-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_28  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_28  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s28-exp-item-bg);
}

.style_28  .expertise-label {
  font-size: var(--s28-exp-label-font-size);
  font-weight: var(--s28-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_28  .progress-container {
  background-color: var(--s28-exp-progress-bar-container-bg);
  border-radius: var(--s28-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_28  .progress-bar {
  background: linear-gradient(60deg, var(--s28-exp-progress-bar-color-1), var(--s28-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_28  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s28-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}