@media only screen and (max-width:600px) {
    .navbar-collapse {
        position: absolute;
        top: 112px;
        background: #fff;
        width: 100%
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 .2rem
    }

    .navbar-nav .nav-link {
        padding: 10px 15px
    }

    .nav-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap !important;
        justify-content: center !important
    }
    .instruction-step {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        flex-direction: column;
        flex-wrap: wrap;
    }
}
body{
    overflow-x: hidden;
}
.container {
    max-width: 90%
}
.nav-link {
    color: #0fa391;
    font-weight: 400;
    padding: 10px 0;
    font-size: 1.2em
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1
}

.hero-section .container {
    position: relative;
    z-index: 2
}

.hero-section h1 {
    color: #1a1a40;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5)
}

.hero-section p {
    line-height: 2em;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5)
}

.hero-section .btn {
    font-size: 1.2rem;
    padding: 12px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform .2s
}

.hero-section .btn:hover {
    transform: translateY(-2px)
}

.feature-card {
    transition: transform .3s;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1)
}

.feature-card:hover {
    transform: translateY(-5px)
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 15px 0
}

.footer {
    background: linear-gradient(320deg, #0fa391 0, #171785 100%);
    color: white;
    padding: 40px 0
}

.contact-icon {
    font-size: 2rem;
    color: #0fa391;
    margin-bottom: 1rem
}

.btn-primary {
    background-color: #0fa391 !important;
    border-color: #0fa391 !important
}

.btn-primary:hover {
    background-color: #0fa391 !important;
    border-color: #0fa391 !important
}

.text-primary {
    color: #0fa391 !important
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600
}

.nav-link {
    font-weight: 500
}

.feature-card .card-title {
    color: #0fa391;
    font-weight: bold;
    font-size: 1.4rem
}

.feature-card .card-text {
    color: #6e6b7b
}

.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:url("../../app-assets/images/banner.jpg");
}

.bg-pattern {
    position: relative
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230fa391' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1
}

.shape {
    position: absolute;
    background: rgba(115, 103, 240, 0.1);
    border-radius: 50%
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: 10%;
    animation: float 8s infinite
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: -50px;
    right: 15%;
    animation: float 6s infinite
}

.shape-3 {
    width: 75px;
    height: 75px;
    bottom: 20%;
    left: 5%;
    animation: float 7s infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-20px) rotate(10deg)
    }
}

.feature-card {
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(115, 103, 240, 0.1) 0, rgba(115, 103, 240, 0) 70%);
    transform: rotate(45deg);
    z-index: 0
}

.feature-card .card-body {
    position: relative;
    z-index: 1
}

.contact-section {
    position: relative;
    overflow: hidden
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 36px;
    background: url('../../app-assets/images/bg-bottom.png');
    bottom: 0
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 36px;
    background: url('../../app-assets/images/bg-top.png');
    top: -10px
}

.stats-section {
    background: linear-gradient(320deg, #0fa391 0, #171785 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px)
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px
}

.stat-label {
    font-size: 1.1rem;
    opacity: .9
}

.header-navbar.fixed-top,
.header-navbar.floating-nav {
    left: 0 !important
}

.main-logo {
    width: 75px;
    height: 75px;
    margin-right: 10px
}

.main-title {
    color: #1a1a40;
    font-size: 1.6em;
    font-weight: bold
}

.sub-title {
    color: #0fa391;
    font-size: .9em
}

.list-unstyled li {
    padding: 10px
}

.icon-box img {
    width: 100px;
    height: 100px
}

.feature-card .card-body {
    padding: 1.5rem 0 0
}

.feature-title {
    color: #1a1a40;
    font-size: 1.8rem;
    font-weight: bold;
    padding-bottom: 10px
}

.stat-card i {
    font-size: 4em
}