
/* Loader styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b1aaa5; /* آپ تصویر میں جو gray تھا وہی */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* تمام elements کے اوپر رہے */
}

.loader-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loader-text {
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

/* Fade-out animation for loader */
.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}



/* ================== GLOBAL ================== */
body{
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}

/* ================== NAVBAR ================== */
.navbar{
  display: flex;
  justify-content: space-between;
  padding: 30px;
  font-size: 15px;
  font-style: arial;
}
 .menu {
  position: relative;
}

/* MENU BUTTON */
.menu-name {
  cursor: pointer;
  position: relative;
}

/* LINE UNDER MENU */
.menu-name .line {
  width: 0;
  height: 1px;
  background: white;
  transition: 0.3s;
}

.menu-name:hover .line {
  width: 100%;
}

/* CHILD NAV (hidden by default) */
.child-nav {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  gap: 40px;
  align-items: center;
}

/* SHOW MENU */
.menu.active .child-nav {
  display: flex;
}

/* HIDE MENU TEXT */
.menu.active .menu-name {
  display: none;
}

/* NAV LINKS */
.child-nav a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  position: relative;
}

/* LINE UNDER EACH OPTION */
.child-nav a .line {
  width: 0;
  height: 1px;
  background: white;
  margin-top: 4px;
  transition: 0.3s;
}

.child-nav a:hover .line {
  width: 100%;
}


/* ================== POINTER / CURSOR ================== */
.website .pointer .cursor{
  width: 13px;
  height: 13px;
  background: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.website .pointer .cursor-circle{
  position: fixed;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.1s ease;
}

/* ================== HERO HEADING ================== */
.website .heading{
  color: gray;
  font-size: 10rem;
  margin-top: -160px;
  margin-left: 20px;
}

.website .heading p{
  font-size: 20px;
  color: white;
  margin-top: -215px;
  margin-left: 44rem;
}

/* ================== POINTS ================== */
.website .points{
  display: flex;
  justify-content: space-between; 
  padding: 1px 30px;
  margin-top: -300px;
  margin-bottom: 150px;
}

.website .points .line{
  width: 0;
  height: 1px;
  background-color: white;
  transition: 0.3s;
}

.website .points .box:hover .line{
  width: 100%;
}

/* ================== PROJECT HEADINGS (ALL) ================== */
.website .main-headings{
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  padding: 2px 20px;
}

.website .main-headings .box1{
  font-size: 100px;
  font-weight: bold;
  color: gray;
  cursor: none;
  transition: color 0.3s ease;
}

.website .main-headings:hover .box1{
  color: white;
}

.website .main-headings .box2{
  font-size: 20px;
  color: white;
  margin-top: 40px;
}

/* ================== HOVER IMAGE CARD ================== */
.hover-card{
  position: fixed;
  width: 360px;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.2s ease;
  pointer-events: none;
  z-index: 99;
}

.hover-card img{
  width: 100%;
  border-radius: 14px;
}

/* ================== CUSTOM CURSOR ================== */
.custom-cursor{
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  z-index: 100;
   mix-blend-mode: difference;
}

.custom-cursor span{
  font-size: 10px;
  opacity: 0;
}
.custom-cursor {
  background: white;
  border: none;
}


/* ================== BUTTON ================== */

.website .button button{
  color: white;
  padding: 6px 25px;
  background-color: black;
  border-radius: 20px;
  border: 1px solid white;
  margin: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.website .button button:hover{
  background-color: white;
  color: black;
}


/* ================== FOOTER ================== */
.website .footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 300px;
}

.website .footer .image img{
  width: 170px;
  height: 170px;
}

.website .footer .box{
  font-size: 12px;
}

.website .footer .box button{
  color: white;
  padding: 6px 15px;
  background-color: black;
  border-radius: 20px;
  border: 1px solid white;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.website .footer .box button:hover{
  background-color: white;
  color: black;
}

/* ================== CHANNEL ================== */
.website .channel{
  margin-left: 40px;
  font-size: 12px;
  margin-top: 100px;
}

/* ================== LINKS ================== */
.website .links{
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-top: 100px;
}

.website .links ul{
  display: flex;
  list-style: none;
  gap: 30px;
  font-size: 13px;
  font-weight: bold;
}

/* ================== HR ================== */
hr{
  border: none;
  height: 1px;
  background: #333;
  margin: 20px 0;
}

.cursor::before {
  display: none; /* hide extra dot */
}
.cursor {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    pointer-events: none; /* cursor interference روکنے کے لیے */
    transform: translate(-50%, -50%); /* center cursor */
    z-index: 9999; /* سب کے اوپر */
      mix-blend-mode: difference;
}

.child-nav {
  display: none;
}

.child-nav.active {
  display: block;
}

/* ================== GLOBAL ================== */
body{
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* ========== PAGE FADE ANIMATION ========== */

.fade-page {
  opacity: 0;
}

.fade-page.active {
  opacity: 1;
  transition: opacity 4s ease;
}

/* 🚫 BODY یا fade-page پر overflow hidden مت لگانا */


