:root {
    /* Brand Colors */
    --forest: #2e5e4e;
    --forest-dark: #173328;
    --lime: #8bc34a;
    --brand-green: #2e5c46;
    --accent-green: #1f6b52;
    --border-green: #2c7a5b;
    --gold: #b8974f;
    --accent: #8fe05a;
    --h2size: clamp(1.8rem, 3.2vw, 2.6rem);

    /* Background Colors */
    --bg: #1c2b2d;
    --bg-mint: #e9efe9;
    --bg-cream: #f4f3f0;
    --icon-bg: #213a37;

    /* Text Colors */
    --ink: #1c2b2d;
    --ink-dark: #12241d;
    --ink-green: #1c2b2d;
    --text-dark: #12242a;
    --body-text: #93a19b;
    --text-muted: #5b6660;
    --heading: #ffffff;
    --text-black: #000000;

    /* Borders & Dividers */
    --hairline: #e4e2dc;
    --circle-line: #cfd6d0;
    --divider: rgba(255, 255, 255, 0.08);
    --AdelleSansDevanagari: 'Adelle Sans Devanagari';
    --DM_MOMO: 'DM Mono';

    --ink-vert: #1c2b2a;
    --brand-green-vert: #2f5c53;
    --eyebrow-vert: #3f7b6d;
    --muted-vert: #f4f5f4;

    --bg-dark-ps: #17302c;
    --bg-dark-2-ps: #16302c;
    --accent-line-ps: #35544c;
    --text-white: #ffffff;
    --text-muted-ps: #cfe0da;
    --bottom-bar-ps: linear-gradient(90deg, #17302c 0%, #3f8f6f 50%, #17302c 100%);
    --bg-page-cnt: #f4f4f2;
    --dark-panel-cnt: #16241f;
    --dark-panel-2-cnt: #1c2b25;
    --green-accent-cnt: #2E5E4E;
    --green-accent-dark-cnt: #254f3d;
    --terracotta-cnt: #582F25;
    --text-dark-cnt: #1C2B2D;
    --text-muted-cnt: #5c6b64;
    --border-soft-cnt: #d8d8d4;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--AdelleSansDevanagari);
    color: var(--text-black);
    font-weight: normal;
    padding: 0;
    margin: 0;
}

header {
    padding: 20px 40px;
    background: #f5f7f5
}

header img {
    height: 55px
}

a {
    text-decoration: none
}

.mono-label {
    font-family: var(--DM_MOMO);
    letter-spacing: .18em;
    font-size: .72rem;
    font-weight: 500;
}

/* ===== Left panel ===== */
.hero-panel {
    position: relative;

    background: linear-gradient(180deg, rgba(10, 14, 12, .55) 0%, rgba(10, 14, 12, .35) 35%, rgba(8, 10, 9, .65) 78%, rgba(6, 8, 7, .85) 100%),
    url('../images/top-banner.jpg?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 5rem;
    color: #fff;
}

.hero-panel > div:first-child {
    margin-top: 30%
}

.hero-eyebrow {
    color: var(--lime);
    margin-bottom: 1.1rem;
}

.hero-title {
    line-height: .95;
    margin-bottom: 1.3rem;
}

.hero-title .script {
    display: block;
    font-family: var(--AdelleSansDevanagari);
    font-weight: 300;

    font-size: 4rem;
    color: var(--lime);
}

.hero-title .bold {
    display: block;
    font-size: 4rem;
    color: #fff;
    /*color: #4d0300;*/
    font-family: var(--AdelleSansDevanagari);
    font-weight: 600;
    font-style: italic;
}

.hero-copy {
    max-width: 32rem;
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.btn-forest {
    background: var(--forest);
    border: 1px solid var(--forest);
    color: #fff;
    font-weight: 500;
    padding: .45rem 1.4rem;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .2s ease;
    width: max-content;
}

.btn-forest:hover {
    background: var(--forest-dark);
    color: #fff;
}

.max-w660 {
    max-width: 660px
}

.stats-row {
    border-top: 2px solid rgba(255, 255, 255, .10);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
}

.stat-num {
    color: var(--lime);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1;
}

.stat-label {
    font-family: var(--DM_MOMO);
    font-size: .68rem;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .75);
    margin-top: .35rem;
}

/* ===== Right panel ===== */
.form-panel {

    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1rem 3rem 1.5rem;
}

.form-topbar {
    display: flex;
    justify-content: flex-end;

}

.form-eyebrow {
    color: var(--forest);
}

.form-title {
    font-weight: 600;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 1.4rem;
}

.field-label {
    font-family: var(--DM_MOMO);
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--ink);
    margin-bottom: .5rem;
    display: block;
}

.form-control {
    border: 1px solid var(--hairline);
    border-radius: 2px;
    padding: .45rem .9rem;
}

.form-control:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 .2rem rgba(31, 70, 56, .15);
}

.btn-submit {
    background: var(--forest);
    border: 1px solid var(--forest);
    color: #fff;
    font-weight: 600;
    padding: 1rem;
    border-radius: 2px;
    width: 100%;
}

.btn-submit:hover {
    background: var(--forest-dark);
}

@media (max-width: 991.98px) {
    .hero-panel {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }

    .hero-title .script, .hero-title .bold {
        font-size: 2.6rem;
    }

    .form-panel {
        min-height: auto;
        padding: 2rem 1.5rem 3rem;
    }

    .form-topbar {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }

    .stats-row .col-6 {
        margin-bottom: 1rem;
    }

    .headline {
        font-size: 2.1rem;
    }

    .who-section {
        padding: 3rem 0;
    }
}

/* who-section */


.who-section {
    background: #eaf0ec;
}

.who-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.eyebrow {
    color: var(--accent-green);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--AdelleSansDevanagari);
}

.headline {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.75rem;

}

.body-copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-black);
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--border-green);
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    background: transparent;
    text-align: center;

}

/* promise-section */
.promise-section {
    position: relative;
    background: #f6f5f3;
}

.promise-section::before,
.promise-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 220px;
    background-image: repeating-linear-gradient(0deg, transparent 0 38px, rgba(22, 51, 42, .05) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(22, 51, 42, .05) 38px 39px);
    pointer-events: none;
    z-index: 0;
}

.promise-section::before {
    left: 0;
}

.promise-section::after {
    right: 0;
}

.eyebrow {
    letter-spacing: .28em;
    font-size: .8rem;
    font-weight: 600;
    color: var(--brand-green);
    text-transform: uppercase;
}

.headline {
    font-family: var(--AdelleSansDevanagari);
    font-weight: 600;
    color: var(--ink-green);
    font-size: var(--h2size);
    line-height: 1.15;
}

.subhead {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
}

/* ---- Principle text blocks ---- */
.principle {
    max-width: 340px;
}

.principle .num {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.principle h3 {

    font-weight: 600;
    color: var(--ink-dark);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-top: .15rem;
}

.principle .rule {
    width: 38px;
    height: 2px;
    background: var(--gold);
    opacity: .7;
    margin: .85rem 0 .9rem;
}

.principle p {
    color: var(--text-muted);
    font-size: .98rem;
    line-height: 1.55;
    margin-bottom: 0;
}


/* ---- Center diagram ---- */
.diagram-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1/1;
    margin: 3rem auto;
}

.diagram-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--circle-line);
}

.diagram-ring::before,
.diagram-ring::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink-green);
    transform: translateY(-50%);
}

.diagram-ring::before {
    left: -4px;
}

.diagram-ring::after {
    right: -4px;
}

.diagram-inner {
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    background: #faf9f7;
    box-shadow: 0 4px 30px rgba(22, 51, 42, .06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    text-align: center;
}

.diagram-inner svg {
    width: 44px;
    height: 44px;
    opacity: .35;
}

.diagram-inner .certainty-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: .22em;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--ink-green);
}

.diagram-icon {
    position: absolute;
    width: 19%;
    aspect-ratio: 1/1;
    max-width: 92px;
    background: var(--ink-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(18, 36, 29, .28);
}

.diagram-icon svg {
    width: 44%;
    height: 44%;
    stroke: #eef1ee;
    fill: none;
}

.diagram-icon.icon-tl {
    top: 1%;
    left: 2%;
}

.diagram-icon.icon-tr {
    top: 1%;
    right: 2%;
}

.diagram-icon.icon-bl {
    bottom: 1%;
    left: 2%;
}

.diagram-icon.icon-br {
    bottom: 1%;
    right: 2%;
}

/* trust-section */


.trust-section {
    padding: 5rem 0;
    background-color: var(--bg);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.trust-section .trust-title {
    color: var(--heading);

    font-size: var(--h2size);
}

.trust-section .feature-card:hover {
    background: #213a37
}

.trust-section .trust-subtitle {
    color: var(--body-text);
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.6;
}

.trust-section .feature-card .icon-box {
    background: #213a37;
    width: 40px;
    height: 40px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-bottom: 2rem
}

.trust-section .feature-card .icon-box img {
    width: 20px
}

.trust-section .feature-card {
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--divider);
    transition: all 0.3s ease-in-out;

}


.verticals-section {
    overflow: hidden
}

.verticals-section .eyebrow {
    letter-spacing: .25em;
    font-size: .8rem;
    font-weight: 600;
    color: var(--eyebrow-vert);
    text-transform: uppercase;
}

.verticals-section .section-title {
    font-weight: 600;
    font-size: var(--h2size);
    color: var(--ink-vert);
    margin-bottom: 0;
}

.verticals-section .nav-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #cfd6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--ink-vert);
    transition: .2s ease;
}

.verticals-section .nav-arrow:hover {
    background: var(--brand-green-vert);
    border-color: var(--brand-green-vert);
    color: #fff;
}

.verticals-section .nav-arrow.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}


.verticals-section .verticals-swiper .swiper-slide {
    height: auto;
}

.verticals-section .vertical-card {
    position: relative;
    display: block;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.verticals-section .vertical-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.verticals-section .vertical-card:hover img {
    transform: scale(1.06);
}

.verticals-section .vertical-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .75) 100%);
    z-index: 1;
}

.verticals-section .card-body-custom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 2;
    padding: 28px 24px;
    color: #fff;
}

.verticals-section .icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--brand-green-vert);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.verticals-section .icon-badge img {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.verticals-section .vertical-title {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 14px;
}

.verticals-section .vertical-desc {
    font-size: .95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 0;
    margin-top: 2rem;
}

.packages-section {
    background: var(--bg-dark-ps)
}

.packages-section .mono {
    font-family: 'Space Mono', monospace;
}


.packages-section .packages-heading {
    font-weight: 600;
    font-size: var(--h2size);
    margin-bottom: 10px;
    color: var(--text-white);
}

.packages-section .packages-subheading {
    color: var(--text-white);
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    margin-bottom: 45px;
    letter-spacing: 0.3px;
}

.packages-section .package-card {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 30px 25px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.packages-section .package-title {
    text-align: center;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin-bottom: 28px;
    color: var(--text-white);
}

.packages-section .package-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 2px;
}

.packages-section .package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.packages-section .package-desc {
    text-align: center;
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 28px;
    flex-grow: 1;
}

.packages-section .package-price {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--text-white);
}

.packages-section .bottom-bar {
    height: 6px;
    width: 100%;
    background: var(--bottom-bar-ps);
}


@media (max-width: 767px) {
    .packages-section .package-card {
        margin-bottom: 25px;

    }
}

@media (max-width: 991.98px) {
    .verticals-section .section-title {
        font-size: 2.1rem;
    }

    .verticals-section .vertical-card {
        height: 440px;
    }
}

@media (max-width: 575.98px) {
    .verticals-section .verticals-section {
        padding: 45px 0;
    }

    .verticals-section .section-title {
        font-size: 1.7rem;
    }

    .verticals-section .vertical-card {
        height: 400px;
    }
}

/* vertical dividers between columns on large screens */
@media (min-width: 992px) {
    .trust-section .feature-col:not(:nth-child(4n+1)) .feature-card {
        border-left: 1px solid var(--divider);
    }
}

/* vertical dividers on md (2 cols) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .trust-section .feature-col:nth-child(2n) .feature-card {
        border-left: 1px solid var(--divider);
    }
}

.trust-section .feature-col:nth-child(-n+4) .feature-card {
    border-top: none;
}

.trust-section .feature-col .feature-card {
    border-top: 1px solid var(--divider);
    border-left: none !important;
}

.trust-section .feature-col:first-child .feature-card {
    border-top: none;
}

}

.trust-section .icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--icon-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}


.trust-section .feature-title {
    color: var(--heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.trust-section .feature-text {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


.contact-us {
    border-top: 6px solid var(--green-accent-dark-cnt)
}


.contact-us .eyebrow {
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--green-accent-cnt);
    font-weight: 600;
}

.contact-us .hero-heading {
    font-weight: 600;
    color: #1C2B2D;
    font-size: var(--h2size);
}

.contact-us .hero-heading .accent-line {
    font-weight: 400;
    color: var(--terracotta-cnt);
    display: block;
    font-size: clamp(1.4rem, 4vw, 2rem)

}

.contact-us .hero-sub {
    color: var(--text-muted-cnt);
    font-size: 1.05rem;
    max-width: 740px;
    margin: 0 auto;
}

.contact-us .section-title {
    font-weight: 600;
    font-size: 2rem;
    color: var(--text-dark-cnt);
}

.contact-us .divider-line {
    border-top: 1px solid var(--border-soft-cnt);
    margin-top: 1rem;
}

.contact-us .label-tiny {
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: var(--text-muted-cnt);
    font-weight: 600;
}

.contact-us .company-name {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark-cnt);
}

.contact-us .info-block {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 2.5rem !important
}

.contact-us .info-icon {
    color: var(--terracotta-cnt);
    font-size: 1.05rem;
    width: 22px;
    padding-top: 2px;
    flex-shrink: 0;
}

.contact-us .info-text {
    color: var(--text-dark-cnt);
    line-height: 1.5;

}

.contact-us .info-text a {
    color: var(--text-dark-cnt);
    text-decoration: none;
}

.contact-us .social-btn {
    border: 1px solid var(--border-soft-cnt);
    border-radius: 0px;
    padding: 0.5rem 1rem;
    color: var(--text-dark-cnt);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    transition: background-color .15s ease;
}

.contact-us .social-btn:hover {
    background-color: #ffffff;
    color: var(--text-dark-cnt);
}

/* Enquiry panel */
.contact-us .enquiry-panel {
    background-color: var(--dark-panel-cnt);
    border-radius: 0px;
    padding: 2.25rem;
    color: #fff;
}

.contact-us .enquiry-title {

    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.contact-us .form-label-custom {
    letter-spacing: 1.5px;
    font-size: 0.72rem;
    color: #b9c4bf;
    font-weight: 400;
    margin-bottom: 0.4rem;
    font-family: var(--DM_MOMO)
}

.contact-us .form-control-dark {
    background-color: transparent;
    border: 1px solid #3a4a44;
    color: #fff;
    border-radius: 2px;
    padding: 0.65rem 0.85rem;
}

.contact-us .form-control-dark:focus {
    background-color: transparent;
    color: #fff;
    border-color: var(--green-accent-cnt);
    box-shadow: 0 0 0 0.2rem rgba(47, 107, 82, 0.25);
}

.contact-us .form-control-dark::placeholder {
    color: #6f7d78;
}

.contact-us select.form-control-dark {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: 1px solid #3a4a44;
    color: #fff;
    border-radius: 2px;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    accent-color: var(--green-accent-cnt);
}

.contact-us select.form-control-dark:focus {
    background-color: transparent;
    color: #fff;
    border-color: var(--green-accent-cnt);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(47, 107, 82, 0.25);
}

.contact-us select.form-control-dark option {
    background-color: #16241f;
    color: #fff;
}

.contact-us select.form-control-dark option:checked,
.contact-us select.form-control-dark option:hover,
.contact-us select.form-control-dark option:focus {
    background-color: var(--green-accent-cnt);
    color: #fff;
}

/* Custom dropdown (replaces native <select> popup so hover/selected colors are fully themeable) */
.ts-select {
    position: relative;
}

.ts-select-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: 1px solid #3a4a44;
    color: #fff;
    border-radius: 2px;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    text-align: left;
}

.ts-select-toggle:focus,
.ts-select.is-open .ts-select-toggle {
    outline: none;
    border-color: var(--green-accent-cnt);
    box-shadow: 0 0 0 0.2rem rgba(47, 107, 82, 0.25);
}

.ts-select-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ts-select-caret {
    flex-shrink: 0;
    margin-left: 0.5rem;
    transition: transform .15s ease;
}

.ts-select.is-open .ts-select-caret {
    transform: rotate(180deg);
}

.ts-select-native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.ts-select-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0;
    padding: 4px;
    list-style: none;
    background-color: #16241f;
    border: 1px solid #3a4a44;
    border-radius: 4px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 8px 22px rgba(18, 36, 29, .35);
}

.ts-select.is-open .ts-select-menu {
    display: block;
}

.ts-select-option {
    padding: 0.55rem 0.75rem;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
}

.ts-select-option:hover,
.ts-select-option.is-active {
    background-color: var(--green-accent-cnt);
    color: #fff;
}

/* Light variant (white form panels, e.g. "Start your project today") */
.ts-select-light .ts-select-toggle {
    background-color: #fff;
    border: 1px solid var(--hairline);
    color: var(--ink);
    padding: .45rem .9rem;
}

.ts-select-light .ts-select-toggle:focus,
.ts-select-light.is-open .ts-select-toggle {
    border-color: var(--forest);
    box-shadow: 0 0 0 .2rem rgba(31, 70, 56, .15);
}

.ts-select-light .ts-select-menu {
    background-color: #fff;
    border: 1px solid var(--hairline);
    box-shadow: 0 8px 22px rgba(18, 36, 29, .12);
}

.ts-select-light .ts-select-option {
    color: var(--ink);
}

.ts-select-light .ts-select-option:hover,
.ts-select-light .ts-select-option.is-active {
    background-color: var(--forest);
    color: #fff;
}

.contact-us .btn-submit {
    background-color: var(--green-accent-cnt);
    border: none;
    color: #fff;
    font-weight: 400;
    padding: 0.9rem 1.5rem;
    border-radius: 2px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color .15s ease;
}

.contact-us .btn-submit:hover {
    background-color: var(--green-accent-dark-cnt);
    color: #fff;
}


.trusted-section {

    background-color: #2f5d4f;
}

.trusted-section .eyebrow {
    color: #9be15d;

}

.trusted-section .heading {
    color: #ffffff;
    font-weight: 600;
    font-size: var(--h2size);
}

.trusted-section .logo-row {
    margin-top: 60px;
}

.trusted-section .logo-item {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 10px 15px;
}

/* Individual brand style approximations */
.trusted-section .logo-jumio {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.trusted-section .logo-jumio .accent {
    color: #a3e635;
}

.trusted-section .logo-whiteland {
    text-align: center;
    line-height: 1.1;
}

.trusted-section .logo-whiteland .main {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.trusted-section .logo-whiteland .sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
    font-weight: 400;
}

/*.trusted-section ul {*/
/*    display: flex;*/
/*    list-style: none;*/
/*    justify-content: space-between;*/
/*    flex-wrap: wrap;*/
/*    margin-top: 3rem*/
/*}*/
.trusted-section ul {
    /* display: flex; */
    list-style: none;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    margin-top: 3rem;
}

.trusted-section ul li img {
    height: 60px
}

.trusted-section .logo-biorad {
    background: #2fae4e;
    color: #ffffff;
    font-weight: 800;
    font-style: italic;
    font-size: 1.6rem;
    padding: 10px 30px;
    border-radius: 40px;
    letter-spacing: 1px;
}

.trusted-section .logo-oppo {
    font-size: 2.2rem;
    font-weight: 700;
}

.trusted-section .logo-rise {
    text-align: center;
    line-height: 1.1;
}

.trusted-section .logo-rise .main {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.trusted-section .logo-rise .sub {
    font-size: 0.55rem;
    letter-spacing: 1px;
    display: block;
}

.trusted-section .logo-jm {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trusted-section .logo-vlcc {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    letter-spacing: 2px;
}


footer {
    padding: 20px 0;
    border-top: 3px solid #ddd;
}

footer .brand {
    height: 40px;
}

footer a, footer p {
    color: var(--text-muted-cnt);
    font-size: .8rem;
    margin-bottom: 0
}

@media (min-width: 1600px) {

    .section {
        padding: 140px 0
    }

    .form-topbar {
        margin-bottom: 2rem !important
    }
}

@media (min-width: 1400px) {

    .section {
        padding: 110px 0
    }
}

@media (min-width: 1200px) {

    .section {
        padding: 100px 0
    }

    .trust-section .feature-col:not(:first-child, :nth-of-type(5)) {
        border-left: 1px solid var(--divider) !important;
    }

}


@media (min-width: 992px) {
    .conft {
        padding-left: 80px;
        padding-right: 80px;
        overflow: hidden
    }

    .section {
        padding: 80px 0
    }

    .verticals-section .section-title, .packages-subheading {
        margin-bottom: 2rem
    }

}

@media (max-width: 991.98px) {
    .headline {
        font-size: 2.1rem;
    }

    .who-section {
        padding: 3rem 0;
    }

    .section {
        padding: 60px 0
    }

    .conft, .promise-section .container {
        padding-left: 25px;
        padding-right: 25px
    }

    .trusted-section ul {
        gap: 1rem
    }

    footer .col-lg-4 {
        text-align: center !important
    }

    .hero-panel > div:first-child {
        margin-top: 0
    }

    .trust-section .feature-col .feature-card {
        border: 0
    }

    .trust-section .feature-col:not(:nth-of-type(3), :nth-of-type(5), :nth-of-type(7), :first-child) {
        border-left: 1px solid var(--divider) !important;
    }
}

@media (max-width: 767.98px) {
    .headline, .trust-section .trust-title, .packages-section .packages-heading {
        font-size: 1.75rem;
        font-weight: 400;
    }

    .who-image {
        min-height: 260px;
        margin-bottom: 2rem;
    }

    .pill-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        white-space: normal;
        line-height: 1
    }

    .hero-heading {
        font-size: 2.1rem;
    }

    .enquiry-panel {
        padding: 1.5rem;
    }

    header {
        padding: 20px
    }

    header img {
        height: 40px
    }

    .stats-row .col-6 {
        padding-left: 10px !important
    }

    .principle {
        margin-left: 0px !important
    }

    .trust-section .feature-col:first-child .feature-card {
        border: 0px !important
    }

    .trust-section .feature-card {
        border-top: 1px solid var(--divider) !important;
    }

    .trusted-section ul li img {
        height: 50px;
        padding-bottom: 15px;
    }

    .trusted-section ul {
        justify-content: center;
        gap: 1rem
    }

    .trust-section .feature-col:not(:first-child, :nth-of-type(5)) {
        border: 0 !important
    }

    .trust-section .row.mb-5 {
        margin-bottom: 0 !important
    }

    .who-section .eyebrow {
        margin-top: -2rem
    }

}

@media (max-width: 575.98px) {
    .diagram-icon {
        width: 22%;
    }
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


.trusted-section .swiper-pagination {
    bottom: 0rem !important
}

.trusted-section ul {
    padding-bottom: 2rem
}

.trusted-section .swiper-pagination span {
    width: 12px;
    height: 12px
}

.trusted-section .swiper-pagination-bullet-active {
    background: #fff !important
}