/*----------------------------------------------
*
* [Font Import]
*
* Poppins : https://fonts.google.com
*
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Poppins", sans-serif !important;
    background-color: #f4f4f4;
    color: #333; 
}

/* CUSTOM */
a:not(.btn), a:link:not(.btn), a:visited:not(.btn), a:hover:not(.btn), a:active:not(.btn) {
    text-decoration: none;
    transition: all 0.4sease-out 0s;
}
.fw-600 {
    font-weight: 600 !important;
}
hr {
    opacity: .08 !important;
}
.cursor {
    cursor: pointer !important;
}
.text-blue {
    color: #22418D !important;
}
.text-yellow {
    color: #f7941d !important;
}
.bg-light-blue {
    background-color: #f6f4fe !important;
}

/* HEADER */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent; 
    padding: 10px 0;
    transition: background-color 0.3s ease-in-out;
    z-index: 1000;
}
.scrolled {
    background-color: #000;
    padding: 0;
}
.scrolled img {
    width: 115px;
}


@media (max-width: 768px) {
    .navbar-brand img {
        width: 110px;
    }
}
nav ul {
    list-style-type: none;
    text-align: left;
}
nav ul li {
    display: inline;
    margin: 0 20px;
}
nav ul li a {
    color: white !important;
    text-decoration: none;
}
nav ul li a:hover {
    color: #f7941d !important;
}


/* BODY */
.content {
    text-align: center;
    padding: 50px;
} 

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        transform: translateY(100vh);
    }
}

@keyframes diagonal-fall {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
        transform: translate(10vw, 100vh);
    }
}




/* MAIN CONTENT */
.top-banner-bg {
    position: relative;
    /* background-image: url(../images/herobg.png); */
    background: linear-gradient(-47deg, #1f43e7 0%, #0a048a 50%);
    padding-top: 150px;
    padding-bottom: 250px;
    height: 100vh;
}
.banner-bg {
    position: relative;
    /* background-image: url(../images/herobg.png); */
    background: linear-gradient(-47deg, #1f43e7 0%, #0a048a 80%);
    padding-top: 150px;
    padding-bottom: 250px;
    /* height: 100vh; */
}
.banner-bg::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 180px;
    width: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/b-shapeup.webp);
}
.welcome-message {
    font-size: 3.1rem;
    white-space: nowrap;
    overflow: hidden;
    line-height: 90px;
    border-right: 4px solid white;
    animation: typing 4s steps(20) 1s 1 normal both, blink 0.75s step-end infinite;
 }
 @media (max-width: 768px) {
    .welcome-message {
        font-size: 1.2rem;
    }
    .banner-text h5 {
        font-size: 0.9rem;
    }
 }

 @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }


/* CHALLENGES */
.c-content {
    background-repeat: no-repeat;
    padding: 50px 40px;
    background-image: url(../images/challenges/challenges-shape.png);
    background-size: contain;
    background-position: center center;
}
.c-icon {
    /* height: 100px;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #FFF;
    box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.08);
    margin-top: -50px;
    transform: translateY(-35px); */
}
@media (max-width: 768px) {
    .c-content {
        padding: 0;
        background-image: none;
    }
    .c-content img {
        width: 45px;
    }
    .c-content h5 {
        font-size: 1rem;
    }
 }


/* SOLUTIONS */
.solutions-bg {
background-image: url(../images/solutions-bg.png);
background-position: 50%;
background-repeat: no-repeat;
background-size: cover;
padding: 100px 0 120px 0;
}
.solutions-bg .container {
    max-width: 1170px;
}
.solutions-bg h1 {
    font-size: 3.1rem;
}

.solutions-img ul li:first-child {
    left: 3%;
    top: 50%;
}
.solutions-img ul li:nth-child(2) {
    left: 20%;
    top: 15%;
}
.solutions-img ul li:nth-child(3) {
    right: 20%;
    top: 15%;
}
.solutions-img ul li:nth-child(4) {
    right: 3%;
    top: 58%;
}
.solutions-img ul li:nth-child(5) {
    left: 20%;
    bottom: 15%;
}
.solutions-img ul li:nth-child(6) {
    left: 24%;
    top: 40%;
}
.solutions-img ul li:nth-child(7) {
    right: 40%;
    top: 25%;
}
.solutions-img ul li:nth-child(8) {
    right: 20%;
    top: 45%;
}
.solutions-img ul li:nth-child(9) {
    right: 20%;
    bottom: 10%;
}
@media (max-width: 992px) {
    .solutions-img ul {
        text-align: center;
    }
    .solutions-img ul li {
        left: 0 !important;
        top: 0 !important;
        right: 0;
    }
    .solutions-img ul li {
        position: relative !important;
        margin: 0 15px 30px;
        vertical-align: middle;
    }
}

.solutions-img ul li {
    position: absolute;
}
.solutions-img ul li:first-child .solutions-info, .solutions-img ul li:nth-child(2) .solutions-info, .solutions-img ul li:nth-child(3) .solutions-info, .solutions-img ul li:nth-child(4) .solutions-info {
    height: 140px;
    width: 140px;
}
.solutions-circle ul li .solutions-info {
    text-align: center;
    height: 150px;
    border-radius: 100%;
    background: #fff;
    width: 150px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.solutions-info .s-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #222 !important;
}
.solutions-circle .dot-circle, .solutions-circle .effect-circle {
    border-radius: 100%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid #fff;
    opacity: .5;
}
.solutions-circle .dot-circle {
    height: 950px;
    width: 950px;
    top: 10%;
}
@media (max-width: 1133px) {
    .solutions-circle .dot-circle {
        height: 800px;
        width: 800px;
    }
}
.solutions-circle .effect-circle {
    height: 600px;
    width: 600px;
    top: 20%;
}
@media (max-width: 1133px) {
    .solutions-circle .effect-circle {
        height: 500px;
        width: 500px;
    }
}
.solutions-circle .main-circle {
    margin: 0 auto;
    text-align: center;
}
.solutions-circle .main-circle img.fancy-list-img {
    margin-top: 25%;
}
@media (max-width: 1199px) {
    .solutions-circle .main-circle img.fancy-list-img {
        max-width: 30%;
    }
}
@media (max-width: 992px) {
    .solutions-circle .dot-circle {
        display: none;
    }
    .solutions-circle .main-circle {
        display: none;
    }
}

.solutions-img .list-inline-item .dropdown-menu {
    min-width: 22rem !important;
    border-bottom: 4px solid #f7941d;
    box-shadow: 0 0px 35px 2px rgba(19,160,251,.65);
    margin-left: 25px !important;
    transform: scale(0.9) translateY(-20px) rotate(-5deg);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.solutions-img .list-inline-item .cursor .solutions-info{
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.solutions-img .list-inline-item .cursor.show .solutions-info {
    border: 4px solid #f7941d;
    box-shadow: 0 0px 20px 3px rgba(19,160,251,.75);
    transform: scale(1.2);
}
.list-inline-item a {
    position: relative;
    z-index: 9;
}
.arrow-right {
    position: absolute;
    left: -100px;
    top: -55px;
}
@media (max-width: 768px) {
    .solutions-img .list-inline-item .dropdown-menu.show {
        transform: scale(1) translateY(0) rotate(0) !important;
        margin-top: 130px !important;
        min-width: 19rem !important;
    }
    .solutions-img .list-inline-item .cursor.show .solutions-info {
        box-shadow: 0 0px 10px 3px rgba(19,160,251,.75) !important;
        transform: none !important;
    }
    .arrow-right {
        left: -75px;
        top: -40px;
        width: 90px;
    }
}



/* COUNTER */
.bg-stats {
    background: linear-gradient(-47deg, #1f43e7 0%, #0a048a 90%);
    text-align: center;
}
.milestone-counter {
    float: left;
    margin: 25px; 
    position: relative;
}
.milestone-counter img {
    position: absolute;
    left: -70px;
    top: 45px;
    opacity: 0.6;
}
.milestone-counter span, .milestone-counter h5 {
    position: relative;
}
.stat-count {
   font-size: 55px;
}
@media (max-width: 992px) {
    .milestone-counter {
        float: none;
    }
    .milestone-counter img {
        left: -40px !important;
        top: 30px !important;
        width: 75px;
    }
    .stat-count {
        font-size: 32px;
    }
    .milestone-counter h5 {
        font-size: 0.9rem;
    }
}

.apps-img {
    animation: mobileBounce 4s ease-in-out infinite;
}
@keyframes mobileBounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
}


.height-emulator {
    float: left;
    height: 540px;
}




/* FOOTER */
@media (min-width: 992px) {
    .footer-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #FFF;
        z-index: -1;
    }
}
.footer-items p {
    font-size: 0.98rem;
    line-height: 1.6;
}
.footer-items .nav-item a.nav-link {
    display: inline-block;
    padding: 0.5rem 0;
    color: #121117;
    font-weight: 500;
}
.footer-items .nav-item a.nav-link:hover {
    color: #f7941d;
}
.social-icons a {
    color: #444;
}
.social-icons a:hover {
    color: #f7941d;
}
#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f7941d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px; height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: none; 
    z-index: 1000; 
}

#goToTopBtn:hover {
    background-color: #222;
}
