@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Teko:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");

:root {
  /* /////////////// */

  /* Body  */
  --s1-main-bg-color: transparent;
  --s1-main-border-color: transparent;
  --s1-main-border-width: 0px;
  --s1-main-border-radius: 0px;
  --s1-main-hover-bg-color: transparent;

  /* Card  */
  --s1-card-border-color: transparent;
  --s1-card-bg-color-1: #6ee7b7;
  --s1-card-bg-color-2: #3b82f6;
  --s1-card-border-width: 0px;
  --s1-card-bg-hover: initial;
  --s1-card-shadow-color-hover: rgba(0, 0, 0, 0.35);

  /* Image Container  */
  --s1-image-container-shadow-color: rgba(0, 0, 0, 0.45);
  --s1-image-container-border-color: transparent;
  --s1-image-container-border-radius: 50px 0;
  --s1-image-container-border-width: 0;
  --s1-image-container-bg: transparent;
  ---s1-image-container-bg-hover: transparent;
  --s1-image-container-shadow-color-hover: transparent;

  /* Profile Image  */
  --s1-image-shadow-color-hover: rgba(0, 0, 0, 1);
  --s1-image-border-radius: 50%;
  --s1-image-border-color: transparent;
  --s1-image-border-width: 0px;

  /* Info Box  */
  --s1-info-box-radius: 50px 0;
  --s1-info-box-bg: rgba(255, 255, 255, 0.623);
  --s1-info-box-bg-hover: rgba(255, 255, 255, 0.6);
  --s1-info-box-shadow-color: rgba(0, 0, 0, 0.45);
  --s1-info-box-shadow-color-hover: rgba(0, 0, 0, 0.7);
  --s1-info-box-border-width: 0px;
  --s1-info-box-border-color: transparent;

  /* Info  */
  --s1-info-font-family: "Oswald";
  --s1-info-color: #000;
  --s1-info-font-size: 16px;

  /* Name  */
  --s1-name-font-family: "Courgette";
  --s1-name-font-size: 20px;
  --s1-name-font-weight: normal;
  --s1-name-margin-top: 0px;
  --s1-name-margin-bottom: 7px;
  --s1-name-color-hover: #000;
  --s1-name-color: #0f4615;

  /* Designation */
  ---s1-designation-color: #0c203f;
  ---s1-designation-color-hover: #0c203f;
  --s1-designation-font-weight: normal;
  --s1-designation-font-family: "Segoe UI";
  --s1-designation-font-size: 16px;
  --s1-designation-margin-top: 0px;
  --s1-designation-margin-bottom: 15px;

  /* Social Links  */
  ----s1-social-links-border-width: 0;
  --s1-social-links-border-radius: 22px;
  --s1-margin-top-social-container: auto;
  --s1-margin-bottom-social-container: auto;
  --s1-social-links-bg-hover: inherit;
  --s1-social-links-bg: inherit;
  --s1-social-links-border-color: transparent;

  /* Social Link  */

  --s1-social-link-width: auto;
  --s1-social-link-height: auto;
  --s1-social-link-border-width: 0;
  --s1-social-link-border-color: transparent;
  --s1-social-link-bg: #dbeafed7;
  --s1-social-link-bg-hover: #6ee7b7;
  --s1-social-link-color: #2c3e50;
  --s1-social-link-border-radius: 50%;
  --s1-social-link-size: 20px;
  --s1-social-link-color-hover: #666;
  --s1-social-links-shadow-color: rgba(255, 255, 255, 0.7);
  ---s1-social-link-shadow-color-hover: rgba(0, 0, 0, 0.8);

  /* Expertise Section  */
  --s1-exp-section-font-family: Arial;
  --s1-exp-section-bg: #f8f9fa00;
  --s1-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s1-exp-item-bg: #fff;
  --s1-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s1-exp-label-font-size: 10px;
  --s1-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s1-exp-progress-bar-container-bg: #e0e0e0;
  --s1-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s1-exp-progress-bar-color-1: #43a047;
  --s1-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s1-exp-progress-percentage-color: #111;


  /* _______________________________///////////**\\\\\\\\\\\\_________________________________ */
  --s1-card-bg: linear-gradient(45deg, var(--s1-card-bg-color-1), var(--s1-card-bg-color-2));

}

.style_1 {
  background-color: var(--s1-main-bg-color);
  border-color: var(--s1-main-border-color);
  border-width: var(--s1-main-border-width);
  border-radius: var(--s1-main-border-radius);
  border-style: solid;
}

.style_1:hover {
  background-color: var(--s1-main-hover-bg-color);
}


.style_1 .card {
  width: 100%;
  perspective: 7000px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  background: var(--s1-card-bg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 20px 0px;
  border: var(--s1-card-border-width) solid var(--s1-card-border-color);

}

.style_1 .card:hover {
  transform: scale(1.05) rotateY(0deg) rotateX(0deg) rotateZ(5deg);
  box-shadow: 0 75px 110px var(--s1-card-shadow-color-hover);
  box-shadow: 0 75px 110px var(--s1-card-shadow-color-hover);

}

.style_1 .image-container {
  transition: all 1.3s ease-in-out;
  box-shadow: 0 30px 50px var(--s1-image-container-shadow-color);
  position: relative;
  height: auto;
  padding: 10px;
  border-color: var(--s1-image-container-border-color);
  border-radius: var(--s1-image-container-border-radius);
  border-width: var(--s1-image-container-border-width);
  background-color: var(--s1-image-container-bg);
  border-style: solid;
}

.style_1 .image-container:hover {
  background-color: var(---s1-image-container-bg-hover);
  box-shadow: 0 0 70px var(--s1-image-container-shadow-color-hover);
}

.style_1 .profile-image {
  border-radius: var(--s1-image-border-radius);
  transition: transform 0.3s ease-in-out, box-shadow 1s;
  width: 100%;
  height: auto;
  border-width: var(--s1-image-border-width);
  border-color: var(--s1-image-border-color);
  border-style: solid;
}

.style_1 .profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 120px var(--s1-image-shadow-color-hover);
}

.style_1 .info-box {
  background: var(--s1-info-box-bg);
  backdrop-filter: blur(60px);
  border-radius: var(--s1-info-box-radius);
  border-width: var(--s1-info-box-border-width);
  border-color: var(--s1-info-box-border-color);
  border-style: solid;
  padding: 20px 10px;
  transition: background-color 1.3s ease-out, transform 1.3s ease-out,
    box-shadow 1.3s;
  box-shadow: 0 40px 80px var(--s1-info-box-shadow-color);
}

.style_1 .info-box:hover {
  background: var(--s1-info-box-bg-hover);
  transform: scale(1.03);
  box-shadow: 0 45px 90px var(--s1-info-box-shadow-color-hover);
}

.style_1 .info {
  color: var(--s1-info-color);
  font-size: var(--s1-info-font-size);
  font-family: var(--s1-info-font-family);

}

.style_1 .tweb {
  color: var(--s1-info-color);
  text-decoration: none;
}

.style_1 .name {
  font-size: var(--s1-name-font-size) !important;
  font-weight: var(--s1-name-font-weight) !important;
  font-family: var(--s1-name-font-family) !important;
  margin-top: var(--s1-name-margin-top) !important;
  margin-bottom: var(--s1-name-margin-bottom) !important;
  color: var(--s1-name-color) !important;
}

.style_1 .card:hover .name {
  color: var(--s1-name-color-hover);
}

.style_1 .designation {
  font-size: var(--s1-designation-font-size) !important;
  color: var(---s1-designation-color) !important;
  font-weight: var(--s1-designation-font-weight) !important;
  font-family: var(--s1-designation-font-family) !important;
  margin-top: var(--s1-designation-margin-top) !important;
  margin-bottom: var(--s1-designation-margin-bottom) !important;
}

.style_1 .card:hover .designation {
  color: var(---s1-designation-color-hover);
}

.style_1 .social-links {
  display: flex;
  padding: 10px;
  backdrop-filter: blur(25px);
  border-radius: var(--s1-social-links-border-radius);
  box-shadow: 0 0 20px var(--s1-social-links-shadow-color);
  position: relative;
  justify-content: space-between;
  border-width: var(----s1-social-links-border-width);
  border-style: solid;
  border-color: var(--s1-social-links-border-color);
  background: var(--s1-social-links-bg);
  margin-top: var(--s1-margin-top-social-container);
  margin-bottom: var(--s1-margin-bottom-social-container);
}

.style_1 .social-links:hover {
  background: var(--s1-social-links-bg-hover);
}

.style_1 .social-links .social-link {
  border-radius: var(--s1-social-link-border-radius);
  border-width: var(--s1-social-link-border-width);
  border-color: var(--s1-social-link-border-color);
  border-style: solid;
  background-color: var(--s1-social-link-bg);
  box-shadow: 0 35px 70px var(---s1-social-link-shadow-color);
  width: var(--s1-social-link-width);
  height: var(--s1-social-link-height);
  color: var(--s1-social-link-color);
  font-size: var(--s1-social-link-size);
  transition: all 0.3s;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  margin: auto;
  padding:5px;
}

.style_1 .social-link:hover {
  color: var(---s1-social-link-color-hover);
  transform: translateY(-3px) rotate(360deg);
  background-color: var(--s1-social-link-bg-hover);
  box-shadow: 0 40px 80px var(---s1-social-link-shadow-color-hover);
}

.style_1 .info-box .email::before,
.style_1 .info-box .phone::before,
.style_1 .tweb::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_1 .info-box .email::before {
  content: "\f0e0";
}

.style_1 .info-box .phone::before {
  content: "\f095";
}

.style_1 .tweb::before {
  content: "\f57d";
}

.style_1 #department-selector li.active {
  
}

/* /////////////////////////-------------------------\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.style_1 .expertise-section {
  font-family: var(--s1-exp-section-font-family);
  background-color: var(--s1-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s1-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_1 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s1-exp-item-bg);
}

.style_1 .expertise-label {
  font-size: var(--s1-exp-label-font-size);
  font-weight: var(--s1-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_1 .progress-container {
  background-color: var(--s1-exp-progress-bar-container-bg);
  border-radius: var(--s1-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_1 .progress-bar {
  background: linear-gradient(60deg, var(--s1-exp-progress-bar-color-1), var(--s1-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_1 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s1-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

