@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


/* Demo 1 - Musharraf Demo - CSS Starts */
body {
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
}

.header {
  height: 15rem;
  width: 100%;
  margin-bottom: 4rem;
  position: relative;
}

.solid-bg {
  height: 100%;
  background-color: var(--primary-color);
}

.image-bg {
  height: 100%;
  overflow: hidden;
}

.profile-img {
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 5px solid white;
  position: absolute;
  transform: translateY(-50%);
  left: 7%;
  overflow: hidden;
}

.card-profile {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 1px solid white;
  overflow: hidden;
}

.social-media-icons {
  font-size: 1.7rem;
  margin: 0px 10px;
}

.social-media-icons-footer {
  font-size: 1.5rem;
  margin: 0px 10px;
}

.focus-animation {
  transform: scale(1);
  transition: all 0.3s ease;
}

.focus-animation:focus {
  transform: scale(1.2);
}

.profile-text {
  font-size: 3rem;
}

.card-profile-text {
  font-size: 1rem;
}

.user-name {
  font-weight: 600;
  font-size: 2rem;
}

.list {
  list-style-type: none;
  padding-left: 0rem;
  padding-right: 1rem;
  line-height: 1.8rem;
}

.list > li {
  padding-left: 1.5rem;
  position: relative;
  color: rgb(150, 150, 150);
  font-weight: 500;
}

.list-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
}

.instagram-icon {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-footer-elorca {
  height: 90px;
  width: 90px;
}

.logo-text {
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
}

@media (max-width: 767px) {
  .profile-text {
    font-size: 2.5rem;
  }

  .logo-footer-elorca {
    height: 50px;
    width: 50px;
  }

  .logo-text {
    font-size: 7px;
    white-space: nowrap;
    position: absolute;
    top: 0;
  }
}

/* Demo 1 - Musharraf Demo - CSS Ends */


/* Demo 2 - Vaishnavi - CSS starts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.linkist2-body {
  /* background: #f7f7f7; */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.linkist-container {
  background: white;
  border-radius: 20px;
  width: 375px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  padding: 20px;
}

/* Gradient Header Section */
.gradient-header {
  /* background: linear-gradient(135deg, #0f054d, #6700ff, #ff4b7a); */
  background: #133A85;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 20px;
  padding-bottom: 70px; /* Add padding to make room for the avatar */
  position: relative;
  text-align: center;
  border-bottom-left-radius: 50% 20px; /* To create the curve */
  border-bottom-right-radius: 50% 20px; /* To create the curve */
}

.profile-section {
  position: absolute;
  bottom: -50px; /* Move the avatar down into the bottom of the gradient */
  left: 50%;
  transform: translateX(-50%);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white; /* To give it the floating effect */
}

.agency-name {
  margin: 70px 0 5px 0; /* Adjust margin to give space below the avatar */
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.agency-description {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
  text-align: center;
}
.agency-email {
  font-size: 14px;
  color: gray;
  margin-bottom: 10px;
  text-align: center;
}
.agency-phonenumber {
  font-size: 14px;
  color: gray;
  margin-bottom: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 20px;
} 

.social-links .social-icon {
  color: #133A85;
}

.link-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 20px;
  align-items: center;
  margin-bottom: 15px;
}

.link-bar:last-child {
  margin-bottom: 0;
}

.link-bar .menu-links {
  border: none;
  background: none;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.copy-btn {
  background: #432332;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
}

.link-bar .menu-links i {
  margin-right: 10px;
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.footer-left p {
  font-size: 14px;
}

/* Button container */
.button-container {
  text-align: center;
  margin-top: 20px;
}

/* Save Contact Button */
.save-contact-button {
  background: #133A85;
  color: white;
  font-size: 12px;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 749px) {
  .linkist2-body {
    min-height: 80vh;
  }
}