*{box-sizing:border-box;margin:0;padding:0}

body{
  min-height:100vh;
  font-family:Arial,Helvetica,sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.08),rgba(255,255,255,.08)),
    url("assets/images/banner.jpeg") center/cover no-repeat fixed;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:24px;
}

.card{
  width:100%;
  max-width:430px;
  background:rgba(255,255,255,.96);
  border-radius:28px;
  padding:42px 28px 30px;
  text-align:center;
  box-shadow:0 25px 80px rgba(0,0,0,.20);
}

.avatar-box{
  width:180px;
  height:180px;
  margin:0 auto 18px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.paint{
  position:absolute;
  width:175px;
  height:70px;
  bottom:18px;
  background:linear-gradient(90deg,#00a8ff,#7c3aed,#ff3b8d,#ff9f1c);
  clip-path:polygon(4% 54%,15% 31%,28% 42%,42% 8%,56% 28%,71% 10%,91% 35%,98% 61%,86% 82%,65% 70%,49% 94%,32% 75%,13% 88%);
  animation:paintMove 4s ease-in-out infinite alternate;
  z-index:1;
}

.avatar-box img{
  width:145px;
  height:145px;
  border-radius:50%;
  object-fit:cover;
  position:relative;
  z-index:2;
  border:5px solid #fff;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

h1{
  font-size:30px;
  color:#101828;
  margin-bottom:6px;
}

p{
  color:#667085;
  font-size:15px;
  margin-bottom:26px;
}

.links{
  display:flex;
  flex-direction:column;
  gap:13px;
}

.btn{
  height:58px;
  display:grid;
  grid-template-columns:30px 1fr 22px;
  align-items:center;
  gap:12px;
  padding:0 18px;
  border-radius:15px;
  text-decoration:none;
  color:#fff;
  font-size:17px;
  font-weight:800;
  text-align:left;
  box-shadow:0 12px 24px rgba(0,0,0,.13);
  transition:.22s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(0,0,0,.18);
}

.btn svg{
  width:22px !important;
  height:22px !important;
  fill:#fff !important;
  display:block;
}

.btn .chev{
  width:18px !important;
  height:18px !important;
  fill:none !important;
  stroke:#fff !important;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  justify-self:end;
}

.whatsapp{background:linear-gradient(135deg,#16b75a,#25D366)}
.facebook{background:linear-gradient(135deg,#145bd8,#1877F2)}
.instagram{background:linear-gradient(135deg,#833AB4,#E1306C,#F77737)}
.youtube{background:linear-gradient(135deg,#d90000,#FF0000)}

@keyframes paintMove{
  0%{transform:translateX(-8px) scale(.96)}
  50%{transform:translateY(-5px) scale(1.05)}
  100%{transform:translateX(8px) scale(1.1)}
}

@media(max-width:480px){
  body{padding:18px;background-attachment:scroll}
  .card{padding:34px 18px 26px}
  h1{font-size:25px}
}



@font-face{
  font-family:'Jameel Noori Nastaleeq';
  src:url("assets/fonts/Jameel%20Noori%20Nastaleeq.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

.urdu-note{
  font-family:'Jameel Noori Nastaleeq', serif !important;
  max-width:360px;
  margin:0 auto 26px;
  color:#475467;
  font-size:19px;
  line-height:2.25;
  font-weight:400;
  text-align:center;
  direction:rtl;
}






.designer-credit{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:nowrap;
}

.designer-credit img{
  width:42px;
  height:auto;
  max-height:24px;
  object-fit:contain;
  flex-shrink:0;
}

.designer-credit p{
  margin:0;
  font-size:12px;
  color:#667085;
  font-weight:500;
  line-height:1;
  white-space:nowrap;
}

.designer-credit a{
  color:#2563eb;
  text-decoration:none;
  font-weight:700;
}

