:root {
    --bs-primary-rgb: 10, 171, 251;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}

.header .navbar {
    background-color: #030e2a;
}

.navbar-brand {
    max-width: 200px;
    height: auto;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

.nav-link {
    color: white;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 30px 0;
    top: 50px;
}

.hero-section-bg {
    opacity: .1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.hero-section-gradient {
    opacity: 0.1;
    background-image: linear-gradient(135deg, hsl(221 83% 53%) 0%, hsl(269 100% 67%) 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-section-content {
    z-index: 1;
}

.hero-section-content li svg {
    margin-right: 10px;
}

.hero-section-animate-float {
    position: relative;
}

.hero-section-animate-1 {
    opacity: .2;
    border-radius: 9999px;
    width: 24rem;
    height: 24rem;
    background-image: linear-gradient(135deg, hsl(221 83% 53%), hsl(221 83% 65%));
    filter: blur(64px);
}

.hero-section-animate-2 {
    filter: blur(40px);
    width: 20rem;
    height: 20rem;
    opacity: 0.3;
    top: 2.5rem;
    border-radius: 9999px;
    left: 2.5rem;
    position: absolute;
    background-image: linear-gradient(135deg, hsl(221 83% 53%) 0%, hsl(269 100% 67%) 100%);
}

.hero-section-animate-3 {
    position: absolute;
    opacity: 0.4;
    background-color: hsl(269 100% 67%);
    border-radius: 9999px;
    width: 16rem;
    height: 16rem;
    top: 5rem;
    left: 5rem;
    filter: blur(24px);
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.why-choose-icon {
    border-radius: 0.5rem;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(135deg, hsl(221 83% 53%) 0%, hsl(269 100% 67%) 100%);
    color: white;
}


.about-box-shadow,
.our-services-box {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
}

.about-box-shadow:hover,
.our-services-box:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 40px -12px hsl(221 83% 53% / .15) !important;
}

.our-services-box:hover svg {
    transform: scale(1.1);
}

.our-services-box:hover h5 {
    color: rgba(var(--bs-primary-rgb),1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}