body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('/assets/img/2024_1.png');
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-image: url('/assets/img/2024_1.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column; /* Added to stack the image and spinner vertically */
  justify-content: center;
  align-items: center;
}

.preloader img {
  width: 200px; /* Adjust the width of the image as needed */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 20px; /* Adjust the margin between image and spinner */
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;

}

.social-icon a {
  text-decoration: none;
}

.social-icon i {
  font-size: 24px;
  color: #000;
  background: linear-gradient(to right, #805efe, #4b9efe);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
}

.social-icon i:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.text-container {
  display: inline-block;
  text-align: center;
  margin-top: 220px; /* Adjust the margin between spinner and text */
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.cursor {
  animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.text-line {
  opacity: 1;
  position: absolute;
  top: calc(50% + 30px); /* Adjust as needed to position below the spinner */
  left: 50%;
  transform: translateX(-50%);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hide content until the preloader fades out */
.content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#desktop {
  position: relative;
  height: calc(100vh - 70px); /* Adjusted for taskbar height */
  overflow: hidden;
  padding: 10px;
}
.icon {
  width: 70px;
  height: 70px;
  margin: 10px;
  text-align: center;
  line-height: 70px;
  cursor: pointer;
}
.icon i {
  font-size: 30px;
}

.icon img {
  filter: drop-shadow(2px 2px 0px rgb(102, 102, 102));
  
}

#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(7, 7, 7, 0.267);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribute content evenly */
  padding: 0 20px; /* Equal padding on both sides */
  overflow-x: auto;
  overflow-y: hidden;
}
#icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap; /* Prevent icons from wrapping */
  overflow: auto; /* Allow scrolling if icons overflow */
}
.taskbar-icon {
  height: 40px;
  width: auto;
  background-color: transparent;
  margin: 0 5px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.taskbar-icon i {
  color: #fff;
  font-size: 20px;
}
.taskbar-icon:hover {
  background-color: #0078d7;
  border-radius: 8px;
}
#time {
  margin-left: 50px; /* Move the clock to the left by 50px */
  padding-left: 20px; /* Add padding to the left of the clock */
  padding-right: 50px; /* Add padding to the right of the clock */
}
.alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}
.window {
  width: 400px;
  height: 300px;
  background-color: #e9e6e6;
  border: 1px solid #ccc;
  position: absolute;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Prevent content overflow */
  z-index: 1; /* Set initial z-index */
}
.window.maximized {
  border-radius: 0; /* Remove border radius for maximized window */
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease; /* Add transition properties for maximized windows */
}
.window-header {
  background-color: #8f3bc5;
  color: #fff;
  padding: 10px;
  cursor: move;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.window-content {
  padding: 20px;
  overflow: auto;
}
.close-btn {
  float: right;
  cursor: pointer;
  color: #fff;
  margin-left: 10px;
}
.maximize-btn {
  float: right;
  cursor: pointer;
  color: #fff;
}
.ui-resizable-se { /* Resize icon style */
  display: none; /* Hide resize icon by default */
}
#welcome-window {
  /* Styles for the welcome window */
  min-width: 200px;
  width: auto;
  max-width: 600px;
  height: auto;
  min-height: 300px;
  background-color: #e9e6e6;
  border: 1px solid #ccc;
  position: absolute;
  display: none; /* Initially hide the welcome window */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Prevent content overflow */
  z-index: 1; /* Set initial z-index */
}

#taskbar-menu {
  position: fixed;
  bottom: 50px;
  left: 5px;
  width: 200px;
  background-color: rgba(7, 7, 7, 0.267);
  border: 1px solid #000;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 10;
  display: none;
  transition: height 0.3s ease; /* Add transition for height */
  overflow: hidden; /* Hide overflow content */
}

.start-menu-header {
  padding: 5px;
  border-bottom: 1px solid #000;
  background-color: #8f3bc5;
  color: #fff;
  display: flex;
  align-items: center;
}

.start-menu-logo {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.start-menu-title {
  font-weight: bold;
}

.start-menu-body {
  padding: 5px;
  transition: max-height 0.3s ease; /* Add transition for max-height */
  max-height: 0; /* Start with menu body collapsed */
  overflow: hidden; /* Hide overflow content */
  color: #fff;
}

.start-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s ease; /* Add transition for opacity */
  opacity: 0; /* Start with menu items hidden */
}
.start-menu-body.show {
  max-height: 200px; /* Adjust height to show menu body */
}

.start-menu-items.show {
  opacity: 1; /* Show menu items */
}

.start-menu-item {
  padding: 5px;
  cursor: pointer;
}

.start-menu-item:hover {
  background-color: #8f3bc5;
}

.start-menu-icon {
  margin-right: 5px;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%; /* Position the submenu to the right of the menu item */
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(7, 7, 7, 0.4); /* Same submenu background color and transparency */
  border-radius: 0 5px 5px 5px; /* Adjusted border radius */
}

.start-menu-item:hover .submenu {
  display: block;
}

.team-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}