<iframe width='100%' height='750px' src='https://meetings.defynance.com/portal-embed#/qanda' frameborder='0' allowfullscreen='' > </iframe>


.main-moon-div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    text-align: center;
    height: 68vh;
    margin: 0;
}

.moon-container {
    position: relative;
    width: 400px;
    padding: 40px 20px;
}

.moons {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
}

.moon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    opacity: 0.3;
    /* Default opacity for inactive moons */
    filter: blur(1px);
    cursor: pointer;
}

/* Positioning moons in a circular layout */
.moon:nth-child(1) {
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
}

.moon:nth-child(2) {
    top: 20%;
    left: 25%;
    transform: translate(-100%, -50%);
}

.moon:nth-child(3) {
    top: 47%;
    left: 12%;
    transform: translate(-100%, -50%);
}

.moon:nth-child(4) {
    top: 68%;
    left: 12%;
    transform: translate(-50%, 0%);
}

.moon:nth-child(5) {
    top: 100%;
    left: 27%;
    transform: translate(0, -50%);
}

/* Different moon images */
.moon:nth-child(1) {
    background-image: url('/New Project.png');
}

.moon:nth-child(2) {
    background-image: url('/moon2.png');
}

.moon:nth-child(3) {
    background-image: url('/moon3.png');
}

.moon:nth-child(4) {
    background-image: url('/moon4.png');
}

.moon:nth-child(5) {
    background-image: url('/moon5.png');
}

/* Active moon styling */
.moon.active {
    opacity: 1;
    filter: blur(0);
    /*            transform: scale(1.2);*/
}

.moon-content {
    margin-left: 67px;
    width: 400px;
    margin-top: 47px;
    position:relative;
}

.moon-content h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.moon-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.survey-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border: 2px solid #2483C5;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index:99;
}

.survey-button:hover {
    background-color: #2483C5;
    color: white;
}

.who-box h3{
    position: absolute;
    top: 60px;
    left: 30px;
}

.who-box p{
    position: absolute;
    top: 40px;
    left: 30px;
}

.who-box img{
    border-radius: 20px;
}

.zpelement.zpelem-icon.who-ico {
    z-index: 10;
    position: relative;
}

.who-descrip{
    z-index: 10;
    position: relative;
    display: none;
}


.flip-container {
    perspective: 1000px;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
}

/* Maintain aspect ratio using padding trick */
.flip-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

/* Flip card styling */
.flip-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Front and back faces */
.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 45px;
    box-sizing: border-box;
}

.front {
    background: url('/who-we-are1.jpg') no-repeat center center/cover;
    color: white;
    z-index: 2;
}
.front2{
    background: url('/what-we-do2.jpg') no-repeat -400px center/cover;
}

.back {
    background-color: #f8f9fa; /* Light gray to match a white layout */
    color: #333; /* Darker text for readability */
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect */
.flip-container:hover .flip-card {
    transform: rotateY(180deg);
}

/* Content styling */
.content {
    text-align: left;
    max-width: 80%;
}

.content .flip-head {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 5px;
    font-weight: 600;
    margin: 0;
    color: inherit;

}

.flip-head p {
    font-family: Outfit;
}

.content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 10px 0 6px 0;
    font-family: Outfit;
}

.zphero.zpapply-height{
border-radius:10px;
    min-height: 465px !important;
}
[data-element-id="elm_NlsSpn3kPl89421AHMMH8Q"].zpelem-text {
    margin-block-start: 45% !important;
}

span.theme-menu-name {
    color: black;
}

.theme-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
}
.zphero.top-hero-slider.zpapply-height {
    margin-top: 92px;
}

/* Media queries for responsiveness */

@media (min-width:768px) and (max-width: 1024px) {
    .moon-content {
    width: unset;
}
    .front, .back {
    padding: 26px;
}
    .content {
    text-align: left;
    max-width: 100%;
}
    .flip-wrapper {
    height: 345px;
}
    .content p{
    font-size:13px;
    }
    .front2 {
    background: url(/what-we-do2.jpg) no-repeat -269px center / cover;
}
}

@media screen and (max-width: 767px) {
    .flip-container {
        max-width: 400px;
    }
    .front, .back {
        padding: 20px;
    }
    .content{
    max-width:90%;
    }
    .flip-wrapper {
        height: 350px;
    }
    .back{
        padding: 0px;
    }
    .moon-content {
    width: unset;
}
    .zphero.zpapply-height {
    min-height: 560px !important;
}
    .front2{
    background: url('/what-we-do2.jpg') no-repeat -221px center/cover;
}
.zphero.top-hero-slider.zpapply-height {
    margin-top: 58px;
}
}

