*{
    margin: 0;
    padding: 0;
}

body{
font-family: 'Vazirmatn', sans-serif;
  min-height: 100vh;
  background:rgb(248, 200, 208);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.main-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column; 
  gap: 25px;         
}

.hero-warpper{
    width: 100%;
    max-width: 480px;
}

.hero-card{
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 60px 30px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(180, 150, 190, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
    
}

.profile-warb {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.profile-border {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(to bottom, #ff9eb5, #a5b4fc);
  box-shadow: 0 10px 25px rgba(165, 180, 252, 0.3);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}  

 .hero-name {
    color: #9f1239;
  font-size: 2.8rem;
  font-weight: 888;
  margin-bottom: 20px;
  font-family: 'Vazirmatn', sans-serif;
}

.hero-tag{
    display: inline-block;
  background: #ffe4e6; 
  color: #9f1239;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.hero-description {
  line-height: 1.8;
  font-size: 1.06rem;
  font-weight: 400;
}

.info-card {
  background: white;
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  border: 1px solid rgba(255,255,255,0.5);
}

.parageraph{
  text-align: justify;
  padding-top: 14px;
}

h2{
   color: #9f1239;
}

.address{
  padding-top: 14px;
  text-align: center;
  font-family: 'Vazirmatn', sans-serif;
}

.a-address{
  color: #9f1239;
}