body {
    font-family: 'Poppins', sans-serif;
}

.navbar-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out;
    background: transparent;
}

.navbar-area.sticky {
    background: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
}

.navbar-area a {
    color: #fff;
}

.navbar-area.sticky a:not(.main-btn) {
    color: #3a424e;
}

.navbar-brand-text {
    color: #fff;
    transition: color 0.3s ease-out;
}

.navbar-area.sticky .navbar-brand-text {
    color: #1f2937;
}

.brand-subtitle {
    color: #fde047;
    transition: color 0.3s ease-out;
}

.navbar-area.sticky .brand-subtitle {
    color: #3698ee;
}

.navbar-area.sticky #mobile-menu-btn {
    color: #1f2937;
}

#mobile-menu a.mobile-link {
    color: #fff !important;
}

.gradient-text {
    color: #6a11cb;
}

.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0 25px;
    font-size: 16px;
    line-height: 48px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-out 0s;
    background: #3698ee;
    border: none;
}

.main-btn:hover {
    box-shadow: 0 10px 30px rgba(54, 152, 238, 0.4);
}

.main-btn-2 {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.main-btn-2:hover {
    background: #fff;
    color: #6a11cb;
    border-color: #fff;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.pattern-dots {
    background-image: radial-gradient(circle, rgba(106, 17, 203, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.footer-social li a {
    height: 40px;
    width: 40px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    line-height: 38px;
    text-align: center;
    transition: all 0.3s;
}

.footer-social li a:hover {
    background: #fff;
    color: #6a11cb;
}