/* ───── sticky sub navbar (ARK-names) with higher specificity ───── */
nav.ark-sticky-nav {
    position: sticky !important;
    top: 90px !important;
    width: 100% !important;
    z-index: 1040 !important;
    animation: arkSlideDown .3s ease !important;
}

nav.ark-sticky-nav .ark-nav-wrapper {
    background: #E44D26;

    background: -webkit-linear-gradient(to top, #F16529, #E44D26);

    background: linear-gradient(to top, #F16529, #E44D26);

    border-radius: 8px !important;
    padding: 16px !important;
    overflow-x: auto !important;
}

nav.ark-sticky-nav .ark-nav-list {
    display: flex !important;
    gap: 16px !important;
    white-space: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

nav.ark-sticky-nav .ark-nav-list::-webkit-scrollbar {
    display: none !important;
}

/* Higher specificity for nav items */
nav.ark-sticky-nav .ark-nav-list .ark-nav-item {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #fff !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

nav.ark-sticky-nav .ark-nav-list .ark-nav-item:hover {
    background: #92867C(0, 122, 255, .1) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Active state with highest specificity */
nav.ark-sticky-nav .ark-nav-list .ark-nav-item.ark-active,
nav.ark-sticky-nav .ark-nav-list a.ark-nav-item.ark-active {
    color: #ffff !important;
    background: rgba(0, 122, 255, .05) !important;
    text-decoration: none !important;
}

nav.ark-sticky-nav .ark-nav-list .ark-nav-item.ark-active::after,
nav.ark-sticky-nav .ark-nav-list a.ark-nav-item.ark-active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 50% !important;
    width: 60% !important;
    height: 2px !important;
    background: #E9592A !important;
    border-radius: 1px !important;
    transform: translateX(-50%) !important;
}

/* example sections */
/* .ark-section {
            background: #fff !important;
            margin: 30px 0 !important;
            padding: 50px !important;
            border-radius: 12px !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .08) !important;
            border: 1px solid #f0f0f0 !important;
        } */



@keyframes arkSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternative approach - using attribute selectors for even higher specificity */
a[data-target].ark-nav-item.ark-active {
    color: #E9592A !important;
    background: rgba(0, 122, 255, .05) !important;
}

a[data-target].ark-nav-item.ark-active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 50% !important;
    width: 60% !important;
    height: 2px !important;
    background: #E9592A !important;
    border-radius: 1px !important;
    transform: translateX(-50%) !important;
}

.ark-doc-table {

    border: 1px solid #bcc3d1;
    border-radius: 6px;
    overflow: hidden;
    background: #EAEFEF;
}

.ark-doc-table .ark-title {
    background: #3a4250;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1rem;
}

.ark-doc-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ark-doc-heading-label {
    font-size: 16px;
    font-weight: 600;
}

.ark-doc-select {
    width: auto;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 6px;
    appearance: none;
}

.ark-doc-select:focus {
    outline: none;
    border-color: #fff;
}

.ark-doc-select option {
    color: #111;
}

.ark-doc-panel {
    display: none;
}

.ark-doc-panel.active {
    display: block;
}

.ark-doc-table .ark-body {
    background: #EAEFEF;
    padding: 0;
}

.ark-doc-table ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ark-doc-table li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #d3dcec;
}

.ark-doc-table li:nth-child(odd) {
    border-right: 1px solid #d3dcec;
}

.ark-doc-table li:last-child,
.ark-doc-table li:nth-last-child(2) {
    border-bottom: none;
}

/* numbered bullet */
.ark-doc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E9592A;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    flex: 0 0 30px;
}

/* nicer mobile stacking */
@media (max-width: 575.98px) {
    .ark-doc-table ul {
        grid-template-columns: 1fr;
    }

    .ark-doc-table li:nth-child(odd) {
        border-right: none;
    }

    .ark-doc-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ark-doc-select {
        width: 100%;
        min-width: 0;
    }
}


.ark-testimonial-section {
    padding: 60px 0;
}

.ark-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.ark-section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.ark-section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ark-swiper {
    width: 100%;
    padding: 40px 0 50px 0;
}

.ark-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px 30px 30px;
    transition: all 0.3s ease;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin-top: 30px;
    height: 260px;
}

.ark-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ark-client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 30px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.ark-client-info {
    margin-top: 25px;
    margin-bottom: 20px;
}

.ark-client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.ark-client-title {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

.ark-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding: 0 10px;
}

.ark-quote-start {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 3rem;
    color: #E95828;
    font-family: Georgia, serif;
    line-height: 1;
}

.ark-quote-end {
    position: absolute;
    bottom: -20px;
    right: -5px;
    font-size: 3rem;
    color: #E95828;
    font-family: Georgia, serif;
    line-height: 1;
}

.ark-swiper-pagination {
    bottom: 10px !important;
}

.ark-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.ark-swiper-pagination .swiper-pagination-bullet-active {
    background: #E95828;
    transform: scale(1.2);
}

.ark-swiper-button-next,
.ark-swiper-button-prev {
    color: #E95828;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ark-swiper-button-next:hover,
.ark-swiper-button-prev:hover {
    background: #E95828;
    color: #fff;
    transform: scale(1.1);
}

.ark-swiper-button-next::after,
.ark-swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ark-section-title h2 {
        font-size: 2rem;
    }

    .ark-testimonial-card {
        padding: 30px 20px 25px 20px;
        margin-top: 25px;
    }

    .ark-client-avatar {
        width: 60px;
        height: 60px;
        top: -30px;
        left: 20px;
    }

    .ark-client-info {
        margin-top: 15px;
    }

    .ark-quote-start,
    .ark-quote-end {
        font-size: 2.5rem;
    }

    .ark-swiper-button-next,
    .ark-swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .ark-testimonial-section {
        padding: 40px 0;
    }

    .ark-section-title h2 {
        font-size: 1.8rem;
    }

    .ark-testimonial-card {
        padding: 25px 15px 20px 15px;
        margin-top: 20px;
    }

    .ark-client-avatar {
        width: 50px;
        height: 50px;
        top: -25px;
        left: 15px;
    }

    .ark-quote-start,
    .ark-quote-end {
        font-size: 2rem;
    }
}

.cover-background {
    background-size: cover;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
}

.overlay-gradient {
    background-image: linear-gradient(to right top, #353332, #312b28, #15110f, #4a3229, #5a2611);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f4762b;
    border-radius: 50%;
}

/* Smooth fade for rotator */
.text-rotator {
    transition: opacity 0.6s ease-in-out;
}

.badge {
    background-color: #E9592A !important;
}


.opc-registration-section {
    position: relative;
    overflow: hidden;
    margin-top: 7%;
    padding-bottom: 40px;

}

/* The orange circular background effect */
.opc-registration-section::after {
    content: '';
    position: absolute;
    top: -20vh;
    right: -40vw;
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle, rgba(251, 179, 43, 0.4) 10%, rgba(253, 187, 45, 0.2) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -99;
}

.opc-registration-section .container {
    position: relative;
    z-index: 2;
}

/* App Download */
.opc-registration-section .app-download {
    margin-top: 2rem;
}

.opc-registration-section .app-download>h2 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.opc-registration-section .app-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.opc-registration-section .app-buttons img {
    height: 50px;
    width: auto;
}

/* UPDATED CSS FOR BACKGROUND IMAGE ON FORM COLUMN */
.form-background-col {
    background-image: url('images/bg_sec1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: -1;
    /* Optional: adds a little space on smaller screens */
}


/* Right side form container */
.opc-registration-section .form-container {
    background-color: #ffffff !important;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    height: fit-content;
}

.opc-registration-section .form-group {
    margin-bottom: 20px;
}

.opc-registration-section .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4a5568;
}

.opc-registration-section .form-container input,
.opc-registration-section .form-container select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    /* Added light border for better visibility */
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.opc-registration-section .form-container select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
}

.opc-registration-section .form-container button {
    width: 100%;
    padding: 15px;
    background-color: #E9592A;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.opc-registration-section .form-container button:hover {
    background-color: #e67e22;
}

/* Responsive Design Adjustments */
@media (max-width: 991px) {
    .opc-registration-section::after {
        right: -60vw;
    }

    .form-background-col {
        margin-top: 30px;
    }
}


/* Scoped styles for the statistics bar component */

.stats-bar-section {
    padding: 20px 0 40px 0;
}

.stats-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    /* To contain the corner element */
}

.stat-item {
    min-width: 180px;
    /* Ensures items don't get too squished */
    flex-grow: 1;
    /* Allows items to grow and fill space */
}

.stat-icon {
    height: 50px;
    /* Controls the size of the icon */
    width: 50px;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    /* Dark color for the number */
    margin: 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #8c8c8c;
    /* Light grey for the description */
    margin: 0;
}

/* Text -------------------------------------------------------*/


.cutout-section {
    background-color: #EAEFEF;
    /* Light blue-gray background */
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: visible;
    /* Ensure image can overflow */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cutout-text {
    max-width: 100%;
    color: #1e1e1e;
    /* Dark Gray for better contrast */
    z-index: 2;
}


.cutout-image {
    position: absolute;
    right: -10px;
    top: -35px;
    max-width: 60%;
    z-index: 2;
}

.cutout-image img {
    max-width: 82%;
    /* Ensures smooth cutout */
    height: 80%;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cutout-section {
        text-align: center;
        flex-direction: column;
        padding: 40px;
    }

    .cutout-text {
        max-width: 100%;
    }

    .cutout-image {
        position: relative;
        max-width: 80%;
        margin-top: 20px;
    }
}

/* ─── BASE (mobile-first) ─── */
#comparison-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-container {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 auto;
}

.panel-header {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: block;
    /* ensures detail-box goes below */
    padding: 12px 0;
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-list li:first-child {
    border-top: none;
}

/* wrap icon+text only */
.item-header {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 28px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.feature-text {
    flex: 1;
    font-size: 13.9px;
}

.fa-check-circle {
    color: #2ecc71;
}

.fa-times-circle {
    color: #e74c3c;
}

.detail-box {
    display: none;
    opacity: 0;
    visibility: hidden;
    margin-top: 8px;
    /* space below header */
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ─── COLORS ─── */
.bg-adv {
    background: #e0fbe0;
    border-left: 6px solid #2ecc71;
}

.bg-dis {
    background: #ffebee;
    border-left: 6px solid #e74c3c;
}

/* ─── DESKTOP OVERRIDES ─── */
@media (min-width: 769px) {
    .comparison-row {
        flex-direction: row;
    }

    .comparison-container {
        transition: flex 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .comparison-row:hover .comparison-container {
        flex: 0.8;
    }

    .comparison-row:hover .comparison-container:hover {
        flex: 1.2;
    }
}

.left-col-padding {
    padding: 20px 9%;
}

@media (max-width: 768px) {
    .left-col-padding {
        padding: 0;
    }
}
