@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  */
  --s29-body-bg: transparent;
  --s29-body-bg-hover: transparent;
  --s29-body-border-radius: 0;
  --s29-body-border-width: 0;
  --s29-body-border-color: transparent;

  /* Card  */
  --s29-card-border-color: #fafafa;
  --s29-card-border-width: 6px;
  --s29-card-border-radius: 20px;
  --s29-card-bg-color-2: #3b82f6;
  --s29-card-bg-color-1: #6ee7b7;
  --s29-card-shadow-color-hover: #ffffff99;
  --s29-card-before-bg-color-1: #93c5fd;
  --s29-card-before-bg-color-2: #29272e;
  /* Image Container  */

  --s29-image-container-border-radius: 0;
  --s29-image-container-border-width: 0;
  --s29-image-container-border-color: transparent;
  --s29-image-container-bg: transparent;
  --s29-image-container-bg-hover: transparent;

  /* Image  */

  --s29-image-border-radius: 50%;
  --s29-image-border-width: 0;
  --s29-image-border-color: transparent;
  --s29-image-shadow-color-hover: #ffffff68;
  /* Info Box  */
  --s29-info-box-border-radius: 0;
  --s29-info-box-border-width: 0;
  --s29-info-box-border-color: transparent;
  --s29-info-box-bg: #ffffff85;
  --s29-info-box-bg-hover: #ffffffe6;

  /* Info  */
  --s29-info-color: #333;
  --s29-info-font-size: 13px;
  --s29-info-font-family: 'ROboto';

  /* Name  */

  --s29-name-font-size: 1.4em;
  --s29-name-font-weight: bold;
  --s29-name-margin-top: 0.8em;
  --s29-name-margin-bottom: 0.8em;
  --s29-name-font-family: 'roboto';
  --s29-name-color: #3b82f6;
  --s29-name-color-hover: #3b82f6;

  /* Designation  */
  --s29-designation-font-weight: normal;
  --s29-designation-font-family: 'roboto';
  --s29-designation-margin-top: 5px;
  --s29-designation-margin-bottom: 5px;
  --s29-designation-color: #115338;
  --s29-designation-color-hover: #115338;

  /* Social Links  */

  --s29-social-links-border-width: 0;
  --s29-social-links-border-radius: 50px;
  --s29-social-links-margin-top: 0;
  --s29-social-links-margin-bottom: 0;
  --s29-social-links-border-color: transparent;
  --s29-social-links-bg: rgba(255, 255, 255, 0.7);
  --s29-social-links-bg-hover: transparent;

  /* Social Link  */

  --s29-social-link-color: #fff;
  --s29-social-link-width: 25px;
  --s29-social-link-height: 25px;
  --s29-social-link-border-radius: 50%;
  --s29-social-link-border-width: 0;
  --s29-social-link-border-color: transparent;
  --s29-social-link-size: 20px;
  --s29-social-link-shadow-color: #00000080;
  --s29-social-link-bg: #3b82f6;
  --s29-social-link-bg-hover: #6ee7b7;
  --s29-designation-font-size: 1.2em;

  /* ................................... */
  /* Expertise Section  */
  --s29-exp-section-font-family: Arial;
  --s29-exp-section-bg: #f8f9fa00;
  --s29-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s29-exp-item-bg: #fff;
  --s29-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s29-exp-label-font-size: 10px;
  --s29-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s29-exp-progress-bar-container-bg: #e0e0e0;
  --s29-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s29-exp-progress-bar-color-1: #43a047;
  --s29-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s29-exp-progress-percentage-color: #111;
}

.style_29 {
  background-color: var(--s29-body-bg);
  border-radius: var(--s29-body-border-radius);
  border-width: var(--s29-body-border-width);
  border-color: var(--s29-body-border-color);
  border-style: solid;
}

.style_29:hover {
  background-color: var(--s29-body-bg-hover);
}


.style_29 .card {
  background-size: 200% 100%;
  background: linear-gradient(45deg, var(--s29-card-bg-color-1), var(--s29-card-bg-color-2));
  border: var(--s29-card-border-width) solid var(--s29-card-border-color);
  border-radius: var(--s29-card-border-radius);
  overflow: hidden;
  margin: 20px 0;
  animation: backgroundSlide 4s linear infinite;
  position: relative;
  width: 100%;
  min-height: 400px;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style_29 .card:hover {
  box-shadow: 0 0 30px var(--s29-card-shadow-color-hover);
}

.style_29 .card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: linear-gradient(45deg, var(--s29-card-before-bg-color-1), var(--s29-card-before-bg-color-2));
  border-radius: 50%;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
  z-index: -1;
  opacity: 0.7;
}

.style_29 .card:hover::before {
  transform: scale(0.8) rotate(60deg);
  opacity: 1;
}

.style_29 .image-container {
  position: relative;
  height: 60%;
  overflow: hidden;
  padding: 0 10%;
  border-radius: var(--s29-image-container-border-radius);
  border-width: var(--s29-image-container-border-width);
  border-color: var(--s29-image-container-border-color);
  background-color: var(--s29-image-container-bg);
  border-style: solid;
}

.style_29 .card:hover .image-container {
  background-color: var(--s29-image-container-bg-hover);
}

.style_29 .profile-image {
  object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 1s;
  margin: 20px auto;
  max-width: 100%;
  border-radius: var(--s29-image-border-radius);
  border-width: var(--s29-image-border-width);
  border-color: var(--s29-image-border-color);
  border-style: solid;
}

.style_29 .profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 120px var(--s29-image-shadow-color-hover);
}

.style_29 .info-box {
  text-decoration: none !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0 20px 0.7em;
  box-shadow: 0 10px 20px #0000004d;
  transform: translateY(100%);
  transition: background-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: var(--s29-info-box-border-radius);
  border-width: var(--s29-info-box-border-width);
  border-color: var(--s29-info-box-border-color);
  background-color: var(--s29-info-box-bg);
  border-style: solid;
}

.style_29 .card:hover .info-box {
  background-color: var(--s29-info-box-bg-hover);
  transform: translateY(0);
  box-shadow: 0 15px 30px #00000080;
}

.style_29 .info {
  color: var(--s29-info-color);
  font-size: var(--s29-info-font-size);
  font-family: var(--s29-info-font-family);
}

.style_29 .name {
  font-size: var(--s29-name-font-size);
  color: var(--s29-name-color);
  font-weight: var(--s29-name-font-weight);
  font-family: var(--s29-name-font-family);
  margin-top: var(--s29-name-margin-top);
  margin-bottom: var(--s29-name-margin-bottom);
}

.style_29 .card:hover .name {
  color: var(--s29-name-color-hover);
}

.style_29 .designation {
  font-size: var(--s29-designation-font-size);
  color: var(--s29-designation-color);
  font-weight: var(--s29-designation-font-weight);
  font-family: var(--s29-designation-font-family);
  margin-top: var(--s29-designation-margin-top);
  margin-bottom: var(--s29-designation-margin-bottom);
}

.style_29 .card:hover .designation {
  color: var(--s29-designation-color-hover);
}

.style_29 a.tweb {
  color: var(--s29-info-color);
  text-decoration: none !important;
}

/* Social links container */
.style_29 .social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  width: 80%;
  padding: 10px 0;
  box-shadow: 0 5px 10px #00000080;
  transition: all 0.5s ease;
  background-color: var(--s29-social-links-bg);
  border-width: var(--s29-social-links-border-width);
  border-color: var(--s29-social-links-border-color);
  border-radius: var(--s29-social-links-border-radius);
  border-style: solid;
  margin-top: var(--s29-social-links-margin-top);
  margin-bottom: var(--s29-social-links-margin-bottom);
}

.style_29 .card:hover .social-links {
  background-color: var(--s29-social-links-bg-hover);
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
  text-align: left;
  position: absolute;
  left: 5%;
  top: 0;
  border-radius: 4px;
  width: auto;
  justify-content: left;
  border-radius: 5px;
  transition: all 0.5s, box-shadow 0s, background-color 0s;
}

.style_29 .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s29-social-link-bg);
  box-shadow: 0 5px 10px var(--s29-social-link-shadow-color);
  transition: all 0.5s ease;
  padding: 15px;
  color: var(--s29-social-link-color);
  width: var(--s29-social-link-width);
  height: var(--s29-social-link-height);
  border-radius: var(--s29-social-link-border-radius);
  border-width: var(--s29-social-link-border-width);
  border-color: var(--s29-social-link-border-color);
  font-size: var(--s29-social-link-size);
  border-style: solid;
  text-decoration: none !important;
}

.style_29 .social-links .social-link:hover {
  transform: scale(1.1);
  background-color: var(--s29-social-link-bg-hover);
  box-shadow: 0 7px 14px #000000b3;
}

.style_29 .card:hover .social-link {
  border-radius: 4px;
}

.style_29 .tweb::before,
.style_29 .info-box .phone::before,
.style_29 .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_29 .info-box .email::before {
  content: "\f0e0";
}

.style_29 .info-box .phone::before {
  content: "\f095";
}

.style_29 .tweb::before {
  content: "\f57d";
}


/* ....................................... */


.style_29  .expertise-section {
  font-family: var(--s29-exp-section-font-family);
  background-color: var(--s29-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s29-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_29  .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_29  .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s29-exp-item-bg);
}

.style_29  .expertise-label {
  font-size: var(--s29-exp-label-font-size);
  font-weight: var(--s29-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_29  .progress-container {
  background-color: var(--s29-exp-progress-bar-container-bg);
  border-radius: var(--s29-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_29  .progress-bar {
  background: linear-gradient(60deg, var(--s29-exp-progress-bar-color-1), var(--s29-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_29  .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s29-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}