@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&family=Exo:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --base-clr: #11121a;
  --second-base-clr: #1d1e25;
  --line-clr: #42434a;
  --hover-clr: #222533;
  --text-clr: #e6e6ef;
  --accent-clr: #ebebeb;
  --secondary-text-clr: #b0b3c1;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.top-gap {
  background: var(--base-clr);
}

.bottom-gap {
  background: var(--base-clr);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

a,
span,
button,
input,
img,
i {
  display: block;
}

button,
input {
  border: none;
  background: none;
  outline: none;
  font: inherit;
}

button,
i {
  cursor: pointer;
}

input {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-family: "Exo", sans-serif;
  font-size: 10px;
  overflow-x: hidden;
}

body {
  color: #243238;
  background-color: var(--base-clr);
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 500;
  overflow-x: hidden;
  overflow-y: hidden;
}

body,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

::-webkit-scrollbar {
  background: transparent;
  scrollbar-width: thin;
  width: 4px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--accent-clr);
  border-radius: 10px;
}

#sidebar {
  z-index: 1;
  box-sizing: border-box;
  height: 100vh;
  width: 250px;
  padding: 5px 1em;
  background-color: var(--base-clr);
  border-right: 1px solid var(--line-clr);

  position: fixed;
  top: 0;
  align-self: start;
  transition: 300ms ease-in-out;
  overflow-y: hidden;
  text-wrap: nowrap;
}
#sidebar ul {
  list-style: none;
}
#sidebar > ul > li:first-child {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
  .logo {
    font-weight: 600;
  }
}
#sidebar ul li.active a {
  color: var(--accent-clr);
  transition: 0.10s;

  svg {
    fill: var(--accent-clr);
  }
}
#sidebar ul li.active a {
  color: var(--accent-clr) !important;
  transition: 0.10s;
}

#sidebar ul li.active svg {
  fill: var(--accent-clr) !important;
  transition: 0.10s;
}

#sidebar a,
#sidebar .dropdown-btn,
#sidebar .logo {
  border-radius: 0.5em;
  padding: 0.85em;
  text-decoration: none;
  color: var(--text-clr);
  display: flex;
  align-items: center;
  gap: 1em;
}
.dropdown-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
#sidebar svg {
  flex-shrink: 0;
  fill: var(--text-clr);
}
#sidebar a span,
#sidebar .dropdown-btn span {
  flex-grow: 1;
}
#sidebar a:hover,
#sidebar .dropdown-btn:hover {
  background-color: var(--hover-clr);
}
#sidebar .sub-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: 300ms ease-in-out;

  > div {
    overflow: hidden;
  }
}

#sidebar.close {
  padding: 5px;
}
#sidebar .sub-menu.show {
  grid-template-rows: 1fr;
}
.dropdown-btn svg {
  transition: 200ms ease;
}
.rotate svg:last-child {
  rotate: 180deg;
}
#sidebar .sub-menu a {
  padding-left: 2em;
}
#toggle-btn {
  margin-left: auto;
  padding: 1em;
  border: none;
  border-radius: 0.5em;
  background: none;
  cursor: pointer;

  svg {
    transition: rotate 150ms ease;
  }
}
#toggle-btn:hover {
  background-color: var(--hover-clr);
}

.nav-menu {
  padding: 20px;
}

.nav-list {
  padding-left: 0;
}

.nav-list li {
  margin-bottom: 10px;
}

.container {
  padding-inline: 16px;
  justify-content: space-between;
}

.section {
  padding-block: 125px 87px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Exo 2", sans-serif;
  font-style: normal;
  line-height: 1.2;
}

.grid {
  display: grid;
  gap: 15px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: #aeaeae;
  overflow: hidden;
}

.section_title {
  font-size: 21px;
  line-height: 30px;

  color: #fff;
  text-align: center;
}
.section_eng {
  font-size: 21px;
  line-height: 30px;
  color: #e0c8c8;
  text-align: center;
}
.section_badge {
  margin-block-start: 14px;
  margin-inline: auto;
  line-height: 30px;
}
.title_wrapper {
  margin-block-end: 20px;
}
.title_shape {
  margin-block-start: 14px;
  margin-inline: auto;
}

.button {
  max-width: max-content;
  padding: 14px 35px;
  background-color: var(--accent-clr);
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  transition: 1s;
}

.button:hover {
  background-color: #fff;
  color: var(--accent-clr);
}

.button2 {
  max-width: max-content;
  padding: 14px 35px;
  background-color: var(--accent-clr);
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  transition: 1s;
}

.button2:hover {
  background-color: #fff;
  color: var(--accent-clr);
}

.header {
  position: relative;
  top: 0;
  left: 0;
  background-color: #004d41;
  padding-block: 15px;
  width: 100%;
  z-index: 10;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_toggle {
  width: 30px;
  height: 30px;
  transition-duration: 0.5s;
}

.icon_menu {
  transition-duration: 0.5s;
  height: 2px;
  width: 30px;
  background-color: #fff;
  position: relative;
  text-align: left;
}

.icon_menu::before {
  transition-duration: 0.5s;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: 10px;
}

.icon_menu::after {
  transition-duration: 0.5s;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  content: "";
  top: -10px;
}

.nav_toggle.active .icon_menu {
  transition-duration: 0.5s;
  background: transparent;
}

.nav_toggle.active .icon_menu::before {
  transform: rotateZ(45deg) scaleX(1.25) translate(-5px, -5px);
}

.nav_toggle.active .icon_menu::after {
  transform: rotateZ(-45deg) scaleX(1.25) translate(-7px, 7px);
}

.show-menu {
  top: 68px;
  visibility: visible;
  opacity: 1;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0.69, 0.22);
}

.nav_menu {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: grid;
  place-content: center;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0.69, 0.22);
}

.nav_list {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;

  border-radius: 20px;

  grid-template-columns: repeat(2, 1fr);
  /* margin-block-start: 40px; */
}
.nav_list li a {
  text-decoration: none;
  position: relative;
}
.nav_list li a::after {
  content: "";
  background: #0a74ee;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s;
}
.nav_list li a:hover::after {
  width: 100%;
}

.nav_link {
  font-size: 20px;
  text-transform: uppercase;
}


.home {
  /* background: linear-gradient(var(--accent-clr), var(--accent-clr), var(--base-clr)); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
}

.home_content {
  padding: 150px 15px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home_title {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.home_description {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.typing_text {
  width: 300px;
  overflow: hidden;
}
.profession_text {
  font-family: "Arial Black", cursive, sans-serif;
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 5px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #31a2ff;
  -webkit-text-stroke-width: 1px;
  white-space: nowrap;
  font-weight: 700;
  position: relative;
}

.typed-cursor {
  display: none;
}

.skills_list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3px;
  column-gap: 3px;
}

.skills_list2 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2px;
  column-gap: 10px;
}

.skills_list li {
  margin-inline-start: 15px;
  list-style: disc;
  color: #fff;
}

#skills_list {
  margin-inline-start: 15px;
  list-style: disc;
  color: rgb(255, 3, 3);
}

.skills_list .span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.social_list {
  display: flex;
  align-items: center;
  gap: 11px;
}

.social_link {
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  display: grid;
  place-content: center;
  border: 1px solid var(--accent-clr);
  background-color: transparent;
  font-size: 14px;
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
  animation: slideLeft 1s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}

.social_link:hover {
  background-color: var(--accent-clr);
  color: #1f242d;
  cursor: pointer;
  box-shadow: 0 0 20px var(--accent-clr);
}


.service {
  background-color: var(--base-clr);
}

.service_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  align-items: start;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.service_card {
  background-color: var(--second-base-clr);
  padding: 40px 30px 40px 40px;
  border-radius: 12px;
  transition: all 0.5s ease;
}

.service_card:hover {
  background-color: var(--hover-clr);
}

.service_icon i {
  color: #fff;
  font-size: 60px;
  padding: 15px 10px 0 0;
}

.service_content {
  margin-block-start: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service_title {
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
}

.service_desc {
  color: #fff;
  margin-block-end: 20px;
}


.about {
  background-color: var(--base-clr);
  padding: 32px 0 30px;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}


.about_content .bio {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  line-height: 30px;
}

.about_content h4 {
  margin-block-start: 12px;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.about_content .bio_desc {
  margin-block: 27px 15px;
  color: #cdcdcd;
  line-height: 1.6;
}

.about_info {
  display: flex;
  flex-direction: row;
  gap: 38px;
  padding: 30px 20px 20px;
  background-color: var(--second-base-clr);
  border-radius: 20px;
}

.about_info .name,
.about_info .span {
  color: #fff;
  font-style: 16px;
  font-weight: 400;
}

.credit_info {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 30px 20px 20px;
  background-color: var(--second-base-clr);
  border: 2px solid #273a3f;
  border-radius: 20px;
}

.credit_info .name,
.credit_info .span {
  color: #fff;
  font-style: 16px;
  font-weight: 400;
}

.about_buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-start: 25px;
}

.about_buttons .button.download {
  background-color: transparent;
}

.about_buttons .button.download:hover {
  background-color: #fff;
}

.about_container {
  display: flex ;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: left;
}

.about_banner {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_content {
  flex: 1 1 500px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.skills {
  background-color: var(--base-clr);
  padding-block-end: 45px;
}

.skills_container {
  background-color: var(--second-base-clr);
  border-radius: 12px;
  padding: 50px 45px;
  width: auto;
}
.skills_container2 {
  background-color: #01181d;
  border-radius: 12px;
  padding: 50px 45px;
  width: auto;
}

.skills_containerPolice {
  background-color: var(--accent-clr);
  border-radius: 12px;
  padding: 50px 45px;
}

.skills_containerPolice2 {
  background-color: #01181d;
  border-radius: 12px;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.skills_items {
  gap: 40px;
}

.skills_wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.skills_title h3 {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.progress_container {
  background-color: #43585c;
  height: 3px;
  overflow: visible;
}

.progress_bar {
  background-color: #fff;
  position: relative;
  line-height: 4px;
  height: 4px;
  transition: width 0.6s ease;
}

.progress_bar .percent {
  position: absolute;
  top: -19px;
  right: 0;
  font-style: 16px;
  font-weight: 400;
  visibility: visible;
  color: #cdcdcd;
}

.user-wrapper {
  position: relative;
  z-index: 10;
  align-items: center;
}

.user-toggle-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.user-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

.user-arrow {
  color: #ffffff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* .Logo {
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    text-decoration: underline;
} */

.Logo {
  animation: slideRight 1s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}

#verifyIMG {
  max-width: 380px;
  margin-right: -20px;
  opacity: 0;
  animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
  animation-delay: 2s, 3s;
}


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }

  100% {
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.work {
  background-color: #01181d;
}

.work_list {
  gap: 35px;
}

.work_banner {
  position: relative;
  cursor: pointer;
}

.work_banner img {
  transition: all 0.5s ease;
}
.work_content {
  position: absolute;
  z-index: 10;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004d4180;
  transition: all 0.4s ease;
}

.work_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.card_icon i {
  color: #fff;
  font-size: 25px;
  margin-bottom: 25px;
}

.card_title {
  font-size: 23px;
  color: #fff;
  text-transform: capitalize;
  transition: 0.5s;
}

.card_desc {
  color: #fff;
  line-height: 1.2;
}

.work_banner img:hover {
  transform: scale(1.1);
}

.work_banner:hover .work_content {
  top: 0;
}

.count {
  background-image: url("../asset/counter_banner.png");
  background-size: cover;
  background-position: center center;
  padding: 125px 0 130px;
}

.count_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 45px;
  text-align: center;
}

.count_wrapper h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.count_desc {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}


.team {
  background-color: var(--base-clr);
}

.team_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.team_admin_list {
  margin-block-start: 50px;
  gap: 25px;
}

.team_item {
  border: 1px solid var(--accent-clr);
  padding: 60px 0 30px;
  border-radius: 10px;
  text-align: center;
  transform: translateY(-6px);
  transition: all 0.2s;
}
.team_item2 {
  border: 1px solid #ec0509;
  padding: 60px 0 30px;
  border-radius: 10px;
  text-align: center;
}

.team_banner img {
  margin-inline: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.team_content {
  padding: 23px 25px 30px;
}

.team_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.team_desc {
  color: #fff;
}
.cc {
  color: #a7a3a3;
  cursor: default;
}
.red {
  color: red;
  cursor: default;
}
.green {
  color: green;
  cursor: default;
}
.blue {
  color: rgb(83, 212, 255);
  cursor: default;
}
.team_badges_panel {
  padding: 4px 4px;
  border: 2px solid var(--accent-clr);
  border-radius: 5px;
  flex-direction: row;
  display: flex;
  justify-content: center;

  grid-template-columns: repeat(2, 1fr);
}
.team_badges_panel2 {
  padding: 4px 4px;
  border: 2px solid #00836f;
  border-radius: 5px;
  flex-direction: row;
  display: flex;
  justify-content: center;

  grid-template-columns: repeat(2, 1fr);
}

.img-badge {
  width: 10%;
  padding: 3px;
}
.team_social-list {
  margin-block-start: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.team_social-link i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--accent-clr);
  font-size: 18px;
  color: #fff;
  animation: slideRight 1s ease forwards;
  animation-delay: calc(0.2s * var(--i));
}
.team_social-link i:hover {
  cursor: pointer;
  box-shadow: 0 0 20px var(--accent-clr);
}

.bots {
  background-color: var(--base-clr);
}

.contact {
  background-color: var(--base-clr);
}

.contact_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.input_field {
  background-color: var(--second-base-clr);
  height: 60px;
  padding: 6px 12px;
  padding-left: 30px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}
.readonly_field {
  background-color: #1a2527;
  height: 60px;
  padding: 6px 12px;
  padding-left: 30px;
  border-radius: 5px;
  border: 1px solid #192e33;
  color: #fff;
  font-size: 16px;
}
.readonly_field:hover {
  cursor: not-allowed;
}

textarea {
  height: 170px !important;
  width: 100%;
  resize: none;
  margin-block-start: 20px;
}

.input_field::placeholder {
  color: #fff;
}
.readonly_field::placeholder {
  color: #fff;
}

.contact_button {
  border-radius: 5px;
  margin-block-start: 25px;
  margin-inline: auto;
}
.contact_button2 {
  border-radius: 5px;
  margin-block-start: 25px;
  margin-inline: auto;
}
.send_button {
  border-radius: 5px;
  margin-block-start: 25px;
  margin-inline: auto;
}

.brand {
  background-color: var(--base-clr);
}

.footer {
  background-color: var(--base-clr);
  color: #fff;
  padding: 30px 20px;
  font-weight: 400;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255 255 255 / 0.1);
}

.footer_container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer_left p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 14px;
  color: #ccc;
}

.socials-container {
  display: flex;
  gap: 18px;
}

.social_icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  color: #070707;
  transition: color 0.3s ease;
}

.social_icon:hover {
  color: #fe107c;
}

.social_icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


.btn-top {
  position: fixed;
  bottom: 45px;
  right: 80px;
  background-color: var(--accent-clr);
  padding: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.btn-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-24px);
}

@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 10px;
  }

  h1,
  h2,
  h3,
  h4 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .service_card {
    padding: 20px;
    font-size: 0.9rem;
  }


  .img-cover {
    width: 100px;
    height: 100px;
  }

  #verifyIMG {
    max-width: 80px;
    margin-right: 0;
  }

  .social_link {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .button,
  .button2 {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .social_list {
    gap: 5px;
  }

  .team_list {
    grid-template-columns: 1fr;
  }

  .bio_desc {
    margin: 10px 0;
    font-size: 0.9rem;
  }

  .skills_items {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-inline: auto;
  }
  .nav_toggle {
    display: none;
  }
  .header {
    background-color: transparent;
    padding-block: 24px;
  }

  .nav_menu {
    all: unset;
    background-color: transparent;
  }

  .nav_list {
    flex-direction: row;
  }

  .nav_link {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
  }

  .home {
    margin-block-start: -90px;
  }

  .service_list,
  .work_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .about_content .bio {
    font-size: 38px;
    line-height: 1.4;
  }

  .count_content {
    grid-template-columns: repeat(4, 1fr);
  }

  .team_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .team_admin_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin-inline: auto;
  }

  .section_title {
    font-size: 38px;
  }
  .section_eng {
    font-size: 15px;
  }

  .header {
    padding-block: 50px;
  }
  .nav_list {
    gap: 24px;
  }
  .nav_link {
    font-size: 18px;
  }

  .home {
    margin-block-start: 150px;
  }
  .home_content {
    padding: 310px 0 190px;
    margin-inline-start: 100px;
  }

  .typing_text {
    width: 100%;
  }

  .profession_text {
    font-size: 70px;
  }

  .social_list {
    margin-block-start: 0;
  }

  .social_link {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 25px;
  }
}

.text-white {
  color: #fff;
}

.currentCount {
  color: #fff;
  text-align: center;
}
.totalVotes {
  color: #fff;
}
.feedbackusername {
  font-size: 13px;
  font-weight: 686;
  text-transform: uppercase;
  color: #fff;
}
.googleSingIn {
  color: #fff;
  background: rgb(92, 88, 88);
  border-radius: 5px;
  padding: 5px;
}
.LogOut {
  color: red;
}
.feedbackdesc {
  color: #a7a3a3;
  row-gap: 4px;
  column-gap: 70px;
}
.font-black {
  font-weight: bold;
}
.text-48px {
  font-size: 48px;
}
.text-55px {
  font-size: 55px;
}
.text-12px {
  font-size: 12px;
}
.img-feedback {
  width: 60px;
}
.skills_containerTheEnd {
  background-color: #031f25;
  border-radius: 12px;
  width: 50px;
}
.madeof {
  width: 60px;
}
.space-between {
  justify-content: space-between;
}
.charCount {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
}
.padding-bottom-20px {
  padding-bottom: 20px;
}
.blue-text-gradient {
  background: #56ccf2;
  background: -webkit-linear-gradient(to top, #2f80ed, #56ccf2);
  background: linear-gradient(to to, #2f80ed, #56ccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mantenimiento {
  font-size: 21px;
  line-height: 30px;
  text-align: center;
  color: red;
}

.btn-panel {
  position: fixed;
  bottom: 70px;
  right: 30px;
  background-color: var(--accent-clr);
  padding: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.btn-panel-sidebar {
  position: fixed;
  bottom: 105px;
  right: 30px;
  background-color: var(--accent-clr);
  padding: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.panel {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
  display: none;
  width: 60%;
  height: 30%;
  background: #004d41;
  color: white;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.chat-messages {
  border-radius: 10px;
  background: #031f25;
  height: 100%;
  padding: 10px 10px 10px;
}

.open {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chat-room {
  height: 200px;
  overflow-y: scroll;
  margin-bottom: 10px;
}

.input_field2 {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}

.lightred {
  color: #ff4e4e;
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: #050046;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.checkboxtext {
  color: gray;
  text-align: center;
}

.buttonBox {
  padding: 10px 20px;
  background-color: #4285f4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttonBox:hover {
  background-color: #3367d6;
}

.gobackbutton {
  padding: 10px 20px;
  background-color: #e53935;
  width: fit-content;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gobackbutton:hover {
  background-color: #c62828;
}

.btn-panel2 {
  position: fixed;
  bottom: 55px;
  right: 80px;
  background-color: #004d41;
  padding: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.4s ease;
}

@media (max-width: 800px) {
  #sidebar {
    z-index: 1;
    height: 60px;
    width: 100%;
    border-right: none;
    border-top: 1px solid var(--line-clr);
    padding: 0;
    position: fixed;
    top: unset;
    bottom: 0;

    > ul {
      padding: 0;
      display: grid;
      grid-auto-columns: 60px;
      grid-auto-flow: column;
      align-items: center;
      overflow-x: scroll;
    }
    ul li {
      height: 100%;
    }
    ul a,
    ul .dropdown-btn {
      width: 60px;
      height: 60px;
      padding: 0;
      border-radius: 0;
      justify-content: center;
    }

    ul li span,
    ul li:first-child,
    .dropdown-btn svg:last-child {
      display: none;
    }

    ul li .sub-menu.show {
      position: fixed;
      bottom: 60px;
      left: 0;
      box-sizing: border-box;
      height: 60px;
      width: 100%;
      background-color: var(--hover-clr);
      border-top: 1px solid var(--line-clr);
      display: flex;
      justify-content: center;

      > div {
        overflow-x: auto;
      }
      li {
        display: inline-flex;
      }
      a {
        box-sizing: border-box;
        padding: 1em;
        width: auto;
        justify-content: center;
      }
    }
  }


  .user-profile-container {
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }

  .user-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
  }

  .user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .user-info span.user-name {
    font-size: 14px;
    font-weight: bold;
    color: #ecf0f1;
  }

  .user-info i.icon-chevron-down {
    font-size: 12px;
    color: #ecf0f1;
  }

  .user-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: var(--hover-clr);
    border-top: 1px solid var(--line-clr);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px 4px 0 0;
  }

  .user-dropdown ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .user-dropdown ul li {
    width: 100%;
    text-align: center;
    padding: 5px 0;
  }

  .user-dropdown ul li a {
    color: #ecf0f1;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s ease;
    display: block;
  }

  .user-dropdown ul li a:hover {
    background-color: #3a5b6f;
    border-radius: 0;
  }

  .user-dropdown.show {
    display: flex;
  }
  

  .user-profile-container button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .user-profile-container.hide-profile {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .user-profile-container {
    transition: opacity 0.3s ease;
  }

  
}

@media (min-width: 800px) {
  .user-profile-container {
    width: fit-content;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    border-radius: 10px;
  }

  #sidebar.close {
    padding: 5px;
    width: 58px;
    overflow-x: hidden;
    overflow-y: hidden;
  }

}



.socials-container{
    display: flex;
    gap: 20px;
  }
  .socials-container a{
    background-color: white;
    padding: 1em;
    border-radius: 50%;
    height: 64px;
    width: 64px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  .socials-container a svg{
    height: 32px;
  }
  .socials-container a::before{
    content: attr(data-social);
    position: absolute;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-30px) rotate(25deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42,0,.44,1.68);
  }
  .socials-container a:hover{
    background-color: var(--accent-color);
    fill: white;
  }
  .socials-container a::after{
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent-color);
    transform: translateY(0) rotate(25deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42,0,.44,1.68);
  }
  .socials-container a:hover::before{
    transform: translateY(-65px) rotate(0);
    opacity: 1;
  }
  .socials-container a:hover::after{
    transform: translateY(-42px) rotate(0);
    opacity: 1;
  }

  .login-container {
    background: linear-gradient(135deg, rgba(29, 43, 100, 0.9), rgba(19, 23, 40, 0.9));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
}

.login-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #7289da;
    margin-bottom: 30px;
}

.button-discord {
    background-color: #7289da;
    color: white;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-discord:hover {
    background-color: #677bc4;
}

.button-discord img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.button-discord span {
    font-size: 1.6rem;
    font-weight: bold;
}


.user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-profile img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-info span.user-name {
  font-size: 16px;
  font-weight: bold;
  color: #ecf0f1;
}

.user-info i.icon-chevron-down {
  font-size: 14px;
  cursor: pointer;
}

.user-dropdown {
  display: none;
  position: absolute;
  bottom: 60px;
  width: 200px;
  background-color: var(--hover-clr);
  padding: 10px;
  border-radius: 5px;
}

.user-dropdown.show {
  display: flex;
  flex-direction: column;
}

.user-dropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.user-dropdown ul li a {
  padding: 10px;
  display: block;
  color: #fff;
  text-align: center;
}

.user-dropdown ul li a:hover {
  background-color: #3a5b6f;
}


.user-dropdown.show {
  display: flex;
  top: -200px;
}


.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--base-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--line-clr);
  z-index: 1;
}

.logo-container a.logo img {
  height: 40px;
}


#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.modal-body {
  max-height: 75vh;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.accordion-button {
  background-color: #f8f9fa;
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  color: #000;
}
.accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.accordion-body .form-check {
  margin-bottom: 0.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  border-radius: 0.375rem;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.modal-lg {
  max-width: 1000px;
}
.modal-content {
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}
.modal-header,
.modal-footer {
  padding: 1rem 1.5rem;
}

.nav-tabs .nav-link {
  border-radius: 0.375rem 0.375rem 0 0;
}
.nav-tabs .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
}

.btn-success {
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 576px) {
  .modal-body {
    max-height: 65vh;
  }
}