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

html,
body {
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-left: 0vw;
  /* Shift content to right of fixed image */
}

header {
  background-color: #0f172a;
  padding: 15px 30px;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
}

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

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.content {
  flex: 1;
}

.section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

/* App list styles */
.app-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.app-item {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  background-color: #f9f9f9;
}

.app-item h3 {
  margin-bottom: 10px;
}

.app-item a {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.app-item a:hover {
  text-decoration: underline;
}

/* Contact form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 4px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color:#0f172a;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}

footer {
  background-color:#0f172a;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* Fixed animated image on left */
.side-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 20vw;
  padding-top: 15vh;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-bottom:15vh;
  height: 100vh;
  z-index: 5;
  background-color:#0f172a;
}

.side-slideshow img {
  width: 100%;
  height: 100%;
  margin-top: 0vh;
  object-fit: cover;

}