/*!
 * 	Theme Variables
 * ----------------------------------------------- */

:root {
    --body-font-family: 'Poppins', sans-serif;
    --body-font-size: 16px;
    --body-font-color: #333f48;
    --body-font-weight: 400;
    --body-line-height: 1.66;
    --heading-font-family: 'Poppins', sans-serif;
    --heading-font-weight: 600;
    --white-color: #fff;
    --base-color: #2f9c4b;
    --dark-gray: #1e3238;
    --aluminium-grey: #80858f;
    --very-light-gray: #eceff1;
    --solitude-blue: #f4f7f9;
    --yellow: #ecab23;
}


/*!
 *	Common
 * ----------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

[tabindex='-1']:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

body {
    margin: 0;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--body-font-color);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    background-color: var(--white-color);
    text-align: left;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: var(--link-font-color);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    outline: none;
}

a:hover {
    color: var(--base-color);
}

p {
    margin-top: 0;
    margin-bottom: 24px;
}

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

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 16px;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 24px;
}

ol,
ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

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

blockquote {
    margin: 0 0 24px;
}

b,
strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 16px;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 16px;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 24px;
    background-color: white;
}

tr:nth-of-type(odd) {
    background: #f5f5f5;
}

th {
    background: #eee;
    font-weight: bold;
}

td,
th {
    padding: 8px 16px;
    border: 1px solid #ddd;
    font-size: 16px;
}

caption {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

::placeholder {
    color: var(--body-font-color);
    opacity: 1;
}

::-ms-input-placeholder {
    color: var(--body-font-color);
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role='button'] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 4px 8px;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 2px;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

blockquote {
    font-size: 28px;
    font-weight: 600;
    color: #000103;
    padding-left: 32px;
    border-left: 6px solid #ffb424;
    margin-top: 64px;
    margin-bottom: 64px;
}

#wrapper {
    overflow: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading-font-family);
    color: var(--dark-gray);
    font-weight: var(--heading-font-weight);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1,
.h1 {
    font-size: 72px;
    line-height: 1.1;
}

h2,
.h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 28px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ascent-bg {
    background-color: var(--very-light-gray);
}


/*!
 *	Spacing
 * ----------------------------------------------- */

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-48 {
    margin-top: 48px !important;
}

.mt-64 {
    margin-top: 64px !important;
}

.mt-72 {
    margin-top: 72px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mb-64 {
    margin-bottom: 64px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.text-white {
    color: #fff !important;
}

.text-dark {
    color: #222426 !important;
}

.text-yellow {
    color: #ffb424 !important;
}

.text-center {
    text-align: center !important;
}


/*!
 *	Grid System
 * ----------------------------------------------- */

.container,
.container-fuild {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fuild {
    padding-left: 45px;
    padding-right: 45px;
}

.container *,
.container-fuild * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

[class*='col-'] {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-1 {
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
}

.col-2 {
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
}

.col-3 {
    max-width: 25%;
    flex: 0 0 25%;
}

.col-4 {
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
}

.col-5 {
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
}

.col-6 {
    max-width: 50%;
    flex: 0 0 50%;
}

.col-7 {
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
}

.col-8 {
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
}

.col-9 {
    max-width: 75%;
    flex: 0 0 75%;
}

.col-10 {
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
}

.col-11 {
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
}

.col-12 {
    max-width: 100%;
    flex: 0 0 100%;
}

.no-guttor {
    margin-right: 0;
    margin-left: 0;
}

.no-guttor>[class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.flex-reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.align-center {
    -ms-align-items: center;
    align-items: center;
}


/*!
 *	Form Styling
 * ----------------------------------------------- */

.btn {
    display: inline-block;
    padding: 14px 26px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--base-color);
    font-weight: 500;
    font-size: 16px;
    border: 1px solid var(--base-color);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1;
    text-align: center;
    border-radius: 50px;
    color: var(--white-color);
    text-transform: capitalize;
}

.btn:hover {
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    transform: translate3d(0, -2px, 0);
    color: var(--white-color);
}

.btn-white-arrow {
    background-color: var(--white-color);
    color: var(--dark-gray);
    position: relative;
    padding: 18px 55px 18px 36px;
    border: 1px solid var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-arrow::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/icon/right-arrow.svg);
    background-repeat: no-repeat;
    height: 10px;
    width: 14px;
    filter: brightness(0) invert(1);
    background-size: contain;
    z-index: 1;
}

.btn-white-arrow::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--base-color);
    border-radius: 50%;
    height: 34px;
    width: 34px;
    min-width: 34px;
}

.btn-white-arrow:hover {
    color: var(--dark-gray);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
}

.arrow-btn {
    position: relative;
    padding: 21px 0 21px 75px;
    display: inline-block;
    color: var(--white-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: capitalize;
}

.arrow-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 65px;
    width: 65px;
    min-width: 65px;
    background: var(--yellow);
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arrow-btn::after {
    content: '';
    position: absolute;
    left: 22.5px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/icon/right-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.arrow-btn:hover {
    color: var(--white-color);
}

.btn-link {
    color: var(--body-font-color);
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: capitalize;
    display: inline-block;
    padding-right: 25px;
    border-bottom: 1px solid transparent;
}

.btn-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    height: 11px;
    width: 15px;
    background-image: url(../images/icon/right-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
}

.btn-link:hover {
    border-bottom: 1px solid var(--body-font-color);
    color: var(--body-font-color);
}

.btn:focus {
    outline: none;
}

.btn--block {
    width: 100%;
    display: block;
}

.btn--yellow {
    background-color: #ffb424;
    color: #222426;
}

.btn--yellow:hover {
    background-color: #e69f16;
    color: #222426;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 1px solid #707070;
    height: 44px;
    padding: 8px 16px;
    background-color: #fff;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--body-font-color);
}

.form-control:focus {
    border-color: #1a1a1a;
    outline: none;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}


/* Animation */

.animat-top {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.animat-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: opacity;
}

.animat-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.animat-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.show {
    opacity: 1;
    transform: translate(0, 0);
}


/*!
 *	Header
 * ----------------------------------------------- */

.site-header {
    background-color: var(--white-color);
    position: relative;
    z-index: 999;
}

.header-top-bar {
    background-color: var(--very-light-gray);
    padding: 8px 0;
}

.header-top-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: var(--dark-gray);
}

.header-top-left p {
    font-weight: 500;
}

.header-top-left a {
    border-bottom: 1px solid var(--dark-gray);
}

.header-top-left a:hover {
    border-bottom: 1px solid var(--base-color);
}

.header-top-right {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.header-top-details .phone-number a,
.header-top-details .location {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-weight: 500;
}

.header-top-details .phone-number a img,
.header-top-details .location img {
    height: 18px;
    width: 18px;
    min-width: 18px;
    object-fit: contain;
}

.header-logo a {
    display: inline-block;
    max-width: 200px;
}

.header-logo img {
    width: auto;
    height: auto;
}

.header-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding: 22px 15px;
    max-width: 1250px;
    margin: 0 auto;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    column-gap: 40px;
}

.navbar ul li {
    position: relative;
    padding: 8px 0;
}

.navbar ul li a {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: capitalize;
}

.navbar ul li a:hover {
    opacity: 0.6;
}

.navbar ul li a.btn {
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
}

.navbar ul li a:hover.btn {
    opacity: 1;
}

.navbar .sub-menu-toggle {
    display: none;
}

.navbar .sub-menu {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 2px 1px rgb(0 0 0 / 16%);
    left: 0;
    min-width: 160px;
    opacity: 0;
    padding: 12px 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    transition: top 0s, opacity 0.3s, -webkit-transform 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition-delay: 0.3s, 0, 0;
    visibility: hidden;
    z-index: -1000;
    display: block;
}

.navbar li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: top 0s, opacity 0.3s, -webkit-transform 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s;
    transition: top 0s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    transition-delay: 0;
    visibility: visible;
    z-index: 10;
}

.navbar .sub-menu li {
    padding: 4px 10px;
}

.navbar .sub-menu li+li {
    margin-left: 0;
}

.navbar .sub-menu li a {
    display: block;
    padding: 4px 16px;
    white-space: nowrap;
}

.navbar .sub-menu>li>.sub-menu {
    left: 100%;
    top: 0;
    display: none;
}

.navbar .sub-menu>li:hover>.sub-menu {
    display: block;
}

.navbar ul li a {
    position: relative;
}

.submenu-toggle {
    position: relative;
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 14px;
}

.navbar>ul>li>.sub-menu>li>.submenu-toggle {
    right: 15px;
}

.submenu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.navbar ul li.menu-item-has-children {
    position: relative;
    padding-right: 15px;
}


/* Header Sticky */

.site-header .header-main.sticky {
    position: fixed;
    padding: 0 0;
    animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
    z-index: 899;
    left: 0;
    right: 0;
    background: var(--white-color);
    top: 0;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}


/* Mobile Menu */

.hamburger {
    width: 25px;
    cursor: pointer;
    position: relative;
    z-index: 99;
    display: none;
}

.hamburger .hamburger__line {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.hamburger .hamburger__line.middle {
    margin: 6px 0;
}

.menu-toggle.toggle .top {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.toggle .middle {
    opacity: 0;
}

.menu-toggle.toggle .bottom {
    transform: rotate(45deg) translate(-4px, -6px);
}


/* Scroll */

.scroll-indicator {
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.scroll-indicator.is-visible {
    opacity: 1;
    visibility: visible;
}

.scroll-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--dark-gray);
    transition: color 0.4s ease;
}

.scroll-line {
    width: 2px;
    height: 80px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--dark-gray);
    transition: height 0.15s linear, background 0.4s ease;
}

.scroll-indicator.on-hero .scroll-text {
    color: var(--white-color);
}

.scroll-indicator.on-hero .scroll-line {
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator.on-hero .scroll-progress {
    background: var(--white-color);
}


/*!
 *	Main
 * ----------------------------------------------- */


/* Hero */

.section--hero {
    position: relative;
    height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
}

.section--hero .swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.section--hero .hero-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.section--hero .hero-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.section--hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
}

.section--hero .section__heading .section__dissection p {
    font-size: 20px;
}

.section--hero .section__heading .hero__btn {
    margin-top: 25px;
}


/* Experience */

.section--experience {
    position: relative;
    z-index: 4;
}

.section--experience .row {
    align-items: center;
}

.experience_left {
    display: flex;
    margin-top: 50px;
    align-items: center;
}

.experience_left .years__block {
    width: 35%;
    position: relative;
    margin-right: auto;
}

.experience_left .years__block::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 200px;
    width: 200px;
    min-width: 200px;
    background: var(--yellow);
    border-radius: 100%;
}

.years__block h3 {
    font-size: 160px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    text-align: center;
    margin-top: 100px;
}

.experience_left .section__heading {
    width: 65%;
    max-width: 290px;
    margin-left: auto;
}

.experience_left .section__heading .section__btn {
    margin-top: 16px;
}

.quote-form {
    max-width: 470px;
    margin-left: auto;
    padding: 48px 64px 24px;
    background-color: var(--white-color);
    border-radius: 6px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-top: -100px;
    position: relative;
}

.quote-form-img {
    position: absolute;
    left: -40px;
    top: 100px;
    height: 127px;
    width: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    display: block;
    border: none;
    border: 1px solid #e4e4e4;
    padding: 12px 20px 12px 20px;
    font-size: 16px;
    color: var(--body-font-color);
    line-height: 1;
    border-radius: 6px;
    outline: none;
}

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

.quote-form .btn {
    border-radius: 6px;
    display: block;
    width: 100%;
    margin-top: 20px;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    font-size: 14px;
}


/* Product Slider */

.section--product-slider {
    background-color: #eceff1;
    overflow: hidden;
}

.section--product-slider .row {
    align-items: center;
}

.section--product-slider h2 {
    margin-bottom: 0;
}

.section--product-slider .section__description {
    max-width: 470px;
}

.product__slider {
    width: calc(50vw + 674px);
    margin-top: 70px;
}

.product__card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product__name {
    position: absolute;
    bottom: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    z-index: 2;
}

.product__name h4 {
    margin-bottom: 0;
    font-weight: 400;
}

.product__img {
    overflow: hidden;
    border-radius: 10px;
}

.product__img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.9s ease-in-out;
}

.product__card .product__img img {
    height: 450px;
    object-fit: cover;
}

.arrow-yellow {
    height: 50px;
    width: 50px;
    min-width: 50px;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.9s ease-in-out;
}

.section--product-slider .slider-btn {
    justify-content: flex-end;
}

.section--product-slider .swiper-button-prev,
.section--product-slider .swiper-button-next {
    background-color: var(--white-color) !important;
}

.product__card:hover .product__img img {
    transform: scale(1.1);
}

.product__card:hover .arrow-yellow {
    background-color: var(--white-color);
    transform: scale(1.1);
}

.product__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to top, rgba(32, 35, 41, 1), transparent 50%);
    border-radius: 10px;
    z-index: 1;
}

.product__bottom {
    margin-top: 100px;
    padding: 30px 0;
    background-color: var(--base-color);
}

.product__bottom-text p {
    font-size: 20px;
}

.product__bottom-text p a {
    border-bottom: 1px solid;
    color: var(--white-color);
}

.product__bottom-text p a:hover {
    color: var(--dark-gray);
}

.section__heading--btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 32px;
}


/* Certificate */

.section--certificate .section__heading {
    max-width: 600px;
    display: flex;
    justify-content: center;
    margin: 0 auto 70px auto;
    text-align: center;
}

.section--certificate .row {
    row-gap: 30px;
}

.certificate__card {
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.certificate__card img {
    width: auto;
    height: auto;
}

.certificate__description {
    padding: 15px;
    text-align: center;
    border-width: 1px;
    border-color: #e4e4e4;
}

.certificate__description p span {
    font-weight: 600;
    display: block;
    color: var(--dark-gray);
}

.marquee-slider {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    justify-content: center;
}

.marquee-image img {
    width: 102px;
    height: 101px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.trust-content {
    text-align: center;
    margin-top: 100px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 18px;
}

.trust-content span {
    display: inline-block;
    border-bottom: 1px solid;
}

.trust-content .trust-box {
    margin-right: 10px;
    border-radius: 30px;
    color: var(--white-color);
    background-color: var(--yellow);
    padding: 3px 20px;
    border: none;
    font-weight: 400;
    font-family: var(--body-font-family);
    font-size: 14px;
}


/* Popup */

.img-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 1000;
}

.img-popup img {
    max-width: 90%;
    max-height: 90vh;
    opacity: 0;
    object-fit: contain;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.close-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40px;
    right: 25px;
    cursor: pointer;
    z-index: 10000;
}

.close-btn .bar {
    height: 4px;
    background: var(--white-color);
}

.close-btn .bar:nth-child(1) {
    transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.opened {
    display: flex;
}

.opened img {
    animation: zoomPopup 0.3s ease-in-out forwards;
    -webkit-animation: zoomPopup 0.3s ease-in-out forwards;
}

.no-scroll {
    overflow: hidden;
}

@keyframes zoomPopup {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Tab */

.section--tab {
    background-color: var(--very-light-gray);
}

.section--tab .row {
    align-items: center;
    justify-content: center;
}

.section--tab .tab__image img {
    border-radius: 6px;
    width: 100%;
}

.micro {
    position: relative;
    padding-left: 60px;
}

.micro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 50px;
    transform: translateY(-50%);
    background-color: var(--base-color);
}

.section--tab .section__heading {
    padding-left: 80px;
}

.section--tab .section__heading .section__btn {
    margin-top: 30px;
}

.tab-menu {
    background-color: var(--white-color);
    margin-top: 100px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e4e4e4;
}

.tabs-nav {
    display: flex;
    align-items: center;
}

.tabs-nav li {
    padding: 30px 15px;
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    color: var(--body-font-color);
    border-right: 1px solid var(--very-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabs-nav li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
}

.tabs-nav li.active,
.tabs-nav li.active a {
    cursor: inherit;
    color: var(--base-color);
}

.tabs-nav li:last-child {
    border-right: none;
}

.tabs-nav li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--base-color);
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.tabs-nav li:hover {
    color: var(--base-color);
}

.tabs-nav li:hover::before,
.tabs-nav li.active::before {
    width: 100%;
}


/* Numbers */

.counter__block {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.counter__item {
    max-width: 250px;
}

.number {
    display: flex;
}

.number img {
    height: 34px;
    width: 32px;
    object-fit: contain;
}

.counter__item h4 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 0;
    display: flex;
}

.counter__item h6 {
    font-size: 18px;
    margin-bottom: 0;
}

.digit {
    position: relative;
    width: 40px;
    height: 70px;
    overflow: hidden;
}

.digit+.digit {
    margin-left: -8px;
}

.digit-inner {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1.8s ease-in-out;
}

.digit-inner span {
    display: block;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.counter {
    display: flex;
}

.percent {
    margin-top: 7px;
    margin-left: -8px;
}


/* Testimonials */

.testimonials-info {
    margin-top: 100px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e4e4e4;
    border-radius: 100px;
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.testimonials__items .row {
    align-items: center;
}

.testimonials-img-block {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonials-img {
    position: relative;
}

.testimonials-img::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    z-index: 1;
    height: 40px;
    width: 40px;
    background-image: url('../images/quote-img.webp');
    background-repeat: no-repeat;
    background-size: contain;
}

.testimonials-img-block .testimonials-img img {
    height: 100px;
    width: 100px;
    min-width: 100px;
    border-radius: 50%;
}

.testimonials-description {
    max-width: 520px;
    padding-right: 40px;
}

.testimonials-name {
    padding-left: 70px;
    border-left: 1px solid #e4e4e4;
}

.testimonials-name h6 {
    margin-bottom: 0;
}

.slider-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-left: -1px;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    position: relative !important;
    background-color: var(--very-light-gray);
    border-radius: 50%;
    height: 56px;
    width: 56px;
    min-width: 56px;
    top: inherit;
    left: inherit;
    right: inherit;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.slider-btn .swiper-button-next svg,
.slider-btn .swiper-button-prev svg {
    display: none;
}

.slider-btn .swiper-button-prev img {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover,
.slider-btn .swiper-button-next:hover img,
.slider-btn .swiper-button-prev:hover img {
    opacity: 0.8;
}


/* Articles */

.section--articles .section__heading {
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.section--articles .row {
    align-items: stretch;
}

.articles__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.articles__image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 16px 16px 0px 0px;
}

.articles__description {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.articles__description h4 {
    font-weight: 400;
}

.articles__card .btn-link {
    margin-top: auto;
    max-width: max-content;
    color: var(--aluminium-grey);
}

.read-more.btn-link::before,
.read-more.btn-link::after {
    opacity: 0.6;
}


/*!
 *	Footer
 * ----------------------------------------------- */

.site-footer {
    background-color: var(--base-color);
    padding: 50px 0;
    color: var(--white-color);
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .row {
    align-items: center;
}

.footer__btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px;
}

.footer__btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 46px;
    gap: 8px;
}

.footer__btn .btn {
    background-color: var(--dark-gray);
}

.footer__btn .btn img {
    height: 18px;
    width: 18px;
    object-fit: contain;
}

.footer__btn .btn:hover {
    color: var(--white-color);
}

.footer__btn .btn-yellow {
    background-color: var(--yellow);
    color: var(--dark-gray);
    border: 1px solid var(--yellow);
}

.footer__btn .btn-yellow:hover {
    color: var(--dark-gray);
}

.footer-bottom {
    padding-top: 50px;
    font-size: 16px;
}

.footer-bottom .footer-menu-row {
    justify-content: flex-end;
}

.footer__logo {
    margin-bottom: 15px;
}

.footer__logo a {
    display: inline-block;
    max-width: 200px;
}

.footer__logo a img {
    filter: brightness(0) invert(1);
}

.social__icons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 25px;
}

.social__icons a img {
    height: 20px;
    width: 20px;
    transition: all 0.3s ease;
}

.social__icons a:hover img {
    filter: brightness(0);
}

.footer-bottom h6 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    color: var(--white-color);
}

.footer-nav ul li+li {
    margin-top: 5px;
}

.footer-nav ul li a:hover {
    color: var(--dark-gray);
}

.footer__get-in-touch p {
    margin-bottom: 0;
}

.get-in-touch__info {
    margin-top: 12px;
}

.get-in-touch__info a {
    word-break: break-word;
}

.get-in-touch__info a:hover {
    color: var(--dark-gray);
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
    gap: 20px;
}

.copyright__text a {
    border-bottom: 1px solid;
}

.copyright__text a:hover {
    color: var(--dark-gray);
}

.copyright__menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.copyright__menu ul li a:hover {
    color: var(--dark-gray);
}


/* Inner Banner */

.section--inner-banner {
    position: relative;
}

.inner__banner-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.inner__banner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section--inner-banner .section__heading {
    position: relative;
    z-index: 2;
}

.section--inner-banner .section__heading h1 {
    color: var(--white-color);
    text-transform: capitalize;
}

.section--inner-banner .section__heading .micro::before {
    background: var(--white-color);
    opacity: 1;
}


/* Section About */

.section--about {
    padding-bottom: 0;
}

.section--about .row {
    justify-content: space-between;
}

.section--about .about__image {
    position: relative;
}

.section--about .about__image img {
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/18.5212;
}

.section--about .about__image .about__main-image {
    width: 70%;
}

.section--about .about__image .about__main-image img {
    aspect-ratio: 16/18.7;
}

.about__small-image {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 55%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
}

.parallax-img {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}


/* Section Why */

.section--why .section__heading {
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section--why .row {
    align-items: stretch;
    row-gap: 30px;
}

.why__card {
    text-align: center;
    background-color: var(--very-light-gray);
    height: 100%;
    padding: 30px 20px;
    border-radius: 8px;
}

.why__card-icon {
    margin-bottom: 30px;
}

.why__card .why__card-icon img {
    width: 64px;
    margin: 0 auto;
}


/* Section Vision Mission */

.section--vision-mission {
    background-color: var(--very-light-gray);
}

.section--vision-mission .section__heading {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.vision-mission__card {
    height: 100%;
    gap: 30px;
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.vision-mission__content .vision-mission__icon {
    margin-bottom: 20px;
}

.vision-mission__content .vision-mission__icon img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}


/* Section Truste */

.section--truste .row {
    align-items: flex-start;
    row-gap: 30px;
}

.section--truste .section__heading {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section--truste .section__heading h2 {
    text-wrap: balance;
}

.truste__card-icon {
    position: relative;
    margin-bottom: 30px;
}

.truste__card-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: linear-gradient(306deg, rgba(236, 171, 35, 1) 0%, rgba(47, 156, 75, 1) 85%);
    transition: 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
}

.truste__card-icon img {
    height: 180px;
    width: 180px;
    border-radius: 50%;
}

.truste__card-icon .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 3;
}

.truste__card-icon .icon img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.truste__card:hover .truste__card-icon .icon {
    opacity: 1;
    visibility: visible;
}

.truste__card:hover .truste__card-icon::before {
    opacity: 1;
    visibility: visible;
    height: 181px;
    width: 181px;
}


/* Section Contact */

.section--contact .row {
    row-gap: 30px;
}

.section--contact .section__heading h2,
.section--contact .section__heading .section__dissection {
    max-width: 500px;
}

.contact__info-block {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}

.contact__info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact__info .icon {
    height: 64px;
    width: 64px;
    min-width: 64px;
    border-radius: 50%;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__info .icon img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.contact__info .contact__details p {
    margin-bottom: 0;
}

.contact__info .contact__details a {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid;
    padding-bottom: 2px;
}

.contact__info .contact__details a:hover {
    color: var(--base-color);
}

.office__card {
    background-color: var(--very-light-gray);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}

.office__card .office__image img {
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.office__location {
    margin-top: 30px;
}

.office__location h5 {
    margin-bottom: 10px;
}

.section--map {
    padding-bottom: 0;
}

.section--map iframe {
    width: 100%;
}


/* Contact Form */

.contact__form-main {
    padding: 75px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
    position: relative;
    max-width: 800px;
    margin: -80px auto 0 auto;
}

.contact__form-main .contact-form {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 12px;
}

.form-group {
    width: 100%;
}

.form-group.w-50 {
    flex: calc(50% - 12px);
}


/* Product Page */

.section--products-main {
    padding: 0 0;
}

.products-main__block {
    padding: 100px 0;
}

.section--category-products.is-even,
.products-main__block:nth-child(even) {
    background-color: var(--very-light-gray);
}

.section--category-products .section__heading .btn {
    margin-bottom: 20px;
}

.products-main__block .section__heading {
    margin-bottom: 50px;
}

.products-main__block .row {
    row-gap: 50px;
    justify-content: flex-start;
    align-items: start;
}

.product-main__card img {
    aspect-ratio: 16/16;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.product-main__card .product-main__title {
    text-align: center;
}

.product-main__card .product-main__title h6 {
    margin-bottom: 10px;
}


/* Section Reviews */

.section--reviews .row {
    align-items: start;
}

.star__img img {
    height: 20px;
}

.reviews__content {
    margin-top: 30px;
}

.reviews__card-top {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--very-light-gray);
}

.reviews__card-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews__card-bottom .reviews-name h6 {
    margin-bottom: 0;
    font-size: 16px;
}

.customer-img img {
    height: 70px;
    width: 70px;
    min-width: 70px;
    border-radius: 50%;
}


/* ========================= section--facilities======================= */

.entry-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}


/*==================== end facilities-section======================= */


/* gallery section  */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.gallery-img {
    width: 100%;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}


/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}


/* gallery section-end */


/* ======================  product-detail-page ================================== */


/* MAIN SECTION */

.section--product-detail .row {
    margin-left: -32px;
    margin-right: -32px;
    align-items: center;
}

.section--product-detail [class*='col-'] {
    padding-left: 32px;
    padding-right: 32px;
}

.product-detail__image {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 24px;
}

.product-detail__image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 12px;
}

.product-detail__content h6 {
    margin-bottom: 4px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.product__other-info {
    margin: 24px 0;
    background-color: var(--very-light-gray);
    padding: 24px;
    border-radius: 12px;
}

.product__other-info li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.product__other-info li+li {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ccc;
}

.product__other-info a {
    color: var(--base-color);
    text-decoration: underline;
}

.product__share-links {
    display: flex;
    align-items: center;
}

.product__share-links li+li {
    margin-left: 12px;
}

.product__share-links {
    margin-right: 12px;
}


/* MODAL */


/* ===== MODAL OVERLAY ===== */

.product-form-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
}


/* ===== CENTER BOX ===== */

.product-form-modal__inner {
    background: #fff;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    /* 🔑 form ke andar hi scroll */
    padding: 30px;
    position: relative;
    margin: 100px auto;
    border-radius: 6px;
}


/* ===== CLOSE BUTTON ===== */

.modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}


/* ===== TEXT ===== */


/* ===== FORM ===== */

.product-form-modal__inner input,
.product-form-modal__inner textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    outline: none;
}


/* ===== BODY SCROLL LOCK ===== */

body.modal-open {
    overflow: hidden;
}


/* ===== MOBILE ===== */

@media (max-width: 575px) {
    .product-form-modal__inner {
        max-width: 90%;
        padding: 20px;
    }
}


/* ====================== end product-detail-page ================================== */


/* ================== tab section===============  */


/* =====================
   3D TAB SECTION (PREMIUM)
===================== */

.section--tabs-3d {
    background: #f8faf9;
    /* soft section bg */
}


/* =====================
   TAB NAV
===================== */

.tabs-3d__nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: -4px;
    position: relative;
    z-index: 2;
}


/* =====================
   TAB BUTTONS (CLEAN 3D)
===================== */

.section--tabs-3d .tabs-3d__nav .btn {
    padding: 16px 32px;
    border-radius: 0;
    background: none;
    color: var(--body-font-color);
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    transform: perspective(600px) translateZ(0);
}

.section--tabs-3d .tabs-3d__nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
    color: var(--base-color);
}

.section--tabs-3d .tabs-3d__nav .btn.active {
    border-color: var(--base-color);
    color: var(--base-color);
    transform: perspective(600px) translateZ(36px);
    box-shadow: none;
}


/* =====================
   TAB CONTENT (PREMIUM CARD)
===================== */

.tabs-3d__content {
    padding: 32px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #fff;
    transform: perspective(1000px) rotateX(2deg);
}


/* =====================
   TAB PANEL TEXT
===================== */

.tab-panel {
    display: none;
    animation: fade3d 0.45s ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel table {
    margin: 0;
}

.tab-panel table+table,
.tab-panel table+p {
    margin-top: 24px;
}

.tab-panel ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 24px 0;
}

.tab--block-inner .tab-new__block:first-child .tab-new__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tab--block-inner .tab-new__block:first-child .tab-new__content {
    padding: 24px;
    border: 1px solid #b6c5ca;
    border-radius: 12px;
}

.tab-new__content {
    overflow-x: auto;
}

.tab-new__content table {
    width: 100%;
    border-collapse: collapse;
}

.tab-new__content ul {
    list-style: none;
    padding: 0;
}

.tab-new__content ul li {
    position: relative;
    padding-left: 30px;
}

.tab-new__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('../images/tick-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.tab-new__content ul li+li {
    margin-top: 10px;
}

.tab-new__block+.tab-new__block {
    margin-top: 70px;
}

.tab-new__content table {
    text-align: center;
	border-radius: 12px;
	overflow:hidden;
}

.tab-new__content table tr:nth-of-type(odd) {
    background-color: var(--white-color);
}

.tab-new__content table tr th {
    background-color: var(--base-color);
    color: var(--white-color);
}

.two-col__img img {
    height: auto;
    width: 100%;
}


/* =====================
   ANIMATION
===================== */

@keyframes fade3d {
    from {
        opacity: 0;
        transform: translateY(14px) rotateX(-8deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}


/* =====================
   RESPONSIVE
===================== */

@media (max-width: 767px) {
    .section--tabs-3d {
        padding: 60px 0;
    }
    .tabs-3d__nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    .tabs-3d__content {
        padding: 24px;
        border-radius: 14px;
    }
    .tab-panel p {
        font-size: 14px;
        line-height: 1.8;
    }
    .product__slider {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tabs-3d__content {
        padding: 20px;
    }
    .section--tabs-3d .tabs-3d__nav .btn {
        padding: 9px 20px;
        font-size: 13px;
    }
}


/* =================en tab section ==================== */


/* Responsive Style */

@media screen and (max-width: 1199px) {
    .col-xl-7 {
        max-width: 58.33333333%;
        flex: 0 0 58.33333333%;
    }
    .experience_left .years__block {
        width: 45%;
    }
    .experience_left .section__heading {
        width: 55%;
    }
    .section--tab .section__heading {
        padding-left: 0;
    }
    .tab-menu {
        margin-top: 80px;
    }
    .testimonials-info {
        margin-top: 80px;
    }
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .marquee-slider {
        padding-top: 80px;
    }
    .product__bottom {
        margin-top: 80px;
    }
    .section--hero {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    h1,
    .h1 {
        font-size: 54px;
    }
    h2,
    .h2 {
        font-size: 32px;
    }
    .col-lg-4 {
        max-width: 33.33333333%;
        flex: 0 0 33.33333333%;
    }
    .col-lg-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .col-lg-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    body.menu-active {
        overflow-y: hidden;
    }
    .hamburger {
        display: block;
    }
    .navbar {
        position: fixed;
        top: 82px;
        right: -100%;
        width: clamp(35%, 17rem, 85%);
        height: calc(100vh - 82px);
        background-color: var(--white-color);
        transition: right 0.3s ease-in-out;
        padding: 0 15px 50px 15px;
        overflow-y: auto;
        z-index: 98;
    }
    .navbar ul li {
        display: block;
        width: 100%;
        padding: 0;
    }
    .navbar ul li+li {
        margin-top: 10px;
    }
    .navbar ul li.menu-item-has-children {
        padding-right: 0;
    }
    .navbar ul li a {
        display: block;
        padding: 10px 24px 10px 0;
    }
    .navbar ul li a.btn {
        margin: 30px 15px 0 15px;
    }
    .navbar.active {
        right: 0;
    }
    .navbar .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
        transform: inherit;
    }
    .submenu-toggle {
        height: 24px;
        width: 24px;
        top: 8px;
        right: 0;
    }
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        pointer-events: all;
        opacity: 0;
        z-index: -10;
        transition: ease opacity 0.15s;
    }
    body.menu-active::before {
        pointer-events: none;
        opacity: 1;
        z-index: 92;
    }
    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar .sub-menu {
        padding: 0;
        margin-left: 15px;
    }
    .navbar .sub-menu li {
        padding: 0;
    }
    .navbar .sub-menu li a {
        padding: 4px 15px 4px 0;
    }
    .navbar .sub-menu>li>.sub-menu {
        display: block;
    }
    .header-top-bar {
        display: none;
    }
    .navbar>ul>li>.sub-menu>li>.submenu-toggle {
        right: 0;
    }
    .section--hero .section__heading .section__dissection p {
        font-size: 18px;
    }
    .experience_left .years__block {
        width: 40%;
    }
    .experience_left .section__heading {
        width: 60%;
        max-width: 100%;
        margin-left: inherit;
    }
    .quote-form {
        margin-top: 30px;
        max-width: calc(100% - 40px);
    }
    .product__bottom-text p {
        font-size: 18px;
    }
    .section--articles .row {
        justify-content: center;
        row-gap: 30px;
    }
    .section--about .row {
        flex-direction: column-reverse;
        row-gap: 30px;
    }
    .section--reviews .row,
    .section--two-col .row,
    .section--vision-mission .row {
        row-gap: 30px;
    }
    .section--contact .section__heading h2,
    .section--contact .section__heading .section__dissection {
        max-width: 100%;
    }
    .footer-top .row,
    .footer-bottom .row {
        row-gap: 30px;
    }
    .footer-bottom .footer-menu-row {
        justify-content: flex-start;
    }
    .footer-copyright {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    /* farming-responsive  */
    .section--backward-integration h2,
    .cta-content h2 {
        font-size: 28px;
    }
    .section--backward-integration .content-text p {
        font-size: 18px;
    }
    .bi-subheading {
        font-size: 22px;
        margin-top: 70px;
        margin-bottom: 40px;
    }
    .bi-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    /* end farming */
    /* FACILITIES */
    .section-title {
        font-size: 28px;
    }
    .sub-title {
        font-size: 20px;
    }
    .section--facilities p,
    .facility-list li {
        font-size: 16px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* detail page */
    /* SECTION */
    .product-detail__content {
        margin-top: 30px;
    }
    .product-detail__content p {
        font-size: 14.5px;
    }
    /* MODAL */
    .product-form-modal__inner {
        max-width: 480px;
        margin: 60px auto;
    }
    /* detail end  */
    .section--tab .row {
        row-gap: 30px;
    }
    .testimonials-info {
        border-radius: 24px;
    }
    .testimonials-img-block {
        flex-direction: column;
    }
    .testimonials-img-block {
        align-items: flex-start;
        gap: 24px;
    }
    .testimonials-name {
        padding-left: 0;
        border-left: none;
        margin-top: 24px;
    }
    .testimonials-description {
        max-width: 100%;
        padding-right: 0;
    }
    .experience_left {
        margin-top: 0;
    }
    .section--hero {
        padding-bottom: 80px !important;
    }
}

@media screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 38px;
    }
    h2,
    .h2 {
        font-size: 28px;
    }
    h3,
    .h3 {
        font-size: 24px;
    }
    h4,
    .h4 {
        font-size: 20px;
    }
    .col-md-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .col-md-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section--hero .section__heading .section__dissection p {
        font-size: 16px;
    }
    .quote-form {
        padding: 40px 20px;
    }
    .section--map iframe {
        height: 400px;
    }
    .product__bottom-text p {
        font-size: 16px;
    }
    .section--product-slider .row {
        row-gap: 30px;
    }
    .section--product-slider .slider-btn {
        justify-content: inherit;
    }
    .contact__form-main {
        padding: 30px 20px;
    }
    .footer__btn {
        justify-content: flex-start;
    }
    .copyright__menu ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 20px;
    }
    /* detail page */
    .section--product-detail .col-7,
    .section--product-detail .col-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .product-detail__image {
        margin-bottom: 25px;
    }
    /* TEXT */
    .product-detail__content p {
        font-size: 14px;
        line-height: 1.7;
    }
    /* MODAL */
    .product-form-modal__inner {
        width: 92%;
        margin: 50px auto;
        padding: 22px;
    }
    /* end detail [age */
    .tab-menu {
        margin-top: 50px;
    }
    .tabs-nav {
        flex-direction: column;
    }
    .tabs-nav li {
        padding: 15px;
        border-right: inherit;
        border-bottom: 1px solid var(--very-light-gray);
    }
    .tabs-nav li a {
        font-size: 16px;
    }
    .tabs-nav li:last-child {
        border-bottom: none;
    }
    .counter__block {
        justify-content: flex-start;
    }
    .testimonials-info {
        margin-top: 50px;
        display: block;
        padding: 20px;
    }
    .testimonials-img-block .testimonials-img img {
        height: 70px;
        width: 70px;
        min-width: 70px;
    }
    .testimonials-img::before {
        height: 28px;
        width: 28px;
        right: -10px;
    }
    .testimonials-info .slider-btn {
        margin-top: 24px;
    }
    .marquee-slider {
        padding-top: 50px;
    }
    .section--certificate .section__heading {
        margin: 0 auto 30px auto;
    }
    .product__bottom {
        margin-top: 50px;
    }
    .product__slider {
        margin-top: 50px;
    }
    .section--hero {
        padding-bottom: 50px !important;
    }
    .product-detail__image img {
        height: auto;
    }
    .tab--block-inner .tab-new__block:first-child .tab-new__info {
        grid-template-columns: repeat(1, 1fr);
    }
    .slider-btn .swiper-button-next,
    .slider-btn .swiper-button-prev {
        height: 46px;
        width: 46px;
        min-width: 46px;
    }
    .arrow-yellow {
        height: 40px;
        width: 40px;
        min-width: 40px;
    }
}

@media screen and (max-width: 576px) {
    .col-sm-12 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .experience_left {
        flex-direction: column;
    }
    .experience_left .years__block {
        width: 100%;
    }
    .experience_left .section__heading {
        max-width: 100%;
        width: 100%;
    }
    .vision-mission__card {
        flex-direction: column;
    }
    .vision-mission__card .vision-mission__img,
    .vision-mission__card .vision-mission__content {
        width: 100%;
    }
    .vision-mission__card .vision-mission__img img {
        border-radius: 8px 8px 0 0;
    }
    .vision-mission__card .vision-mission__content {
        padding: 0 20px 20px 20px;
    }
    .form-group.w-50 {
        flex: calc(100% - 12px);
    }
    /* farming responsive */
    .section--backward-integration h2,
    .cta-content h2 {
        font-size: 22px;
        line-height: 1.4;
    }
    .section--backward-integration .title-line {
        width: 100px;
        margin-bottom: 30px;
    }
    .section--backward-integration .content-text p {
        font-size: 16px;
    }
    .bi-subheading {
        font-size: 18px;
        margin-top: 50px;
    }
    .bi-content li {
        font-size: 15px;
    }
    .section--cta-collaboration {
        height: 220px;
        padding: 0 16px;
    }
    .cta-line {
        width: 90px;
    }
    .section--backward-integration::before,
    .section--backward-integration::after {
        display: none;
    }
    /* end farming responsive */
    /* ================ section-faxilities========== */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .sub-title {
        font-size: 18px;
        margin: 30px 0 15px;
    }
    .section--facilities p,
    .facility-list li {
        font-size: 15px;
        line-height: 1.6;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 32px;
    }
    /* =============== end facilities-section=============== */
}

@media (max-width: 480px) {
    /* SECTION */
    .product-detail__content p {
        font-size: 13.5px;
    }
    /* MODAL TEXT */
    .product-form-modal__inner h3 {
        font-size: 22px;
    }
    .product-form-modal__inner p {
        font-size: 13px;
    }
    /* FORM */
    .product-form-modal__inner input,
    .product-form-modal__inner textarea {
        font-size: 13px;
        padding: 10px;
    }
    .counter__block {
        flex-direction: column;
    }
    .counter__item {
        max-width: 100%;
    }
}

.ipm-tabs {
    background-color: var(--very-light-gray);
    padding: 32px;
    border-radius: 12px;
    list-style: none;
    margin: 0 0 32px;
}

.ipm-tabs li+li {
    border-top: 1px solid #dee2e6;
    padding-top: 16px;
    margin-top: 16px;
}

.ipm-tabs .active a {
    color: var(--base-color);
}

.ipm__image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    overflow: hidden;
    margin-bottom: 32px;
}

.ipm__content h3 {
    margin-bottom: 12px;
    color: var(--base-color);
}

.ipm__content-text ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 24px;
}

.ipm-products-discription {
 row-gap:20px;
}
.ipm-products-discription ul{
 padding-left:25px;
	margin-bottom:24px
}
.ipm-products-discription :last-child {
	margin-bottom:0
}
.ipm-products-discription  li{
	list-style:disc;
}

.ipm-products-overview,
.ipm-products-specifications,
.ipm-products-sourced{
	background: #ffffff;
	padding: 30px;
  	border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	height:100%;
}
/*ipm css*/

.product-overview .row .col-3,
.product-overview .row .col-md-6,
.product-overview .row .col-sm-12 {
    padding: 15px 10px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/14;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card h2 {
    font-size: 16px;
    padding: 20px;
    margin: 0;
    color: #333;
    transition: transform 0.4s ease;
    text-align: left;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card:hover h2 {
    transform: translateX(10px)
}

@media screen and (max-width: 767px) {
    .product-card h2 {
        text-align: center;
    }
}


/* ipm css End */


/* WHY LIST */
.why-list{
	row-gap:20px;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f1f8e9;
    border-left: 5px solid #4caf50;
    border-radius: 8px;
}


/* ICON FIX */




/* TEXT FIX */

.why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
	word-break: break-word;
    display: contents;
    /* prevent overflow */
}
.why-item p::before {
	 content: ""; 
     display: inline-block; 
 	 background-image: url('../images/check-green.webp');
	 background-size: cover; 
	 min-width: 25px;
     height: 25px;
   
}

/* RESPONSIVE */




/* PACKAGING STEPS */

.pack-steps {
    display: flex;
    margin-top: 30px;
	row-gap:20px;
	justify-content:center;
}

.step {
    padding: 20px;
    color: #333f48;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    background-color: #fff;
	height:100%;
}

.step .icon {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
}

.step .icon img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}


/* Different colors */


/* EXPORT LIST */

.export-list {
    row-gap: 25px;
}

.export-item {
    padding: 20px;
    border-left: 5px solid var(--yellow);
    background:#f3ddad;
    border-radius: 8px;
    display: flex;
    align-items: center;		
}

.export-item .icon img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}


/* RESPONSIVE */



/* qulity specification */


/* Container */

.quality-bars {
    max-width: 700px;
    margin: 30px auto 0;
}


/* Each item */

.bar-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #ffffff;
    position: relative;
    transition: 0.3s;
    border-left: 5px solid #4caf50;
    /* default green */
}


/* Orange variant */

.bar-item.low-border {
    border-left: 5px solid #ff9800;
    background: #fff8f1;
}


/* Title */

.bar-item span {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}


/* Bar */

.bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}


/* Fill colors */

.fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #81c784);
}

.fill.low {
    background: linear-gradient(90deg, #ff9800, #ffb74d);
}


/* Value */

.bar-item small {
    font-size: 12px;
    color: #666;
}


/* Hover effect 🔥 */

.bar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* Organic Farming Css */

.organic-farming-page .section {
    padding: 80px 0;
}

.organic-farming-page .section--inner-banner {
    padding: 120px 0;
}

.organic-farming-page .section--inner-banner .section__heading {
    max-width: 720px;
}

.organic-hero__actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.section--organic-about {
    background-color: var(--white-color);
}

.section--organic-about .row {
    row-gap: 30px;
}

.organic-about__image img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section--organic-process {
    background-color: var(--very-light-gray);
}

.organic-farming-page .section__heading.text-center {
    max-width: 760px;
    margin: 0 auto 50px;
}

.organic-farming-page .section__heading.text-center .micro {
    display: inline-block;
}

.organic-process__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.organic-process__card {
    background-color: var(--white-color);
    border-radius: 14px;
    padding: 30px 20px;
    border: 1px solid #dce2e6;
    transition: all 0.3s ease;
}

.organic-process__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.organic-process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--base-color), #65b579);
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 18px;
}

.organic-process__card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.organic-process__card p {
    margin-bottom: 0;
}

.section--organic-benefits {
    background-color: var(--white-color);
}

.section--organic-benefits .row {
    row-gap: 24px;
}

.organic-benefit__card {
    background-color: var(--solitude-blue);
    border: 1px solid #e0e4e8;
    border-radius: 14px;
    padding: 30px;
    height: 100%;
}

.organic-benefit__card h4 {
    margin-bottom: 16px;
}

.organic-benefit__card ul {
    margin: 0;
}

.organic-benefit__card li+li {
    margin-top: 10px;
}

.organic-benefit__iteam li {
    list-style-type: none;
}

.organic-benefit__iteam li::before {
    content: "✔";
    display: inline-block;
    color: green;
    margin-right: 8px;
}

.section--organic-sustainability {
    background-color: var(--very-light-gray);
}

.organic-sustainability__row {
    row-gap: 30px;
}

.organic-sustainability__row+.organic-sustainability__row {
    margin-top: 28px;
}

.organic-sustainability__content {
    background-color: var(--white-color);
    border-radius: 14px;
    border: 1px solid #e3e8eb;
    padding: 32px;
}

.organic-sustainability__content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.organic-sustainability__content li+li {
    margin-top: 10px;
}

.organic-sustainability__image img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 16px;
}

.section--organic-products {
    background-color: var(--white-color);
}

.organic-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.organic-product__card {
    background-color: var(--white-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #ebeff2;
    height: 100%;
}

.organic-product__card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.organic-product__content {
    padding: 22px;
}

.organic-product__content h5 {
    margin-bottom: 12px;
}

.organic-product__content p {
    margin-bottom: 0;
}

.section--organic-cta {
    background: linear-gradient(145deg, #1f6a33 0%, #2f9c4b 100%);
}

.organic-cta__box {
    max-width: 860px;
    margin: 0 auto;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 55px 40px;
}

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

.organic-cta__actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.organic-cta__actions .btn {
    min-width: 185px;
}

@media screen and (max-width: 1199px) {
    .organic-process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .organic-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 991px) {
    .organic-farming-page .section--inner-banner {
        padding: 100px 0;
    }
    .organic-farming-page .section__heading.text-center {
        margin-bottom: 35px;
    }
    .organic-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .organic-sustainability__content {
        padding: 26px;
    }
    .organic-cta__box {
        padding: 42px 28px;
    }
}

@media screen and (max-width: 767px) {
    .organic-farming-page .section {
        padding: 50px 0;
    }
    .organic-farming-page .section--inner-banner {
        padding: 80px 0;
    }
    .organic-hero__actions {
        gap: 10px;
    }
    .organic-process__grid,
    .organic-products__grid {
        grid-template-columns: 1fr;
    }
    .organic-benefit__card,
    .organic-process__card,
    .organic-sustainability__content {
        padding: 24px 20px;
    }
    .organic-cta__box {
        padding: 34px 20px;
    }
    .organic-cta__actions .btn {
        width: 100%;
    }
}