.navbar {
  display: flex;
  justify-content: space-between; /* Pushes logo left, links right */
  padding: 10px 5%;
  background: #12111f;
  color: #fff;
  height: 60px;
  position: sticky;
  align-items: center;
}

.nav-links li {
  margin: 0 1rem;
  background-color: #12111f;
}

.navbar {
  display: flex;
  align-items: center; /* Vertically centers logo and links */
  justify-content: space-between; /* Pushes logo left, links right */
  background-color: #12111f;
  height: 60px;
  position: sticky;
  top:0;
}

.logo img {
  height: 60px; /* Control logo size here */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px; /* Space between links */
}

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



.toggle {
  display: none;
  background-color: orange;
} /* Hidden on desktop */

a:link,a:visited,a:hover,a:active {
  text-decoration: none;
  color: white;
}




/* Card Container */
.card-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    flex-direction: row;
    padding: 30px;
}

/* Card styles */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
    flex: 0 0 340px; 
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: scale(1.05);
}

.card-img {
    width: 100%;
    height: 150px;
}

.card-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.5em;
    margin: 0 0 8px 0;
}

.card-description {
    font-size: 1em;
    color: #13a513;
    margin: 0 0 16px 0;
    text-align: left;
    line-height: 1.4;
}

.card-description:hover {
    color: #1de366;
}

.card-list {
    text-align: left;
    padding: 0;
    margin: 0 0 16px 0;
    list-style-type: disc;
    list-style-position: inside;
}

.card-list li {
    margin-bottom: 8px;
    list-style: none;
    color: #007bff;
}

.card-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9em;
}

.card-button:hover {
    background-color: #0056b3;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}





