 
    /* General Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #9B7EBD;
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Navbar Styles */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      
      padding: 10px 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      background-color: #3B1E54;
    }

    #log{
      font-size: 30px;
      color: #eee;
      font-family: cursive;
      margin-left: 50px;
    }

    .logo {
      width: 50px;
      height: 50px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 20px;
      
      
    }

    .nav-item {
      text-decoration: none;
      color: white;
      background-image: #9B7EBD;
      font-size: 18px;
      font-weight: bold;
      padding: 10px 20px;
      /* background: linear-gradient(145deg, #555, #666); */
      border-image: 1px solid transparent ;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 2px 2px 12px #9B7EBD;
      
    }

    .nav-item:hover {
      transform: scale(1.1);
      box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.7);
      background: linear-gradient(145deg, #666, #777);
    }

    /* Scrollable Dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background: #666;
      max-height: 200px;
      overflow-y: scroll;
      width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 10;
      border-radius: 5px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      padding: 10px;
      display: block;
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    .dropdown-content a:hover {
      background: #D4BEE4;
    }

    /* Welcome Section */
    .welcome-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      margin-top: 70px;
    }

    .welcome-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      justify-items: center;
    }

    .welcome-text {
      position: absolute;
      /* top: 50%;
      left: 50%; */
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      left: 30px;
      right: 10px;
      top: 100px;
      bottom: 70px;
     
    }

    .welcome-text h1 {
      font-size: 3rem;
    }

    .welcome-text p {
      font-size: 1.2rem;
    }

    /* Responsive Navbar */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: white;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        display: none;
        background: #444;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
      }

      .nav-links.show {
        display: flex;
      }

      .hamburger {
        display: flex;
      }

      .dropdown-content {
        max-height: 150px;
      }
    }
/* Text Transition */
.welcome-text{
  font-size: 2.5rem;
  font-weight: bold;
  color:  #EEEEEE;
  text-align: center;
  justify-content: center;
  /* margin-top: 20vh; */
  opacity: 0; /* Initially hidden */
  transform: translateX(100%); /* Start off-screen to the right */
  animation: slideIn 1.5s ease-out forwards; /* Apply animation */
  line-height: 40px;
  text-shadow: #9B7EBD;
  
  

  
}

/* Keyframes for sliding in */
@keyframes slideIn {
  0% {
    transform: translateX(100%); /* Off-screen */
    opacity: 0; /* Fully transparent */
  }
  100% {
    transform: translateX(0); /* Final position */
    opacity: 1; /* Fully visible */
  }
}

.welcome-about{
  transform: translateX(10%); /* Start off-screen to the right */
  animation: slideOut 1.5s linear backwards;
}

.welcome-about{
  animation: slideOut 2.5s linear;
  animation-delay: 0.5s;

}
@keyframes slideOut {
  100% {
    transform: translateX(0%); /* Off-screen */
    opacity: 0; /* Fully transparent */
  }
  0% {
    transform: translateX(100%); /* Final position */
    opacity: 1; /* Fully visible */
  }
}

.welcome-text {
  animation: slideIn 1.5s ease-out forwards;
  animation-delay: 0.5s; /* Start 0.5 seconds after page load */
  
}

.items-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 10px;
}

.item {
  position: relative;
  border: 1px solid #9B7EBD;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-info {
  padding: 10px;
  text-align: center;
}

.item-info h3 {
  font-size: 1.2rem;
  color: #3B1E54;
  margin-bottom: 5px;
}

.item-info p {
  font-size: 1rem;
  color: #9B7EBD;
}

/* Item Overlay */
.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
 
}

.item:hover .item-overlay {
  opacity: 1;
}

.view-item-btn,
.add-to-cart-btn {
  background: #9B7EBD;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  margin: 5px;
  transition: background 0.3s ease;
}

.view-item-btn:hover,
.add-to-cart-btn:hover {
  background: #3B1E54;
}

 .heading-section{
text-align: center;
font-family: monospace;
text-align: center;
margin: 40px;
padding: 20px;
font-size: medium;
color: #EEEEEE;

 }

 .heading-section h2{
  font-size: 30px;
  
 }

 .heading-section p{
  font-size: 15px;
  line-height: 20px;

  
 }

 h1{
  text-align: center;
  color: #EEEEEE;
  padding-top: 25px;
  margin: auto;
  margin-bottom: 10px;
 }

/* Footer Styles */
.footer {
  background-color: #3B1E54;
  color: #fff;
  padding: 20px 10px;
  position: relative;
  margin-top: 50px;
  font-family: Arial, sans-serif;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #9B7EBD;
  padding-bottom: 5px;
}

.footer-section p,
.footer-section a {
  color: #eee;
  margin: 5px 0;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  color: #9B7EBD;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-link {
  color: #fff;
  font-size: 18px;
  background: #9B7EBD;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  background: #fff;
  color: #3B1E54;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #9B7EBD;
  padding: 10px 0;
}

/* Animation */
.footer-section {
  transform: translateY(100px);
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.5s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.7s;
}

/* Slide-up Animation */
@keyframes slideUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .welcome-text h1 {
    font-size: 2rem;
  }
  .welcome-text p {
    font-size: 1rem;
  }
}

.view-item-btn:hover, .add-to-cart-btn:hover {
  background: linear-gradient(145deg, #555, #666);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}

.hamburger div {
  transition: all 0.3s ease;
}