/* Reset & Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #d1fcff, #cfffef);
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Top Navigation Bar */
.top-bar {
  background: #1e293b;
  color: white;
  padding: 1rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
.input {
  max-width: 190px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border:10px;
  border-color: #000000;
  color: #000000;
}
.button {
  width:225px;
  cursor: pointer;
  position: relative;
  padding: 10px 30px;
  font-size: 18px;
  color: rgb(193, 163, 98);
  border: 2px solid rgb(193, 163, 98);
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 225px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: rgb(193, 163, 98);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
  scale: 3;
}

.button:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
}

.button:active {
  scale: 1;
}


/* Sidebar */
.sidebar {
  position: fixed;
  top: 4.5rem;
  left: 1rem;
  background: #1e293b;
  color: white;
  width: 220px;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 0.7rem 0;
}

.sidebar a {
  color: #f9fafb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sidebar a:hover {
  color: #93c5fd;
}

/* Main Container */
.container {
  margin-top: 6rem;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 700px;
  text-align: center;
}

/* Headings and Paragraphs */
h1 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

p {
  font-size: 1.1rem;
  color: #475569;
  margin-top: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgb(0, 0, 0);
  cursor: pointer;
  z-index: 1000;
}

/* Menu Dropdown */
.menu {
  display: none;
  position: fixed;
  top: 4.5rem;
  right: 1.5rem;
  background: rgb(43, 43, 58);
  border: 1px solid #000000;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1000;
}

.menu a,
.menu button {
  display: block;
  padding: 0.5rem 1rem;
  margin: 0.3rem 0;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.menu a:hover,
.menu button:hover {
  background: #e2e8f0;
  border-radius: 6px;
  color:#000000;
}

/* Utility */
.hidden {
  display: none;
}


/* Responsive Enhancements */
@media (max-width: 768px) {
  .sidebar {
    position: static;
    width: 100%;
    border-radius: 0;
    margin-bottom: 1rem;
  }

  .container {
    padding: 2rem;
  }

  .hamburger {
    font-size: 1.6rem;
  }

  h1 {
    font-size: 2rem;
  }
  
}
.prompt {
  position: fixed;           /* or absolute if you want it relative to a container */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  background-color: #ffffff;
  border-radius: 10px;
  padding: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;            /* on top of other content */
}
.software-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 500px;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
}

.card h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}

.card p {
  padding: 0 1rem 1rem;
  color: #555;
}
