/* Stats divider */
.divider {
    background-color: var(--mid-dark-blue) !important;
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    opacity: .25;
}

/* button */
.primary-btn {
    background: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--white);
    cursor: pointer;
    text-transform: capitalize;
    box-shadow: var(--box-shadow);
    white-space: nowrap;
    transition: 0.4s all ease-in-out;
    font-family: var(--font-family-primary);
    display: inline-block;
    font-weight: 700;
    font-size: 1.0rem;
}

.primary-btn:hover {
    background: var(--light-green);
    border: 1px solid var(--light-green) !important;
    font-size: 1.0.1rem !important;
}

/**** Header ****/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/**** HERO ****/
.hero-wrapper {
    background-color: var(--darkest-blue) !important;
    background-size: cover;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
}


/**** STATS ****/
.stats-placeholder {
    height: 100px;
}

.stats-wrapper {
    margin-top: -60px;
}

.stats-wrapper {
    margin-top: -80px;
    z-index: 2;
}

.stats-container {
    background: var(--card-bg) !important;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: var(--box-shadow-mid) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-container h2 {
    margin-bottom: 0px;
    font-weight: 700;
}

.stats-container span {
    color: var(--lightest-blue);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
}

/* Hero */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 980px;
    padding-top: 0;
}

.hero-content button a {
    color: var(--white);
    text-decoration: none;
}

.hero-wrapper .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/**** BUSINESS CHALLENGES ****/
.business-challenges {
    background: var(--card-bg);
    color: var(--white);
    text-align: center;
}

.card.challenges {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    transition: background-color 0.5s ease, transform 0.3s ease;
    background: var(--darker-blue);
    border: 0;
}


.card.challenges::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background-image 0.5s ease;
}

.card.challenges::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--darkest-blue);
    z-index: 0;
    transition: background-color 0.5s ease;
}

.card.challenges * {
    position: relative;
    z-index: 2;
}


/**** QUOTE ****/
.quote {
    background-color: #E1EDFF;
    padding: 60px 100px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    position: relative;
}

.quote-symbol {
    font-size: 3rem;
    font-family: serif;
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.left-quote {
    top: -10px;
    left: 0px;
}

.right-quote {
    bottom: -10px;
    right: 0px;
}

.dots-left,
.dots-right {
    position: absolute;
    z-index: 0;
    width: 300px;
    height: auto;
}

.dots-left {
    bottom: -40px;
    left: 0;
}

.dots-right {
    bottom: -40px;
    right: 0;
}


/**** SOLUTION HIGHLIGHTS ****/
.solutions {
    position: relative !important;
    overflow: hidden;
}

.solutions .row {
    position: relative;
    z-index: 1;
}

.solutions-card {
    
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    transition: background-color 0.9s ease, transform 0.9s ease;
    background: var(--dark-blue);
    border: 0;
    }

.solutions-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
    transition: background-image 0.9s ease;
}

.solutions-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--darker-blue);
    z-index: 0;
    transition: background-color 0.9s ease;
}

.solutions-card * {
    position: relative;
    z-index: 2;
}

/* Technologies */
.technologies-used .technologies-used-section {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #dbdbdb;
    padding: 40px 30px 40px;
}

.technologies-used .section-header h3 {
    color: #c5273c;
    font-size: 30px;
    font-weight: 600;
}

.technologies-used ul li {
    background: #fff4f4;
    padding: 10px;
    flex-flow: column;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 11px solid #fff;
    border-radius: 20px;
}

.technologies-used ul li img {
    width: 130px;
}

.tech-list .technologies-used-section {
    padding: 40px;
}

.tech-list .technologies-used-section .last-section {
    padding-top: 30px;
}

.tech-list .technologies-used-section h3 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

/**** RESULTS ****/
.results {
    background-color: var(--light-blue);
}

.results-list img.check-icon {
    width: 20px;
    margin-top: 10px;
    margin-right: 10px;
}