:root {
    --primary-color: #1C1A3B;
    --primary-light: #285A510A;
    --secondary-color: #008383;
    --tick-icon: url('../images/pwa-img/tick.svg');
}

.text-primary {
    color: var(--primary-color) !important;;
}

.text-secondary {
    color: var(--secondary-color) !important;;
}


.button {
    padding: 20px 35px !important;
    border-radius: 10px !important;
}

.button-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.button-secondary {
    background-color: var(--secondary-color);
    color: #fff !important;
}

.button:hover {
    transform: translateY(-2px);
    cursor: pointer;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 20px !important;
}

.bg-light {
    background-color: var(--primary-light) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.counter-item {
    padding: 30px;
    border-top: 1px solid #888888;
}

.sticky_top {
    position: sticky;
    top: 120px;
}

.theme-card {
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    background-color: var(--white-color);
    transition: all .3s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 14px 0px #00B14F66;
}

.tick-list li:last-child {
    margin-bottom: 0;
}

.tick-list.alt li {
    padding: 30px;
    background-color: #F5F5F5;
    border-radius: 20px;
    gap: 20px;
    align-items: center;
}

.tick-list.alt li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 19.9583C0 14.6651 2.10275 9.58857 5.84566 5.84566C9.58857 2.10275 14.6651 0 19.9583 0C25.2516 0 30.3281 2.10275 34.071 5.84566C37.8139 9.58857 39.9167 14.6651 39.9167 19.9583C39.9167 25.2516 37.8139 30.3281 34.071 34.071C30.3281 37.8139 25.2516 39.9167 19.9583 39.9167C14.6651 39.9167 9.58857 37.8139 5.84566 34.071C2.10275 30.3281 0 25.2516 0 19.9583ZM18.8194 28.5005L30.3101 14.1358L28.2344 12.4753L18.4362 24.7191L11.496 18.9365L9.79289 20.9802L18.8194 28.5005Z' fill='%23008383'/%3E%3C/svg%3E");
    background-size: contain;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.cost-cta {
    padding: 100px 50px 0;
    background-color: #1C1A3B;
    border-radius: 20px;
}

.services-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2A3350;
    background-color: #2A3350;
    transition: all .3s ease;
}
.services-card:hover {
    border-color: #FFFFFF;
    background-color: #424D73;
}

.indus-card {
    padding: 44px 30px;
    border-radius: 30px;
    background-color: #FFFFFF1F;
    box-shadow: 0px 4px 12px 0px #26938124;
    transition: all .3s ease;
}

.indus-card:hover {
    background-color: #00000059;
    transform: translateY(-5px);
}

.tab-trigger {
    background: var(--primary-color);
    height: 100%;
    padding: 50px;
}

.tab-trigger ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%;
}

.tab-trigger li a {
    width: 100%;
    padding: 20px;
    background: var(--white-color);
    display: block;
    font-size: 20px;
    border-radius: 10px;
    border: 1px solid white;
    transition: all .3s ease;
}

.tab-trigger li a:is(.active, :hover) {
    background: linear-gradient(105.65deg, #055039 39.06%, #00B14F 100%);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.tab-content {
    height: 100%;
    background: #000;
    color: #fff;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.launch-card img {
    height: 300px;
    object-fit: contain;
    width: 100%;
}

.launch-card {
    padding: 20px;
    height: 100%;
}

.process-card {
    border: 1px solid #2A2753;
}
.process-card:hover {
    box-shadow: 0px 4px 4.4px 0px #00000040;
}

.process-swiper .swiper-slide .process-card::before {
    content: counter(slides);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 14.5vw;
    line-height: 1;
    font-weight: 800;
    color: #4878C033;
    pointer-events: none;
}

.process-swiper .swiper-wrapper {
    display: flex;
}
.process-swiper .swiper-slide {
    counter-increment: slides;
    height: auto;
}

/* Comparison Table */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead th {
    padding: 20px 24px;
    font-weight: 700;
    vertical-align: middle;
}

.comparison-table thead th.param-col {
    background-color: #F2F2F2;
    color: var(--primary-color);
    width: 30%;
}

.comparison-table thead th.pwa-col {
    background-color: #2563EB;
    color: #fff;
    width: 35%;
}

.comparison-table thead th.native-col {
    background-color: var(--primary-color);
    color: #fff;
    width: 35%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 20px 24px;
    vertical-align: middle;
    border-bottom: 1px solid #E0E0E0;
    color: var(--primary-color);
}

.comparison-table tbody td.param-col {
    background-color: #F8F8F8;
    border-right: 1px solid #E0E0E0;
}

.accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 34px 0;
    font-size: 22px;
}

@media (max-width: 767px) {
    .sticky_top {
        position: static;
    }
    .cost-cta {
    padding: 50px 20px 0;
    }
}