@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
@import url("https://use.fontawesome.com/releases/v6.5.1/css/all.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-image: url("https://i.pinimg.com/originals/dd/b7/d2/ddb7d26375807f772c47b7df57a15395.gif");
  background-size: 2000px 1200px;
  /*background: linear-gradient(135deg, #667eea, #764ba2);*/
  color: white;
  text-align: center;
  scroll-behavior: smooth;
}

header {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid white;
}

header h2 {
  padding-top: 7px;
  padding-bottom: 15px;
  color: red;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 510;
}

nav a:hover {
  color: aqua;
  transition: 0.5s;
}

.descript {
  padding-top: 30px;
  font-size: medium;
}

main {
  padding: 20px;
}

form {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 5px;
}

input,
textarea,
button {
  color: aliceblue;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-custom {
  background: #710cd5;
  border: none;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: red;
}

.container {
  margin-top: 50px;
}

.upload-section,
.results-section {
  text-align: center;
  margin-top: 20px;
}

.upload-section {
  background-image: url("https://i.pinimg.com/originals/c3/fb/50/c3fb507aa7a5b89d70468edf7f0bf58e.gif");
  background-size: 500px 510px;
  /*background: rgba(0, 0, 0, 0.5);*/
  color: black;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: auto;
}

.upload-section img {
  margin-left: -10px;
  width: 350px;
  height: 380px;
  margin-bottom: 5px !important;
}

.upload-section h2 {
  margin-top: 20px !important;
  position: relative !important;
}

#analyze-btn {
  font-weight: 510;
}




/*Load*/
.loader {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 0 auto;
}

.loader:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #2a9d8f;
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 7px;
  width: 45px;
  border-radius: 4px;
  box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% {
    transform: scale(1, 0.7);
  }

  40% {
    transform: scale(0.8, 1.2);
  }

  60% {
    transform: scale(1, 1);
  }

  100% {
    bottom: 140px;
  }
}

@keyframes loading-step {
  0% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
      0 10px 0 #f2f2f2,
      -35px 50px 0 #f2f2f2,
      -70px 90px 0 #f2f2f2;
  }

  100% {
    box-shadow: 0 10px 0 #f2f2f2,
      -35px 50px 0 #f2f2f2,
      -70px 90px 0 #f2f2f2,
      -70px 90px 0 rgba(0, 0, 0, 0);
  }
}




#results p {
  margin-top: 10px;
  white-space: pre-wrap;
  /* Preserve formatting */
  /* background-color: #333;*/
  backdrop-filter: blur(10px);
  padding-top: 70px;
  padding-bottom: 50px;
  margin-left: 90px;
  margin-right: 90px;
}

.results button {
  width: 20%;
  align-items: center;
  text-align: center;
  margin: auto;
}

#resume-score {
  background-color: red;
  color: #fff;
  font-weight: 600 !important;
  font-size: 17px;
  margin-left: 540px;
  margin-right: 540px;
}

#results-heading {
  font-size: 20px;
  padding-bottom: 15px;
}

#enhance-btn {
  margin-top: 50px !important;
}

.experimental-text {
  font-size: 11px;
  color: aqua;
  transition: color 0.3s;
}

#enhance-btn {
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

#enhance-btn:hover {
  background-color: red;
  color: black;
}

#enhance-btn:hover .experimental-text {
  color: black;
}

#download-btn {
  margin-top: 30px !important;
  font-weight: 500;
}

/* Companies*/
.logo-strip-section {
  text-align: center;
  padding: 60px 0;
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

.logo-strip-section h2 {
  font-size: 24px;
  font-weight: 450;
  padding-bottom: 100px;
  color: #f2f2f2;
}

.logo-strip-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-strip {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 1% 5%;
  transform: translateX(-5%);
}

.logo-strip img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-strip img:hover {
  transform: scale(1.07);
  opacity: 1;
}

/* Fading blur edges */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #000 20%, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #000 20%, transparent);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .logo-strip {
    gap: 40px;
    padding: 0 5%;
    transform: translateX(-3%);
  }

  .logo-strip img {
    height: 30px;
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .logo-strip {
    gap: 30px;
    transform: translateX(0);
    justify-content: start;
  }

  .logo-strip-section h2{
    font-size: 14px;
    width: 90%;
    text-align: center;
    margin: auto;
    padding-bottom: 50px;
  }

  .fade-left {
    left: 0;
    background: linear-gradient(to right, #000 10%, transparent);
  }
  
  .fade-right {
    right: 0;
    background: linear-gradient(to left, #000 10%, transparent);
  }

  .logo-strip img {
    height: 26px;
    max-width: 100px;
  }

  .logo-strip-section h2{
    padding-bottom: 80px;
  }
}



/*Login page*/
#loginForm {
  padding-top: 120px;
  padding-bottom: 100px;
}


/*Signup page*/
#signupForm {
  padding-top: 120px;
  padding-bottom: 100px;
}


/*Contact page*/
#contact-form {
  margin-top: 60px;
  padding-top: 10px;
  padding-bottom: 20px;

}

/* Contact page custom header */
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-header h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-header {
    margin-bottom: 10px;
  }
  .contact-logo {
    width: 48px !important;
    height: 48px !important;
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .contact-header h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  #contact-form {
    margin-top: 20px !important;
    padding-top: 35px !important;
    padding-bottom: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 600px) {
  .contact-header {
    margin-bottom: 2px;
  }
  .contact-logo {
    width: 60px !important;
    height: 60px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 2px;
  }
  #contact-form {
    margin-top: 4vw;
    margin-bottom: 4vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
    width: 98vw !important;
    max-width: 99vw;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .contact-header {
    margin-bottom: 6px;
  }
  .contact-logo {
    width: 36px;
    height: 36px;
    margin-top: 6px;
    margin-bottom: 4px;
  }
  .contact-header h2 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  #contact-form {
    margin-top: 10px;
    padding-top: 2px;
    padding-bottom: 6px;
    width: 98vw;
    max-width: 99vw;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .appName {
    font-size: large !important;
  }

  nav a {
    font-size: 14px;
  }

  .descript p {
    font-size: small;
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .upload-section img {
    width: 250px !important;
    height: 250px !important;
  }

  .upload-section {
    background-size: 330px 450px !important;
  }

  .upload-section h2 {
    padding-top: 10px !important;
    margin-top: 40px !important;
    font-size: 16px !important;
  }

  .upload-section input {
    margin-left: auto;
    margin-right: auto;
    width: 90% !important;
    height: 35px;
    font-size: 13px;
  }

  .upload-section button {
    margin-left: auto;
    margin-right: auto;
    width: 70% !important;
    height: 40px;
    font-size: 13px;
    font-weight: 500;
  }

  body {
    background-size: 2000px 1200px !important;
  }

  .loader {
    margin-top: 80px !important;
  }

  .results h2 {
    font-size: medium !important;
  }

  #results p {
    font-size: medium !important;
  }

  #resume-score {
    color: #fff;
    font-weight: 600 !important;
    font-size: 14px;
    margin-left: 95.5px;
    margin-right: 95.5px;
    width: 150px;
  }

  #enhance-btn {
    font-weight: 500;
  }

  #enhance-btn span {
    font-size: 9px;
  }

  #download-btn {
    font-weight: 500;
  }

  #signupForm {
    padding-top: 70px;
    font-size: small !important;
    height: auto;
    width: auto;
  }

  #loginForm {
    padding-top: 70px;
    font-size: small !important;
    height: auto;
    width: auto;
  }

  #contact-form {
    padding-top: 70px;
    font-size: small !important;
    height: auto;
    width: auto;
  }

  .results button,
  .edit-btn {
    width: 50% !important;
    font-size: small !important;
  }

  .footer-left button {
    visibility: hidden;
    font-size: small !important;
    font-weight: 500;
    color: aliceblue;
  }

  .top-button {
    visibility: hidden;
  }

  .footer-center p {
    padding-top: 30px;
    margin-left: 20px !important;
    margin-right: 20px !important;
    font-size: 12px;
  }

  .footer-right p {
    padding-top: 30px;
    font-size: 14px !important;
  }

  /* Style for social icons */
  .social-icons a i {
    font-size: 18px !important;
    margin-right: 15px;
    margin-left: 15px;
    transition: transform 0.2s;
  }

  .social-icons a i:hover {
    transform: scale(1.2);
    color: #0077b5;
  }


  .footer-right a {
    padding-top: 20px !important;
    padding-bottom: 60px !important;
    font-size: 14px !important;
  }

  .footer-right i {
    padding-top: 10px !important;
    font-size: medium !important;
  }

  .profile-pic img {
    width: 130px;
    height: 130px;
    border-radius: 50% !important;
  }

  .profile-container h2 {
    font-size: 14px !important;
  }

  .profile-container p {
    font-size: 12px;
  }

  .profile-container input {
    font-size: 14px;
    width: auto;
    height: auto;
  }

  #edit-section button {
    font-size: 13px !important;
    width: 70%;
    font-size: small !important;
    height: auto;
  }

  .edit-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .container {
    margin-top: 50px;
  }

}

/* Home avatar */
.user-avatar {
  position: absolute;
  right: 0;
  top: 50px;
}

.user-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  /* Adjust as needed */
}

.profile-container {
  max-width: 500px;
  background: rgba(0, 0, 0, 0.5);
  margin: 50px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  margin-bottom: 40px;
}

.edit-mode input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#file-input {
  display: none;
}



/* FOOTER */

footer {
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left button {
  background-color: rgb(188, 91, 22);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
}

.footer-left button:hover {
  background-color: rgb(179, 20, 20);
}




.top-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.top-button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(181, 160, 255);
  align-items: center;
}

.top-button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.top-button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.top-button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}


.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.copyright p {
  margin: 0;
  width: fit-content;
}


.footer-right {
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer-right a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-right p {
  margin-bottom: -5px;
}

.footer-right a:hover {
  color: #ccc;
}

.footer-right i {
  font-size: 20px;
  margin-right: 5px;
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}






/*btn-shine*/
.btn-shine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 48px;
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 25px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-o-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}


/*Login page*/
.login-form-container {
  margin: auto;
  width: 500px;
  height: 650px;
  background-color: rgba(40, 49, 49, 0.3);
  box-shadow: 0 5px 30px black;

  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 35px;
  margin-bottom: 100px;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  transition: box-shadow 0.3s ease;
}

.login-title {
  color: #fff;
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 30px 0;
  font-size: 28px;
  font-weight: 800;
}

.login-form {
  padding-top: 50px !important;
  padding-bottom: 40px !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: transparent;
  box-shadow: 0 5px 30px black;
  transition: transform 0.3s ease;
}

.login-form-container:hover .login-form {
  transform: scale(1.03);
}

.login-form-container:hover {
  box-shadow: 0 0 20px 5px #00cce7;
}

.login-input {
  border-radius: 20px;
  color: #fff;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
  box-sizing: border-box;
  padding: 12px 15px;
}

.login-page-link {
  text-decoration: underline;
  margin: 0;
  text-align: end;
  text-decoration-color: #747474;
}

.login-page-link-label {
  cursor: pointer;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.login-page-link-label:hover {
  color: #868686;
}

.login-form-btn {
  padding: 10px 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  border-radius: 20px;
  border: 0 !important;
  outline: 0 !important;
  background: red;
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.login-form-btn:active {
  box-shadow: none;
}

.sign-up-label {
  padding-top: 12px;
  margin: 0;
  font-size: 17px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.sign-up-link {
  margin-left: 1px;
  font-size: 17px;
  text-decoration: underline;
  text-decoration-color: teal;
  color: aqua;
  cursor: pointer;
  font-weight: 800;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.login-buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}

.apple-login-button,
.google-login-button {
  border-radius: 20px;
  box-sizing: border-box;
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 15px;
  gap: 5px;
}

.apple-login-button {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

.google-login-button {
  color: #000;
  background-color: #fff;
  border: 2px solid #747474;
}

.apple-icon,
.google-icon {
  font-size: 18px;
  margin-bottom: 1px;
}

@media (max-width: 768px) {
  .login-title {
    font-size: 20px;
  }

  .login-form-container {
    width: 100%;
    font-size: 14px !important;
    height: 605px !important;
    margin-bottom: 30px !important;
  }

  .login-form {
    width: 100%;
    font-size: 14px !important;
  }

  .apple-login-button,
  .google-login-button {
    font-size: 14px !important;
    font-weight: bold !important;
  }

  .login-page-link-label,
  .sign-up-label,
  .sign-up-link {
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .sign-up-link,
  .login-form button {
    font-size: 14px !important;
    font-weight: 600 !important;
  }
}


/*Signup Page*/
.signup-form-container {
  margin: auto;
  width: 500px;
  height: 850px;
  background-color: rgba(40, 49, 49, 0.3);
  box-shadow: 0 5px 30px black;

  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 35px;
  margin-bottom: 100px;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  transition: box-shadow 0.3s ease;
}

.signup-title {
  color: #fff;
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 30px 0;
  font-size: 28px;
  font-weight: 800;
}

.signup-form {
  padding-top: 50px !important;
  padding-bottom: 40px !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: transparent;
  box-shadow: 0 5px 30px black;
  transition: transform 0.3s ease;
}

.signup-form-container:hover .signup-form {
  transform: scale(1.03);
}

.signup-form-container:hover {
  box-shadow: 0 0 20px 5px #00cce7;
}

.signup-input {
  border-radius: 20px;
  color: #fff;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
  box-sizing: border-box;
  padding: 12px 15px;
}

.signup-page-link {
  text-decoration: underline;
  margin: 0;
  text-align: end;
  text-decoration-color: #747474;
}

.signup-page-link-label {
  cursor: pointer;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.signup-page-link-label:hover {
  color: #868686;
}

.signup-form-btn {
  padding: 10px 15px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  border-radius: 20px;
  border: 0 !important;
  outline: 0 !important;
  background: red;
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.signup-form-btn:active {
  box-shadow: none;
}

.login-label {
  padding-top: 12px;
  margin: 0;
  font-size: 17px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.login-link {
  margin-left: 1px;
  font-size: 17px;
  text-decoration: underline;
  text-decoration-color: teal;
  color: aqua;
  cursor: pointer;
  font-weight: 800;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.signup-buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}

.apple-signup-button,
.google-signup-button {
  border-radius: 20px;
  box-sizing: border-box;
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 15px;
  gap: 5px;
}

.apple-signup-button {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

.google-signup-button {
  color: #000;
  background-color: #fff;
  border: 2px solid #747474;
}

.apple-icon,
.google-icon {
  font-size: 18px;
  margin-bottom: 1px;
}

@media (max-width: 768px) {
  .signup-title {
    font-size: 20px;
  }

  .signup-form-container {
    width: 100%;
    font-size: 14px !important;
    height: 785px !important;
    margin-bottom: 30px !important;
  }

  .signup-form {
    width: 100%;
    font-size: 14px !important;
  }

  .apple-signup-button,
  .google-signup-button {
    font-size: 14px !important;
    font-weight: bold !important;
  }

  .signup-page-link-label,
  .login-up-label,
  .login-up-link {
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .login-up-link,
  .signup-form button {
    font-size: 14px !important;
    font-weight: 600 !important;
  }
}





/*About*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: 130em solid #173cce;
}

.about {
  overflow: hidden;
  background: transparent url("../img/bg.jpg") center center no-repeat !important;
  background-size: cover;
  position: relative;
  margin: 0px !important;
  width: 100% !important;
  height: 100% !important;
  font: normal 14px/1.618em "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.about:before {
  content: "";
  height: 0px !important;
  padding: 0px;
  border-color: transparent;/*border: 130em solid #173cce*/
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 2;
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: puff 0.5s 1.8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, borderRadius 0.2s 2.3s linear forwards;
  animation: puff 0.5s 1.8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, borderRadius 0.2s 2.3s linear forwards;
}

.about h1,
.about h2 {
  font-weight: 500;
  margin: 0px 0px 5px 0px;
}

.about h1 {
  font-size: 24px;
}

.about h2 {
  color: #ffffff;
  font-size: 16px;
}

.about p {
  font-size: 15px;
  margin: 0px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  /* center horizontally */
  min-height: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* center content vertically */
}


.profile-card {
  background: #FFB300;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0 !important;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.profile-card header {
  padding: 40px 20px 30px 20px;
  display: inline-block;
  border-right: 2px dashed #EEEEEE;
  background: #173cce;/*background: #f12323*/
  /*#FFFFFF*/
  color: #000000;
  margin-top: 50px;
  opacity: 0;
  text-align: center;
  -webkit-animation: moveIn 1s 3.1s ease forwards;
  animation: moveIn 1s 3.1s ease forwards;
}

.profile-card header h1 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  /*#FF5722*/
}

.profile-card header a {
  display: inline-block;
  text-align: center;
  position: relative;
  margin: 25px 30px;
}

.profile-card header a:after {
  position: absolute;
  content: "";
  bottom: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border: 4px solid #FFFFFF;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: -webkit-linear-gradient(top, #2196F3 0%, #2196F3 50%, #FFC107 50%, #FFC107 100%);
  background: linear-gradient(#2196F3 0%, #2196F3 50%, #FFC107 50%, #FFC107 100%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-animation: scaleIn 0.3s 3.5s ease forwards;
  animation: scaleIn 0.3s 3.5s ease forwards;
}

.profile-card header a>img {
  width: 120px;
  max-width: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0.06);
}

.profile-card header a:hover>img {
  -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
}

.profile-card .profile-bio {
  display: inline-block;
  padding: 50px 20px 30px 20px;
  background: #FFFFFF;
  color: #333333;
  margin-top: 50px;
  text-align: center;
  opacity: 0;
  -webkit-animation: moveIn 1s 3.1s ease forwards;
  animation: moveIn 1s 3.1s ease forwards;
}



/*Portfolio button*/
.portfolio-btn {
  margin-bottom: 20px !important;
  width: 140px;
  height: 50px;
  background:red;/*#441fe9*/
  color: #fff;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.portfolio-btn a{
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.portfolio-btn span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: top 0.5s;
}

.portfolio-btn-text-one {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.portfolio-btn-text-two {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  transform: translateY(-50%);
}

.portfolio-btn:hover .portfolio-btn-text-one {
  top: -100%;
}

.portfolio-btn:hover .portfolio-btn-text-two {
  top: 50%;
}

.profile-social-links {
  list-style: none;
  width: 218px;
  display: inline-block;
  margin: 0;
  padding: 15px 20px;
  color: #000;
  text-align: center;
  opacity: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: moveIn 1s 3.1s ease forwards;
  animation: moveIn 1s 3.1s ease forwards;
}

.about i {
  font-size: 15px !important;
  text-align: center !important;
}

.profile-social-links {
  display: flex !important;
  justify-content: center !important; 
  gap: 5px !important;
  align-items: center !important;
}

.profile-social-links i {
  font-size: 20px !important;
  text-align: center !important;
}

.profile-social-links li a {
  display: inline-block;
  color: red;
  width: 44px;
  height: 44px;
  padding-top: 5px;
  position: relative;
  overflow: hidden !important;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.profile-social-links li a i {
  position: relative;
  z-index: 1;
}

.profile-social-links li a img,
.profile-social-links li a svg {
  width: 24px;
}

@-webkit-keyframes init {
  0% {
    width: 0px;
    height: 0px;
  }

  100% {
    width: 56px;
    height: 56px;
    margin-top: 0px;
    opacity: 1;
  }
}

@keyframes init {
  0% {
    width: 0px;
    height: 0px;
  }

  100% {
    width: 56px;
    height: 56px;
    margin-top: 0px;
    opacity: 1;
  }
}

@-webkit-keyframes puff {
  0% {
    top: 100%;
    height: 0px;
    padding: 0px;
  }

  100% {
    top: 50%;
    height: 100%;
    padding: 0px 100%;
  }
}

@keyframes puff {
  0% {
    top: 100%;
    height: 0px;
    padding: 0px;
  }

  100% {
    top: 50%;
    height: 100%;
    padding: 0px 100%;
  }
}

@-webkit-keyframes borderRadius {
  0% {
    -webkit-border-radius: 50%;
  }

  100% {
    -webkit-border-radius: 0px;
  }
}

@keyframes borderRadius {
  0% {
    -webkit-border-radius: 50%;
  }

  100% {
    border-radius: 0px;
  }
}

@-webkit-keyframes moveDown {
  0% {
    top: 50%;
  }

  50% {
    top: 40%;
  }

  100% {
    top: 100%;
  }
}

@keyframes moveDown {
  0% {
    top: 50%;
  }

  50% {
    top: 40%;
  }

  100% {
    top: 100%;
  }
}

@-webkit-keyframes moveUp {
  0% {
    background: #FFB300;
    top: 100%;
  }

  50% {
    top: 40%;
  }

  100% {
    top: 50%;
    background: #E0E0E0;
  }
}

@keyframes moveUp {
  0% {
    background: #FFB300;
    top: 100%;
  }

  50% {
    top: 40%;
  }

  100% {
    top: 50%;
    background: #E0E0E0;
  }
}

@-webkit-keyframes materia {
  0% {
    background: #E0E0E0;
  }

  50% {
    -webkit-border-radius: 4px;
  }

  100% {
    width: 440px;
    height: 280px;
    background: #FFFFFF;
    -webkit-border-radius: 4px;
  }
}

@keyframes materia {
  0% {
    background: #E0E0E0;
  }

  50% {
    border-radius: 4px;
  }

  100% {
    width: 440px;
    height: 280px;
    background: #FFFFFF;
    border-radius: 4px;
  }
}

@-webkit-keyframes moveIn {
  0% {
    margin-top: 50px;
    opacity: 0;
  }

  100% {
    opacity: 1;
    margin-top: -20px;
  }
}

@keyframes moveIn {
  0% {
    margin-top: 50px;
    opacity: 0;
  }

  100% {
    opacity: 1;
    margin-top: -20px;
  }
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes ripple {
  0% {
    transform: scale3d(0, 0, 0);
  }

  50%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }

  100% {
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale3d(0, 0, 0);
  }

  50%,
  100% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    opacity: 0;
  }
}

@media screen and (min-aspect-ratio: 4/3) {
  .about {
    background-size: cover;
  }

  .about:before {
    width: 0px;
  }

  @-webkit-keyframes puff {
    0% {
      top: 100%;
      width: 0px;
      padding-bottom: 0px;
    }

    100% {
      top: 50%;
      width: 100%;
      padding-bottom: 100%;
    }
  }

  @keyframes puff {
    0% {
      top: 100%;
      width: 0px;
      padding-bottom: 0px;
    }

    100% {
      top: 50%;
      width: 100%;
      padding-bottom: 100%;
    }
  }
}

@media screen and (min-height: 480px) {
  .profile-card header {
    width: auto;
    height: auto;
    padding: 30px 20px;
    display: block;
    float: none;
    border-right: none;
  }

  .profile-card .profile-bio {
    width: auto;
    height: auto;
    padding: 15px 20px 30px 20px;
    display: block;
    float: none;
  }

  .profile-social-links {
    width: 100%;
    display: block;
    float: none;
  }

  @-webkit-keyframes materia {
    0% {
      background: #E0E0E0;
    }

    50% {
      -webkit-border-radius: 4px;
    }

    100% {
      width: 280px;
      height: 440px;
      background: #FFFFFF;
      -webkit-border-radius: 4px;
    }
  }

  @keyframes materia {
    0% {
      background: #E0E0E0;
    }

    50% {
      border-radius: 4px;
    }

    100% {
      width: 440px;
      min-height: 500px;
      background: #FFFFFF;
      border-radius: 4px;
    }
  }
}


/*About for mobile view*/
@media screen and (max-width: 768px) {
  .about {
    background-size: cover;
  }

  .profile-card {
    margin: 2px auto !important;
    /*padding: 15px;*/
    min-height: auto;
  }

  .profile-card header {
    padding: 20px;
    border-right: none;
    text-align: center;
    margin-top: 0;
  }

  .profile-card header a>img {
    width: 80px;
  }

  .profile-card .profile-bio {
    width: 100%;
    padding: 15px; 
    margin-top: 10px;
  }

  .profile-social-links {
    width: 100%;
    display: flex;
    justify-content: center; 
    gap: 10px;  
    margin-top: 10px; 
  }

  .profile-social-links i {
    font-size: 20px;
  }

  .about h1 {
    font-size: 20px;
  }

  .about h2 {
    font-size: 14px; 
  }

  .about p {
    font-size: 14px;
  }

  /* Adjust the circular profile card transition */
  @keyframes materia {
    0% {
      background: #E0E0E0;
    }
    50% {
      border-radius: 2px;
    }
    100% {
      width: 100%;
      height: auto;
      background: #FFFFFF;
      border-radius: 2px;
    }
  }
}
