:root {
    --Primary-Color-1: #161925;
    --Gray-600: #475467;
    --Blue-light: #36BFFA;
    --Neutral-80: #7E8492;
    --Neutral-100: #1D1E25;
}

.container-xxl {
    max-width: 1440px;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container-xxl {
        max-width: 1440px;
        padding: 0 112px;
    }
}

@property --core-feature-item-bg-start {
    syntax: '<color>';
    inherits: false;
    initial-value: #F9FAFB
}

@property --core-feature-item-bg-end {
    syntax: '<color>';
    inherits: false;
    initial-value: #F9FAFB
}

/* ===================  Automation testing =================== */

.hero-section {
    margin-top: 122px;
}

.hero-title h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
}

.hero-title-highlight {
    color: var(--Blue-light);
}

.hero-desc {
    margin: 24px 0;
    color: #007196;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px
}

.hero-cta {
    gap: 16px;
}

.btn-base {
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.btn-watch-demo {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid #007196;

    background-color: #fff;
    color: #007196;
}

.btn-contact-now {
    background: linear-gradient(94deg, #0DA8FF 0%, #005096 100.98%);
    color: #fff;
}

.btn-submit-now {
    margin-top: 14px;
    background: linear-gradient(94deg, #0DA8FF 0%, #005096 100.98%);
    color: #fff;
}

.btn-submit-now>div {
    gap: 16px;
}

.contact-us-form {
    gap: 18px;
    padding: 20px;
    border: 2px solid var(--Blue-light-600, #0086C9);
    border-radius: 20px;
    box-shadow: 0 50px 200px -40px rgba(0, 0, 0, 0.06);
}

.contact-us-form>h2 {
    overflow: hidden;
    color: var(--Primary-Color-1);
    text-overflow: ellipsis;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.input-field .form-label {
    color: #344054;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .hero-title h1 {
        font-size: 58px;
        line-height: 130.245%;
    }
}

/* Logo marquee */
.marquee-section {
    margin-top: 24px;
    width: 100%;
    background: #0DA1F7;
    display: flex;
    overflow-x: auto;
}

.marquee-section::-webkit-scrollbar {
    display: none;
}

.marquee-container {
    --items: 3;
    --item-width: 5em;
    --viewport-width: 100vw;
    --gap: calc((var(--viewport-width) - (var(--items) * var(--item-width))) / var(--items));
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap);
    padding-right: var(--gap);
    animation: marquee 10s infinite linear;
}

.marquee-item {
    flex: 0 0 5em;
    height: 5em;
}

.marquee-item img {
    object-fit: contain;
}

@media(min-width: 768px) {
    .marquee-section {
        margin-top: 54px;
        background: #0DA1F7;
    }

    .marquee-container {
        --item: 8;
        gap: 160px;
        padding-right: 160px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Product trusted */
.product-trusted {
    margin-top: 64px;
}

.product-trusted-header .header-title {
    max-width: 343px;
    margin-bottom: 16px;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    background: radial-gradient(100% 65% at 50% 50%, #000 30%, rgba(0, 0, 0, 0.40) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-trusted-header .header-desc {
    max-width: 296px;
    margin-bottom: 16px;
    color: var(--Neutral-80);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.divider {
    height: 1px;
    background-color: #EDEDED;
    margin: 28px 0;
}

.product-trusted-stats {
    row-gap: 32px;
}

.stats-item .stats-item-number {
    text-shadow: 0 12px 16px rgba(16, 24, 40, 0.08), 0 4px 6px rgba(16, 24, 40, 0.03);
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.52px;
    background: linear-gradient(94deg, #0DA8FF 0%, #005096 100.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-item .stats-item-title {
    margin-top: 12px;
    color: var(--Neutral-100);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.stats-item .stats-item-desc {
    margin-top: 8px;
    color: var(--Neutral-80);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

@media (min-width: 768px) {
    .product-trusted {
        margin-top: 0;
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .product-trusted-header .header-title {
        margin-bottom: 0;
        max-width: 807px;
        font-size: 48px;
        line-height: 64px;
    }

    .product-trusted-header .header-desc {
        margin-bottom: 0;
    }
}

/* Insight section */
.insight-section {
    margin-top: 64px;
    padding-bottom: 10px;
}

.insight-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.insight-left .insight-left-img {
    width: 100%;
    max-width: 515px;
    min-height: 352px;
}

.insight-left img {
    object-fit: contain;
}

.insight-right {
    margin-top: 32px;
}

.insight-info-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 128.571%;
    background: radial-gradient(100% 65% at 50% 50%, #000 30%, rgba(0, 0, 0, 0.40) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insight-info-desc {
    margin-top: 16px;
    color: var(--Neutral-80);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
}

.insight-outstanding {
    margin-top: 32px;
    margin-bottom: 32px;
    gap: 17px;
}

.insight-outstanding>span {
    color: #0DA1F7;
    text-shadow: 0 12px 16px rgba(16, 24, 40, 0.08), 0 4px 6px rgba(16, 24, 40, 0.03);
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.52px;
}

.insight-outstanding p {
    color: var(--Neutral-100);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

@media(min-width: 768px) {
    .insight-section {
        margin-top: 0;
        padding-top: 107px;
        padding-bottom: 98px;
    }

    .insight-container {
        column-gap: 50px;
    }

    .insight-outstanding>span {
        font-size: 84px;
        letter-spacing: -0.84px;
    }
}

@media(min-width: 1200px) {
    .insight-container {
        column-gap: 80px;
    }

    .insight-right {
        margin-top: 0;
    }
}

/* Boost hosting */
.boost-hosting {
    padding: 0 16px;
    margin-top: 74px;
}

.boost-hosting-left .left-head {
    row-gap: 8px;
}

.boost-hosting-left .left-head-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 128.571%;
    background: radial-gradient(100% 65% at 50% 50%, #000 30%, rgba(0, 0, 0, 0.40) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.boost-hosting-left .left-head-desc {
    margin-bottom: 0;
    color: var(--Neutral-80);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
}

.boost-hosting-left .left-content {
    margin-top: 57px;
}

.feature-container {
    row-gap: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.feature-item-head {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.feature-item-head .feature-item-icon {
    width: 48px;
    height: 48px;
    padding: 8px;
}

.feature-item-head .feature-item-icon img {
    object-fit: contain;
}

.feature-item-head .feature-item-title {
    color: var(--Neutral-100);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.2px;
    flex: 1 0 0;
}

.feature-item-content {
    color: #667085;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
}

.boost-hosting-right {
    margin-top: 57px;
}

.boost-hosting-right .boost-hosting-img {
    width: 343px;
    height: 557px;
}

.boost-hosting-right .boost-hosting-img img {
    object-fit: contain;
}

@media(min-width: 768px) {
    .boost-hosting-wrapper {
        background-color: #EDF8FE;
    }

    .boost-hosting {
        margin-top: 0;
        padding: 96px 112px;
    }
}

@media(min-width: 1200px) {
    .boost-hosting-right .boost-hosting-img {
        margin-left: 138px;
    }
}

/* Core features */
.core-feature {
    margin-top: 64px;
    padding: 0 16px;
}

.core-feature-container {
    row-gap: 36px;
}

.core-feature-head {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 10px;
}

.core-feature-head .core-feature-tag {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 100px;
    background-color: #EBF5FD;

    color: #0258F8;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.core-feature-head .core-feature-title {
    padding: 10px;
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 128.571%;
}

.core-feature-head .core-feature-title span {
    color: #0086C9;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.core-feature-content {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.core-feature-item {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 6px;
    border: 1px solid #fff;
    border-radius: 16px;
    background: linear-gradient(140deg, var(--core-feature-item-bg-start) 0%, var(--core-feature-item-bg-end) 125.99%);
    cursor: pointer;
    transition: --core-feature-item-bg-start 0.4s ease-in-out, --core-feature-item-bg-end 0.4s ease-in-out;
}

.core-feature-item.active-item,
.core-feature-item:hover {
    border: 1px solid #2E90FA;
    --core-feature-item-bg-start: #0086C9;
    --core-feature-item-bg-end: #004263;
}

.core-feature-item-icon {
    width: 44px;
    height: 44px;
}

.core-feature-item-icon img {
    object-fit: contain;
}

.core-feature-item-title {
    color: #000;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 136.364%;
    transition: all 0.4s ease-in-out;
}

.core-feature-item.active-item .core-feature-item-title,
.core-feature-item.active-item .core-feature-item-desc {
    color: #F9FAFB;
}

.core-feature-item:hover .core-feature-item-title,
.core-feature-item:hover .core-feature-item-desc {
    color: #F9FAFB;
}

.core-feature-item-desc {
    color: #656565;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
    transition: all 0.4s ease-in-out;
}

@media(min-width: 768px) {
    .core-feature-wrapper {
        background: linear-gradient(180deg, #EDF8FE 0%, #FFF 22.16%);
    }

    .core-feature {
        margin-top: 0;
        padding: 96px 112px;
    }

    .core-feature-head .core-feature-tag {
        margin: 0 auto;
    }

    .core-feature-head .core-feature-title,
	.core-feature-head .core-feature-title span
	{
        font-size: 48px;
        line-height: 133.333%;
    }

    .core-feature-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .core-feature-content .core-feature-item {
        width: calc((100% - 1 * 30px) / 2);
        padding: 29px 30px;
    }
}

@media(min-width: 1200px) {
    .core-feature-content .core-feature-item {
        width: calc((100% - 2 * 30px) / 3);
    }
}

/* CI/CD Integration */
.cicd-wrapper {
    margin-bottom: 400px;
}

.cicd-section {
    margin-top: 64px;
    padding: 64px 16px;
    background: linear-gradient(180deg, #EDF8FE 0%, #FFF 56.31%);
}

.cicd-container {
    row-gap: 16px;
}

.cicd-head {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    margin-bottom: calc(51px - 16px);
}

.cicd-head-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cicd-tag {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 100px;
    background-color: #E0F2FE;

    color: #0258F8;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 142.857%;
}

.cicd-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 142.857%;
    background: radial-gradient(100% 65% at 50% 50%, #000 30%, rgba(0, 0, 0, 0.40) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cicd-desc {
    color: var(--Neutral-80);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.cicd-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    row-gap: 32px;
    border-radius: 24px;
    border: 1px solid #F2F4F7;
    background: #F9FAFB;
    transition: all 0.4s ease-in-out;
}

.cicd-item.active-item {
    border: 1px solid #2E90FA;
    background: var(--Blue-light-600, #0086C9);
}

.cicd-item-icon {
    width: 112px;
    height: 112px;
    padding: 16px;
    border-radius: 112px;
    background-color: #F2F4F7;
}

.cicd-item-icon img {
    object-fit: contain;
}

.cicd-item-info {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.cicd-item-title {
    color: var(--Neutral-100);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.28px;
    transition: all 0.4s ease-in-out;
}

.cicd-item-desc {
    color: var(--Neutral-80, #7E8492);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 177.778%;
    transition: all 0.4s ease-in-out;
}

.cicd-item.active-item .cicd-item-title,
.cicd-item.active-item .cicd-item-desc,
.cicd-item.active-item .cicd-item-cta a>div>span {
    color: #F2F4F7;
}

.cicd-item .cicd-item-cta a>div>span {
    text-transform: uppercase;
}

.cicd-item:hover .cicd-item-title,
.cicd-item:hover .cicd-item-desc,
.cicd-item:hover .cicd-item-cta a>div>span {
    color: #F2F4F7;
}

.cicd-item-cta a {
    text-decoration: none;
}

.cicd-item-cta a>div {
    padding: 12px 0;
    column-gap: 16px;
}

.cicd-item-cta a>div>span {
    color: #0086C9;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    transition: all 0.4s ease-in-out;
}

.cicd-item-cta .explore-icon {
    width: 40px;
    height: 40px;
}

@media (min-width: 768px) {
    .cicd-wrapper {
        margin-bottom: 297px;
    }

    .cicd-section {
        margin-top: 0;
        padding: 96px 112px 192px;
        background: #fff;
    }

    .cicd-container {
        row-gap: 56px;
        column-gap: 50px;
    }

    .cicd-head,
    .cicd-item {
        width: calc(50% - 25px);
    }
}

/* ===================  Work & QA Management =================== */
.qa-management-wrapper {
    background: radial-gradient(74.1% 42.02% at 50% 45.41%, #E1F7FF 0%, #FAFAFA 100%);
}

.qa-management-section {
    padding-top: 96px;
    padding-bottom: 96px;

}

.qa-management-container {
    row-gap: 64px;
}

.qa-management-head {
    padding: 0 32px;
    row-gap: 24px;
}

.qa-management-title {
    color: #000;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
}

.qa-management-head .title-highlight {
    color: #0BA5EC;
}

.qa-management-desc {
    color: #475467;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.tab-container {
    column-gap: 64px;
    align-items: center;
}

.tab {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab-container .tab-item {
    display: flex;
    column-gap: 16px;
    padding: 16px;
    align-items: center;
}

.tab-container .tab-item:hover {
    cursor: pointer;
}

.tab-item .tab-icon {
    width: 32px;
    height: 32px;
}

.tab-item .tab-icon img {
    object-fit: contain;
}

.tab-item .tab-title {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    position: relative;
    flex-grow: 1;
}

.tab-item .tab-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #EFEFEF 0%,
            #35AFF4 51%,
            #EFEFEF 100%);
}

.tab-item .tab-title .tab-title-num {
    color: var(--Blue-600, #1570EF);
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.24px;
}

.tab-item .tab-title .tab-title-text {
    color: var(--Black, #000);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

/* Tab item active */
.tab-container .tab-item.active {
    padding: 12px 18px;
    column-gap: 16px;
    border-radius: 16px;
    background: linear-gradient(94deg, #0DA8FF 0%, #005096 100.98%);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
}

.tab-item.active .tab-title {
    row-gap: 4px;
}

.tab-item.active .tab-title::after {
    content: none;
}

.tab-item.active .tab-title .tab-title-num,
.tab-item.active .tab-title .tab-title-text {
    color: #FFFFFF;
}

/* End tab item active */

.tab-container .content {
    flex-grow: 1;
}

.tab-container .content .content-item {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.content-item .item-img {
    width: 100%;
    height: auto;
}

.content-item .item-desc {
    width: 100%;
    color: var(--Neutral-400, #5A6475);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .tab-container {
        margin: 0;
        width: 100%;
    }

    .tab {
        padding-left: 0;
    }

    .content {
        padding-right: 0;
    }

    .content-item .item-desc {
        max-width: 680px;
    }

    .tab-container .tab-item,
    .tab-item .tab-title,
    .tab-item .tab-title .tab-title-num,
    .tab-item .tab-title .tab-title-text,
    .tab-item.active .tab-title::after {
        transition: all 0.4s ease-in-out;
    }
}

@media (max-width: 1200px) {
    .qa-management-section {
        background: radial-gradient(74.1% 42.02% at 50% 45.41%, #E1F7FF 0%, #FAFAFA 100%);
    }

    .qa-management-head {
        padding: 0 16px;
        row-gap: 16px;
    }

    .qa-management-title {
        font-size: 28px;
        line-height: 142.857%;
    }

    .qa-management-desc {
        font-size: 16px;
        line-height: 175%;
    }

    .tab-container {
        row-gap: 32px;
    }

    .tab {
        flex-shrink: 1;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .tab-container .tab-item,
    .tab-container .tab-item.active {
        flex-shrink: 1;
        padding: 0;
    }

    .tab-item .tab-title {
        display: none;
    }

    .content-item .item-desc {
        font-size: 16px;
        line-height: 200%;
    }
}

/* Benefits */
.benefit-item {
    background: #F9FAFB;
    transition: background-color 0.4s ease-in-out;
}

.benefit-item.active-item,
.benefit-item:hover {
    background: var(--Blue-light-500, #0BA5EC);
}

.benefit-item .core-feature-item-icon {
    padding: 11px;
    border-radius: 100px;
    background: #E0F2FE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item.active-item .core-feature-item-icon,
.benefit-item:hover .core-feature-item-icon {
    background: #fff;
}

@media (min-width: 768px) {
    .benefit-item {
        row-gap: 17px;
    }
}