body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0e0e0e;
  color: white;
  overflow-x: hidden;
}

.navbar {
  background-color: #0e0e0e;
  padding: 20px 0;
  border-bottom: 1px solid #1f1f1f;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav-container {
  width: auto;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
}

.logo-img {
  height: 28px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  transform: translateX(20px);
}

.nav-links {
  transform: translateX(30px); /* Adjusts the position slightly to the right */
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4a90e2;
}

/* Styles for smaller screens */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transform: translateX(0); /* Remove translation */
    padding-left: 20px; /* Add some space to the left */
    margin-left: 20px; /* Add left margin to prevent it from touching text */
  }

  .nav-links a {
    font-size: 1rem; /* Optional: Adjust font size if needed */
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 10px;
  color: white;
  transform: translateX(20px);
}

/* NEW: Add space under fixed navbar */
.page-content {
  display: flex;
  justify-content: center;      /* center horizontally */
  box-sizing: border-box;
}


/* Center container horizontally */
.panel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 50%;
  height: auto;
  max-width: 600px;
  padding: 120px 0 20px 0;
  box-sizing: border-box;
}

.dark-panel {
  width: 100%;
  background-color: rgb(19, 19, 19);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.panel-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  display: block;
}

/* Align text and headings to the left */
.dark-panel h2,
.dark-panel h5,
.dark-panel p {
  text-align: left;
  margin: 10px 0;
}

.dark-panel .btn {
  margin-top: 10px;
  margin-right: 10px;
}

.dark-panel h2 {
  margin-top: 0;
  color: #ffffff;
}

.dark-panel h5 {
  margin: 10px 0;
  color: #cccccc;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  color: white;
  margin: 10px 10px 0 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
}

.btn-gradient {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 75, 43, 0.6);
}
