/* programs-style.css */

.program-success-msg {
    background: #ccff00;
    color: #000;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    border-radius: 5px;
}

.programs-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.program-card {
    border: 1px solid #ccff00;
    width: 300px;
    padding: 15px;
    text-align: center;
    color: white;
    position: relative;
}

.program-card .product-title{
    color: #ccff00;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.program-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.program-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.program-price {
    color: #ccff00;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.buy-button {
    background: none;
    border: none;
    color: #ccff00;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    margin: 20px 0;
    font-size: 16px !important;
}

.program-card input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: transparent;
    border: 1px solid #444;
    color: white;
}

/* MODAL STYLING */
.dtt-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.dtt-modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #ccff00;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-title {
    color: #ccff00 !important;
}

.modal-divider {
    border: 0;
    border-top: 1px solid #444;
    margin: 15px 0;
}

.modal-desc {
    color: white;
    line-height: 1.6;
    text-align: left;
}

.close-modal {
    color: #ccff00;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.open-desc-popup {
    margin: 10px 0;
    color: #ccff00;
}
a.open-desc-popup:hover{
    color: #ccff00 !important;
    text-decoration: underline !important;
}