:root {
    /* --primary-color: #4E7722; */
    /* --secondary-color: #EEF6E4; */
    /* --white-color: #fff;
    --white-bg: #fff; */
    /* --light-bg-color: #EEF6E4; */
    --grey-color: #6F6F6F;
    /* --text-color: #2E2E2E; */
    --text-color-light: #5B5C62;

    --primary-color: #7cb06d;
    --secondary-color: #d3e5cd;
    /* --light-bg-color: #CCF0D9; */
    /* --light-bg-color: #AEB4B6; */
    --light-bg-color: #D3D3D3;
    --dark-bg-color: #353535;
    --white-color: #F5F5F5;
    --white-bg: #F5F5F5;
    /* --text-color: #42455C; */
    /* --text-color: #000000; */
    --text-color: #353535;
    /* --new-color-1: #42455C;
    --new-color-3: #F5F5F5; */
    --text-color-light: #5B5C62;
    --section-padding-y: 86px;
}

body {
    font-family: "Figtree", sans-serif;
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.5555;
    /* width: 1920px; */
}

img {
    max-width: 100%;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-weight: 400;
}

h1 {
    font-size: 64px;
    font-weight: 600;
}

h2 {
    font-size: 52px;
    line-height: 1.5;
    font-weight: 600;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    margin-bottom: 24px;
}

p:last-child {
    margin-bottom: 0;
}

.white h1,
.white p {
    color: var(--white-color);
}

.white h2,
.white p {
    color: var(--white-color);
}

.title h2 {
    font-size: 42px;
}

.title p {
    font-size: 26px;
}

@media(min-width: 1600px) {
    .container {
        max-width: 1560px;
    }
}

.main-header {
    background-color: var(--white-color);
    padding: 15px 0;
    box-shadow: 0px 0px 8px -2px rgb(1 1 1 / 50%);
}

.site-navigation {
    display: flex;
    position: relative;
}

.site-navigation ul {
    list-style: none;
}

.site-navigation .main-menu-wrap>ul>li:not(:last-child) {
    margin-right: 6px;
}

.site-navigation>.main-menu-wrap>ul>li>a {
    background-color: transparent;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    padding: 10px 26px;
    display: block;
}

.site-navigation>.main-menu-wrap>ul>li.current-menu-item a,
.site-navigation>.main-menu-wrap>ul>li a.active,
.site-navigation>.main-menu-wrap>ul>li a:hover {
    background-color: var(--secondary-color);
}

.header-right-sec {
    margin-left: 24px;
}

.language-btn {
    margin-left: 26px;
}

.language-btn ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.language-btn a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.language-btn>ul>li {
    position: relative;
}

.language-btn>ul>li>a {
    position: relative;
    padding-right: 18px;
}

.toggle-button,
.search-wrap.mobile-search {
    display: none;
}

.web-btn {
    display: flex;
    flex-direction: column;
}

.btn {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 24px 10px 24px;
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 4px;
    transition: 0.6s all;
}

.btn-rounded {
    border-radius: 100px;
}

.pr-10 {
    padding-right: 10px;
}

.btn img {
    transition: 0.6s all;
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn.btn-primary:hover {
    background-color: var(--text-color);
}

.btn.btn-secondary {
    background-color: var(--white-color);
    color: var(--text-color);
}

.btn.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn.btn-secondary:hover img {
    filter: brightness(0) invert(1);
}

.web-heading {
    margin-bottom: 48px;
}

.web-heading h1,
.web-heading h2,
.web-heading h3,
.web-heading h4,
.web-heading h5,
.web-heading h6 {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}

.web-heading span {
    color: var(--primary-color);
}

section.white-bg {
    padding: var(--section-padding-y) 0;
}

.partners-logos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-logos {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    gap: 60px;
    padding: 0 20px;
    /* width: max-content;
    left: 0;
    animation: bounceLogos 30s alternate infinite; */
}

.partners-logos img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%) opacity(1);
}

.main-banner {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    padding: 96px 0px;
}

.background-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.banner-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.banner-content p {
    max-width: 500px;
    /*font-weight: 600;*/
    margin-bottom: 32px;
    color: var(--text-color);
    font-size: 20px;
}

.ozegen-challenges {
    padding: var(--section-padding-y) 0;
}

.ozegen-solution {
    padding: var(--section-padding-y) 0;
}

.ozegen-solution .web-heading {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ozegen-solution .card-img img {
    max-width: 300px;
    width: 100%;
}

.ozegen-benefits {
    padding: var(--section-padding-y) 0;
}

.ozegen-segments {
    padding: var(--section-padding-y) 0;
}

.ozegen-challenges {
    background-color: var(--secondary-color);
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .item,
.about-card {
    height: 100%;
}

.about-card {
    background-color: var(--white-bg);
    border-radius: 20px;
    padding: 42px 30px;
}

.about-card .icon {
    margin-bottom: 48px;
    min-width: 82px;
    min-height: 82px;
}

.about-card .icon img {
    width: auto;
}

.about-card .content h3 {
    font-weight: 400;
    margin-bottom: 30px;
}

.about-card .content p {
    color: var(--text-color-light);
}

.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-carousel .owl-nav button.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.owl-carousel .owl-nav button circle,
.owl-carousel .owl-nav button path {
    transition: 0.6s all;
}

.owl-carousel .owl-nav button:hover circle {
    fill: var(--primary-color);
}

.owl-carousel .owl-nav button:hover path {
    fill: var(--white-color);
}

.service-card {
    gap: 24px;
    padding: 20px 30px;
    border-radius: 20px;
    background-color: var(--secondary-color);
    position: relative;
}

.service-card:not(:last-child) {
    margin-bottom: 32px;
}

.service-card:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 52px;
    transform: translateX(-50%);
    top: 100%;
    height: 32px;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.service-card .step-number {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .content {
    margin-top: 4px;
}

.service-card .content h3 {
    margin-bottom: 20px;
}

.service-card .content p {
    color: var(--text-color-light);
}

.web-tabs-wrap {
    text-align: center;
}

.tab-nav-sec {
    display: inline-block;
    background-color: var(--secondary-color);
    padding: 8px;
    border-radius: 100px;
    margin-bottom: 26px;
}

.tab-nav-sec .nav {
    margin: 0;
    gap: 12px;
}

.tab-nav-sec .nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    border-radius: 100px;
    padding: 8px 24px;
}

.tab-nav-sec .nav .nav-link.active,
.tab-nav-sec .nav .nav-link:hover {
    background-color: #fff;
}



.ozegen-segments .content-box h4 {
    font-weight: 600;
    line-height: 1.55;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.ozegen-segments .content-box .lead {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    max-width: 740px;
    margin: 0 auto;
}

.web-tabs-wrap .web-btn {
    justify-content: flex-start;
}

.report-card {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.report-card .card-header {
    border-bottom: 1px solid var(--text-color-light);
    margin-bottom: 18px;
    padding-bottom: 20px;
}

.report-card .card-header p {
    margin-bottom: 6px;
}

.report-card .card-header h4 {
    font-weight: 600;
    color: var(--primary-color);
}

.report-card .content {
    color: var(--text-color-light);
}

.report-card .content p {
    margin-bottom: 18px;
}

.report-card .content ul {
    list-style: none;
}

.report-card .content ul li {
    position: relative;
    padding-left: 38px;
}

.report-card .content ul li:before {
    content: "";
    background-image: url(images/checked-icon.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
}

.report-card .content ul li:not(:last-child) {
    margin-bottom: 15px;
}

.report-card .web-btn {
    margin-top: auto;
    padding-top: 22px;
    align-items: flex-start;
}


.widget h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

footer ul {
    list-style: none;
}

footer ul a,
footer p {
    color: var(--text-color-light);
}

footer ul a:hover,
footer ul li.current-menu-item a {
    color: var(--primary-color);
}

.footer-top {
    padding: 66px 0px 52px;
}

.footer-top .col:first-child {
    max-width: 375px;
}

.footer-top .col:not(:first-child) {
    max-width: 285px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-list .icon {
    flex: 0 0 24px;
}

footer .logo-sec,
.widget h3,
.widget ul li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-menu li a {
    position: relative;
    padding-left: 26px;
}

.footer-menu li a:before {
    content: '';
    background-image: url(images/right-arrow.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 7px;
    background-size: cover;
    width: 11px;
    height: 10px;
}

.footer-col-brand {
    max-width: 340px !important;
}

.footer-bottom {
    border-top: 1px solid rgb(103 105 111 / 20%);
    padding: 20px 0px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    margin: 0;
    font-size: 14px;
    color: var(--text-color-light);
    white-space: nowrap;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links a {
    font-size: 14px;
    color: var(--text-color-light);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgb(103 105 111 / 30%);
    color: var(--text-color-light);
    transition: color 0.2s, border-color 0.2s;
}

.footer-social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

@media(min-width: 1800px) {
    .main-banner {
        padding: 96px 0px;
    }
}

@media(max-width: 1600px) {
    .header-right-sec,
    .language-btn {
        margin-left: 14px;
    }

    .site-navigation>.main-menu-wrap>ul>li>a {
        font-size: 16px;
        padding: 10px 18px;
    }

    .main-header .btn {
        font-size: 16px;
    }
}

@media(max-width: 1400px) {
    .container {
        max-width: 1280px;
    }

}

@media(max-width: 1299px) {

    .container,
    .container-fluid {
        max-width: 100%;
        padding: 0 30px;
    }

    .main-header {
        padding: 10px 0px;
    }

    .logo-sec {
        margin-right: 20px;
    }

}

@media(max-width: 1199px) {
    body {
        position: relative;
        font-size: 16px;
    }

    .btn {
        font-size: 18px;
    }

}

@media(max-width: 991px) {
    .main-header {
        padding: 10px 0px;
    }

    .toggle-button {
        width: 52px;
        height: 52px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        z-index: 99999;
        background-color: var(--primary-color);
        border-radius: 100px;
    }

    .toggle-button .line {
        height: 1.6px;
        width: 18px;
        background-color: var(--white-bg);
        margin-bottom: 5px;
        position: relative;
        transition: all 0.3s;
        border-radius: 50px;
    }

    .toggle-button .line:last-child {
        margin: 0;
    }

    .toggle-button.active .line.one {
        top: 7px;
        transform: rotate(45deg);
    }

    .toggle-button.active .line.two {
        opacity: 0;
    }

    .toggle-button.active .line.three {
        transform: rotate(-45deg);
        top: -6px;
    }

    .main-header-inner {
        align-items: center !important;
    }

    .site-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 2342;
        background-color: var(--light-bg-color);
        padding: 30px 20px;
        text-align: center;
        display: none;
        height: calc(100vh - 84px);
        overflow: hidden;
    }

    .site-navigation .language-btn ul {
        display: flex;
        gap: 16px;
    }

    .language-btn ul li a:after {
        content: '';
        border: none;
        transform: none !important;
        border-bottom: 2px solid var(--primary-color);
        left: 0;
        width: 80%;
        margin: auto;
        top: unset !important;
        opacity: 0;
    }

    .language-btn>ul>li>a {
        padding-right: 0;
    }

    .language-btn>ul>li.wpml-ls-current-language a,
    .language-btn>ul>li>a:hover {
        font-weight: 600;
        color: var(--primary-color);
    }

    .language-btn>ul>li.wpml-ls-current-language a:after,
    .language-btn>ul>li>a:hover:after {
        opacity: 1;
    }

    .main-menu-wrap>ul {
        flex-direction: column;
        gap: 10px;
    }

    .site-navigation>.main-menu-wrap>ul>li.current-menu-item a,
    .site-navigation>.main-menu-wrap>ul>li a.active,
    .site-navigation>.main-menu-wrap>ul>li a:hover {
        background-color: var(--white-bg);
    }

    .header-right-sec {
        flex-direction: column;
        margin: 0;
        gap: 20px;
        margin-top: 20px;
    }

    .language-btn {
        margin: 0;
    }

    .main-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 0;
    }

    .banner-content h2 {
        line-height: 54px;
        margin-bottom: 10px;
        font-size: 36px;
        max-width: 500px;
    }

    .web-heading {
        margin-bottom: 32px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card .content h3 {
        margin-bottom: 10px;
    }

    .about-card .icon {
        margin-bottom: 20px;
    }

    .owl-carousel .owl-nav {
        margin-top: 20px;
    }

    .main-banner {
        padding: 60px 0px;
    }

    .banner-content p {
        font-weight: 400;
        margin-bottom: 20px;
    }

    .report-card {
        padding: 20px;
    }

    .footer-top .row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-top .col {
        max-width: 100% !important;
    }

    footer .logo-sec,
    .widget h3,
    .widget ul li:not(:last-child) {
        margin-bottom: 14px;
    }

    .footer-top {
        padding: 40px 0px 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }



    .accordion-item {
        border: none;
        background-color: var(--secondary-color);
        border-radius: 32px !important;
    }

    .accordion-item:not(:last-child) {
        margin-bottom: 32px;
    }

    .accordion-item .accordion-button {
        border: none !important;
        background-color: transparent;
        box-shadow: none;
        font-weight: 500;
        padding: 20px;
        color: var(--text-color);
        font-size: 18px;
        gap: 10px;
    }

    .accordion-item .accordion-body {
        padding: 0 20px 20px;
        text-align: left;
    }

    .accordion-item .accordion-button:after {
        /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234E7722'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237cb06d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
    }

    .accordion-item .accordion-body p {
        margin-bottom: 16px;
    }

    section.white-bg,
    .ozegen-challenges,
    .ozegen-solution,
    .ozegen-benefits,
    .ozegen-segments,
    .ozegen-testimonial,
    .ozegen-final-cta {
        padding: 50px 0;
    }

    .ozegen-testimonial {
        padding-bottom: calc(50px + 24px);
    }

}

@media(max-width: 767px) {

    .container,
    .container-fluid {
        padding: 0 20px;
    }

    .btn {
        font-size: 16px;
    }

    .main-banner {
        padding: 40px 0px;
    }

    section.white-bg,
    .ozegen-challenges,
    .ozegen-solution,
    .ozegen-benefits,
    .ozegen-segments,
    .ozegen-testimonial,
    .ozegen-final-cta {
        padding: 36px 0;
    }

    .ozegen-testimonial {
        padding-bottom: calc(36px + 24px);
    }

    .web-heading h2 {
        font-size: 38px;
    }

    .service-card {
        gap: 10px;
        padding: 20px;
    }

    .service-card .step-number {
        flex: 0 0 36px;
        height: 36px;
        font-size: 16px;
    }

    .service-card .content h3 {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .service-card:not(:last-child) {
        margin-bottom: 20px;
    }

    .accordion-item:not(:last-child) {
        margin-bottom: 20px;
    }

    .banner-content h2 {
        line-height: 38px;
        font-size: 26px;
    }

    .banner-content p {
        font-size: 15px;
        line-height: 24px;
    }

    .toggle-button {
        width: 42px;
        height: 42px;
    }

    .site-navigation>.main-menu-wrap>ul>li>a {
        padding: 8px 16px;
    }

    .about-card .content h3 {
        font-size: 26px;
    }
}

/* Testimonial section */
.ozegen-testimonial {
    padding: calc(var(--section-padding-y) * 1.5) 0 calc(var(--section-padding-y) * 1.5 + 24px);
    background-color: var(--dark-bg-color);
}

.testimonial-photo-wrap {
    border-radius: 20px;
    overflow: visible;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.testimonial-photo-wrap .testimonial-photo {
    border-radius: 20px;
    overflow: hidden;
    display: block;
}



.testimonial-company-card {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: max-content;
    max-width: calc(100% - 32px);
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.testimonial-company-logo {
    height: 25px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.testimonial-company-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.testimonial-company-info strong {
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    line-height: 1;
}

.testimonial-company-info span {
    font-size: 0.78rem;
    line-height: 1.2;
    color: var(--text-color-light);
    white-space: normal;
    overflow-wrap: break-word;
}

.testimonial-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.testimonial-content {
    color: var(--white-color);
    position: relative;
}

.testimonial-quote-mark {
    font-size: 100px;
    line-height: 0.75;
    color: var(--primary-color);
    font-family: Georgia, serif;
    margin-bottom: 20px;
    user-select: none;
}

.testimonial-quote {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white-color);
    border: none;
    padding: 0;
    margin-bottom: 36px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white-color);
}

.testimonial-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.testimonial-cta {
    display: inline-flex;
    width: fit-content;
}

@media (max-width: 991px) {
    .testimonial-photo {
        height: 320px;
    }

    .testimonial-photo-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .testimonial-photo {
        height: 300px;
    }

    .testimonial-quote-mark {
        font-size: 72px;
    }
}


/* Final CTA section */
.ozegen-final-cta {
    padding: var(--section-padding-y) 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.ozegen-final-cta .web-heading h2 {
    color: var(--text-color);
}

.ozegen-final-cta__subtitle {
    color: var(--text-color);
    font-size: 20px;
    max-width: 620px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

.ozegen-final-cta__friction {
    color: var(--text-color);
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 0;
    opacity: 0.6;
}

@media (max-width: 767px) {
    .ozegen-final-cta__subtitle {
        font-size: 16px;
    }
}