.el-contact-container {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

.el-heading .el-title {
    display: flex;
    justify-content: space-between;
}

.el-heading .el-title h3 {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.el-heading .el-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.el-heading .el-inner-title {
    display: flex;
    justify-content: space-between;
}

.el-heading .el-inner-title h3 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.el-subtitle.el-subtitle--with-button {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.el-subtitle p {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.el-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.el-btn.el-btn-info {
    background-color: #17a2b8;
    color: #fff;
}

.el-btn.el-btn-info:hover {
    background-color: #138496;
}

.el-btn.el-btn-primary {
    background-color: #007bff;
    color: #fff;
}

.el-btn.el-btn-primary:hover {
    background-color: #0056b3;
}

/*.el-divider {
    margin: 20px 0;
    border-top: 1px solid #eee;
}*/

.el-divider {
    display: inline-block;
    width: 1.5px;
    height: 12px;
    background-color: #ccc;
    margin-right: 20px;
    margin-left: 10px;
}

.el-form-group {
    display: flex;
    flex-direction: column;
}

.el-form-group .el-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.el-form-group .el-input,
.el-form-group .el-textarea {
    padding: 10px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.el-form-group .el-input:focus,
.el-form-group .el-textarea:focus {
    border-color: #bbbbbb;
    outline: none;
    box-shadow: 0 0 5px rgba(49, 49, 49, 0.25);
}

.el-form-group .el-input::placeholder,
.el-form-group .el-textarea::placeholder {
    color: #999;
}

.el-form-group .el-select {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.el-form-group .el-select:focus {
    border-color: #bbbbbb;
    outline: none;
    box-shadow: 0 0 5px rgba(49, 49, 49, 0.25);
}

.el-form-group .el-select::placeholder {
    color: #999;
}

.el-form-group .el-select .el-option {
    padding: 10px;
    font-size: 14px;
    color: #333;
}

.el-form-group .el-select .el-option:hover {
    background-color: #f0f0f0;
}

.el-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border: 1px dashed #dfdfdf;
    border-radius: 5px;
    padding: 20px;
    background-color: #fff;
}

.el-file-upload .el-file-upload-input {
    display: none;
}

.el-file-upload .el-file-upload .el-file-upload-icon {
    font-size: 24px;
    color: #007bff;
}

.el-file-upload .el-file-upload-text {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

.el-file-upload .el-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #007bff;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    color: #007bff;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.el-file-upload .el-file-label svg {
    width: 20px;
    height: 20px;
}

.el-file-upload .el-file-label:hover {
    background-color: #f0f0f0;
}

.el-holidays-container {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

.el-holidays {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.el-holidays .el-holiday {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    width: 200px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
}

.el-holidays .el-holiday .el-holiday-number {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.el-holidays .el-holiday .el-holiday-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.el-holidays .el-holiday .el-holiday-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

.el-holidays .el-holiday .el-divider {
    width: 100%;
    margin: 10px 0;
    border-top: 1px solid #eee;
}

.el-info-container {
    background-color: #fff;
    border: 1px solid #eee;
    border-top-width: 6px;
    border-radius: 10px;
    padding: 20px;
}

.el-info-container .el-info .el-info-title {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.el-info-container .el-info .el-info-title span {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.el-info-container .el-info .el-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px 10px;
}

.el-info .el-contact-info .el-contact-info--label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.el-info .el-contact-info .el-contact-info--title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.el-map-container {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    height: 360px;
    position: relative;
    overflow: hidden;
}

.el-map-container .el-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #777;
}

.el-about-container .el-about-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.el-about-heading .el-about-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.el-about-heading .el-about-description p {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}

.our-values-title {
    display: flex;
    justify-content: center;
}

.our-values-title h3 {
    font-size: 20px;
    font-weight: 600;
}

.our-values .our-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.our-values .our-value .our-value--icon img {
    width: 90px;
}

.our-values .our-value .our-value--title {
    font-size: 16px;
    font-weight: 600;
}

.our-values .our-value .our-value--description {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

.el-about-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.el-about-items .el-about-item {
    width: 100%;
}

.el-about-item .el-about-item-title {
    font-size: 21px;
    font-weight: 600;
}

.el-about-item .el-about-item-box {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 25px;
}

.el-about-item .el-about-item-description {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    line-height: 2;
}

.el-about-item .el-about-item-img img {
    display: block;
    max-width: 100%;
    border-radius: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .el-about-item .el-about-item-img {
        margin-top: -70px;
    }
}

/* =========================
   CLS FIXES
========================= */

.cls-ratio-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.cls-ratio-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cls-product-ratio {
    aspect-ratio: 1 / 1;
}

.cls-banner-ratio {
    aspect-ratio: 16 / 9;
}

.cls-slider-ratio {
    aspect-ratio: 3 / 1;
}

@media screen and (max-width:768px)
{
    .owl-carousel.js_product_details_owl_carousel
    {
        min-height: 206px !important;
    }

    .owl-carousel:not(.amazing-products-slider):not(.edge_products_slider):not(.js_product_details_owl_carousel):not(.js_mv_clients_parent) 
    {
        min-height: 250px !important;
    }
}
@media screen and (min-width:810px) 
{
    .owl-carousel:not(.amazing-products-slider):not(.edge_products_slider):not(.js_mv_clients_parent) 
    {
        min-height: 250px !important;
    }
}

.owl-carousel.js_mv_clients_parent
{
    min-height: 208px !important;
}

.owl-carousel.amazing-products-slider, .owl-carousel.edge_products_slider {
    min-height: 320px !important;
}

@media screen and (max-width:768px)
{
    .owl-carousel.amazing-products-slider 
    {
        min-height: 200px !important;
        max-height: 290px !important;
    }

    .js_amazing_product_row_margin_bottom 
    {
        margin-bottom: 0rem !important;
    }
}

@media screen and (min-width:810px)
{
    .js_amazing_product_row_margin_bottom
    {
        margin-bottom: 1rem !important;
    }
}

.ads-header-wrapper 
{
    min-height: 0px;
    max-height: 60px;
}

/*---------------------------------------blog_details_table_styles-----------------------------------------*/

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    min-width: 700px;
}

.comparison-table thead {
    background: #0f4c81;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: center;
    border: 1px solid #e5e7eb;
    line-height: 1.8;
}

.comparison-table th {
    font-weight: 700;
    font-size: 15px;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody tr:hover {
    background: #eef6ff;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
        padding: 12px;
        font-size: 14px;
    }
}