  /* GLOBAL RESET */
  body {
      background-color: #050505;
      color: white;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
  }

  ::-webkit-scrollbar {
      width: 6px;
  }

  ::-webkit-scrollbar-track {
      background: #000;
  }

  ::-webkit-scrollbar-thumb {
      background: #CFA935;
      border-radius: 3px;
  }

  /* HERO VIDEO OVERLAY */
  .video-overlay {
      background: linear-gradient(to top, #050505 0%, transparent 50%, #050505 100%);
  }

  /* --- GALLERY SECTION STYLES --- */
  #gallery-scroll-section {
      height: 150vh;
      background: #000;
      position: relative;
  }

  .wrapper {
      position: sticky;
      top: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 2fr 100px 2fr 1fr;
      grid-template-rows: 1fr 100px 1fr;
      grid-template-areas:
          "one    two     two         three   four"
          "one    six     center      three   eight"
          "five   six     seven       seven   eight";
      gap: 10px;
      padding: 10px;
      box-sizing: border-box;
  }

  .wrapper>div:not(.center) {
      background-image: var(--bg);
      background-size: cover;
      background-position: center;
      border-radius: 4px;
      border: 1px solid rgba(207, 169, 53, 0.2);
      filter: grayscale(100%);
      transition: filter 0.3s;
  }

  .wrapper>div:not(.center):hover {
      filter: grayscale(0%);
      border-color: #CFA935;
      z-index: 20;
  }

  .item-1 {
      grid-area: one;
  }

  .item-2 {
      grid-area: two;
  }

  .item-3 {
      grid-area: three;
  }

  .item-4 {
      grid-area: four;
  }

  .item-5 {
      grid-area: five;
  }

  .item-6 {
      grid-area: six;
  }

  .item-7 {
      grid-area: seven;
  }

  .item-8 {
      grid-area: eight;
  }

  .center {
      grid-area: center;
      background-color: #0a0a0a;
      color: #CFA935;
      /* FIXED CENTERING USING FLEXBOX */
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #CFA935;
      z-index: 10;
      overflow: hidden;
      /* Ensures wheel doesn't spill out */
  }

  /* UPDATED WHEEL STYLES: Perfectly Centered & Responsive */
  .ratha-wheel {
      width: 85%;
      /* Fits nicely inside the box with padding */
      height: 85%;
      max-width: 150px;
      /* Max size for initial view */
      max-height: 150px;
      filter: drop-shadow(0 0 10px rgba(207, 169, 53, 0.5));
      object-fit: contain;
      display: block;
      /* Removes inline spacing issues */
  }

  /* --- 3D BOOK STYLES (THE MUMMY REDESIGN) --- */
  .book-wrapper {
      perspective: 1500px;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  nav a {
      font-family: Cinzel, serif;
  }

  @media (min-width: 768px) {
      .book {
          width: 450px;
          height: 500px;
      }
  }


  .page-front,
  .page-back {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 10px;
  }

  /* --- THE MUMMY COVER STYLES --- */
  .cover-front {
      background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
      color: #3e2723;
      border: none;
      box-shadow:
          inset 0 0 50px rgba(62, 39, 35, 0.8),
          10px 10px 30px rgba(0, 0, 0, 0.5);
      border-radius: 5px 15px 15px 5px;
      overflow: visible;
  }

  .cover-front::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
      opacity: 0.4;
      mix-blend-mode: multiply;
      pointer-events: none;
      border-radius: 5px 15px 15px 5px;
  }

  .mummy-spine {
      position: absolute;
      left: -15px;
      top: 0;
      bottom: 0;
      width: 30px;
      background: repeating-linear-gradient(90deg, #8a6e2f 0px, #d4af37 10px, #5c4015 12px);
      border-radius: 10px 0 0 10px;
      box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.5);
      z-index: 20;
  }

  .back .mummy-spine {
      position: absolute;
      right: 0 !important;
      left: auto !important;
      /* display: none; */
      top: 0;
      bottom: 0;
      width: 15px;
      background: repeating-linear-gradient(90deg, #8a6e2f 0px, #d4af37 10px, #5c4015 12px);
      border-radius: 10px 0 0 10px;
      box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.5);
      z-index: 20;
  }

  .mummy-clasp {
      position: absolute;
      width: 80px;
      height: 40px;
      background: linear-gradient(to bottom, #5c4015, #d4af37, #5c4015);
      z-index: 30;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
      border: 1px solid #3e2723;
  }

  .mummy-clasp::before {
      content: '';
      position: absolute;
      width: 30px;
      height: 30px;
      background: radial-gradient(circle, #d4af37, #5c4015);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5);
      border: 2px solid #3e2723;
  }

  .clasp-tl {
      top: 20px;
      left: -10px;
      border-radius: 0 20px 20px 0;
  }

  .clasp-tl::before {
      left: -10px;
  }

  .clasp-bl {
      bottom: 20px;
      left: -10px;
      border-radius: 0 20px 20px 0;
  }

  .clasp-bl::before {
      left: -10px;
  }

  .clasp-tr {
      top: 20px;
      right: -10px;
      border-radius: 20px 0 0 20px;
      transform: rotate(180deg);
  }

  .clasp-tr::before {
      left: -10px;
  }

  .clasp-br {
      bottom: 20px;
      right: -10px;
      border-radius: 20px 0 0 20px;
      transform: rotate(180deg);
  }

  .clasp-br::before {
      left: -10px;
  }

  .mummy-cartouche {
      position: absolute;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
      width: 70px;
      height: 280px;
      background: linear-gradient(135deg, #d4af37, #aa771c);
      border: 3px solid #3e2723;
      border-radius: 35px;
      box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.6), 2px 2px 4px rgba(255, 255, 255, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      padding: 10px 0;
      z-index: 10;
  }

  .glyph {
      font-family: serif;
      font-size: 24px;
      font-weight: bold;
      color: #3e2723;
      text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3);
      transform: scaleY(1.5);
  }

  .mummy-lock-circle {
      position: absolute;
      /* right: 115px; */
      left: 50%;
      top: 200px;
      transform: translateX(-50%);
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, #e6c288, #b38728);
      border-radius: 50%;
      border: 4px solid #3e2723;
      box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
  }

  .mummy-star {
      width: 160px;
      height: 160px;
      border: 1px solid #CFA935;
      border-radius: 9999px;
      padding: 4px;
      /* p-1 */
      object-fit: cover;
      background-image: url('../assets/logo.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 0 20px black;
  }

  .mummy-eye {
      width: 80px;
      height: 40px;
      border: 3px solid #d4af37;
      border-radius: 70% 15%;
      /* Eye shape */
      position: relative;
      transform: rotate(-5deg);
  }

  .mummy-eye::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: #d4af37;
      border-radius: 50%;
      left: 20px;
      top: 8px;
  }

  .page-back {
      transform: rotateY(180deg);
      background-color: #f0e6d2;
      background-image: url('https://www.transparenttextures.com/patterns/aged-paper.png');
      color: #1a0505;
      border-left: 5px solid #8B6914;
      box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.1);
  }

  .hindi-text {
      font-family: 'Noto Serif Devanagari', serif;
      line-height: 1.8;
      text-align: justify;
      color: #1a1a1a;
  }

  .drop-cap {
      float: left;
      font-size: 3.5rem;
      line-height: 1;
      padding-top: 4px;
      padding-right: 8px;
      color: #CFA935;
      font-weight: bold;
  }

  .inner-page {
      background-color: #fdf5e6;
      /* Old Parchment Look */
      background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  }

  #granth .book-container-trigger.active {
      top: 0 !important;
      left: 0 !important;
      position: fixed !important;
      transform: translate(0px, 0px) !important;
  }

  #granth .pin-spacer {
      width: 100% !important;
  }

  .book-container-trigger {
      width: 100% !important;
      max-width: 100% !important;
  }

  @media(max-width:767px) {
      .book {
          width: 48cqmin !important;
          height: 300px;
      }

      .mummy-clasp {
          height: 20px;
      }

      .mummy-lock-circle {
          /* right: 20px; */
          top: 51%;
          width: 110px;
          height: 110px;
      }

      .mummy-star {
          width: 100px;
          height: 100px;
      }

      .text-black.font-mythic {
          font-size: 25px !important;
      }
  }

  @media(max-width:575px) {
      .text-black.font-mythic {
          font-size: 20px !important;
      }

      .text-black.font-mythic.submit-btn {
          font-size: 15px !important;
      }

      .text-black.font-tech {
          font-size: 18px !important;
      }

      .book-wrapper .top-12 {
          top: 8rem;
      }
  }

  .wa-btn {
      transition: all 0.3s ease;
      opacity: 0;
      transform: scale(0);
      visibility: hidden;
  }

  .wa-btn.active {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
  }

  .prev {
      position: absolute;
      top: 50%;
      left: 0;
      padding: 10px;
      background: gold;
      border-radius: 10px;
      color: black;
  }

  .next {
      color: black;
      position: absolute;
      top: 50%;
      right: 0;
      padding: 10px;
      background: gold;
      border-radius: 10px;
  }

  .mob {
      position: relative;
  }

.mob::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('../assets/logo.jpg');
      width: 100px;
      height: 100px;
      background-size: cover;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 1;
      z-index: -2;
      border-radius: 1000px;
  }

  .mob::after{
    content: "";
    position: absolute;
    background: #ffffffb9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .page li{
    list-style: disc;
  }

  .page ul{
    padding-left: 20px;
  }