* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #7a7a7a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

li,i{
    text-decoration: none;
    font-size: 20px;
}
a{
    text-decoration: none;
    font-size: 16px;
}
i{
    padding-right: 10px;}

.card-container {
  min-width: 400px;
  max-width: 80%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.card {
  display: flex;
  flex-direction: column;
}

.card-header {
  position: relative;
  height: 450px;
  background-color: black;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.overlay h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.overlay h3 {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 10px;
}

.company {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  margin-bottom: 15px;
}

.company img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: white;
}

.icons {
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.about-section {
  padding: 20px;
  background-color: white;
}

.about-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 14px;
  color: #333;
}

.card-footer {
  display: flex;
  justify-content: space-around;
  padding: 12px 20px;
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
}

.card-footer button {
  background: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-footer button:hover {
  background-color: #efefef;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #000000;
}

input:focus + .slider {
  box-shadow: 0 0 1px #000000;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}
