body{
  margin:0;
  font-family:Arial;
  background:#050509e3;
  color:white;
  overflow-x:hidden;
}

/* ================= LOADER ================= */
.loader-screen{
  position:fixed;
  inset:0;
  background:black;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
  transition:1s;
}

.loading-box{text-align:center;}

.loading-bar{
  width:260px;
  height:14px;
  background:#111;
  border-radius:8px;
  overflow:hidden;
  border:2px solid rgba(255,0,0,0.7);
  box-shadow:0 0 25px rgba(255,0,0,0.6);
}

.loading-bar span{
  display:block;
  height:100%;
  width:0%;
  background:red;
  animation:load 2.8s forwards;
}

@keyframes load{to{width:100%}}

.loading-text{
  margin-top:18px;
  font-size:15px;
  letter-spacing:5px;
  display:flex;
  align-items:center;
  gap:12px;
  color:red;
  text-shadow:0 0 15px red;
}

.circle-loader{
  width:18px;
  height:18px;
  border-radius:50%;
  border:3px solid rgba(255,0,0,0.2);
  border-top:3px solid red;
  animation:spin 0.8s linear infinite;
}

@keyframes spin{to{transform:rotate(360deg)}}

/* ================= MAIN ================= */
.main-site{opacity:0;transition:1s}
.main-site.show{opacity:1}

/* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:12px 0;
  z-index:999;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,0,0,0.35);
}

.nav-inner{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
  padding:0 40px;
}

.nav-logo img{
  height:48px;   /* pehle ~38px tha */
  width:auto;
  filter: drop-shadow(0 0 16px red);
}

.nav{
  display:flex;
  gap:35px;
}

.nav a{
  color:white;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  transition:0.25s;
}

.nav a i{color:red}

.nav a:hover{
  color:red;
  text-shadow:0 0 15px red;
}

.nav a:hover i{
  transform:scale(1.15);
  text-shadow:0 0 18px red;
}

.nav a.active{
  color:red;
  text-shadow:0 0 15px red;
}

/* ================= HERO ================= */
.hero{
  height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 90px; /* Reduced vertical padding to move things up */
}



.profile-pic{
  width:170px;
  height:170px;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 0 45px red;
}

.profile-pic img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-title{
  font-size:55px;
  font-weight:900;
  margin:20px 0 10px;
  color:red;
  text-shadow:0 0 25px red;
}

.hero-subtitle{
  font-size:16px;
  color:#bbb;
}

.hero-type{
  margin-top:25px;
  font-size:26px;
}

#typewriter{
  color:red;
  text-shadow:0 0 20px red;
}

/* ================= WELCOME CARD ================= */
.welcome-card{
  width:560px;
  height:190px;
  display:flex;
  gap:20px;
  padding:25px;
  border-radius:18px;
  background:rgba(20,20,25,0.92);
  border:1px solid rgba(255,0,0,0.4);
  box-shadow:0 0 30px rgba(255,0,0,0.3);
  transition:0.3s;
}

.welcome-card:hover{
  transform:scale(1.04);
  box-shadow:0 0 60px rgba(255,0,0,0.7);
}

.welcome-skin{
  width:150px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.welcome-skin img{
  height:180px;
}

.welcome-content h2{
  margin:0;
  color:red;
  text-shadow:0 0 12px red;
}

.welcome-content p{
  margin-top:14px;
  color:#ddd;
}

.discord-btn{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 22px;
  background:red;
  color:white;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  transition:0.3s;
  box-shadow:0 0 25px rgba(255,0,0,0.6);
}

.discord-btn:hover{
  transform:scale(1.08);
  box-shadow:0 0 45px rgba(255,0,0,0.95);
}

/* ================= INFO SECTION ================= */
.info-section{
  padding:20px 90px 90px; /* Moved up by reducing top padding */
  margin-top: -40px; /* Pulls the section even higher */
}

.info-title{
  display:flex;
  justify-content:center; /* Center alignment */
  align-items:center;
  gap:14px;
  font-size:28px;
  font-weight:900;
  letter-spacing:2px;
  color:red;
  margin-bottom:30px;
  text-shadow:0 0 18px red;
}

.info-title i{
  font-size:22px;
}

.info-box{
  max-width:1200px;
  margin: 0 auto;
  background:#0e0e11;
  border-radius:18px;
  padding:45px 50px;
  border:1px solid rgba(255,0,0,0.35);
  transition:0.35s ease;
}

.info-box:hover{
  transform:scale(1.02);
  box-shadow:0 0 80px rgba(255,0,0,0.75);
  border-color:red;
}

.info-header{
  display:flex;
  justify-content:space-between;
  align-items:center; /* Better vertical alignment */
  gap:30px;
}

.info-header h2{
  margin:0;
  font-size:30px;
  font-weight:800;
}

.info-skin-wrap{
  display:flex;
  align-items:center;
  gap:12px;
}

.info-tag{
  color:red;
  font-weight:800;
  font-size:15px;
}

/* SKIN CROP - NO BORDER, HEAD & CHEST VIEW */
.info-skin{
  width:100px;
  height:100px;
  overflow:hidden;
  border:none; /* Removed border */
}

.info-skin img{
  width:180px;
  /* Adjusted crop to show head and chest clearly */
  transform: translate(-40px, -20px); 
}

.info-divider{
  height:1px;
  background:#2a2a2a;
  margin:22px 0 26px;
}

.info-text{
  font-size:17px;
  line-height:1.6;
  color:#d0d0d0;
}

/* Highlight Style */
.info-text .highlight {
  color: red;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255,0,0,0.3);
}

* ================= SOCIAL BAR FIX – CENTER ABOVE WELCOME BOX ================= */

.hero-right{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SOCIAL ICONS ROW */
.social-bar{
  display: flex;
  flex-direction: row;        /* FORCE ROW */
  justify-content: center;    /* CENTER */
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* ICON BASE */
.social{
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* SCALE ON HOVER */
.social:hover{
  transform: scale(1.15);
}

/* HOVER LABEL (RIGHT SIDE) */
.social span{
  position: absolute;
  left: 52px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.25s;
}

.social:hover span{
  opacity: 1;
  transform: translateX(0);
}

/* ================= BRAND COLORS ================= */

.social.yt{
  background:#ff0000;
  color:white;
  box-shadow:0 0 18px rgba(255,0,0,0.6);
}
.social.yt span{background:#ff0000}

.social.insta{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color:white;
  box-shadow:0 0 18px rgba(221,42,123,0.6);
}
.social.insta span{background:#dd2a7b}

.social.discord{
  background:#5865F2;
  color:white;
  box-shadow:0 0 18px rgba(88,101,242,0.6);
}
.social.discord span{background:#5865F2}

.social.github{
  background:#111;
  color:white;
  box-shadow:0 0 18px rgba(255,255,255,0.2);
}
.social.github span{background:#111}

/* BUILTBYBIT – BLUE BOX-SHADOW */
.social.bbb{
  background:#ffb400;
  color:black;
  box-shadow: 0 0 10px rgba(0,150,255,0.6);
}
.social.bbb:hover{
  box-shadow:
    0 0 12px rgba(0,150,255,0.7),
    0 0 26px rgba(0,150,255,0.8),
    0 0 45px rgba(0,150,255,0.6);
}
.social.bbb span{
  background:#ffb400;
  color:black;
}

/* MOBILE SAFETY */
@media (max-width:768px){
  .social span{display:none;}
}

/* NAVBAR CENTER BUTTONS */
.nav-inner{
  justify-content: space-between;
}

.nav{
  flex: 1;
  display: flex;
  justify-content: center;
}

/* ===== SOCIAL ICON SIZE BALANCE FIX ===== */

/* sab socials thode compact */
.social{
  width: 40px;
  height: 40px;
  font-size: 18px;
}

/* hover scale thoda kam (zyada bada lag raha tha) */
.social:hover{
  transform: scale(1.1);
}

/* ===== BUILTBYBIT SIZE + BLUE GLOW BALANCE ===== */

.social.bbb img{
  width: 18px;
  height: 18px;
}

/* normal soft glow */
.social.bbb{
  box-shadow: 0 0 5px rgba(0,150,255,0.45);
}

/* hover pe controlled blue glow */
.social.bbb:hover{
  box-shadow:
    0 0 8px rgba(0,150,255,0.6),
    0 0 16px rgba(0,150,255,0.6);
}

/* ===== HOVER LABEL UPAR DIKHANE KE LIYE ===== */

.social span{
  left: 50%;
  bottom: 52px;              /* icon ke upar */
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
}

.social:hover span{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== BUILTBYBIT COLOR FIX (YELLOW → BLUE) ===== */

.social.bbb{
  background: #0b0b0f;        /* black default */
  color: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.social.bbb span{
  background: #0b0b0f;
  color: white;
}

/* HOVER = BLUE GLOW */
.social.bbb:hover{
  box-shadow:
    0 0 8px rgba(30,144,255,0.6),
    0 0 18px rgba(30,144,255,0.7),
    0 0 32px rgba(30,144,255,0.6);
}


.social.bbb{
  background: #0b0b0f;        /* black default */
  color: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* ===== HOVER PE ICON BLUE ===== */

.social.bbb:hover{
  background: #1e90ff;        /* blue on hover */
  box-shadow:
    0 0 8px rgba(30,144,255,0.6),
    0 0 18px rgba(30,144,255,0.7),
    0 0 32px rgba(30,144,255,0.6);
}

/* ===== PROFILE PIC HOVER ENLARGE + RED GLOW ===== */

.profile-pic{
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.profile-pic:hover{
  transform: scale(1.15); /* badi dikhe */
  box-shadow:
    0 0 15px rgba(255,0,0,0.7),
    0 0 35px rgba(255,0,0,0.8),
    0 0 70px rgba(255,0,0,0.6);
  z-index: 10;
}

/* ABOUT ME GRID */
.details-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.detail-item{ background: #050509; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #1a1a1a; }
.detail-label{ display: block; font-size: 12px; color: #666; margin-bottom: 5px; }
.detail-value{ font-size: 22px; font-weight: 900; color: red; text-shadow: 0 0 10px red; }

/* STATS ROW */
.stats-row{ display: flex; justify-content: center; gap: 30px; max-width: 1100px; margin: auto; }
.stat-box{ flex: 1; background: #0e0e11; padding: 30px; border-radius: 18px; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.stat-box i{ font-size: 35px; margin-bottom: 10px; }
.stat-box h3{ font-size: 30px; margin: 5px 0; }
.stat-box.discord:hover{ border-color: #5865F2; box-shadow: 0 0 30px rgba(88,101,242,0.3); color: #5865F2; }
.stat-box.youtube:hover{ border-color: red; box-shadow: 0 0 30px rgba(255,0,0,0.3); color: red; }
.stat-box.instagram:hover{ border-color: #dc2743; box-shadow: 0 0 30px rgba(220,39,67,0.3); color: #dc2743; }


/* ================= FOOTER ================= */
.footer { margin-top: 50px; padding: 20px 90px; border-top: 1px solid rgba(255, 0, 0, 0.2); display: flex; justify-content: space-between; align-items: center; background: #050509; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-pfp { width: 32px; height: 32px; border-radius: 50%; border: 1px solid red; }
.copyright { font-size: 13px; color: #777; }
.copyright b { color: red; }
.footer-right { display: flex; gap: 15px; }
.footer-right a { color: #777; font-size: 16px; transition: 0.3s; }
.footer-right a:hover { color: red; text-shadow: 0 0 10px red; }

@media (max-width:768px){
  .hero, .footer, .info-header { flex-direction: column; text-align: center; gap: 20px; }
  .welcome-card { width: 100%; height: auto; flex-direction: column; }
  .nav { display: none; }
}

/* ===== WELCOME PAGE LOAD ANIMATION ===== */

.hero{
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* jab page ready ho */
.hero.show{
  opacity: 1;
  transform: translateY(0);
}

/* ===== HIRE ME BUTTON (WELCOME BOX) ===== */

.hire-btn{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: red;
  color: white;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow:
    0 0 18px rgba(255,0,0,0.6),
    0 0 40px rgba(255,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hire-btn:hover{
  transform: scale(1.1);
  box-shadow:
    0 0 25px rgba(255,0,0,0.8),
    0 0 55px rgba(255,0,0,0.9);
}

.hire-btn i{
  font-size: 18px;
}

.stat-label{
  font-size: 35px;
  color: gold;
  text-shadow:
    0 0 5px gold,
    0 0 12px rgba(255,215,0,0.7);
  margin-top: 4px;
}

.stat-sub{
  font-size: 15px;
  color: #777;
  margin-top: 3px;
}

.stat-box h3{
  font-size: 35px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 15px red;
}

html, body{
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-site{
  flex: 1;
}

.stat-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.stat-link:hover .stat-box{
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(255,0,0,0.4);
  cursor: pointer;
}

/* ================= SOCIAL STAT BOX UPGRADE ================= */

/* Fix label size (pehle bahut bada tha) */
.stat-label{
  font-size:16px !important;
  letter-spacing:1px;
  color:gold;
  text-shadow:
    0 0 6px gold,
    0 0 14px rgba(255,215,0,0.7);
  transition:0.3s ease;
}

/* Sub text base */
.stat-sub{
  font-size:14px;
  color:#777;
  margin-top:6px;
  transition:0.3s ease;
}

/* Icon base */
.stat-box i{
  font-size:40px;
  margin-bottom:15px;
  transition:0.3s ease;
}

/* Platform Colors */
.stat-box.discord i{
  color:#5865F2;
  text-shadow:0 0 15px rgba(88,101,242,0.7);
}

.stat-box.youtube i{
  color:#ff0000;
  text-shadow:0 0 15px rgba(255,0,0,0.7);
}

.stat-box.instagram i{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 18px rgba(220,39,67,0.6);
}

/* Box hover lift */
.stat-box{
  position:relative;
  overflow:hidden;
  transition:0.3s ease;
}

.stat-box:hover{
  transform:translateY(-10px);
  box-shadow:
    0 0 25px rgba(255,0,0,0.25),
    0 0 55px rgba(255,0,0,0.2);
}

/* Icon hover glow + zoom */
.stat-box:hover i{
  transform:scale(1.25);
  text-shadow:
    0 0 20px currentColor,
    0 0 40px currentColor,
    0 0 60px currentColor;
}

/* Click text grow + glow */
.stat-box:hover .stat-sub{
  font-size:17px;
  color:white;
  text-shadow:0 0 12px rgba(255,255,255,0.7);
}

/* Slight number glow boost */
.stat-box:hover h3{
  text-shadow:
    0 0 15px red,
    0 0 35px rgba(255,0,0,0.6);
}

/* Cursor pointer feel */
.stat-box{
  cursor:pointer;
}