@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

:root {
  /* //////////////////////// */

  /* Body  */
  --s27-body-bg: transparent;
  --s27-body-bg-hover: transparent;
  --s27-body-border-radius: 0;
  --s27-body-border-width: 0;
  --s27-body-border-color: transparent;


  /* Card  */

  --s27-card-bg: transparent;
  --s27-card-border-radius: 5px;
  --s27-card-border-width: 0;
  --s27-card-shadow-color-hover: #0000004d;
  --s27-card-border-color: transparent;
  --s27-card-border-color: transparent;
  --s27-card-before-color-1: #ff9a9e;
  --s27-card-before-color-2: #fad0c4;
  --s27-card-after-color-1: #ff9a9e;
  --s27-card-after-color-2: #fbc2eb;

  /* Image Container  */

  --s27-image-container-border-radius: 0;
  --s27-image-container-border-width: 0;
  --s27-image-container-border-color: transparent;
  --s27-image-container-bg: transparent;
  --s27-image-container-bg-hover: transparent;

  /* Image  */

  --s27-image-border-radius: 0;
  --s27-image-border-width: 0;
  --s27-image-border-color: transparent;

  /* Info Box  */

  --s27-info-box-border-radius: 0 0 5px 5px;
  --s27-info-box-border-width: 0;
  --s27-info-box-border-color: transparent;
  --s27-info-box-bg: #ffffffcc;
  --s27-info-box-bg-hover: #ffffffcc;

  /* Info  */

  --s27-info-font-family: "Roboto", sans-serif;
  --s27-info-font-size: 14px;
  --s27-info-color: #2c3e50;

  /* Name  */

  --s27-name-font-weight: 700;
  --s27-name-margin-top: 7px;
  --s27-name-font-size: 20px;
  --s27-name-margin-bottom: 10px;
  --s27-name-font-family: "Roboto";
  --s27-name-color: #333;
  --s27-name-color-hover: #333;

  /* Designation  */

  --s27-designation-font-weight: normal;
  --s27-designation-font-family: "Roboto";
  --s27-designation-font-size: 16px;
  --s27-designation-margin-top: 0;
  --s27-designation-margin-bottom: 10px;
  --s27-designation-color: #666;
  --s27-designation-color-hover: #666;

  /* Social Links  */

  --s27-social-links-border-width: 0;
  --s27-social-links-border-radius: 0;
  --s27-social-links-margin-top: 15px;
  --s27-social-links-margin-bottom: 10px;
  --s27-social-links-border-color: transparent;
  --s27-social-links-bg: transparent;
  --s27-social-links-bg-hover: transparent;

  /* Social Link  */

  --s27-social-link-color: #333;
  --s27-social-link-color-hover: #333;
  --s27-social-link-color-bg: transparent;
  --s27-social-link-border-color: transparent;
  --s27-social-link-width: auto;
  --s27-social-link-height: auto;
  --s27-social-link-border-radius: 0;
  --s27-social-link-border-width: 0;
  --s27-social-link-size: 20px;
  /* ................................... */
  /* Expertise Section  */
  --s27-exp-section-font-family: Arial;
  --s27-exp-section-bg: #f8f9fa00;
  --s27-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s27-exp-item-bg: #fff;
  --s27-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s27-exp-label-font-size: 10px;
  --s27-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s27-exp-progress-bar-container-bg: #e0e0e0;
  --s27-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s27-exp-progress-bar-color-1: #43a047;
  --s27-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s27-exp-progress-percentage-color: #111;
}

.style_27 {
  background-color: var(--s27-body-bg);
  border-radius: var(--s27-body-border-radius);
  border-width: var(--s27-body-border-width);
  border-color: var(--s27-body-border-color);
  border-style: solid;
}

.style_27:hover {
  background-color: var(--s27-body-bg-hover);
}


.style_27 .card {
  width: 100%;
  height: 100%;
  perspective: 1000px;
  position: relative;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--s27-card-bg);
  border-radius: var(--s27-card-border-radius);
  border-width: var(--s27-card-border-width);
  border-color: var(--s27-card-border-color);
  transition: all 0.3s ease-in-out;
  border-style: solid;
}

.style_27 .card:hover {
  background-color: var(--s27-card-bg-hover);
}

.style_27 .card:hover {
  transform: rotateY(20deg);
  box-shadow: 0 15px 35px var(--s27-card-shadow-color-hover);
  height: 100%;
}

.style_27 .card::before,
.style_27 .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62%;
  border-radius: 5px;
  transition: opacity 0.3s;
  z-index: -1;
  margin-top: 90%;
  transition: all 0.3s ease-in-out;
}

.style_27 .card::before {
  background: linear-gradient(135deg,
      var(--s27-card-before-color-1) 0%,
      var(--s27-card-before-color-2) 100%);
}

.style_27 .card::after {
  opacity: 0;
  background: linear-gradient(135deg,
      var(--s27-card-after-color-1) 0%,
      var(--s27-card-after-color-2) 100%);
}

.style_27 .card:hover::before {
  opacity: 0;
}

.style_27 .card:hover::after {
  opacity: 1;
}

.style_27 .image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  border-radius: var(--s27-image-container-border-radius);
  border-width: var(--s27-image-container-border-width);
  border-color: var(--s27-image-container-border-color);
  background-color: var(--s27-image-container-bg);
  transition: all 0.3s ease-in-out;
  border-style: solid;
}

.style_27 .card:hover .image-container {
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.style_27 .profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  transition: transform 0.5s ease;
  visibility: hidden;
  border-radius: var(--s27-image-border-radius);
  border-width: var(--s27-image-border-width);
  border-color: var(--s27-image-border-color);
  border-style: solid;
}

.style_27 .card:hover .profile-image {
  transform: scale(1.1);
  visibility: visible;
}

.style_27 .info-box {
  padding: 0 0 20px 0.7em;
  background-color: var(--s27-info-box-bg);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease-in-out;
  position: relative;
  border-radius: var(--s27-info-box-border-radius);
  border-width: var(--s27-info-box-border-width);
  border-color: var(--s27-info-box-border-color);
  border-style: solid;
}

.style_27 .card:hover .info-box {
  transform: translateY(0);
  background-color: var(--s27-info-box-bg-hover);

}

.style_27 .info {
  color: var(--s27-info-color);
  font-family: var(--s27-info-font-family);
  font-size: var(--s27-info-font-size);
  margin-bottom: 5px;
  line-height: 1.4;
}

.style_27 a.tweb {
  color: var(--s27-info-color);
  text-decoration: none !important;
}

.style_27 .name {
  font-size: var(--s27-name-font-size);
  color: var(--s27-name-color);
  font-weight: var(--s27-name-font-weight);
  font-family: var(--s27-name-font-family);
  margin-top: var(--s27-name-margin-top);
  margin-bottom: var(--s27-name-margin-bottom);
}

.style_27 .card:hover .name {
  color: var(--s27-name-color-hover);
}

.style_27 .designation {
  font-size: var(--s27-designation-font-size);
  color: var(--s27-designation-color);
  font-weight: var(--s27-designation-font-weight);
  font-family: var(--s27-designation-font-family);
  margin-top: var(--s27-designation-margin-top);
  margin-bottom: var(--s27-designation-margin-bottom);
}

.style_27 .card:hover .designation {
  color: var(--s27-designation-color-hover);
}


.style_27 .social-links {
  display: flex;
  border-style: solid;
  justify-content: center;
  background-color: var(--s27-social-links-bg);
  border-width: var(--s27-social-links-border-width);
  border-color: var(--s27-social-links-border-color);
  border-radius: var(--s27-social-links-border-radius);
  margin-top: var(--s27-social-links-margin-top);
  margin-bottom: var(--s27-social-links-margin-bottom);
  gap: 8px;
}

.style_27 .card:hover .social-links {
  background-color: var(--s27-social-links-bg-hover);
}

.style_27 .social-link {

  transition: color 0.3s;
  color: var(--s27-social-link-color);
  background-color: var(--s27-social-link-color-bg);
  width: var(--s27-social-link-width);
  height: var(--s27-social-link-height);
  border-radius: var(--s27-social-link-border-radius);
  border-width: var(--s27-social-link-border-width);
  border-color: var(--s27-social-link-border-color);
  font-size: var(--s27-social-link-size);
  border-style: solid;

}

.style_27 .social-link:hover {
  color: var(--s27-social-link-color-hover);
}

.style_27 .tweb::before,
.style_27 .info-box .phone::before,
.style_27 .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_27 .info-box .email::before {
  content: "\f0e0";
}

.style_27 .info-box .phone::before {
  content: "\f095";
}

.style_27 .tweb::before {
  content: "\f57d";
}


/* ....................................... */


.style_27  .expertise-section {
  font-family: var(--s27-exp-section-font-family);
  background-color: var(--s27-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s27-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_27  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_27  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s27-exp-item-bg);
}

.style_27  .expertise-label {
  font-size: var(--s27-exp-label-font-size);
  font-weight: var(--s27-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_27  .progress-container {
  background-color: var(--s27-exp-progress-bar-container-bg);
  border-radius: var(--s27-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_27  .progress-bar {
  background: linear-gradient(60deg, var(--s27-exp-progress-bar-color-1), var(--s27-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_27  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s27-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}