
/* ----- Breadcrumb CSS ------- */
.custom-breadcrumb {
   display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    font-family: zalalando, sans-serif;
}

.custom-breadcrumb a,
.custom-breadcrumb .current {
    color: #fff;
    text-decoration: none;
    line-height: 1;
}

.custom-breadcrumb .separator {
    width: 8px;
    height: 8px;
    background: #1f9f9a; /* green square */
    display: inline-block;
    transform: rotate(0deg);
    flex-shrink: 0;
}
.custom-breadcrumb a:hover {
    color: #0f877c;
}

/* ----- Blog CSS ------- */
.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog_figure {
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    width: 100%;
}
.blog_figure a {
    display: block;
    height: 100%;
}

.blog_figure a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_header {
    display: flex;
    justify-content: space-between;
    gap: 2px;
    padding: 10px 0;
    margin-bottom: 10px;
    margin-top: 16px;
    border-bottom: 1px solid #ddd;
    font-family: zalalando, sans-serif;
}

.blog_tag {
    position: relative;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    padding-left: 16px;
}
.blog_tag::before {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    background-color: #008580;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.blog_date {
    position: relative;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

a.blog_title {
    color: #222;
    font-family: "vend sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    padding: 16px 0;
    display: block;
}

.blog_body p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ----- Blog CSS End ------- */

/* ----- Form CSS ------- */
form.invalid .wpcf7-response-output {
    border: none;
    background: #e60000;
    color: #fff;
    font-weight: 600;
    padding: 14px;
}

form.sent .wpcf7-response-output {
    border: none;
    background: green;
    color: #fff;
    font-weight: 600;
    padding: 14px;
}
.contact-form {
    width: 100%;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form__group--full {
    width: 100%;
    margin-bottom: 18px;
}

.contact-form__group input[type="text"],
.contact-form__group input[type="email"],
.contact-form__group input[type="tel"], .contact-form__group select {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #333333;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.contact-form__group label {
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: #222;
    font-size: 14px;
}

.contact-form__group textarea {
    width: 100%;
    padding: 18px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #333333;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    outline: none;
    min-height: 180px;
    resize: vertical;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* ===== FOCUS STATE ===== */
.contact-form__group input:focus,
.contact-form__group textarea:focus {
    border-color: #018683;
    box-shadow: 0 0 0 3px #01868326;
}

/* ===== SUBMIT BUTTON WRAPPER ===== */
.contact-form__btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ===== SUBMIT BUTTON ===== */
.contact-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a8e645;
    color: #1c3000;
    border: none;
    padding: 17px 44px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 999px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition:
        background 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

.contact-form__btn:hover {
    background: #96d432;
    box-shadow: 0 6px 20px rgba(150, 212, 50, 0.35);
}

.contact-form__btn:active {
    transform: scale(0.97);
}

/* ===== ARROW ICON ===== */
.contact-form__btn .btn-arrow {
    font-size: 18px;
    font-style: normal;
    display: inline-block;
}

/* ----- Form CSS End ------- */

.main-footer li{
    list-style-type: none;
}

/* ----- Blog-Single CSS ------- */
.container{
       max-width: 1350px;
       margin: 0 auto;
}
.blog-single-image {
    overflow: hidden;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    width: 100%;
    height: 500px;
}

.blog-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
    padding: 20px 0px 30px 0;
}

.blog-content h2 {
    margin: 24px 0 20px 0;
    font-size: 24px;
}

.blog-single-wraper .container {
    padding: 60px 30px;
}
.blog-single-content blockquote {
    border: 1px solid #dddddd;
    margin: 50px 0;
    padding: 40px;
    border-radius: 20px;
}

.blog-single-content blockquote p:first-child {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}
.blog-content p {
    color: #555;
    font-family: zalalando, sans-serif;
}

/* --- Added Layout Grid & Matching Sidebar Elements --- */
.grid_box {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr; 
    gap: 60px;
    align-items: start;
}

.blog-sidebar {
    background-color: #ffffff;
    padding: 10px;
}

.blog-sidebar .widget {
    margin-bottom: 45px;
}

.blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

/* Header Title matches screenshot styling */
.blog-sidebar .widget-title {
    font-family: "vend sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 25px;
    text-transform: none;
    border-bottom: none;
    padding-bottom: 0;
}

/* --- Search Form Custom Layout --- */
.blog-sidebar .search-form,
.blog-sidebar .wp-block-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.blog-sidebar .search-field,
.blog-sidebar .wp-block-search__input {
    width: 100%;
    padding: 16px 70px 16px 24px; /* leaves room for the absolute button */
    font-size: 16px;
    color: #666;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    outline: none;
}

.blog-sidebar .search-submit,
.blog-sidebar .wp-block-search__button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #a8e645; 
    color: #1c3000;
    border: none;
    width: 65px;
    height: 46px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231c3000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: background 0.2s ease;
}

.blog-sidebar .search-submit:hover,
.blog-sidebar .wp-block-search__button:hover {
    background: #96d432;
}


.blog-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar ul li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 14px 20px; 
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    color: #222;
}


.blog-sidebar ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #a8e645; 
    border-radius: 1px;
}

.blog-sidebar ul li a {
    color: #222;
    text-decoration: none;
    font-family: inherit;
    transition: color 0.2s ease;
    flex-grow: 1;
}

.blog-sidebar ul li a:hover {
    color: #008580;
}


.blog-sidebar ul li .count,
.blog-sidebar ul li span {
    color: #999;
    font-weight: 400;
    margin-left: auto;
}


@media (max-width:991px) {
    .blog-single-image {
        height: 400px;
    }
    .blog-single-wraper .container {
        padding: 40px 30px;
    }
    .blog-meta {
        padding-top: 0;
    }
    .grid_box {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }
}

@media (max-width:768px) {
    .blog-single-content h1{
        font-size: 34px;
    }
    .grid_box {
        grid-template-columns: 1fr;
        gap: 20px !important;
    }
    .blog-sidebar {
        margin-top: 0px;
    }
}

@media (max-width:678px) {
    .blog-single-image {
        height: unset;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .blog-single-wraper .container {
        padding: 40px 15px;
    }
    .blog-meta {
        padding: 16px 0;
        font-size: 14px !important;
    }
}


.widget_social_share {
    margin-top: 35px;
    /* display: flex; */
    /* justify-content: start; */
    width: 100%;
}

.social-links-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 0px;
    background: #ffffff;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #222222;
    border: 1px solid #e0e0e0;
    border-radius: 8px; 
    text-decoration: none;
    transition: all 0.25s ease;
}


.social-icon-link:hover {
    color: #008580; 
    background-color: #f4faf9;
    transform: translateY(-2px);
}

.social-icon-link svg {
    transition: transform 0.25s ease;
}

.social-icon-link:hover svg {
    transform: scale(1.08);
}
.icon-list-c li.elementor-icon-list-item.elementor-inline-item {
    width: calc(100% / 2 - 30px);
    margin-right: 20px !important;
    margin-bottom: 10px;
}

@media (max-width: 767px){
    .icon-list-c li.elementor-icon-list-item.elementor-inline-item {
        width: 100%;
    }
}


@media (max-width: 480px) {
    .social-links-wrap {
        gap: 10px;
    }
    .social-icon-link {
        width: 40px;
        height: 40px;
    }
}