@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Teko:wght@300&display=swap");

:root {

  /* /////////////// */


  /* Body  */

  --s7-body-bg: #00000000;
  --s7-body-bg-hover: #00000000;
  --s7-body-border-width: 0;
  --s7-body-border-color: #00000000;
  --s7-body-border-radius: 0;

  /* Card  */

  --s7-card-bg-color-1: #f093fb;
  --s7-card-bg-color-2: #f5576c;
  --s7-card-bg-color-hover-1: #f093fb;
  --s7-card-bg-color-hover-2: #f5576c;
  --s7-card-border-color: #ffffffcc;
  --s7-card-shadow-color-hover: #dc8bb935;
  --s7-card-border-width: 3px;
  --s7-card-border-radius: 30px;

  /* Image Container  */

  --s7-image-container-border-radius: 30px;
  --s7-image-container-border-width: 0;
  --s7-image-container-border-color: #00000000;
  --s7-image-container-bg: #03030300;
  --s7-image-container-bg-hover: #00000000;
  --s7-image-container-shadow-color: #00000066;

  /* Image  */

  --s7-image-border-radius: 30px;
  --s7-image-border-width: 4px;
  --s7-image-border-color: transparent;

  /* Info Box  */

  --s7-info-box-border-radius: 0;
  --s7-info-box-border-color: #00000000;
  --s7-info-box-border-width: 0;
  --s7-info-box-margin-top: 20px;
  --s7-info-box-margin-bottom: 20px;

  /* Info  */

  --s7-info-font-family: "Oswald", sans-serif;
  --s7-info-font-size: 14px;
  --s7-info-color: #002f1f;

  /* Name  */
  --s7-name-font-family: "Teko", sans-serif;
  --s7-name-font-size: 20px;
  --s7-name-font-weight: bold;
  --s7-name-margin-top: 0;
  --s7-name-margin-bottom: 0;
  --s7-name-color: #000000;
  --s7-name-color-hover: #000000;

  /* Designation  */

  --s7-designation-color: #0c3f2e;
  --s7-designation-color-hover: #0c3f2e;
  --s7-social-links-shadow-color: #ffffffb3;
  --s7-designation-margin-top: 0;
  --s7-designation-margin-bottom: 15px;
  --s7-designation-font-weight: normal;
  --s7-designation-font-family: "Teko";
  --s7-designation-font-size: 16px;

  /* Social Links  */

  --s7-social-links-margin-top: 0;
  --s7-social-links-margin-bottom: 0;
  --s7-social-links-border-width: 0;
  --s7-social-links-border-radius: 22px;
  --s7-social-links-bg: #ffffffd9;
  --s7-social-links-border-color: transparent;

  /* Social Link */
  --s7-social-link-height: auto;
  --s7-social-link-width: auto;
  --s7-scocial-link-border-width: 0;
  --s7-scocial-link-border-radius: 0;
  --s7-social-link-font-size: 18px;
  --s7-social-link-background-color: transparent;
  --s7-social-link-border-color: #00000000;
  --s7-social-link-color: #2c3e50;
  --s7-social-link-color-hover: #f093fb;
  --s7-social-link-border-color: #00000000;
  /* .......................................... */
  /* Expertise Section  */
  --s7-exp-section-font-family: Arial;
  --s7-exp-section-bg: #f8f9fa00;
  --s7-exp-section-border-radius: 0;

  /* Expertise Item  */
  --s7-exp-item-bg: #fff;
  --s7-exp-item-border-radius: 5px;

  /* Expertise Label */
  --s7-exp-label-font-size: 10px;
  --s7-exp-label-font-weight: bold;

  /* Expertise Progress Bar Container*/
  --s7-exp-progress-bar-container-bg: #e0e0e0;
  --s7-exp-progress-bar-container-border-radius: 10px;

  /* Expertise Progress Bar  */
  --s7-exp-progress-bar-color-1: #43a047;
  --s7-exp-progress-bar-color-2: #9ae39d;

  /* Progress Percentage Color  */
  --s7-exp-progress-percentage-color: #111;


  /* __________//////////***\\\\\\\\\\__________ */

  --s7-card-bg: linear-gradient(45deg, var(--s7-card-bg-color-1) 0%, var(--s7-card-bg-color-2) 100%);
  --s7-card-bg-hover: linear-gradient(45deg, var(--s7-card-bg-color-hover-1) 0%, var(--s7-card-bg-color-hover-2) 100%);

}

.style_7 {
  background-color: var(--s7-body-bg);
  border-radius: var(--s7-body-border-radius);
  border-width: var(--s7-body-border-width);
  border-color: var(--s7-body-border-color);
  border-style: solid;
}

.style_7:hover {
  background-color: var(--s7-body-bg-hover);
}

.style_7 .card {
  perspective: 3000px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: var(--s7-card-border-radius);
  overflow: hidden;
  background: var(--s7-card-bg);
  border: var(--s7-card-border-width) solid var(--s7-card-border-color);
  position: relative;
  padding: 3px;
}

.style_7 .card:hover {
  transform: rotateZ(3deg) scale(1.03);
  box-shadow: 0 8px 24px var(--s7-card-shadow-color-hover);
  border: var(--s7-card-border-width) solid var(--s7-card-border-color);
  background: var(--s7-card-bg-hover);
}

.style_7 .image-container {
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  animation: imageFloat 2s infinite alternate;
  position: relative;
  box-shadow: 0 12px 24px var(--s7-image-container-shadow-color);
  border-radius: var(--s7-image-container-border-radius);
  border-color: var(--s7-image-container-border-color);
  background-color: var(--s7-image-container-bg);
}

.style_7 .image-container::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  background: linear-gradient(to bottom right, #ffffff80, transparent);
  z-index: 2;
  border-radius: 30px;
  transform: scale(1.2) rotate(-10deg);
}

.style_7 .card:hover .image-container {
  background-color: var(--s7-image-container-bg-hover);
}

.style_7 .profile-image {
  display: block;
  width: 100%;
  height: auto;
  transition: all 1.2s ease;
  border-radius: var(--s7-image-border-radius);
  border: var(--s7-image-border-width) solid var(--s7-image-border-color);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.style_7 .profile-image:hover {
  transform: scale(1.03) rotate(15deg);
}

.style_7 .info-box {
  animation: cardGlow 1.5s infinite alternate;
  margin-top: var(--s7-info-box-margin-top);
  margin-bottom: var(--s7-info-box-margin-bottom);
  border-radius: var(--s7-info-box-border-radius);
  border-width: var(--s7-info-box-border-width);
  border-color: var(--s7-info-box-border-color);
  border-style: solid;
}

.style_7 .info {
  font-family: var(--s7-info-font-family);
  color: var(--s7-info-color);
  font-size: var(--s7-info-font-size);
}

.style_7 .name {
  font-size: var(--s7-name-font-size);
  font-weight: var(--s7-name-font-weight);
  font-family: var(--s7-name-font-family);
  margin-top: var(--s7-name-margin-top);
  margin-bottom: var(--s7-name-margin-bottom);
  color: var(--s7-name-color);
}

.style_7 .name:hover {
  color: var(--s7-name-color-hover);
}

.style_7 .designation {
  font-size: var(--s7-designation-font-size);
  color: var(--s7-designation-color);
  margin-top: var(--s7-designation-margin-top);
  margin-bottom: var(--s7-designation-margin-bottom);
  font-family: var(--s7-designation-font-family);
  font-weight: var(--s7-designation-font-weight);
}

.style_7 .designation:hover {
  color: var(--s7-designation-color-hover);
}

.style_7 .tweb {
  text-decoration: none !important;
  color: var(--s7-info-color);
}

.style_7 .social-links {

  background: var(--s7-social-links-bg);
  border-radius: var(--s7-social-links-border-radius);
  margin-top: var(--s7-social-links-margin-top);
  margin-bottom: var(--s7-social-links-margin-bottom);
  border-color: var(--s7-social-links-border-color);
  box-shadow: 0 0 20px var(--s7-social-links-shadow-color);
  display: flex;
  justify-content: space-around;
  padding: 6px 5px;
  border-style: solid;
  position: relative;
  backdrop-filter: blur(25px);
  animation: linkPulse 2.4s infinite alternate;
}

.style_7 .social-link {
  text-shadow: 0 0 15px #ffffff74;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--s7-social-link-color);
  border-radius: var(--s7-scocial-link-border-radius);
  border-color: var(--s7-social-link-border-color);
  border-width: var(--s7-social-links-border-width);
  font-size: var(--s7-social-link-font-size);
  height: var(--s7-social-link-height);
  width: var(--s7-social-link-width);
  border-style: solid;
  background-color: var(--s7-social-link-background-color);

}

.style_7 .link {
  border-radius: var(--s7-scocial-link-border-radius);
}

.style_7 .social-link:hover {
  transform: translateY(-3px) scale(1.07);
  color: var(--s7-social-link-color-hover);
  text-shadow: 0 0 30px rgba(255, 255, 255, 1);
}

.style_7 .info-box .email::before,
.style_7 .info-box .phone::before,
.style_7 .tweb::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.style_7 .info-box .email::before {
  content: "\f0e0";
}

.style_7 .info-box .phone::before {
  content: "\f095";
}

.style_7 .tweb::before {
  content: "\f57d";
}

@keyframes cardGlow {
  0% {
    background-color: linear-gradient(45deg, var(--s7-card-bg-color-hover-1)0%, var(--s7-card-bg-color-hover-2) 100%);
  }

  100% {
    background-color: linear-gradient(45deg, #f193fbe0 0%, #f5576c6f 100%);
  }
}

@keyframes imageFloat {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

@keyframes linkPulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.342);
  }

  100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.616);
  }
}

/* ///////////// */


.style_7 .expertise-section {
  font-family: var(--s7-exp-section-font-family);
  background-color: var(--s7-exp-section-bg);
  /* padding: 1px 13px; */
  border-radius: var(--s7-exp-section-border-radius);
  width: 98%;
  margin: 15px 1% 0 1%;

}

.style_7 .expertise-item {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.style_7 .1);
  padding: 1px;
  border-radius: 5px;
  background: var(--s7-exp-item-bg);
}

.style_7 .expertise-label {
  font-size: var(--s7-exp-label-font-size);
  font-weight: var(--s7-exp-label-font-weight);
  flex-basis: 50%;
  text-align: left;
  margin-left: 2px;
}

.style_7 .progress-container {
  background-color: var(--s7-exp-progress-bar-container-bg);
  border-radius: var(--s7-exp-progress-bar-container-border-radius);
  overflow: hidden;
  height: 20px;
  position: relative;
  flex-grow: 1;
  margin-left: 10px;
  height: 11px;
  margin: auto;
}

.style_7 .progress-bar {
  background: linear-gradient(60deg, var(--s7-exp-progress-bar-color-1), var(--s7-exp-progress-bar-color-2));
  height: 100%;
  width: 0;
  transition: width 2s ease;
  position: relative;
}

.style_7 .progress-percentage {
  position: absolute;
  right: 5px;
  top: -5px;
  line-height: 20px;
  font-size: 10px;
  color: var(--s7-exp-progress-percentage-color);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}