:root {
    --bs-header: #f8f7fa;
    --primary-color: #480355;
    --primary-border-color: #a5a3ae4d;
    --bs-primary: #312E39;
    --bs-secondary: #4B465C;
    --bs-features: #D2C0D5;
    --bs-white: #ffffffd6;
    --font-family: 'DM Sans', sans-serif;
    --bs-paragraph-features: #EAEAEB;
    --color-p-section: #787485;
    --bs-card-typo: #2D2A34;
    --bs-card-text: #5d586c;
    --bs-modules-card-1: #fffbe6;
    --bs-modules-card-2: #d5dff2;
    --bs-modules-card-3: #e9d9f1;
    --bs-modules-card-4: #ddfefd;
    --bs-modules-card-5: #e6dde7;
}

/* utilities */
.pt-6 {
    padding-top: 3.75rem;
}

.w-fit {
    width: fit-content;
    margin: 0 auto;
}

.w-95 {
    width: 95%;
}

/* accordion */
.accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(72,3,85,1)'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z'%3E%3C/path%3E%3C/svg%3E");
    background-image: var(--bs-accordion-btn-icon);
    background-color: #ddd1e0;
    border-radius: 50%;
}

.accordion-button:not(.collapsed)::after {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(110,54,119,1)'%3E%3Cpath d='M5 11V13H19V11H5Z'%3E%3C/path%3E%3C/svg%3E");
    background-image: var(--bs-accordion-btn-active-icon);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-white);
    color: #5d586c;
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.accordion-button {
    color: #676275;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-radius: 1rem;
    margin-bottom: 10px;
    box-shadow: 0px 2px 4px 0px #A5A3AE4D;
}

.accordion-body {
    font-family: DM Sans;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0px;
    text-transform: capitalize;
    padding: 1rem;
    color: #817e8d;
    text-wrap: balance;
}

/* accordion */

#go-to-top {
    /* Positioning */
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    z-index: 1000;
    /* Ensure it's above other content */
    /* Appearance */
    display: none;
    /* Hide by default */
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .pt-md-6 {
        padding-top: 5rem !important;
    }

    .mt-md-6 {
        margin-top: 5rem !important;
    }
}

.mt-6 {
    margin-top: 5rem;
}

.mt--1 {
    margin-top: -1rem;
}

body {
    color: var(--bs-primary);
    font-family: var(--font-family);
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary,
.show>.btn-primary.dropdown-toggle {
    background-color: var(--primary-color);
    border-color: var(--primary-border-color);
    box-shadow: 0 2px 8px var(--primary-border-color);
    backdrop-filter: blur(30px);
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active,
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-border-color);
    box-shadow: 0 2px 8px var(--primary-border-color);
    backdrop-filter: blur(30px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

@media screen and (min-width: 768px) {
    :root {
        --bs-gutter-x: 40px;
        --bs-gutter-y: 1rem;
    }

    body {
        padding: 0px var(--bs-gutter-x);
        color: #555;
    }
}

/* header */
.header {
    margin-top: 10px;
    background-color: var(--bs-header);
    border-radius: 0.7rem;
}

.nav-link {
    color: var(--bs-primary);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    font-weight: bold;
    color: var(--primary-color);
}

.dropdown-menu.show {
    background-color: var(--bs-header);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

/* Language Button Styles */
.lang-btn {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #198754, #20c997);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
}

.lang-btn:hover {
    background: linear-gradient(135deg, #157347, #1aa17a);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.4);
    transform: translateY(-1px);
}

.lang-btn:active {
    transform: translateY(0);
}

section.hero {
    margin-top: 2rem;
    border-radius: 1rem;
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
    color: var(--bs-primary);
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    section.hero {
        padding-bottom: 3rem;
    }
}


.our-system-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 0 0.5rem;
    background-color: #fff;
    box-shadow: 0 2px 8px var(--primary-border-color);

}

.paragraph-hero {
    color: var(--bs-secondary);
    margin-top: 0.5rem;
    line-height: 22px;
}

.hero-shadow {
    position: absolute;
    bottom: -10%;
    left: 0;
    right: 0;
    width: 1000%;
    height: 25%;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 1) 43%, rgba(255, 255, 255, 0.99) 71%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 89%, rgba(255, 255, 255, 1) 100%);
    z-index: 5;
    filter: blur(10px);
}

.dashboard-img {
    width: 95%;
    margin: 0 auto;
}

@media screen and (min-width: 992px) {
    .dashboard-img {
        width: 55%;
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: auto;
        object-fit: cover;
        object-position: center;
        z-index: 2;
    }

    .hero-shadow {
        height: 30%;
    }

}

/* Section Features Styles */

.section-features {
    background-color: #480355;
    background-image: url('../images/map.svg');
    background-position: 222px -2px;
    background-repeat: no-repeat;
    background-size: 80%;
    border-radius: 1rem;
    position: relative;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    color: #fff;
}


@media screen and (min-width: 992px) {
    .section-features {
        background-position: 93% -45px;
    }
}

@media screen and (min-width: 1536px) {
    .section-features {
        background-position: 60% -47px;
        background-size: 39%;
    }
}

.section-features span {
    background-color: var(--bs-features);
    color: var(--bs-primary)
}

.section-features .our-features-heading {
    color: var(--bs-white);
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0px;
}

.section-features .our-features-heading strong {
    color: #fff;
}

.section-features p {
    color: var(--bs-paragraph-features);
    margin-top: 1rem;
    line-height: 1.1;
    letter-spacing: 0px;
    font-size: 14px;
    text-align: justify;
}

.section-features .btn {
    background-color: var(--bs-paragraph-features);
    color: var(--bs-primary);
    border-radius: 10px;
}

.our-services,
.our-modules,
.our-fqa,
.pricing,
.contact {
    background-color: #fff;
    padding: 2rem 0;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.our-services span.badge,
.our-modules span.badge,
.our-fqa span.badge,
.pricing span.badge,
.contact span.badge {
    background-color: var(--bs-paragraph-features);
    color: var(--bs-primary);
    font-weight: 400;
}

@media screen and (min-width: 992px) {

    .our-services .our-services-heading,
    .our-services .our-services-info,
    .our-modules .our-modules-heading,
    .our-modules .our-modules-info,
    .our-fqa .our-fqa-heading,
    .our-fqa .our-fqa-info,
    .pricing .pricing-heading,
    .pricing .pricing-info,
    .contact .contact-heading {
        text-align: center;
        width: 40rem;
        margin: 0 auto;
        text-transform: capitalize;
    }
}

.our-services .our-services-heading,
.our-modules .our-modules-heading,
.our-fqa .our-fqa-heading,
.pricing .pricing-heading,
.contact .contact-heading {
    color: var(--bs-secondary), rgba(255, 255, 255, 0.10);
    font-family: var(--font-family);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.our-services .our-services-info,
.our-modules .our-modules-info,
.our-fqa .our-fqa-info,
.pricing .pricing-info {
    color: var(--color-p-section);
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    font-size: 15px;
}

.bg-icon-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
    background: transparent;
    border-radius: 1rem;
    box-shadow: 0 2px 8px var(--primary-border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}


.bg-icon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-icon-serv.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
}

/* our services */
.our-services .card,
.our-modules .card {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    border-radius: 1rem;
    border: 0;
    padding: 1px;
    color: var(--bs-card-typo);
}

.our-services .card-text {
    color: var(--bs-card-text);
}

.our-services .card::before,
.our-modules .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(294.62deg, rgba(255, 255, 255, 0) 3.67%, rgba(166, 253, 250, 0.2) 44.46%, rgba(118, 153, 212, 0.2) 48.4%, rgba(135, 66, 171, 0.2) 55.54%, rgba(90, 164, 190, 0.2) 61.41%, rgba(255, 236, 138, 0.2) 70.38%, rgba(109, 53, 119, 0.2) 74.96%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(35.77px);
    opacity: 1;
    z-index: 0;
}

.our-services .card .card-body,
.our-modules .card .card-body {
    position: relative;
    z-index: 1;
    border-radius: 1rem;
}

.our-services .card .card-body {
    background: var(--bs-white);

}

.bg-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    filter: blur(55.77px);
    opacity: 0;
}

.our-services .card:hover {
    box-shadow: 0 2px 8px var(--primary-border-color);
}

.our-services .card:hover .card-body {
    background: transparent;
}

.our-services .card:hover .bg-card {
    opacity: 1;
}

.our-services .card:hover .bg-icon-card::before {
    opacity: 0;
}

.our-services .card:hover .bg-icon-card {
    background: var(--bs-white);
    box-shadow: 0 2px 8px var(--bs-white);
}

.bg-icon-card i[class^="ri-"],
.bg-icon-card i[class*=" ri-"] {
    position: relative;
    z-index: 1;
}

/* our modules */
.our-modules .card {
    height: 26rem;
    margin-bottom: 1rem;
}

.our-modules .row:last-child .card {
    height: 25rem;
}

.our-modules .card .card-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.our-modules .card .card-body .img-end img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 992px) {
    .our-modules .card {
        margin-bottom: 0;
    }

    .our-modules .card .card-body .img-end {
        width: auto;
    }

}

.our-modules .card-body a {
    position: relative;
    z-index: 22;
}

.our-modules .card-body.bg-modules-card-1 {
    background: var(--bs-modules-card-1);
}

.our-modules .card-body.bg-modules-card-2 {
    background: var(--bs-modules-card-2);
}

.our-modules .card-body.bg-modules-card-3 {
    background: var(--bs-modules-card-3);
}

.our-modules .card-body.bg-modules-card-4 {
    background: var(--bs-modules-card-4);
}

.our-modules .card-body.bg-modules-card-5 {
    background: var(--bs-modules-card-5);
}

/* pricing */
section.pricing {
    background-image: url('/images/bg-pricing.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;

}

section.pricing::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 17.125rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 73.62%);
}

section.pricing .card {
    z-index: 1;
    border-radius: 1rem;
    border: 0;
    box-shadow: 0 0px 3px var(--primary-border-color);
    margin-bottom: 2rem;
}

section.pricing .card .card-body {
    padding: 0;
}

section.pricing .card .card-body p {
    margin-bottom: 1rem;
    width: fit-content;
    margin: 0 auto;
}

section.pricing .most-popular {
    border: 1px solid var(--primary-color);
    box-shadow: 0px 15px 18px 6px color-mix(in srgb, var(--primary-color), transparent 70%);
}

section.pricing .most-popular::before {
    content: "Most Popular";
    position: absolute;
    top: -14px;
    left: 50%;
    width: fit-content;
    height: fit-content;
    padding: 0.5rem 1rem;
    transform: translateX(-50%);
    background: var(--bs-white);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    border-radius: 0.75rem;
    border: 1px solid var(--primary-color);
}

section.pricing .card .price-text {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 2.3rem;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--primary-color);
    margin-top: 1rem;
}

section.pricing .price-range {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--bs-secondary);
    text-transform: capitalize;
}

section.pricing .card .card-body p,
section.contact p.paragraph-contact {
    color: hsl(form var(--bs-secondary)/20%);
    font-size: 13px;
}

section.pricing .card .card-body ul {
    list-style: none;
    padding: 0;
}

section.pricing .card .card-body ul li {
    font-family: var(--font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: capitalize;
}

section.pricing .card .card-body ul li.disabled {
    color: #868191;
}

section.pricing .card .card-body ul li:not(:last-child) {
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

section.pricing .card .card-body ul li.disabled {
    color: #bbb9c1;
}

section.pricing .card .card-body .btn {
    width: 85%;
    margin: 0 auto;
    border-radius: 0.75rem;
}


/* contact */
section.contact p.paragraph-contact {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0px;
    text-transform: capitalize;
    background: linear-gradient(0deg, #4B465C, #4B465C),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 70%;
}

section.contact .form-item {
    position: relative;
    z-index: 1;
    padding: 0.5rem 0;
    transition: all 0.3s ease-in-out;
}

.form-item .form-control {
    border: 1px solid var(--primary-border-color);
    border-radius: 0.375rem;
    transition: all 0.3s ease-in-out;
}

.form-item .form-control:focus,
.form-item .form-control:valid {
    border-color: color-mix(in srgb, var(--primary-color), transparent 30%);
    outline: none;
    box-shadow: none;

}

.form-item .form-control::placeholder {
    color: transparent;
}

.form-item .form-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: var(--bs-secondary);
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
}

.form-item .form-label[for="message"] {
    top: 15px;
    transform: translateY(0);
}

.form-item .form-control:focus+.form-label,
.form-item .form-control:not(:placeholder-shown)+.form-label {
    top: -12px;
    left: 2px;
    transform: translateY(0);
    opacity: 1;
}

/* footer */
footer.footer {
    padding: 2rem;
    color: #fff;
    background: var(--primary-color);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0px;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;

    background-image: url('/images/bg-footer.png');
    background-size: 75%;
    background-position: center -1rem;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
}

.footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 17.125rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #48035578 62%);
    z-index: 0;
}

footer.footer .container-xxl {
    position: relative;
    z-index: 1;
}

footer.footer .footer-content {
    width: 80%;
    margin: 0 auto;
    border: 1px solid #8f6db752;
    padding: 2rem;
    border-radius: 0.75rem;
}

footer.footer p {
    color: var(--bs-white);
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: capitalize;
}

footer.footer .row:first-child p {
    font-weight: 500;
    text-align: center;
    font-size: 0.88rem;
}

footer.footer .row:first-child .btn {
    color: var(--primary-color);
    margin-top: 1.5rem;
}

footer.footer .row:nth-child(2) {
    margin-top: 8rem;
}

footer.footer .row:nth-child(2) p {
    font-size: 0.88rem;
    word-wrap: break-word;
}

footer.footer .row:nth-child(2) ul {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

footer.footer .row:nth-child(2) ul li {
    margin-bottom: 1rem;
    color: var(--bs-white);
}

footer.footer .row:nth-child(2) ul li a {
    color: #F8F7FA;
    text-decoration: none;
}