* {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Light", Helvetica, Arial, sans-serif;
    cursor: none; /* Hide the default cursor */
  }
  
  /* Custom Cursor */
  .custom-cursor {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    color: rgb(92, 90, 90);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    pointer-events: none;
    transition: transform 0.1s;
    transform: translate(-50%, -50%); /* Center cursor */
  }
  
  /* Body Styles */
  body {
    height: auto;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
  }
  
  /* Index Layout */
  .index {
    display: flex; 
    flex-direction: row-reverse; 
    width:  100vw; 
    background-size: cover; 
    background-position: center;
    justify-content: flex-end;
    height: 100vh;
  }
  
  .sidebar {
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background-color: rgba(46, 45, 43, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1px;
    z-index: 10;
   
  }
  
  .sidebar .logo img {
    width: 200px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: 55px;
  }
  
  .sidebar nav ul {
    list-style: none;
    width: 100%;
    margin-top: 20em;
    margin-right: 1px;
  }
  @media screen and (max-width:1245px) {
    .sidebar nav ul{
      margin-top: 25vh;
    }
  }
  
  .sidebar nav ul li {
    margin: 35px 0;
  }
  
  .sidebar nav ul li a {
    margin-right: 0.1em;
    margin-top: 10em;
    text-decoration: none;
    color: #fff;
    font-size: 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
    transition: color 0.3s;
  }
  
  .sidebar nav ul li a:hover {
    color: #B26418;
  }
  
  .sidebar nav ul li a span {
    display: inline-block;
    font-size: 1.5em; /* Adjust arrow size */
    width: 40px; /* Diameter of the circle */
    height: 40px; /* Diameter of the circle */
    border: 2px solid white; /* Circular border color */
    border-radius: 50%; /* Makes the shape a perfect circle */
    text-align: center; /* Centers the arrow horizontally */
    line-height: 35px; /* Centers the arrow vertically */
    color: white; /* Arrow color */
    transform: rotate(-45deg); /* Rotates the arrow */
    margin-left: 10px; /* Adds a gap between the text and the arrow */
    transition: color 0.3s;
  }
  
  .sidebar nav ul li a span:hover {
    color: #B26418;
  }
  
  /* Content Styles */
  .content {
    margin-right: 10px;
    margin-top: 85vh;
    color: #333; /* Text color */
  }
  
  .content h1 {
    margin-left: 80px;
    font-size: 36px;
    color: #fff; /* White text for contrast */
  }
  
  .content p {
    margin-left: 80px;
    font-size: 18px;
    line-height: 1.6;
    color: #ddd; /* Lighter text for readability */
  }
  
  
/*Media Query for Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .index {
    flex-direction: column; /* Stack vertically */
    min-height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .sidebar {
    width: 100%;
    height: auto;
    background-color: rgba(46, 45, 43, 0.7);
    padding-bottom: 20px;
  }

  .sidebar .logo img {
    width: 120px;
    margin: 15px auto;
    display: block;
  }

  .sidebar nav ul {
    margin-top: 1em;
    text-align: center;
  }

  .sidebar nav ul li {
    margin: 15px 0;
  }

  .sidebar nav ul li a {
    font-size: 0.9em;
    padding: 8px;
    margin-top: 0;
  }

  .sidebar nav ul li a span {
    width: 25px;
    height: 25px;
    line-height: 20px;
  }

  .content {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: center;
    margin-right: 0;
    flex-grow: 1;
  }

  .content h1 {
    margin-left: 0;
    font-size: 24px;
    color: #fff;
  }

  .content p {
    margin-left: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
  }

  .custom-cursor {
    width: 50px;
    height: 50px;
    font-size: 8px;
  }
}

/* Media Query for Very Small Screens (max-width: 300px) */
@media (max-width: 300px) {
  .index {
    min-height: 100vh; /* Full height */
    width: 100vw; /* Full width */

    
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensure it stays fixed */
  }

  .sidebar {
    padding-bottom: 10px; /* Reduce padding */
  }

  .sidebar .logo img {
    width: 80px; /* Smaller logo for tiny screens */
    margin: 10px auto; /* Less margin */
  }

  .sidebar nav ul {
    margin-top: 0.3em; /* Minimal top margin */
    text-align: center;
  }

  .sidebar nav ul li {
    margin: 8px 0; /* Tighter spacing */
  }

  .sidebar nav ul li a {
    font-size: 0.7em; /* Smaller text */
    padding: 5px; /* Smaller padding */
    display: flex;
    justify-content: center; /* Center text and arrow */
    align-items: center;
  }

  .sidebar nav ul li a span {
    width: 18px; /* Tiny arrow circle */
    height: 18px;
    line-height: 14px;
    margin-left: 5px; /* Reduced gap */
  }

  .content {
    margin-top: 10px; /* Less space above */
    margin-bottom: 10px; /* Less space below */
    padding: 0 5px; /* Minimal padding */
    text-align: center;
  }

  .content h1 {
    font-size: 18px; /* Smaller heading */
  }

  .content p {
    font-size: 10px; /* Tiny text */
    line-height: 1.3; /* Tighten line spacing */
  }

  .custom-cursor {
    width: 30px; /* Very small cursor */
    height: 30px;
    font-size: 5px;
    display: none; /* Hide cursor on tiny screens */
  }

  body {
    cursor: auto; /* Restore default cursor */
  }
}
  
  