* {
  box-sizing: border-box;  
}  
  
body {
  margin: 0;font-family:'Courier New', Courier, monospace;  
  background-image: url("images/background.jpg");
} 


  
.navbar {
 height: 80px;  
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: #F5F5F5;
 transition: opacity 0.3s ease, transform 0.3s ease;
 color: white;  
}  
  
.logo {
  font-size: 24px; margin-top: 10px; margin-left: 10px;font-family:'Courier New', Courier, monospace; 
}  
  
.login button {
  background-color: black;color: white;border: none;padding: 10px 15px;cursor: pointer; margin-top: 5px; margin-right: 10px; font-family:'Courier New', Courier, monospace; border-radius: 5px; 
}  
  
.cover{
  background-color: #f4f4f4;width: 100%;height: 500px;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;  
}  
  
.secondary-nav {
  display: flex; 
  height:70px; 
  justify-content:start;
  background-color:#F5F5F5;
  padding: 10px 10px;  
  /* border: 1px solid #ccc;  */
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22); 
  transition: opacity 0.3s ease, transform 0.3s ease;
}  
  
.secondary-nav button {
  margin:10px ; width: 80px; background-color:black;color: white;border: none;cursor: pointer;font-family:'Courier New', Courier, monospace; border-radius: 5px;   
} 

.user-profile {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: #F5F5F5;
  border-radius: 5px;
  margin-top: 15px;
  margin-right: 10px;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-profile span {
  font-size: 1.2rem;
  color: rgb(9, 7, 7);
  
}

.toggle-link{
  font-size: 1.2rem;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
}

.menu {
  display: none; /* Hidden by default */
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2); /* Gradient background */
  width: 250px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  opacity: 0; /* For fade-in effect */
  transform: translateY(-10px); /* Slight slide-up start */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
  position: absolute;
  top:50px;
  right: 0px;
}

.menu.active {
  display: block;
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Slide to normal position */
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  padding: 10px 0;
  opacity: 0; /* Start hidden for animation */
  transform: translateX(-20px); /* Slide in from left */
  transition: all 0.3s ease; /* Smooth transition for hover */
}


/* Animation when menu opens */
.menu.active li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay for each item */
.menu.active li:nth-child(1) { transition-delay: 0.1s; }
.menu.active li:nth-child(2) { transition-delay: 0.2s; }
.menu.active li:nth-child(3) { transition-delay: 0.3s; }
.menu.active li:nth-child(4) { transition-delay: 0.4s; }

.menu a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 16px;
  display: block;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.menu a:hover {
  color: #e74c3c; /* Vibrant hover color */
  padding-left: 10px; /* Slight shift on hover */
}
  
.content-section {
  padding: 20px;text-align: center;  
  /* padding: 20px; */
  box-sizing: border-box;
}  
.content-section h2 {
  color: #573588; 
}  

.pageTitle{
  padding-top: 50px;
  margin-bottom: 30px; /* Add space below the pageTitle to push box-container down */
  text-align: center;
}
  
.pageTitle h1{
  color: #573588; 
}

.pageTitle p{
  font-size:larger;
}

.box-container {
  display:block;justify-content:flex-start;margin-top: 50px; margin-bottom: 10px;
}  
  
.box {
  border: 1px solid #ccc;
  padding:  20px;
  margin-left: 10px; 
  margin-bottom: 20px;
  width: 99%;
  text-align:start;
  /* background-color: #F5F5F5;   */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22); 
  transition: opacity 0.3s ease, transform 0.3s ease;
} 

.services{
  display:block;
}

.downloads{
  display:none;
}

.BoxTitle{
  width: 100%;
  height: 50px;
  display:flex;
 
}
.BoxTitle img {
  float: left;
  margin-right: 20px;
}
.BoxTitle h2 {
margin-top: 10px;
 width: 90%;
 color: #573588;
}

.boxText{
  width: 100%;
}
  
footer {
  height: 60px; 
  display: flex;
  justify-content:space-between;
  background-color: #333;
  color: white;
  padding: 10px 20px;
}  
  
.footer-left, .footer-right {
  display: flex;align-items: center;  
}  
  
.footer-right a {
  color: white;margin-left: 15px;text-decoration: none;  
}  
  
.footer-right a:hover {
  text-decoration: underline;  
}  

.download-box {
  display: flex;
  align-items: center;
  /* background: #f9f9f9;  */
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 15px;
  width: 98%; /* Set to 90% of the page width */
  max-width: none; /* Remove max-width constraint */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22); 
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin: 20px auto;
 
}

.icon {
  margin-right: 15px;
  border: 1px solid #ccc; /* Border for the icon */
  border-radius: 5px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px; /* Fixed width to match icon size */
  height: 150px; /* Fixed height to match icon size */
  background-color: white;
}


.content {
  flex-grow: 1;
  height: 150px;
}

.content h3 {
  margin: 0 0 5px 0;
  color: #9b59b6;
  font-size: 25px; /* Smaller font to match the image */
  font-weight: bold;
  text-align: start;
}

.content p {
  margin: 0;
  color: #333;
  font-size: 20px; /* Smaller font to match the image */
  text-align: start;
  overflow-wrap: break-word; /* Breaks words at any character */
  word-wrap: break-word; /* Fallback for older browsers */
  white-space: normal; /* Allows wrapping */
}

.buttons {
  display: flex;
  gap: 8px;
  padding-top: 120px;
}

.buttons-add{
  gap: 8px;
  padding-top: 50px;
  width: 20%;
  float: right;
  position: relative;
  margin-bottom: 20px;
}

.btn {
  padding: 5px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9em;
  background: none; /* No background for icon buttons */
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-add {
  padding: 5px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9em;
  background: none; /* No background for icon buttons */
  position: absolute;
  right: 5px;
  bottom: 2px;
}

.btn-add img {
  width: 50px;
  height: 50px;
}

.btn-download {
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
}

.box-Content-Titel {
  width: 99%; /* Takes 95% of body width */
  max-width: 1200px; /* Optional: limits max size on large screens */
  margin: 0 auto; /* Centers the box */
  /* background-color: #f9f9f9;  */

  padding: 30px; /* Inner spacing */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  box-sizing: border-box; /* Includes padding in width */
}

/* Big title styling */
.title {
  font-size: 36px; /* Big title */
  font-weight: bold;
  color: #2c3e50; /* Dark color */
  margin: 0 0 20px 0; /* Space below */
  line-height: 1.2;
}

/* Description styling */
.description {
  font-size: 18px; /* Readable size */
  color: #555; /* Softer color */
  line-height: 1.6; /* Better readability */
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .box {
      padding: 20px; /* Less padding on smaller screens */
  }
  .title {
      font-size: 28px; /* Smaller title */
  }
  .description {
      font-size: 16px; /* Smaller text */
  }
}

@media (max-width: 480px) {
  .LogoTextVisible{
      display: none;
  }
  .box {
      padding: 15px;
  }
  .title {
      font-size: 24px;
  }
  .description {
      font-size: 14px;
  }
}

/* Responsive Design */
@media (max-width: 635px) {
  .download-box {
      flex-direction: column;
      text-align: center;
  }

  .icon {
      margin-right: 0;
      margin-bottom: 10px;
  }

  .buttons {
      flex-direction: column;
      width: 100%;
  }

  .btn {
      width: 100%;
      margin-bottom: 5px;
  }

  .btn-download {
      width: auto;
  }
}
  
@media (max-width: 768px) {.box-container {flex-direction: column;}  
}  