.accent-background,
.dark-background,
:root {
    --contrast-color: #ffffff
}

.php-email-form .error-message,
.php-email-form .loading,
.php-email-form .sent-message {
    display: none;
    padding: 15px;
    margin-bottom: 24px
}

.header,
body {
    color: var(--default-color);
    background-color: var(--background-color)
}

#footer .credits a,
.btn-read-more-founder,
.hero .btn-get-started,
.lang-switcher a,
.mobile-lang-row a,
.pricing-item .btn-buy,
.pricing-item .btn-read-more,
a,
a:hover {
    text-decoration: none
}

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Roboto", sans-serif;
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #2c4964;
    --accent-color: #ffd415;
    --surface-color: #370445;
    --nav-color: rgba(255, 255, 255, 0.8);
    --nav-hover-color: #bf00ff;
    --nav-mobile-background-color: #1a0525;
    --nav-dropdown-background-color: #1a0525;
    --nav-dropdown-color: #ffffff;
    --nav-dropdown-hover-color: #bf00ff;
    scroll-behavior: smooth
}

.accent-background,
.dark-background,
.header {
    --default-color: #ffffff;
    --heading-color: #ffffff
}

.light-background {
    --background-color: #f9f8ff;
    --surface-color: #ffffff
}

.dark-background {
    --background-color: #060606;
    --surface-color: #202020
}

.accent-background {
    --background-color: #750491;
    --accent-color: #ffffff;
    --surface-color: #370445
}

body {
    
    font-family: var(--default-font)
}

.main-logo {
    max-width: 50%
}

a {
    color: var(--accent-color);
    transition: .3s
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #a30db1;
    font-family: var(--heading-font)
}

.php-email-form .error-message {
    background: #df1529;
    color: #fff;
    text-align: left;
    font-weight: 600
}

.php-email-form .sent-message {
    color: #fff;
    background: #059652;
    text-align: center;
    font-weight: 600
}

.php-email-form .loading {
    background: var(--surface-color);
    text-align: center
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: 1s linear infinite php-email-form-loading
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.header {
    --background-color: rgba(0, 0, 0, 0);
    padding: 20px 0;
    transition: .5s
}

.header .logo {
    line-height: 1
}

.header .logo img {
    max-height: 145px;
    margin-right: 8px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5))
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color)
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    font-size: 14px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: .3s;
    border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%)
}

.header .btn-getstarted:focus:hover,
.header .btn-getstarted:hover {
    color: var(--contrast-color);
    border-color: var(--contrast-color)
}

@media (max-width:1200px) {
    .header .logo {
        order: 1
    }
    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px
    }
    .header .navmenu {
        order: 3
    }
}

.scrolled .header {
    box-shadow: 0 0 18px rgba(0, 0, 0, .1);
    --background-color: rgb(104 9 133)
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }
    .navmenu li {
        position: relative
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px
    }
    .navmenu>ul>li:last-child {
        padding-right: 0
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s;
        position: relative
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0;
        transition: .3s ease-in-out
    }
    .navmenu .active:before,
    .navmenu a:hover:before,
    .navmenu li:hover>a:before {
        visibility: visible;
        width: 100%
    }
    .navmenu .active,
    .navmenu .active:focus,
    .navmenu li:hover>a {
        color: var(--nav-hover-color)
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, .1)
    }
    .navmenu .dropdown ul li {
        min-width: 200px
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color)
    }
    .navmenu .dropdown ul a i {
        font-size: 12px
    }
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color)
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
}

#footer h4,
.mobile-lang-row a,
.pricing-item .btn-read-more,
.pricing-item .period,
.section-title .small-title,
.skill-pill {
    text-transform: uppercase
}

#footer .footer-about .logo span,
.about .content .read-more,
.footer .footer-about p,
.pricing .buy-btn,
.pricing h4,
.stats .stats-item p {
    font-family: var(--heading-font)
}

.footer .social-links a,
.page-title .breadcrumbs ol li+li::before,
.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%)
}

.footer {
    color: var(--default-color);
    background: linear-gradient(45deg, var(--background-color) 0, color-mix(in srgb, var(--surface-color), transparent 10%) 100%), url("../img/footer-bg.jpg") center center no-repeat;
    background-size: cover;
    font-size: 14px;
    padding-bottom: 50px;
    position: relative
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font)
}

.footer .footer-about p {
    font-size: 14px
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    margin-right: 10px;
    transition: .3s
}

.page-title,
.section,
.stats .stats-item span,
section {
    color: var(--default-color)
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color)
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px
}

.footer .footer-links {
    margin-bottom: 30px
}

#footer .footer-links ul,
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0
}

.footer .footer-links ul li,
.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center
}

#footer .footer-links ul li:first-child,
.footer .footer-links ul li:first-child {
    padding-top: 0
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1
}

.about .content ul i,
.faq .faq-container .faq-active h3,
.faq .faq-container .faq-item .faq-toggle:hover,
.faq .faq-container .faq-item h3:hover,
.footer .footer-links ul a:hover,
.portfolio .portfolio-content .portfolio-info h4 a:hover,
.portfolio .portfolio-filters li.filter-active,
.portfolio .portfolio-filters li:hover,
.services .service-item .title a:hover {
    color: var(--accent-color)
}

.about .content .read-more,
.scroll-top i,
.scroll-top:hover,
.services .service-item:hover .icon i {
    color: var(--contrast-color)
}

.footer .footer-contact p {
    margin-bottom: 5px
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%)
}

.about .content p:last-child,
.faq .faq-container .faq-item:last-child,
.footer .copyright p,
.section-title p {
    margin-bottom: 0
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: .6s ease-out
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: 1.5s linear infinite animate-preloader
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: .4s
}

.hero,
.page-title,
.section-title,
.section-title h2 {
    position: relative
}

.scroll-top i {
    font-size: 24px;
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.page-title {
    background: linear-gradient(45deg, var(--background-color) 0, color-mix(in srgb, var(--surface-color), transparent 10%) 100%), url("../img/page-title-bg.jpg") top center no-repeat;
    background-size: cover;
    padding: 160px 0 80px;
    text-align: center
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400
}

.hero,
.skills-visualizer {
    align-items: center;
    display: flex
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px
}

.section,
section {
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip
}

.title-description {
    color: #ffa200
}

.section-title {
    text-align: center;
    padding-bottom: 60px
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

#header {
    transition: .5s;
    background: 0 0 !important;
    border-bottom: 1px solid transparent;
    padding: 20px 0
}

#header .logo,
#header .logo img {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px);
    transition: .5s
}

#header.scrolled-past-hero {
    background: rgba(15, 2, 31, .95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138, 43, 226, .2);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3)
}

#header.scrolled-past-hero .logo,
#header.scrolled-past-hero .logo img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0)
}

.hero {
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(rgba(13, 0, 21, .95), rgba(46, 2, 73, .9)) center/cover no-repeat, url("../img/hero-bg.jpg") center/cover no-repeat
}

.grid-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
    pointer-events: none
}

.grid-box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center
}

.grid-box::before {
    content: "";
    width: 3px;
    height: 3px;
    background-color: rgba(255, 255, 255, .15);
    border-radius: 50%;
    animation: 8s ease-in-out infinite brightRipple;
    animation-delay: var(--delay);
    transition: .3s
}

.grid-box:hover::before {
    animation: none;
    transform: scale(4);
    background-color: #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #bf00ff
}

@keyframes brightRipple {
    0%,
    100% {
        transform: scale(1);
        background-color: rgba(255, 255, 255, .15);
        box-shadow: none
    }
    50% {
        transform: scale(1.5);
        background-color: #e0b0ff;
        box-shadow: 0 0 6px #bf00ff, 0 0 12px rgba(191, 0, 255, .8)
    }
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px
}

.hero p {
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    margin-bottom: 40px
}

.hero .btn-get-started {
    color: #fff;
    border: 2px solid #8a2be2;
    padding: 10px 36px;
    border-radius: 4px;
    display: inline-block;
    transition: .3s
}

.hero .btn-get-started:hover {
    background: #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, .6)
}

.skills-visualizer {
    justify-content: center;
    gap: 15px;
    height: 160px;
    margin-top: 60px
}

.skill-pill {
    background: #fff;
    color: #2e0249;
    width: 90px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    box-shadow: 0 0 15px rgba(255, 255, 255, .2);
    animation: 3s ease-in-out infinite equalizer
}

@keyframes equalizer {
    0%,
    100% {
        height: 60px
    }
    50% {
        height: 130px
    }
}

.skill-pill:first-child {
    animation-duration: 4s;
    animation-delay: 0s
}

.skill-pill:nth-child(2) {
    animation-duration: 2.5s;
    animation-delay: .5s
}

.skill-pill:nth-child(3) {
    animation-duration: 3.2s;
    animation-delay: .2s
}

.skill-pill:nth-child(4) {
    animation-duration: 5s;
    animation-delay: 1s;
    background: #38025c
}

.skill-pill:nth-child(5) {
    animation-duration: 2.8s;
    animation-delay: .7s
}

.skill-pill:nth-child(6) {
    animation-duration: 3.5s;
    animation-delay: .3s
}

@media (max-width:768px) {
    .skills-visualizer {
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
        margin-top: 40px
    }
    .skill-pill {
        width: 70px;
        animation: 3s ease-in-out infinite equalizer-mobile;
        margin-bottom: 10px;
        font-size: 11px
    }
    @keyframes equalizer-mobile {
        0%,
        100% {
            height: 40px
        }
        50% {
            height: 70px
        }
    }
    .skill-pill:first-child {
        animation-duration: 3s;
        animation-delay: 0s
    }
    .skill-pill:nth-child(2) {
        animation-duration: 2.5s;
        animation-delay: .2s
    }
    .skill-pill:nth-child(3) {
        animation-duration: 3.2s;
        animation-delay: .1s
    }
    .skill-pill:nth-child(4) {
        animation-duration: 4s;
        animation-delay: .5s
    }
    .skill-pill:nth-child(5) {
        animation-duration: 2.8s;
        animation-delay: .3s
    }
    .skill-pill:nth-child(6) {
        animation-duration: 3.5s;
        animation-delay: .1s
    }
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700
}

.about .content ul {
    list-style: none;
    padding: 0
}

.about .content ul li {
    padding-bottom: 10px
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px
}

.about .content .read-more {
    background: var(--accent-color);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: .3s
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), #000 20%);
    padding-right: 19px
}

.about .content .read-more:hover i {
    margin-left: 10px
}

.stats {
    position: relative;
    padding: 80px 0;
    background: url("../img/stats-bg.png") center center/cover no-repeat
}

.stats:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 80%);
    position: absolute;
    inset: 0;
    z-index: 2
}

.stats .container {
    position: relative;
    z-index: 3
}

.stats .stats-item {
    padding: 30px;
    width: 100%
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    font-weight: 700
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 40%)
}

.services .service-item {
    position: relative;
    padding-top: 20px
}

.services .service-item .icon {
    width: 72px;
    height: 72px;
    position: relative;
    margin-right: 15px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 32px;
    z-index: 2;
    position: relative
}

.services .service-item .title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px
}

.services .service-item .title a {
    color: var(--heading-color)
}

.services .service-item .description {
    font-size: 14px
}

.features .features-image {
    position: relative;
    min-height: 400px
}

.features .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px
}

.features .features-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0
}

.features .features-item p,
.testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.features .features-item p {
    font-size: 15px;
    margin: 0
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider,
body.card-is-open {
    overflow: hidden
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color)
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px 45px
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 0 45px
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right,
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right,
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1)
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px;
    padding: 20px 20px 60px;
    background: var(--surface-color);
    border-radius: 6px;
    position: relative;
    z-index: 1
}

.portfolio-details .swiper-wrapper,
.testimonials .swiper-wrapper {
    height: auto
}

.portfolio-details .swiper-pagination,
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color)
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active,
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color)
}

.portfolio .portfolio-filters {
    padding: 0 0 20px;
    margin: 0 auto;
    list-style: none;
    text-align: center
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: .3s ease-in-out
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0
}

.portfolio .portfolio-content {
    background-color: var(--surface-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    height: 100%;
    overflow: hidden
}

.portfolio .portfolio-content img {
    transition: .3s;
    position: relative;
    z-index: 1
}

.portfolio .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px
}

.portfolio .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: .3s
}

.portfolio .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1)
}

.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: -13px 20px 20px 9px rgb(24 24 24 / 73%);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border-radius: 20px
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 0
}

.pricing h4 sup {
    font-size: 28px
}

.pricing h4 span {
    font-size: 18px
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, #fff, transparent 30%);
    text-align: left;
    line-height: 20px
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px
}

.pricing ul .na {
    color: color-mix(in srgb, #d2d2d2, transparent 60%)
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%)
}

.portfolio-details .portfolio-info ul strong,
.team .team-member .member-info span,
.team .team-member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 50%)
}

.pricing ul .na span {
    text-decoration: line-through
}

.pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px;
    border-radius: 50px;
    transition: .3s;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--accent-color)
}

.pricing .buy-btn:hover,
.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color)
}

.pricing .featured {
    border-top-color: var(--accent-color)
}

@media (max-width:992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px
    }
}

@media (max-width:767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px
    }
}

@media (max-width:420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px
    }
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s ease-in-out;
    visibility: hidden;
    opacity: 0
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: .3s;
    cursor: pointer
}

.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%)
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color)
}

.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    transition: .3s
}

.contact .info-item,
.contact .php-email-form {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 30px
}

.team .team-member .member-img {
    position: relative;
    overflow: hidden
}

.team .team-member .member-img:after {
    position: absolute;
    content: "";
    left: -1px;
    right: -1px;
    bottom: -1px;
    height: 100%;
    background-color: var(--surface-color);
    -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
    mask: url("../img/team-shape.svg") no-repeat center bottom;
    -webkit-mask-size: contain;
    mask-size: contain;
    z-index: 1
}

.team .team-member .social {
    position: absolute;
    right: -100%;
    top: 30px;
    opacity: 0;
    border-radius: 4px;
    transition: .5s;
    background: color-mix(in srgb, var(--background-color), transparent 60%);
    z-index: 2
}

.team .team-member .social a {
    transition: color .3s;
    margin: 15px 12px;
    display: block;
    line-height: 0;
    text-align: center
}

.team .team-member .social a:hover {
    color: var(--default-color)
}

.team .team-member .social i {
    font-size: 18px
}

.team .team-member .member-info {
    padding: 10px 15px 20px
}

.team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px
}

.team .team-member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400
}

.team .team-member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: color-mix(in srgb, var(--default-color), transparent 30%)
}

.team .team-member:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
}

.team .team-member:hover .social {
    right: 8px;
    opacity: 1
}

.contact .info-item i {
    font-size: 38px;
    line-height: 0;
    color: var(--accent-color)
}

.contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px
}

.contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0
}

.contact .php-email-form {
    height: 100%
}

.contact .php-email-form input[type=email],
.contact .php-email-form input[type=text],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form textarea:focus,
.service-details .services-list a:hover {
    border-color: var(--accent-color)
}

.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%)
}

.contact .php-email-form button[type=submit] {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 10px 30px;
    transition: .4s;
    border-radius: 4px
}

.contact .php-email-form button[type=submit]:hover,
.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
}

.portfolio-details .portfolio-details-slider img {
    width: 100%
}

.portfolio-details .swiper-button-next,
.portfolio-details .swiper-button-prev {
    width: 48px;
    height: 48px
}

.portfolio-details .swiper-button-next:after,
.portfolio-details .swiper-button-prev:after {
    color: rgba(255, 255, 255, .8);
    background-color: rgba(0, 0, 0, .15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.portfolio-details .swiper-button-next:hover:after,
.portfolio-details .swiper-button-prev:hover:after {
    background-color: rgba(0, 0, 0, .3)
}

@media (max-width:575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px
    }
    .portfolio-details .swiper-button-next,
    .portfolio-details .swiper-button-prev {
        display: none
    }
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0
}

.portfolio-details .portfolio-info ul,
.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: .3s
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px
}

.portfolio-details .portfolio-description p {
    padding: 0
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 15px 0 5px;
    padding-top: 20px
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px;
    padding: 0
}

.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: .3s
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color)
}

.service-details .services-img {
    margin-bottom: 20px
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700
}

.service-details p {
    font-size: 15px
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color)
}

.service-item {
    background-color: rgb(59 10 66 / 53%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.service-item:hover {
    background-color: rgba(46, 2, 73, .8) !important;
    transform: translateY(-5px);
    border-color: #bf00ff !important;
    box-shadow: 0 15px 40px rgba(191, 0, 255, .2) !important
}

.service-item .icon i {
    font-size: 32px;
    color: #ffd415 !important;
    margin-bottom: 15px;
    display: block
}

.service-item h3 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: #f4b82d !important
}

.service-item p {
    color: rgba(255, 255, 255, .8) !important;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    flex-grow: 1
}

.service-item .price-tag {
    font-size: 18px;
    font-weight: 700;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 15px
}

.leasing-info {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.leasing-info .setup-text {
    font-size: 15px;
    font-weight: 600;
    color: #bf00ff;
    margin-bottom: 2px
}

.leasing-info .term-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 0
}

.pricing-toggle-container {
    padding: 10px 30px;
    border-radius: 50px;
    transition: .3s
}

.toggle-label {
    cursor: pointer;
    transition: .3s
}

.form-check-input:checked {
    background-color: #bf00ff;
    border-color: #bf00ff
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(191, 0, 255, .25);
    border-color: #bf00ff
}

.form-check-input {
    width: 50px;
    height: 25px
}

.pricing-item .currency,
.pricing-item .price-value,
.pricing-item h4 {
    color: #ffe600 !important;
    font-size: 50px !important;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 230, 0, .3)
}

.pricing-item .currency {
    font-size: 28px !important;
    vertical-align: top;
    position: relative;
    top: 10px
}

.pricing-item .period {
    font-size: 18px !important;
    letter-spacing: 1px;
    display: inline-block !important;
    margin-left: 10px;
    vertical-align: middle
}

.pricing-item .pricing-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px
}

.pricing-item .btn-read-more {
    font-size: 13px;
    padding: 6px 18px;
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    transition: .3s;
    letter-spacing: 1px
}

.pricing-item .btn-read-more:hover {
    border-color: #bf00ff;
    color: #bf00ff;
    background: rgba(191, 0, 255, .1)
}

.pricing-item .btn-buy {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 35px;
    color: #ffe600;
    border: 2px solid #ffe600;
    border-radius: 50px;
    transition: .3s
}

.pricing-item .btn-buy:hover {
    background: #ffe600;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 230, 0, .4)
}

.extra-box {
    padding: 15px 20px;
    border-radius: 12px;
    transition: .3s;
    width: 100%
}

.extra-box:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #bf00ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.extra-icon {
    font-size: 24px;
    color: #bf00ff;
    margin-right: 15px;
    background: rgba(191, 0, 255, .1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.extra-info {
    flex-grow: 1
}

.extra-price {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap
}

.extra-price .small {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    font-weight: 400
}

.section-title .small-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    margin-top: 20px
}

.extra-info h4 {
    color: #2c0b4a !important;
    font-weight: 700;
    font-size: 18px;
    margin: 0
}

.extra-info span {
    display: block;
    color: #555 !important;
    font-size: 14px
}

.extra-box {
    background: #f9f9f9;
    border: 1px solid #eee
}

.founder-img-wrapper {
    position: relative;
    z-index: 1;
    padding: 15px
}

.founder-photo {
    border-radius: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    width: 100%;
    object-fit: cover
}

.founder-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #bf00ff 0, #2c0b4a 100%);
    border-radius: 15px;
    z-index: 1;
    transform: translate(-10px, -10px)
}

.btn-read-more-founder {
    display: inline-block;
    padding: 12px 30px;
    background: #bf00ff;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(191, 0, 255, .3)
}

.btn-read-more-founder:hover {
    background: #2c0b4a;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 20px rgba(191, 0, 255, .5)
}

.social-links-founder a {
    font-size: 24px;
    color: #bf00ff;
    transition: .3s
}

.social-links-founder a:hover {
    color: #2c0b4a;
    transform: scale(1.1)
}

.lang-switcher a:hover,
.small-text-starting-from,
body.portfolio-details-page #header .logo h1,
body.portfolio-details-page #header .navmenu a {
    color: #fff
}

body.portfolio-details-page #header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    background-color: #1a0129 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
    padding: 15px 0
}

#faq .faq-item h3,
body.card-is-open .pricing-item.is-expanded h3,
body.card-is-open .pricing-item.is-expanded h4,
body.card-is-open .pricing-item.is-expanded h5,
body.card-is-open .pricing-item.is-expanded span,
body.card-is-open .pricing-item.is-expanded strong,
body.portfolio-details-page #navmenu a,
body.portfolio-details-page .logo h1,
body.portfolio-details-page .logo i,
body:not(.index-page) #header .logo h1,
body:not(.index-page) #header .navmenu a {
    color: #fff !important
}

body.portfolio-details-page main {
    margin-top: 175px
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 15px;
    vertical-align: middle
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2)
}

input:checked+.slider {
    background-color: #bf00ff
}

input:checked+.slider:before {
    transform: translateX(26px)
}

body:not(.index-page) #header {
    background-color: #1a0129 !important;
    height: 175px !important;
    padding: 15px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
    align-items: center
}

body:not(.index-page) #header .logo img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    max-height: 145px !important;
    width: auto !important;
    margin-top: 70px
}

body:not(.index-page) #header .logo {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important
}

.pricing .pricing-item {
    transition: .4s ease-in-out;
    cursor: pointer;
    position: relative
}

.pricing .pricing-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(191, 0, 255, .2);
    z-index: 2
}

.pricing .pricing-item::after {
    content: "Expand for more details";
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #1a0129;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    pointer-events: none
}

.pricing .pricing-item:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.close-card-btn {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2147483647;
    transition: .3s;
    align-items: center;
    justify-content: center
}

.close-card-btn:hover {
    background: #fff;
    color: #1a0129;
    border-color: #fff;
    transform: rotate(90deg)
}

body.card-is-open .pricing-item.is-expanded {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    background: linear-gradient(135deg, #1a0129 0, #3a0255 100%) !important;
    color: #fff !important;
    transform: none !important;
    animation: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    cursor: default
}

.pricing-item.is-expanded .pricing-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    overflow-y: auto
}

.pricing-item.is-expanded .card-details {
    display: flex !important;
    width: 50%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: rgba(255, 255, 255, .05) !important;
    border-left: 1px solid rgba(255, 255, 255, .1) !important;
    color: rgba(255, 255, 255, .9) !important;
    animation: .5s forwards slideInRight;
    opacity: 0
}

body.card-is-open .pricing-item.is-expanded .description {
    color: rgba(255, 255, 255, .7) !important
}

body.card-is-open .pricing-item.is-expanded i.bi {
    color: #bf00ff !important
}

.pricing-item.is-expanded .close-card-btn {
    display: flex
}

.pricing-item .card-details,
.pricing-item.is-expanded::after {
    display: none !important
}

body.card-is-open .pricing-item:not(.is-expanded) {
    z-index: -1 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .2s
}

body.card-is-open .pricing .col-lg-4,
body.card-is-open [data-aos] {
    transform: none !important;
    z-index: 1 !important;
    transition: none !important;
    position: static !important
}

body.card-is-open #footer,
body.card-is-open #header,
body.card-is-open .section-title {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -999 !important;
    transition: opacity .3s
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.pricing-label {
    font-weight: 500;
    color: #6c757d;
    transition: .3s
}

.pricing-label.active {
    color: #bf00ff;
    font-weight: 700
}

body.card-is-open .pricing-item.is-expanded .pricing-content {
    width: 35% !important
}

body.card-is-open .pricing-item.is-expanded .card-details {
    width: 65% !important;
    justify-content: flex-start !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 40px 50px !important;
    justify-content: center !important
}

.detail-scroll-area {
    max-height: none !important;
    overflow-y: visible !important
}

.pricing-item {
    transition: top .6s cubic-bezier(.2, 1, .2, 1), left .6s cubic-bezier(.2, 1, .2, 1), width .6s cubic-bezier(.2, 1, .2, 1), height .6s cubic-bezier(.2, 1, .2, 1), border-radius .6s, background-color .6s;
    --initial-top: 0px;
    --initial-left: 0px;
    --initial-width: 0px;
    --initial-height: 0px
}

.pricing-item.is-animating {
    position: fixed !important;
    top: var(--initial-top) !important;
    left: var(--initial-left) !important;
    width: var(--initial-width) !important;
    height: var(--initial-height) !important;
    z-index: 9999999 !important;
    margin: 0 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5)
}

.pricing-item.is-expanded {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important
}

.pricing-item.is-animating .card-details {
    opacity: 0;
    transition: opacity .3s .4s
}

.pricing-item.is-expanded .card-details {
    display: flex !important;
    opacity: 1 !important
}

body.card-is-open .pricing-item.is-expanded .detail-scroll-area .row {
    margin-bottom: 0 !important
}

body.card-is-open .pricing-item.is-expanded .detail-scroll-area .col-md-6 {
    margin-bottom: 25px !important
}

body.card-is-open .pricing-item.is-expanded .card-details h3 {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important
}

body.card-is-open .pricing-item.is-expanded .card-details p {
    font-size: .85rem !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important
}

body.card-is-open .pricing-item.is-expanded .card-details h6 {
    margin-bottom: 5px !important;
    font-size: .8rem !important
}

body.card-is-open .pricing-item.is-expanded .card-details::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: 0 0 !important
}

@media (max-width:991px) {
    .pricing-item.is-expanded {
        flex-direction: column !important;
        overflow-y: auto !important
    }
    .pricing-item.is-expanded .card-details,
    .pricing-item.is-expanded .pricing-content {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        justify-content: flex-start
    }
    .pricing-item.is-expanded .card-details {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, .1) !important
    }
    body.card-is-open .pricing-item.is-expanded {
        flex-direction: column !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important
    }
    body.card-is-open .pricing-item.is-expanded::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        background: 0 0 !important
    }
    body.card-is-open .pricing-item.is-expanded .card-details,
    body.card-is-open .pricing-item.is-expanded .pricing-content {
        width: 100% !important;
        height: auto !important;
        padding: 30px 20px !important;
        overflow: visible !important
    }
    body.card-is-open .pricing-item.is-expanded .pricing-content {
        background: 0 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 20px !important
    }
    body.card-is-open .pricing-item.is-expanded .card-details {
        background: rgba(0, 0, 0, .2) !important;
        border-left: none !important;
        padding-bottom: 120px !important
    }
    .close-card-btn {
        top: 15px !important;
        right: 15px !important;
        background: rgba(0, 0, 0, .6);
        z-index: 99999999
    }
}

.dropdown-menu,
.navbar .dropdown-menu,
nav .dropdown ul {
    background-color: #1a0129 !important;
    border: 1px solid #bf00ff !important;
    padding: 10px 0 !important;
    margin-top: 0 !important
}

.dropdown-item,
.navbar .dropdown-menu a,
nav .dropdown ul li a {
    color: #fff !important;
    background-color: transparent !important;
    font-weight: 500 !important
}

.dropdown-item:hover,
.navbar .dropdown-menu a:hover,
nav .dropdown ul li a:hover {
    color: #bf00ff !important;
    background-color: rgba(255, 255, 255, .05) !important
}

#header,
.fixed-top,
.header {
    z-index: 999999 !important;
    position: fixed !important
}

#footer,
#footer h4 {
    color: #fff;
    position: relative
}

.navbar .dropdown-menu,
nav .dropdown ul {
    z-index: 9999999 !important
}

.estimate-box.sticky-top {
    z-index: 100 !important
}

#footer {
    background: #1a0129;
    font-size: 14px;
    padding-top: 60px;
    border-top: 1px solid rgba(191, 0, 255, .2);
    z-index: 10
}

#footer .footer-top {
    padding-bottom: 30px
}

#footer .footer-about .logo span {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px
}

#footer .footer-about p {
    font-size: 14px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .7)
}

#footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    margin-right: 10px;
    transition: .3s
}

#footer .social-links a:hover {
    color: #fff;
    border-color: #bf00ff;
    background: #bf00ff
}

#footer h4 {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 15px;
    letter-spacing: 1px
}

#footer h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #bf00ff;
    bottom: 0;
    left: 0
}

#footer .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center
}

#footer .footer-links ul li a {
    color: rgba(255, 255, 255, .7);
    transition: .3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none
}

#footer .footer-links ul li a:hover {
    color: #bf00ff;
    padding-left: 5px
}

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

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5)
}

#footer .credits a {
    color: #bf00ff
}

body.mobile-nav-active #header,
body.mobile-nav-active .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
    background: 0 0 !important
}

@media (max-width:1199px) {
    .navmenu {
        padding: 0;
        position: static;
        z-index: 99999
    }
    .navmenu ul {
        display: none;
        list-style: none;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .9);
        padding: 10px 0;
        margin: 0;
        transition: .3s
    }
    .navmenu a,
    .navmenu a:focus {
        color: #fff;
        padding: 16px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s;
        border-bottom: 1px solid rgba(255, 255, 255, .05)
    }
    .navmenu ul li:last-child>a {
        border-bottom: none
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s;
        background-color: rgba(255, 255, 255, .1);
        color: #fff
    }
    .navmenu .active,
    .navmenu .active:focus,
    .navmenu a:hover {
        color: #bf00ff;
        background: rgba(191, 0, 255, .05);
        border-left: 4px solid #bf00ff
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: #bf00ff;
        color: #fff;
        transform: rotate(180deg)
    }
    .navmenu .dropdown ul {
        position: static !important;
        display: none;
        z-index: 99;
        padding: 5px 0;
        margin: 0;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        border: none;
        box-shadow: inset 0 0 20px rgba(0, 0, 0, .5);
        background-color: rgba(0, 0, 0, .3);
        border-radius: 0
    }
    .mobile-nav-active .navmenu>ul,
    .navmenu .dropdown ul.dropdown-active {
        display: block
    }
    .navmenu .dropdown ul a {
        padding: 12px 30px;
        font-size: 14px;
        color: rgba(255, 255, 255, .7);
        border-bottom: none
    }
    .navmenu .dropdown ul a:hover {
        color: #fff;
        background: 0 0;
        border-left: none;
        padding-left: 35px
    }
    .mobile-nav-active {
        overflow: hidden
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: fixed;
        top: 25px;
        right: 15px;
        margin-right: 0;
        z-index: 99999
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        inset: 0;
        background: rgba(15, 0, 26, .8);
        transition: .3s;
        z-index: 9996
    }
    .section,
    section {
        scroll-margin-top: 77px
    }
    .navmenu ul {
        position: fixed !important;
        inset: 0 !important;
        top: 20px !important;
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
        width: auto !important;
        height: auto !important;
        background: linear-gradient(135deg, #1a0525 0, #0d0015 100%);
        border: 1px solid rgba(191, 0, 255, .3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, .9);
        border-radius: 16px;
        overflow-y: auto !important;
        z-index: 999999 !important
    }
    .mobile-nav-toggle {
        color: #fff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        position: fixed !important;
        top: 25px;
        right: 25px;
        z-index: 9999999 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(26, 5, 37, .6);
        border: 1px solid rgba(191, 0, 255, .3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
        cursor: pointer;
        transition: .3s
    }
    .mobile-nav-toggle i {
        font-size: 24px;
        color: #fff;
        line-height: 0
    }
    .mobile-nav-toggle:hover {
        background: rgba(191, 0, 255, .15);
        border-color: #bf00ff;
        box-shadow: 0 0 20px rgba(191, 0, 255, .6);
        transform: scale(1.05)
    }
    .header .btn-getstarted {
        margin-right: 85px !important;
        position: relative;
        z-index: 999;
        display: none !important
    }
}

.mobile-lang-row {
    background: rgba(0, 0, 0, .2);
    border-radius: 16px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(191, 0, 255, .1);
    display: flex;
    justify-content: center;
    gap: 15px !important
}

.mobile-lang-row a {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .6) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: 0 0;
    transition: .3s
}

.mobile-lang-row a.lang-active {
    background: #bf00ff;
    color: #fff !important;
    border-color: #bf00ff;
    box-shadow: 0 0 20px rgba(191, 0, 255, .6);
    transform: scale(1.05)
}

.mobile-lang-row a:not(.lang-active):hover {
    border-color: #bf00ff;
    color: #bf00ff !important;
    background: rgba(191, 0, 255, .1)
}

.mobile-lang-row span {
    display: none
}

.lang-switcher a {
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
    font-size: .9rem;
    transition: .3s
}

.lang-switcher a.active {
    color: #bf00ff;
    text-shadow: 0 0 10px rgba(191, 0, 255, .3)
}

.lang-divider {
    color: rgba(255, 255, 255, .2);
    margin: 0 8px
}

.text-uppercase[style*="color: #bf00ff"],
h6[style*="color: #bf00ff"] {
    color: #e0aaff !important;
    text-shadow: 0 0 10px rgba(191, 0, 255, .6)
}

.pricing-item .period,
.service-item .period {
    color: #e0aaff !important;
    opacity: 1 !important;
    font-weight: 600
}

#faq .faq-item.faq-active h3,
#pricing h3,
.pricing-item h3,
.service-item .price-tag,
.service-item .price-tag[style*="color: #bf00ff"] {
    color: #e0aaff !important
}

#footer a[style*="color: #bf00ff"],
.active[style*="color: #bf00ff"] {
    color: #e0aaff !important;
    font-weight: 900 !important
}

#footer .copyright a {
    color: #fff !important;
    text-decoration: underline;
    text-decoration-color: #bf00ff
}

#founder h4[style*="color: #bf00ff"],
.founder h4 {
    color: #620085 !important;
    font-weight: 800 !important
}

.about-badge {
    background-color: rgba(98, 0, 133, .4) !important;
    color: #fff !important;
    border: 1px solid #e0aaff !important
}

#pricing,
.pricing-section {
    background-color: #1a0129 !important;
    background: linear-gradient(180deg, #1a0129 0, #2e0249 100%) !important;
    position: relative;
    z-index: 1
}

.toggle-label {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: .5px;
    opacity: 1 !important
}

.toggle-label.active {
    color: #bf00ff !important;
    text-shadow: 0 0 10px rgba(191, 0, 255, .5)
}

.pricing-toggle-container {
    background: rgba(255, 255, 255, .05) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    z-index: 10
}

#contact p.text-black-50,
#features p,
#services p {
    color: #d1d1d6 !important;
    opacity: 1 !important
}

#contact .text-black-50 {
    color: #4b4b4b !important
}

.process-number {
    color: rgba(255, 255, 255, .5) !important;
    font-weight: 800
}

#portfolio .link-btn {
    color: #e0aaff !important;
    font-weight: 700;
    text-decoration: underline
}

.extra-price,
.extra-price .small[style*="color:#e600e6"] {
    color: #ffd415 !important
}

#contact .btn-primary,
.contact .php-email-form button[type=submit] {
    background-color: #ffd415 !important;
    color: #1a0129 !important;
    font-weight: 800
}

/* --- Global Veliy Button (Used on City Pages) --- */
.veliy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed 0%, #bf00ff 100%);
    color: #ffffff !important;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(191, 0, 255, 0.3);
    z-index: 10;
    position: relative;
}

.veliy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 0, 255, 0.6);
    color: #ffffff !important;
}

