/*MEET CEO STYLE*/

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}

.video-section img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 36px;
    background-color: #125b2c;
    padding: 10px 20px;
    border-radius: 50%;
}



/* Benefits Section */
.benefits h2 {
    font-size: 18px;
    color: #00727A;
    margin-bottom: 20px;
}

.benefit-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    padding: 5px;
    border-radius: 10px;
    text-align: start;
    margin-right: 10px;
    color: white;
    font-size: 12px;
}

.purple { background: #d9caff;  border-radius: 10px; margin-left: 30px; margin-right: 30px; margin-bottom: 20px; padding: 20px;}
.green { background: #d9ffca; color: #00727A;  border-radius: 10px; margin-bottom: 20px; padding: 5px; padding: 20px;}
.yellow { background: #fff3ca; color: #6a570b;  border-radius: 10px;  margin-right: 30px; margin-left: 30px; margin-bottom: 20px; padding: 5px; padding: 20px;}
.blue { background: #cae7ff; color: #00727A;  border-radius: 10px; padding: 20px; margin-bottom: 20px;}

.get-started {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #00727A;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.lo{
   
}

.ic{
    background-color: #ffffff;
    border-radius: 100px;
    padding: 10px;
     font-size: 20px;
     text-align: center;
     color:#333;
}
.icx{
    background-color: #00727A;
    border-radius: 100px;
    padding: 10px;
     font-size: 20px;
     text-align: center;
     color:#ffffff;
}
/* Video Modal */
.video-modal {
    display: none; /* Modal hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.modal-content {
    position: relative;
    width: 80%;
    max-width: 700px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

