.content {
      position: relative;
      z-index: 3;
      color: white;
      font-family: Arial, sans-serif;
      max-width: 800px;
      margin: 0 auto;
    }

    .content h1 { font-size: 2.5rem; margin-bottom: 20px; }
    .content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }

    .long-content {
      height: 1500px;
      background: rgba(0,0,0,0.2);
      padding: 20px;
      border-radius: 10px;
      margin-top: 40px;
    }

    /* === SIDEBAR-APP === */
   .sidebar-app {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -320px;
  width: 300px;
  height: 500px;
  padding: 10px;
  border-radius: 16px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  background-image: url(../img/bg/bgt1.png);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
    border: 2px solid #ffd000;
    border-radius: 30px;
    background-color: #01524c7a;
    
}
.chevron-right img{
  rotate: 269deg;
}
/* Content ko transparent banane ke liye inner wrapper */
/* .sidebar-app > .inner {
  background: transparent;
  height: 100%;
  border-radius: 10px; 
  padding: 14px;
} */
/* 
    .sidebar-app::before {
      content: '';
      position: absolute;
      inset: 4px;
      background: #fff;
      border-radius: 16px;
      z-index: -1;
    } */

    .sidebar-app-open .sidebar-app {
      right: 20px;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .sidebar-app {
        width: 90%;
        max-width: 190px;
        right: -100%;
        height: 70vh;
      }
      .sidebar-app-open .sidebar-app {
        right: 1%;
      }
    }

    /* === TOGGLE ICON (FIXED LEFT ARROW, NO ROTATE) === */
   .sidebar-app-toggle {
  position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 75px;
    border-radius: 10px 0px 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s 
cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1002;
    background: linear-gradient(135deg, #fb6e6ee3, #dc3410db);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

/* Hover pe 3D Lift Effect */
.sidebar-app-toggle:hover {
  transform: translateY(-50%) translateX(-4px) scale(1.02);
  box-shadow: 
    0 12px 25px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}

/* Active (Click) pe 3D Press Effect */
.sidebar-app-toggle:active {
  transform: translateY(-50%) translateX(-2px) scale(0.98);
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 -1px 2px rgba(255, 255, 255, 0.2);
}

    /* Move icon with sidebar */
    /* .sidebar-app-open .sidebar-app-toggle {
      right: 320px; 
      background: linear-gradient(white, white) padding-box,
                  linear-gradient(135deg, #ffd700, #ff8c00) border-box;
      border: 4px solid transparent;

    } */

    @media (max-width: 768px) {
      .sidebar-app-open .sidebar-app-toggle {
        right: calc(5% + 169px);
      }
    }

    /* === FIXED LEFT ARROW (NO ANIMATION) === */
    .sidebar-app-chevron {
      position: relative;
      width: 20px;
      height: 20px;
    }

    .sidebar-app-chevron::before,
    .sidebar-app-chevron::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 2px;
      background: #333;
    }

    /* Always LEFT pointing arrow */
    .sidebar-app-chevron::before {
      top: 7px;
      left: 0;
      transform: rotate(-45deg);
      transform-origin: left center;
    }

    .sidebar-app-chevron::after {
      bottom: 7px;
      left: 0;
      transform: rotate(45deg);
      transform-origin: left center;
    }

    /* No rotation on open */
    .sidebar-app-open .sidebar-app-chevron::before,
    .sidebar-app-open .sidebar-app-chevron::after {
      transform: rotate(-45deg), rotate(45deg); /* Same as closed */
    }

    /* === CONTENT === */
    .sidebar-app-content {
      padding: 0px;
      color: #333;
      height: 100%;
      overflow-y: auto;
    }

    .sidebar-app-content h2 {
      margin: 0 0 25px;
      font-size: 1.6rem;
      color: #222;
    }

    .sidebar-app-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-app-content li {
      margin-bottom: 14px;
    }

    .sidebar-app-content a {
      text-decoration: none;
      color: #0066cc;
      font-weight: 500;
      font-size: 1.1rem;
      display: block;
      padding: 8px 0;
      transition: color 0.2s;
    }

    .sidebar-app-content a:hover {
      color: #004499;
    }

    /* OVERLAY */
    /* .sidebar-app-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
    } */

    .sidebar-app-open .sidebar-app-overlay {
      opacity: 1;
      visibility: visible;
    }

    html { scroll-behavior: smooth; }