body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #eee;
}
    #header-placeholder {
            height: 60px;
        }
        /* Ensure video covers the hero section */
        .hero-video {
            position: relative;
            height: calc(100vh - 60px);
            margin-top: 60px;
        }
        .hero-video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        /* Make video section bigger on mobile */
        @media (max-width: 768px) {
            .hero-video {
                height: calc(50vh - 60px);
                margin-top: 60px;
            }
        }
.btn-primary {
    background-color: #e53e3e;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #c53030;
}
.nav-link:hover {
    color: #e53e3e;
}
/* New styles for partner modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    background-color: #222; /* Dark background for modal */
    color: #fff; /* White text for better contrast */
}
.close {
    color: #e53e3e; /* Red color for close button */
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #c53030;
    text-decoration: none;
    cursor: pointer;
}
#freeTrialModal {
    overflow-y: auto;
}
