.elementor-9 .elementor-element.elementor-element-fbf5ea9{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-b759971 */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
}

/* ================= NAVBAR ================= */

.hb-navbar{
    width:calc(100% - 40px);
    margin:10px auto;
    background:#fff;
    border-radius:999px;
    height:70px;
    display:flex;
    align-items:center;
    padding:0 20px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    position:relative;
    z-index:10000;
}

.hb-logo img{
    height:50px;
}

.hb-menu{
    display:flex;
    gap:40px;
    margin-left:40px;
}

.hb-menu a{
    text-decoration:none;
    color:#0d3f3f;
    font-size:18px;
    font-weight:500;
}

/* ================= POPUP ================= */

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

.popup{
    width:95%;
    max-width:1400px;
    background:#fff;
    border-radius:40px;
    padding:35px;
    max-height:92vh;
    overflow-y:auto;

    transform:scale(0.9);
    transition:0.3s;
}

.overlay.active .popup{
    transform:scale(1);
}

/* Header */

.popup-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.popup-logo img{
    height:45px;
}

.close-btn{
    width:70px;
    height:70px;
    border:none;
    border-radius:20px;
    background:#003f3f;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* Content */

.popup-content{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
}

/* 👉 IMPORTANT FIX (form column flow) */
.popup-content > div:last-child{
    display:flex;
    flex-direction:column;
}

/* Heading */

.big-heading{
    color:#003f3f;
    font-size:55px;
    line-height:1.2;
    font-weight:300;
}

/* Form */

.form-group{
    margin-bottom:18px;
    width:100%;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    color:#333;
    font-size:14px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #ddd;
    padding:14px;
    font-size:15px;
    border-radius:10px;
    outline:none;
}

.form-group textarea{
    height:120px;
    resize:none;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* Checkbox */

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:20px 0 10px;
    font-size:14px;
    width:100%;
}

.checkbox input{
    margin-top:4px;
    flex-shrink:0;
}

.checkbox span{
    line-height:1.4;
}

/* ✅ PERFECT BUTTON STYLE */

.popup .submit-btn{
    position:static !important;

    width:100%;
    display:block;

    background:#003f3f;
    color:#fff;

    padding:14px 20px;
    font-size:16px;
    font-weight:500;

    border:none;
    border-radius:30px;

    cursor:pointer;
    text-align:center;

    margin-top:20px;

    line-height:1.2;
}

/* Elementor override fix */
.popup button.submit-btn{
    width:100% !important;
    border-radius:30px !important;
    padding:14px 20px !important;
}

/* Hover */
.popup .submit-btn:hover{
    background:#005757;
}

/* Responsive */

@media(max-width:991px){

    .popup-content{
        grid-template-columns:1fr;
    }

    .big-heading{
        font-size:36px;
    }

    .row{
        grid-template-columns:1fr;
    }

    .close-btn{
        width:60px;
        height:60px;
        font-size:24px;
    }
}/* End custom CSS */