#calculate textarea {
    background-color: rgba(121, 134, 151, 0.7);
    border: none;
    border-radius: 5px;
    width: 100%;
    height: 42px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 30px;
    outline: none;
}

.book-now {
    position: fixed;
    bottom: 10%;
    right: 20px;
    background: #112850;
    color: #fff;
    padding: 10px 40px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 999;
}

.book-now:hover {
    background: #FF511A;
    color: #fff;
}

@keyframes jump {
    0% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }

    50% {
        transform: translate3d(0, 50%, 0) scale3d(0.9, 1.1, 1);
    }

    100% {
        transform: translate3d(0, 100%, 0) scale3d(1, 1, 1);
    }
}

.jump {
    transform-origin: 50% 50%;
    animation: jump 0.5s linear alternate infinite;
}

/* countDown - start */
.countdown-container {
    display: flex;
    gap: 10px;
}

.time-box {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.time-box.blue {
    background-color: #00aaff;
}

.time-box.black {
    background-color: #000;
}

.time-box span:first-child {
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.time-box span:last-child {
    font-size: 12px;
    color: white;
    text-transform: uppercase;
}

/* countDown - end */

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00b7eb;
    font-size: 24px;
}

.trans-reg-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid white;
}

.trans-reg-btn:hover {
    background-color: white;
    color: #252425;
    transition: background-color 0.3s, color 0.3s;
}

/* message-style -- start */
.messages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin-top: 30px;
}

.message-card {
    background: #ecf2f3;
    /* Dark grayish background for the card */
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    text-align: left;
    position: relative;
    color: white;
}

.message-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.message-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00b7eb;
}

.message-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.message-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.see-more-btn {
    background: #00b7eb;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.see-more-btn:hover {
    background: #009dd1;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

.popup-content h3 {
    color: #00b7eb;
    margin-bottom: 15px;
}

.popup-content h4 {
    margin-bottom: 10px;
}

.popup-content p {
    margin-bottom: 15px;
}

.popup-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.popup-content table,
.popup-content th,
.popup-content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.popup-content th {
    background: #f0f0f0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* message-style -- end */

