:root {
    --page-primary-bg: #F8F7F6;
    --page-secondary-bg: #090F1D;
    --text-color: #0B0C0D;
    --text-light: #ACACAC;
}

body p {
    color: #3F4751;
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.text-color {
    color: var(--text-color);
}

.text-light {
    color: var(--text-light) !important;
}

.btn-width {
    max-width: fit-content;
}

.button-primary {
    border-radius: unset;
}

.circle-icon {
    border: none;
}

.link-wrapper {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.link-wrapper path {
    fill: var(--text-color);
    transition: all 0.3s;
}

.bordered-card:hover .link-wrapper,
.bordered-card:hover path {
    color: var(--primary-color-600);
    fill: var(--primary-color-600);
    transition: all 0.3s;
}

/* Hero Section */

/* Service Wrap */

.bordered-card {
    padding: 30px 30px;
    border: 1px solid #00000029;
}

.img-wrap {
    width: 100%;
    max-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 26px;
}

/* Enterprise */

.indus-intro {
    background-image: url('../images/enterprise-images/mobile-app-dot-shape.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.industry-card {
    padding: 20px 20px;
    background: #e9ddff;
    border-radius: 8px;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.indus-img {
    width: 100%;
    max-width: 56px;
    transition: all 0.3s;
}

.industry-card:hover .indus-img {
    transform: rotateY(360deg);
    transition-duration: 1s;
}

.industry-card.induscrd-2 {
    background: #ffdadb;
}

.industry-card.induscrd-3 {
    background: #d6edff;
}

.industry-card.induscrd-4 {
    background: #ffede1;
}
/* Process Wrapper */

.process-intro {
    background-color: var(--page-secondary-bg);
}

.process-intro .bordered-card {
    border-color: #ffffff20;
}

.process-card {
    border-right: 1px solid #ddd;
    padding: 30px 20px;
}

.border-0 {
    border: unset;
}

.revenue-wrapper {
    background-color: var(--page-primary-bg);
}

.revenue-icon-wrapper {
    display: flex;
    align-items: center;
    padding: 40px 30px;
    border: 1px solid #5f719054;
    border-radius: 2px;
    width: 100%;
    gap: 30px;
    position: relative;
    margin: 15px 0;
}

.revenue-icon {
    width: 140px;
    height: 140px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d3eef9;
    padding: 25px 30px;
}

.step-badge {
    background-color: #222E3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    position: absolute;
    inset: -20px auto auto 30px;
    font-size: 14px;
    font-weight: 700;
}

/* award and certification section */

.awards-wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.award-wrap .award-item img {
    aspect-ratio: 1/1;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.1);
}

.awards-certification img {
    scale: 0.9;
    transition: all 0.3s ease;
}

.awards-certification img:hover {
    scale: 1;
}


/* Reponsive Media Query */

@media only screen and (max-width: 1599px) {

}

@media only screen and (max-width: 992px) {

    .bordered-card {
        padding: 20px;
    }

    .process-card {
        border-bottom: 1px solid #ddd !important;
        padding: 20px 20px;
    }

    .industry-card {
        display: flex;
        flex-direction: column;
    }

    .revenue-icon-wrapper {
        padding: 40px 20px 20px;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {

    .awards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-wrapper {
        padding: 20px;
    } 
}
