:root{
  --header-h: 10vh;   /* fixed header height */
  --gap-top: 0vh;     /* header থেকে গ্যাপ */
  --gap-bottom: 0vh;  /* footer থেকে গ্যাপ (iframe-এর নিচ থেকে) */
  --img-d: 22vh;      /* profile image diameter */
}

/* কখনো স্ক্রল নয় */
html, body { overflow: hidden; }





* { 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: 0;                 /* ⬅ পূর্বের padding-top/ bottom বাদ */
  display: block;
  position: relative;         /* ⬅ absolute child (middle-part) রাখবো */
  text-align: center;
}



/* ===== Fixed Header with centered logo ===== */
.header{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 10vh;
  background: #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header .logo img{
  max-height: 7vh;
  width: auto;
  display: block;
}

.middle-part{
  position: absolute;
  top:    calc(var(--header-h) + var(--gap-top)); /* header থেকে 5vh নিচে */
  bottom: var(--gap-bottom);                       /* footer-এর 5vh উপরে */
  left: 0; right: 0;

  display: flex;
  align-items: center;   /* ভেতরের বক্স exact center */
  justify-content: center;
  overflow: hidden;      /* স্ক্রল ছাড়াই ফিট করাবে */
  padding-top: 10vh;
}


.profile-box{
  width: 80%;
  max-height: 100%;            /* ⬅ middle-part-এর ভেতরে সীমা */
  background: #202020;
  border-radius: 20px;
  padding: calc(var(--img-d)/2 + 1vh) 1.4vh 1.4vh; /* উপরে ইমেজ ওভারল্যাপ কভার */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}



.profile-img{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  justify-content: center;
}

.profile-img img{
  width: var(--img-d);
  height: var(--img-d);
  border-radius: 50%;
  object-fit: cover;
  border: 1vh solid #b28f65;       /* রিং একটু পাতলা */
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}


.availability-status{
  margin-top: 1vh;
  margin-bottom: 0.8vh;
  font-size: 2vh;
  font-weight: 600;
  padding: 1vh 1.5vh;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  background: #f0f0f0;
}

.dot { width: 10px; height: 10px; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.name  { font-size: clamp(2.6vh, 4.2vh, 4.8vh); font-weight: 700; color: #f4f4f4;}
.title { font-size: clamp(1.8vh, 2.2vh, 2.8vh); margin-top: -1vh; color: #f4f4f4;}

.bio{
  padding-top: 1.6vh;              /* আগে 5vh ছিল */
  line-height: 2.2vh;              /* আগে 3vh ছিল */
  font-size: 1.8vh;                /* একটু ছোট */
  width: 70vw;
  color: #f4f4f4;
}

.add-to-contact {
  margin-top: .1vh;                 /* আগে 3vh ছিল */
  font-size: 2.5vh;
  font-weight: 700;
  color: #202020;
  display: block;
  padding: 10px 12px;              /* আগে 15px ছিল */
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
  background: #f4f4f4;
}

.listings-btn{
  margin-top: 3vh;                 /* আগে 3vh ছিল */
  font-size: 2.5vh;
  font-weight: 700;
  color: #f4f4f4;
  display: block;
  padding: 10px 12px;              /* আগে 15px ছিল */
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
  background: #b28f65;
}


.add-to-contact:hover, .listings-btn:hover { background-color: #525252; color: #f4f4f4; }
.add-to-contact:active, .listings-btn:active { background-color: #999; color: #fff; transform: scale(0.95); }
.add-to-contact a, .listings-btn a { text-decoration: none; color: inherit; }

/* Footer / Icons — যেমন ছিল তেমনই */
.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:#f4f4f4;
  display:flex; justify-content:center; align-items:center; transition: all .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:#cecece; color:#000; }
.contact-info a:active{ background:#999; color:#fff; transform: scale(0.95); }

/* Slide icons */
@keyframes slideLeftRight{
  0%{ transform: translateY(-50%) translateX(0); }
  50%{ transform: translateY(-50%) translateX(-10px); }
  100%{ transform: translateY(-50%) translateX(0); }
}
.gt-icon-right, .gt-icon-left{
  position: fixed; top: 50%; z-index: 9999; animation: slideLeftRight 1.5s ease-in-out infinite;
}
.gt-icon-right{ right: 5vw; }
.gt-icon-left{ left: 5vw; }
.gt-icon-right a, .gt-icon-left a{ color:#202020; font-size:5vw; text-decoration:none; transition:all .3s ease; }







@media (max-height: 740px){
  :root{ --img-d: 20vh; }
  .profile-box{ gap: 0.5vh; padding: calc(var(--img-d)/2 + 0.8vh) 1.2vh 1.2vh; }
  .name{  font-size: clamp(2.2vh, 3.6vh, 4.2vh); }
  .title{ font-size: clamp(1.6vh, 2vh, 2.2vh); }
  .bio{   padding-top: 1.2vh; line-height: 2vh; font-size: 1.4vh; width: 78vw; }
  .add-to-contact, .listings-btn{ font-size: 1.8vh; padding: 8px 10px; margin-top: 0.8vh; }
}

@media (max-height: 600px){
  :root{ --img-d: 18vh; }
  .profile-box{ gap: 0.4vh; padding: calc(var(--img-d)/2 + 0.6vh) 1vh 1vh; border-radius: 12px; }
  .name{  font-size: clamp(2vh, 3.2vh, 3.8vh); }
  .title{ font-size: clamp(1.4vh, 1.8vh, 2vh); }
  .bio{   font-size: 1.3vh; line-height: 1.8vh; width: 80vw; }
  .add-to-contact, .listings-btn{ font-size: 1.6vh; padding: 7px 9px; border-radius: 8px; }
}
