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

.website .navbar{
  display: flex;
  justify-content: space-between;
  padding: 30px;
  font-size: 19px;
  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: 15px;
  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%;
}

/* =========heading========= */
.website .heading{
    display: flex;
    justify-content: space-between;
    padding: 30px;
    color: gray;
    margin-top: 60px;
}
.website .heading .title{
    font-size: 100px;
}
.website .heading .sub-title{
    font-size: 20px;
    margin-top: 60px;
    color: wheat;
}




/* ===== CUSTOM CURSOR DOT ===== */
.cursor-dot {
  position: fixed;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ===== CURSOR CIRCLE ===== */
.cursor-circle {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
   mix-blend-mode: difference;
}
.cursor-circle {
  background: white;
  border: none;
}


body{
  background:black;
}



.video-slider-wrapper {
  width: 100%;
  height: auto;
  background: #383737;   /* 👈 grey background */
  overflow: hidden;
  padding: 30px ;
  margin-bottom: 40px;
}

.video-slider {
  display: flex;
  gap: 40px;
  padding-left: 10px;
  padding-right: 10px;
  will-change: transform;
}

.video-item {
  flex: 0 0 45vw;   /* 👈 ek time par ~2 videos */
  height: 660px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-name {
  text-decoration: none;  /* underline ختم کرنے کے لیے */
  color: white;           /* رنگ حسب ضرورت */
  font-size: 20px;        /* فائن ٹیوننگ */
  cursor: pointer;        /* ماؤس پر pointer آئے */
}

.logo-name:hover {
  color: #f0f0f0;         /* hover effect optional */
}


/* ===== Page Fade-in from Bottom ===== */
.fade-page {
  opacity: 0;
}

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