


.program-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #007BFF; /* Blue background color */
    color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 10px;
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

.card-content h4,
.card-content h5 {
    margin: 0;
    margin-bottom: 10px;
}

.card-content p {
    margin: 0;
}

.card-content a {
    color: #FFD700; /* Gold color for the link */
    text-decoration: none;
}

.card-content a:hover {
    text-decoration: underline;
}
/*grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  .card {
    /* border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center; */
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .card h3 {
    margin-top: 10px;
  }
  /*button creation */
  .button-container {
    text-align: center;
}

.scifi-button {
    background: linear-gradient(45deg, #0f0f0f, #2b2b2b);
    border: 1px solid #00ffff;
    border-radius: 8px;
    color: #00ffff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.scifi-button::before,
.scifi-button::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0));
    transition: all 0.3s ease;
}

.scifi-button::before {
    top: -100%;
    left: -100%;
    transform: rotate(45deg);
}

.scifi-button::after {
    bottom: -100%;
    right: -100%;
    transform: rotate(45deg);
}

.scifi-button:hover::before,
.scifi-button:hover::after {
    top: -10%;
    left: -10%;
    bottom: -10%;
    right: -10%;
}

.scifi-button:hover {
    border-color: #00f0f0;
    color: #00f0f0;
    text-shadow: 0 0 10px #00f0f0, 0 0 20px #00f0f0;
}

.scifi-button:active {
    background: linear-gradient(45deg, #1c1c1c, #353535);
    border-color: #009999;
    color: #009999;
    text-shadow: 0 0 5px #009999, 0 0 10px #009999;
}
/* first button */