h2,a.ekit-menu-nav-link.active{
position:relative;
z-index:1;
}

h2:hover::after{
width:80px;
}
h2::after{
content:"";
position:absolute;
bottom:-4px;
left:0;
width:50px;
height:3px;
background:#ed3c1f;
transition:.3s ease-in-out;
z-index:-1;
}

.elementskit-navbar-nav-default .elementskit-submenu-panel>li>a{
justify-content:flex-start;
}
a.ekit-menu-nav-link.active::after{
content:"";
position:absolute;
bottom:0px;
left:0;
width:100%;
height:3px;
background:#ed3c1f;
transition:.3s ease-in-out;
z-index:-1;
}
a.ekit-menu-nav-link::after{
content:"";
position:absolute;
bottom:0px;
left:0;
width:0%;
height:3px;
background:#ed3c1f;
transition:.3s ease-in-out;
z-index:-1;
}
a.ekit-menu-nav-link:hover::after{
content:"";
position:absolute;
bottom:0px;
left:0;
width:100%;
height:3px;
background:#ed3c1f;
transition:.3s ease-in-out;
z-index:-1;
}

.fixed-top{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
		z-index:2000
}

img.attachment-thumbnail.size-thumbnail{
margin:auto;
}




    /* Import Manrope font (modern alternative to 'main en') */

/* Form Container */
.text-center {
    font-family: 'main en', sans-serif;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Form Rows */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

/* Form Columns */
.col-lg-6, .col-lg-12 {
    padding: 0 12px;
    margin-bottom: 20px;
}

.col-lg-6 {
    flex: 0 0 50%;
}

.col-lg-12 {
    flex: 0 0 100%;
}

/* Input Fields */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'main en', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #334155;
}

/* Focus States */
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    background-color: #fff;
}

/* Textarea Specific */
textarea {
    min-height: 140px;
    resize: vertical;
}

/* Placeholder Styling */
::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Submit Button */
.tst-btn {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    font-family: 'main en', sans-serif;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.15);
}

.tst-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.2);
}

.tst-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-center {
        padding: 20px;
    }
    
    .col-lg-6 {
        flex: 0 0 100%;
    }
    
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .text-center {
        padding: 15px;
        border-radius: 10px;
    }
    
    .tst-btn {
        width: 100%;
        padding: 15px;
    }
}