:root {
    /* --primary: #32C36C; */
    --primary: #0D6EFD;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
}

a {
    text-decoration: none;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 9999;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

@media (max-width: 480px) {
    .offcanvas.offcanvas-start {
        width: 75vw !important;
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/

.dropdown-toggle.hidden-arrow::after {
    display: none !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--bs-primary) !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    color: var(--bs-primary) !important;
    background-color: transparent !important; /* remove gray background */
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    transform: translateY(-12px)
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.hero {
    /*background: linear-gradient(135deg, #007bff, #6610f2);*/
    background: linear-gradient(135deg, #0f172a 0%, rgba(37,99,235,0.9) 40%, rgba(6,182,212,0.9) 100%);
    position: relative;
    min-height: 100vh;
}

.hero .kicker {
    background: rgba(255,255,255,0.08);
    padding: .35rem .65rem;
    border-radius: 999px;
    display:inline-block;
    font-weight:600;
    margin-bottom: .9rem;
    color: rgba(255,255,255,0.95);
}

.pricing-card {
    border: none;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}