@import url("https://fonts.googleapis.com/css2?family=Amaranth&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amaranth&family=Shanti&display=swap");

:root {

  /* /////////////// */
  /* Body  */

  --s4-body-border-color: #00000000;
  --s4-body-border-width: 0;
  --s4-body-border-radius: 0;
  --s4-body-bg: transparent;
  --s4-body-bg-hover: #00000000;

  /* Card  */
  --s4-card-border-color: #0f7e00;
  --s4-card-border-width: 1px;
  --s4-card-bg: white;
  --s4-card-bg-hover: #36CED6;
  /* Image container  */

  --s4-image-container-border-color: #00000000;
  --s4-image-container-border-radius: 50%;
  --s4-image-container-border-width: 0;
  --s4-image-container-background-color: #00000000;
  --s4-image-container-bg-hover: #00000000;

  /* Image  */
  --s4-image-border-radius: 50%;
  --s4-image-border-width: 7px;
  --s4-image-border-color-hover: #F43662;
  --s4-image-border-color: #ababab;

  /* Info Box  */
  --s4-info-box-border-radius: 0;
  --s4-info-box-border-width: 0;
  --s4-info-box-border-color: #00000000;
  --s4-info-box-bg: #00000000;
  --s4-info-box-bg-hover: #00000000;
  /* Info  */
  --s4-info-font-size: 13px;
  --s4-info-font-family: "Amaranth", sans-serif;
  --s4-info-color: #555;

  /* Name  */
  --s4-name-font-weight: bold;
  --s4-name-font-size: 20px;
  --s4-name-margin-top: 7px;
  --s4-name-margin-bottom: 10px;
  --s4-name-font-family: "Amaranth";
  --s4-name-color: #666;
  --s4-name-color-hover: #0f7e00;
  --s4-name-underline-color-1: #36CED6;
  --s4-name-underline-color-2: #0f7e00;
  /* Designation  */

  ---s4-designation-color: #555;
  --s4-designation-font-weight: 400;
  --s4-designation-margin-top: 7px;
  --s4-designation-margin-bottom: 10px;
  --s4-designation-font-family: "Amaranth";
  --s4-designation-color-hover: #555;

  /* Social Links Container  */

  --s4-social-links-bg-color: #00000000;
  --s4-social-links-bg-hover: #00000000;
  --s4-social-links-border-width: 0;
  --s4-social-links-border-radius: 0;
  --s4-social-links-margin-top: 0;
  --s4-social-links-margin-bottom: 0;

  /* Social Link  */

  --s4-social-link-color: #ffffff;
  --s4-social-link-bg-color: #00000000;
  --s4-social-link-width: auto;
  --s4-social-link-height: auto;
  --s4-social-link-font-size: 15px;
  --s4-social-link-border-width: 0;
  --s4-social-link-border-radius: 4px;
  /* ............................................. */
  /* Expertise Section  */
  --s4-exp-section-font-family: Arial;
  --s4-exp-section-bg: #f8f9fa00;
  --s4-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s4-exp-item-bg: #fff;
  --s4-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s4-exp-label-font-size: 10px;
  --s4-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s4-exp-progress-bar-container-bg: #e0e0e0;
  --s4-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s4-exp-progress-bar-color-1: #43a047;
  --s4-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s4-exp-progress-percentage-color: #111;


  /* /////______////// */

  --s4-name-after-bg: linear-gradient(to right, #36CED6 33%, #0f7e00 33% 66%, #f3b3fb 66%);
  --s4-name-after-bg-hover: linear-gradient(to right, #0f7e00 33%, #36CED6 33% 66%, #0f7e00 66%);

}

.style_4 {
  background-color: var(--s4-body-bg);
  border-color: var(--s4-body-border-color);
  border-width: var(--s4-body-border-width);
  border-radius: var(--s4-body-border-radius);
  border-style: solid;
}

.style_4:hover {
  background-color: var(--s4-body-bg-hover);
}

.style_4 .card {
  margin-top: 20px;
  transition: all 0.5s ease;
  background-color: var(--s4-card-bg);
  border-color: var(--s4-card-border-color);
  border-style: solid;
  border-width: var(--s4-card-border-width);
  padding: 2px;
  height: 100%;
  min-height: 400px;
}

.style_4 .card:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom, var(--s4-card-bg-hover) 0%, var(--s4-card-bg-hover) 48%, var(--s4-card-bg-hover) 99%);
}

.style_4 .image-container {
  justify-content: center;
  display: flex;
  border-color: var(--s4-image-container-border-color);
  border-radius: var(--s4-image-container-border-radius);
  border-width: var(--s4-image-container-border-width);
  background-color: var(--s4-image-container-background-color);
  border-style: solid;
  transition: background-color 0.3s ease;
}

.image-container:hover {
  background-color: var(--s4-image-container-bg-hover);
}

.style_4 .image-container .profile-image {
  margin-top: 20px;
  width: 80%;
  height: auto;
  border-radius: var(--s4-image-border-radius);
  border-color: var(--s4-image-border-color);
  border-width: var(--s4-image-border-width);
  border-style: solid;
  margin-bottom: 15px;
}

.style_4 .card:hover .image-container img {
  border-color: var(--s4-image-border-color-hover);
}

.style_4 .info-box {
  text-align: center;
  border-radius: var(--s4-info-box-border-radius);
  border-width: var(--s4-info-box-border-width);
  border-color: var(--s4-info-box-border-color);
  border-style: solid;
  background-color: var(--s4-info-box-bg);
  transition: all 0.3s ease;
}

.style_4 .card:hover {
  background-color: var(--s4-info-box-bg-hover);
}

.style_4 .info {
  font-size: var(--s4-info-font-size);
  color: var(--s4-info-color);
  font-family: var(--s4-info-font-family);
  transition: opacity 0.5s ease, transform 0.3s ease;
}

.style_4 .tweb {
  text-decoration: none !important;
  color: var(--s4-info-color);
}

.style_4 .name {
  font-size: var(--s4-name-font-size);
  font-family: var(--s4-name-font-family);
  font-weight: var(--s4-name-font-weight);
  color: var(--s4-name-color);
  margin-top: var(--s4-name-margin-top);
  margin-bottom: var(--s4-name-margin-bottom);
  position: relative;
  transition: color 0.5s ease;
}

.style_4 .card:hover .name {
  color: var(--s4-name-color-hover);
}

.style_4 .name::after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: -10px;
  width: 40%;
  height: 4px;
  background: var(--s4-name-after-bg);
  transition: background-color 0.5s ease;
}

.style_4 .card:hover .info.name::after,
.style_4 .card:hover .name::after {
  background: var(--s4-name-after-bg-hover);
}

.style_4 .designation {
  font-size: var(--s4-designation-font-size);
  font-family: var(--s4-designation-font-family);
  font-weight: var(--s4-designation-font-weight);
  color: var(---s4-designation-color);
  margin-top: var(--s4-designation-margin-top);
  margin-bottom: var(--s4-designation-margin-bottom);
}

.style_4 .card:hover .name {
  color: var(--s4-designation-color-hover);
}

.style_4 .card:hover .info.designation {
  opacity: 0;
}

.style_4 .card:hover .info.designation,
.style_4 .card:hover .info.phone,
.style_4 .card:hover .info.website,
.style_4 .card:hover .info.email {
  transform: translateY(-15px);
}

.style_4 .info-box .email::before,
.style_4 .info-box .phone::before,
.style_4 .tweb::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_4 .info-box .email::before {
  content: "\f0e0";
}

.style_4 .info-box .phone::before {
  content: "\f095";
}

.style_4 .tweb::before {
  content: "\f57d";
}

.style_4 .social-links {
  bottom: -28px;
  position: relative;
  display: flex;
  justify-content: space-around;
  opacity: 0;
  transform: translateY(5px);
  transition: transform 0.3s ease-in-out;
  background-color: var(--s4-social-links-bg-color);
  border-radius: var(--s4-social-links-border-radius);
  border-width: var(--s4-social-links-border-width);
  margin-top: var(--s4-name-margin-top);
  margin-bottom: var(--s4-name-margin-bottom);
}

.style_4 .card:hover .social-links {
  opacity: 1;
  transform: translateY(-25px);
  background-color: var(--s4-social-links-bg-hover);
}

.style_4 .social-links .social-link {
  text-align: center;
  transition: all 0.3s;
  padding: 3px;
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  width: var(--s4-social-link-width);
  height: var(--s4-social-link-height);
  border-radius: var(--s4-social-link-border-radius);
  border-width: var(--s4-social-link-border-width);
  border-style: solid;
  background-color: var(--s4-social-link-bg-color);
  color: var(--s4-social-link-color);
  font-size: var(--s4-social-link-font-size);
  transform: translateZ(0);
  padding: 5px;
}

.style_4 .link {
  border-radius: var(--s4-social-link-border-radius);

}

.style_4 .social-link:hover {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Facebook Style */
.style_4 .facebook {
  background-color: #3b5998;
}

.style_4 .facebook:hover {
  background-color: #fff;
  color: #3b5998;
}

/* Twitter Style */
.style_4 .twitter {
  background-color: #1da1f2;
}

.style_4 .twitter:hover {
  background-color: #fff;
  color: #1da1f2;
}

/* LinkedIn Style */
.style_4 .linkedin {
  background-color: #0077b5;
}

.style_4 .linkedin:hover {
  background-color: #fff;
  color: #0077b5;
}

/* WhatsApp Style */
.style_4 .whatsapp {
  background-color: #25d366;
}

.style_4 .whatsapp:hover {
  background-color: #fff;
  color: #25d366;
}

/* Instagram Style */
.style_4 .instagram {
  background-color: #e1306c;
}

.style_4 .instagram:hover {
  background-color: #fff;
  color: #e1306c;
}

/* Pinterest Style */
.style_4 .pinterest {
  background-color: #e60023;
}

.style_4 .pinterest:hover {
  background-color: #fff;
  color: #e60023;
}

/* Discord Style */
.style_4 .discord {
  background-color: #7289da;
}

.style_4 .discord:hover {
  background-color: #fff;
  color: #7289da;
}

/* YouTube Style */
.style_4 .youtube {
  background-color: #ff0000;
}

.style_4 .youtube:hover {
  background-color: #fff;
  color: #ff0000;
}

/* Reddit Style */
.style_4 .reddit {
  background-color: #ff4500;
}

.style_4 .reddit:hover {
  background-color: #fff;
  color: #ff4500;
}

/* TikTok Style */
.style_4 .tiktok {
  background-color: #000000;
}

.style_4 .tiktok:hover {
  background-color: #fff;
  color: #000000;
}

/* Telegram Style */
.style_4 .telegram {
  background-color: #0088cc;
}

.style_4 .telegram:hover {
  background-color: #fff;
  color: #0088cc;
}

/* Quora Style */
.style_4 .quora {
  background-color: #b92b27;
}

.style_4 .quora:hover {
  background-color: #fff;
  color: #b92b27;
}

/* Tumblr Style */
.style_4 .tumblr {
  background-color: #35465c;
}

.style_4 .tumblr:hover {
  background-color: #fff;
  color: #35465c;
}

/* Vimeo Style */
.style_4 .vimeo {
  background-color: #1ab7ea;
}

.style_4 .vimeo:hover {
  background-color: #fff;
  color: #1ab7ea;
}

/* .................................... */

.style_4 .expertise-section {
  font-family: var(--s4-exp-section-font-family);
  background-color: var(--s4-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s4-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_4 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_4 .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s4-exp-item-bg);
}

.style_4 .expertise-label {
  font-size: var(--s4-exp-label-font-size);
  font-weight: var(--s4-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_4 .progress-container {
  background-color: var(--s4-exp-progress-bar-container-bg);
  border-radius: var(--s4-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_4 .progress-bar {
  background: linear-gradient(60deg, var(--s4-exp-progress-bar-color-1), var(--s4-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_4 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s4-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}