﻿/********** Template CSS **********/
:root {
    --primary: #F3525A;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #152440;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 36, 64, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .35s;
    padding: 40px 30px;
    min-height: 260px;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}
    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

.card {
    transition: all .3s ease;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12) !important;
    }

    .card i {
        transition: .3s;
    }

    .card:hover i {
        transform: scale(1.15);
    }

.p-3 .display-1 {
    font-size: 3rem !important;
}

.trust-item {
    padding: 30px 20px;
    transition: all .3s ease;
    border-radius: 10px;
}

    .trust-item:hover {
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        transform: translateY(-5px);
    }

.trust-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.trust-item h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.7;
}

.industries-section {
    background: #fff;
    padding: 80px 0;
}

    .industries-section h2 {
        font-size: 42px;
        font-weight: 700;
        color: #0d1b3d;
    }

.industry-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: .3s;
    height: 100%;
}

    .industry-box i {
        font-size: 48px;
        color: #ff4d5a;
        margin-bottom: 20px;
    }

    .industry-box h5 {
        font-weight: 700;
        color: #0d1b3d;
        margin-bottom: 15px;
    }

    .industry-box p {
        color: #666;
        font-size: 15px;
        line-height: 1.8;
    }

    .industry-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
        border-color: #ff4d5a;
    }

.process-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: #0d1b3d;
}

.section-subtitle {
    color: #6c757d;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.process-item {
    position: relative;
    padding: 20px;
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #ff4d5a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    transition: .3s;
}

.process-item h5 {
    margin-top: 25px;
    font-weight: 700;
    color: #0d1b3d;
}

.process-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.process-item:hover .process-icon {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255,77,90,.35);
}

/* Arrow between steps */
.process-item:not(:last-child)::after {
    content: "➜";
    position: absolute;
    top: 45px;
    right: -12px;
    color: #ff4d5a;
    font-size: 26px;
    font-weight: bold;
}

@media(max-width:991px) {

    .process-item:not(:last-child)::after {
        display: none;
    }
}


.ecosystem {
    position: relative;
    width: 900px;
    max-width: 100%;
    height: 650px;
    margin: auto;
}

.center-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ff4d5a;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255,77,90,.35);
}

    .center-box i {
        font-size: 55px;
        margin-bottom: 15px;
    }

.node {
    position: absolute;
    width: 180px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: .3s;
}

    .node:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,.1);
    }

    .node i {
        font-size: 38px;
        color: #ff4d5a;
        margin-bottom: 15px;
    }

.top-left {
    left: 0;
    top: 40px;
}

.top {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.top-right {
    right: 0;
    top: 40px;
}

.bottom-left {
    left: 0;
    bottom: 40px;
}

.bottom {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.bottom-right {
    right: 0;
    bottom: 40px;
}

/* Connection Lines */

.ecosystem:before,
.ecosystem:after {
    content: "";
}

.node::before {
    content: "";
    position: absolute;
    background: #ddd;
}

/* top-left */
.top-left::before {
    width: 120px;
    height: 2px;
    right: -120px;
    top: 50%;
}

/* top */
.top::before {
    width: 2px;
    height: 130px;
    bottom: -130px;
    left: 50%;
}

/* top-right */
.top-right::before {
    width: 120px;
    height: 2px;
    left: -120px;
    top: 50%;
}

/* bottom-left */
.bottom-left::before {
    width: 120px;
    height: 2px;
    right: -120px;
    top: 50%;
}

/* bottom */
.bottom::before {
    width: 2px;
    height: 130px;
    top: -130px;
    left: 50%;
}

/* bottom-right */
.bottom-right::before {
    width: 120px;
    height: 2px;
    left: -120px;
    top: 50%;
}

@media(max-width:991px) {

    .ecosystem {
        height: auto;
    }

    .center-box,
    .node {
        position: static;
        transform: none !important;
        width: 100%;
        margin-bottom: 20px;
    }

        .node::before {
            display: none;
        }
}


.tech-item {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #1d2d50;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

    .tech-item:hover {
        background: #ff4d5a;
        color: #fff;
        border-color: #ff4d5a;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255,77,90,.25);
    }

        .tech-item:hover i {
            color: #fff !important;
        }



.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 25px;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    height: 100%;
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

    .stat-card h2 {
        font-size: 48px;
        font-weight: 700;
    }

    .stat-card h5 {
        color: #13294B;
        margin: 15px 0;
    }

    .stat-card p {
        font-size: 15px;
    }



/* Hero Title */
.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.35;
    }
}