* {
    Margin: 0;
    Padding: 0;
    box-sizing: border-box; 
}

body {
  background-color: #f4f4f4;
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: #202020;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



.container {
  flex: 1;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 8vh;
}



.profile-img img {
  width: 22vh;
  height: 22vh;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5vh solid #b28f65;
  
}

.profile-img {
  position: absolute;
  bottom: -12.5vh;
}

.header {
  position: fixed;
  background-color: #202020;
  height: 20vh;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 50px 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1000;
}

.middle-part {
  margin-top: 25vh;
  
}


.availability-status {
  margin-top: 1vh;
  margin-bottom: 2vh;
  font-size: 2vh;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  background-color: #f0f0f0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


.name-title {
  
}

.name {
  font-size: 5vh;
  font-weight: 900;
}

.title {
  font-size: 3vh;
  font-weight: 500;
  margin-top: -1vh;
}


.bio {
  padding-top: 5vh;
  line-height: 3vh;
  font-size:1.8vh;
  width: 80vw;
  height: auto;
}

.add-to-contact {
  margin-top: 3vh;
  font-size: 2.5vh;
  font-weight: 700;
  color: #f4f4f4;
  background-color: #202020;
  display: inline-block;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* ✅ Added shadow */
  transition: all 0.3s ease;
  
}

.add-to-contact:hover {
  background-color: #525252;
  color: #f4f4f4;
}

.add-to-contact:active {
  background-color: #999999;
  color: #ffffff;
  transform: scale(0.95);
}

.add-to-contact a {
  text-decoration: none;
  color: inherit;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #202020;
  z-index: 9999;
  padding: 1.5vh 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-info a {
  width: 7vh;
  height: 7vh;
  border-radius: 10px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #202020;
  text-decoration: none;
}

.contact-info a svg {
  width: 4vh;
  height: 4vh;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info a:hover {
  background-color: #cecece;
  color: #000000;
}

.contact-info a:active {
  background-color: #999999;
  color: #ffffff;
  transform: scale(0.95);
}

@keyframes slideLeftRight {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

.gt-icon {
  position: fixed;
  right: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

.notice-bar {
  position: fixed;
  top: 2vh;
  left: 0;
  width: 100%;
  background-color: #202020;
  color: #f4f4f4;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9999;
  font-size: 2vh;
  height: 5vh;
  display: flex;
  align-items: center;
}

.notice-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollLeft 15s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
