/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
:root {
    --od-ink: #000E20;
    --od-ink-2: #091A2F;
    --od-ink-3: #13335F;
    --od-navy-text: #0B1F3A;
    --od-blue: #2F80ED;
    --od-blue-strong: #0058CF;
    --od-blue-hover: #0049B0;
    --od-blue-soft: #EAF2FD;
    --od-blue-soft-2: #D5E6FB;
    --od-paper: #F6F9FC;
    --od-white: #FFFFFF;
    --od-line: #D5E6FB;
    --od-line-dark: #293A52;
    --od-grey: #5B6B7E;
    --od-grey-2: #7A8AA0;
    --od-green: #27AE60;
    --od-green-soft: #E7F6EE;
    --od-red: #E02F2E;
    --od-red-soft: #FCEDEC;
    --od-amber: #FFD83A;
    --od-display: "Gilroy font", Sans-serif;
    --od-body: "Inter", Sans-serif;
    --od-content: 1800px;
    --od-narrow: 1495px;
    --od-gutter: 30px;
    --od-cols: 12;
    --od-pad: clamp(16px, 3.125vw, 60px);
    --od-radius: 18px;
    --od-radius-lg: 26px;
    --od-radius-sm: 12px;
}

body {
    font-family: "Inter", Sans-serif;
}

/* =================================================================
   SECTION: ROI Calculator
   ================================================================= */
.od-calc {
    background: var(--od-paper)
}

.od-calc__grid {
    display: grid;
    grid-template-columns: 40% 58%;
    gap: 22px
}

.od-panel {
    background: var(--od-ink);
    border-radius: var(--od-radius-lg);
    padding: clamp(24px, 3vw, 38px);
    color: #fff
}

.od-panel h3 {
    color: #fff;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    margin: 18px 0 14px
}

.od-panel__intro {
    color: #F6F9FC;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 26px
}

.od-field {
    margin-bottom: 18px
}

.od-field label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 9px
}

.od-input {
    display: flex;
    align-items: center;
    background: #0B1D34;
    border: 1px solid #6D7989;
    border-radius: 11px;
    overflow: hidden
}

.od-input input {
    flex: 1;
    background: #000E20;
    border: none;
    color: #fff;
    font-family: var(--od-display);
    font-weight: 700;
    font-size: 16px;
    padding: 10px 12px;
    width: 100%
}

.od-input input:focus {
    outline: none
}

/* number input normalization (cross-browser) */
.od-input input {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none
}

.od-input input::-webkit-outer-spin-button,
.od-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.od-input .unit {
    padding: 0 18px;
    color: #FFFFFF;
    border-left: 1px solid #6D7989;
    align-self: stretch;
    display: flex;
    align-items: center;
    font-weight: 600
}

.od-calc__result h3 {
    margin-top: 0
}

.od-table-main {
    overflow-x: auto;
    border-radius: 12px;
}

/*.od-table{width:100%;border-collapse:collapse;font-size:14px}*/
.od-table {
    width: 100%;
    font-size: 14px;

    /* IMPORTANT */
    border-collapse: separate;
    border-spacing: 0;

    border: 1px solid #14304F;
    border-radius: 12px;
    overflow: hidden;
}

.od-table th, .od-table td {
    padding: 15px 16px;
    text-align: left;
    border-bottom: 1px solid #14304F
}

.od-table thead th {
    font-family: var(--od-display);
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}

.od-table thead th.c-blue {
    color: #5BA0F5;
    text-align: center
}

.od-table thead th.c-green {
    color: #3FCB82;
    text-align: center
}

.od-table td {
    color: #F6F9FC
}

.od-table td.lbl {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #E4EDF7;
    font-weight: 500
}

.od-table td.lbl .ti {
    width: 22px;
    height: 22px;
    flex: none;
    color: #FFFFFF
}

.od-table td.num {
    text-align: center;
    font-weight: 600
}

.od-table td.blue {
    text-align: center;
    color: #5BA0F5;
    font-weight: 600
}

.od-table td.green {
    text-align: center;
    color: #3FCB82;
    font-weight: 600
}

/* remove last row border */
.od-table tbody tr:last-child td {
    border-bottom: none;
}

/* corner radius */
.od-table thead tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

.od-table thead tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.od-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.od-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.od-result-box {
    margin-top: 22px;
    border: 1px solid #1E4C86;
    border-radius: 16px;
    padding: 26px 28px;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(120deg, rgba(29, 111, 224, .07), transparent)
}

.od-result-box .eyebrow {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px
}

.od-result-box .big {
    font-family: var(--od-display);
    font-weight: 800;
    font-size: clamp(34px, 4vw, 48px);
    color: var(--od-blue);
    line-height: 1;
    margin-bottom: 14px
}

.od-result-box .sub {
    font-family: var(--od-display);
    font-weight: 700;
    color: #fff;
    font-size: 17px
}

.od-result-box .sub2 {
    color: #FFFFFF;
    font-size: 15px
}

.od-result-box svg {
    flex: none
}

.od-result-box .result-left {
    width: 48%;
}

.od-result-box .result-right {
    width: 48%;
    text-align: center;
}

/* Banner strip (calculator CTA) */
.od-banner {
    background: var(--od-ink);
    border-radius: var(--od-radius-lg);
    padding: clamp(24px, 3vw, 34px) clamp(26px, 3.5vw, 44px);
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.od-banner::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(29, 111, 224, .25), transparent 60%)
}

.od-banner__ico {
    width: 78px;
    height: 78px;
    border-radius: 18px;
    background: linear-gradient(145deg, #2E7BE6, #1450A8);
    display: grid;
    place-items: center;
    flex: none
}

.od-banner__txt {
    flex: 1;
    position: relative;
    z-index: 1
}

.od-banner__txt h3 {
    color: #fff;
    font-size: clamp(20px, 2.3vw, 27px);
    font-weight: 800;
    margin-bottom: 6px
}

.od-banner__txt p {
    color: #FFFFFF;
    font-size: 15px
}

.od-banner .od-btn {
    flex: none;
    position: relative;
    z-index: 1
}


.od-input input[type="number"]::-webkit-outer-spin-button,
.od-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.od-input input[type="number"] {
    -moz-appearance: textfield;
}

.od-pill--green {
    border: 1px solid #27AE60;
    color: #27AE60;
    background: #042B14;
}

.od-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--od-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .02em;
    padding: 2px 16px;
    border-radius: 999px;
}

.od-pill--blue {
    border: 1px solid #2F80ED;
    color: #2F80ED;
    background: #091A2F;
}

/* =================================================================
   SECTION: Results / testimonials (split)
   ================================================================= */
.od-results {
    background: var(--od-paper);
    padding: 0
}

.od-results__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr)
}

.od-results__left {
    background: var(--od-ink);
    color: #fff;
    padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px)
}

.od-results__left h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin: 22px 0 26px;
    text-align: left
}

.od-results__left .od-list li {
    color: #D5E0EE;
    font-weight: 500
}

.od-result-tag {
    margin-top: 28px;
    border: 1px solid #1E4C86;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: var(--od-display);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background: rgba(29, 111, 224, .07)
}

.od-result-tag--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transition: border-color .25s, background .25s
}

.od-result-tag--link:hover {
    border-color: #3F8AE8;
    background: rgba(29, 111, 224, .14)
}

.od-result-tag__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #5BA0F5;
    white-space: nowrap
}

.od-result-tag__cta svg {
    transition: transform .25s
}

.od-result-tag--link:hover .od-result-tag__cta svg {
    transform: translateX(4px)
}

.od-results__minicase {
    margin-top: 20px;
    color: #A9BDD5;
    font-size: 15px;
    line-height: 1.6
}

.od-results__minicase a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5BA0F5;
    font-weight: 600;
    margin-top: 4px;
    transition: gap .25s
}

.od-results__minicase a:hover {
    gap: 11px;
    color: #7FB6F7
}

.od-results__right {
    background: #EAF1FB;
    padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
    overflow: hidden
}

/* slider header: pill + nav arrows */
.od-tslider__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px
}

.od-tslider__nav {
    display: none;
    gap: 10px
}

.od-tslider__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--od-line);
    display: grid;
    place-items: center;
    color: var(--od-blue-strong);
    transition: background .2s, color .2s, border-color .2s, transform .2s
}

.od-tslider__btn:hover {
    background: var(--od-blue-strong);
    color: #fff;
    border-color: var(--od-blue-strong)
}

.od-tslider__btn:active {
    transform: scale(.94)
}

.od-tslider__btn.swiper-button-disabled {
    opacity: .45;
    cursor: default
}

.od-tslider__btn.swiper-button-disabled:hover {
    background: #fff;
    color: var(--od-blue-strong);
    border-color: var(--od-line)
}

/* swiper viewport + slides */
.od-tswiper {
    width: 100%;
    padding-bottom: 4px
}

.od-tswiper .swiper-wrapper {
    align-items: stretch
}

.od-tcard {
    background: #fff;
    border: 1px solid var(--od-line);
    border-radius: 16px;
    padding: 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box
}

.od-tcard h4 {
    color: #0B1F3A;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.od-tcard .rate {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 13px;
    color: var(--od-navy-text)
}

.od-tcard .rate .s {
    color: var(--od-amber)
}

.od-tcard p {
    color: #364455;
    font-size: 18px;
    margin-bottom: 18px;
    flex: 1
}

.od-tcard__who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto
}

.od-tcard__who img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex: none
}

.od-tcard__who .nm {
    font-family: var(--od-display);
    color: #0B1F3A;
    font-weight: 700;
    font-size: 20px
}

.od-tcard__who .rl {
    font-size: 18px;
    color: #364455
}

/* pagination bullets (Swiper) */
.od-tswiper-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 26px
}

.od-tswiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 3px;
    background: #C5D5EA;
    opacity: 1;
    margin: 0;
    transition: width .3s, background .3s;
    cursor: pointer
}

.od-tswiper-pagination .swiper-pagination-bullet-active {
    background: var(--od-blue);
    width: 42px
}

/* 27-July-2026 ----- */
.elementor-11 .elementor-element.elementor-element-ad64488.section-icon-align-center .elementor-icon-box-wrapper .elementor-icon-box-icon {
    align-self: center;
}

.accordion-faq-custom .e-con-boxed {
    border-bottom-width: 1px !important;
    border: 0px 0px 1px 0px !important;
}

.accordion-faq-custom .e-n-accordion-item:last-child .e-con-full .e-con-boxed {
    border-top-width: 1px !important;
    border-bottom-width: 0px !important;
    border: 1px 0px 0px 0px !important;
}

.accordion-faq-custom .e-n-accordion-item:last-child .e-n-accordion-item-title {
    border-bottom-width: 0px !important;
    border: 0px 0px 1px 0px !important;
}


/* 27-July-2026 ----- */


@media (max-width:767px) {
    .od-calc__grid {
        display: flex;
        flex-direction: column;
    }

    .od-ctable {
        display: block;
    }

    .od-result-box .result-left {
        width: 100%;
    }

    .od-result-box .result-right {
        width: 100%;
        text-align: center;
    }

    /* 27-July-2026 ----- */
    /* .accordion-faq-custom:last-child .e-n-accordion-item:last-child .e-n-accordion-item-title {
        border-bottom-width: 0px !important;
    } */

    .accordion-faq-custom .e-n-accordion-item:last-child .e-n-accordion-item-title {
        border-bottom-width: 1px !important;
        border: 0px 0px 1px 0px !important;
    }

    .accordion-faq-custom:nth-child(2) .e-n-accordion-item:last-child .e-n-accordion-item-title {
        border-bottom-width: 0px !important;
        border: 0px 0px 1px 0px !important;
    }

    .accordion-faq-custom .e-n-accordion-item:last-child .e-con-full .e-con-boxed {
        border-top-width: 0px !important;
        border-bottom-width: 1px !important;
        border: 0px 0px 1px 0px !important;
    }

    .accordion-faq-custom:nth-child(2) .e-n-accordion-item:last-child .e-con-full .e-con-boxed {
        border-top-width: 1px !important;
        border-bottom-width: 0px !important;
        border: 1px 0px 0px 0px !important;
    }


    /* 27-July-2026 ----- */

}

@media (max-width:567px) {

    /* 27-July-2026 ----- */
    .od-result-box {
        flex-wrap: wrap;
    }

    .od-tcard p {
        font-size: 15px;
    }

    .od-ctable th, .od-ctable td {
        font-size: 15px;
    }

    .od-table thead th {
        font-size: 15px;
        line-height: 18px;
    }

    .od-tcard__who .nm {
        font-size: 15px;
    }

    .od-tcard__who .rl {
        font-size: 14px;
    }

    /* 27-July-2026 ----- */

}

@media (max-width:520px) {

    /* 27-July-2026 ----- */

    .footer-custom-width .elementor-element {
        width: 100%;
    }


    /* 27-July-2026 ----- */

}