/* start global  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
}

body {
    font-family: "Raleway", sans-serif;
}

a {
    text-decoration: none;
}

:root {
    --main-color: ;
    --bg-color: ;
    --transition: ;
}

.text-purple {
    color: #A179F3 !important;
}

.fs-11 {
    font-size: 11px !important;
}

/* End global  */

/* start navbar  */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    box-shadow: none;
    height: 100px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* Language Selector Styles - Custom Dropdown */
.language-selector {
    position: relative;
    display: inline-block;
}

.custom-dropdown {
    position: relative;
    min-width: 130px;
}

.dropdown-selected {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(161, 121, 243, 0.5);
    border-radius: 8px;
    padding: 10px 35px 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.dropdown-selected:hover {
    border-color: #A179F3;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(161, 121, 243, 0.2);
}

.dropdown-selected.active {
    border-color: #A179F3;
    box-shadow: 0 0 0 3px rgba(161, 121, 243, 0.2);
}

.selected-text {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
}

.dropdown-arrow {
    color: #fff;
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #A179F3;
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 100%;
}

.custom-dropdown.active .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #A179F3;
}

.dropdown-item.active {
    background: #A179F3;
    color: #ffffff;
    font-weight: 700;
}

/* RTL Support */
[dir="rtl"] .dropdown-selected {
    padding: 10px 15px 10px 35px;
}

[dir="rtl"] .dropdown-arrow {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .selected-text {
    text-align: right;
}

[dir="rtl"] .dropdown-menu-list {
    text-align: right;
}

[dir="rtl"] .dropdown-item {
    text-align: right;
}

/* Scrolled navbar language selector */
.navbar.scrolled .dropdown-selected {
    background: rgba(255, 255, 255, 0.95);
    border-color: #A179F3;
    box-shadow: 0 2px 8px rgba(161, 121, 243, 0.15);
}

.navbar.scrolled .selected-text,
.navbar.scrolled .dropdown-arrow {
    color: #333;
}

.navbar.scrolled .dropdown-selected:hover {
    background: #A179F3;
}

.navbar.scrolled .dropdown-selected:hover .selected-text,
.navbar.scrolled .dropdown-selected:hover .dropdown-arrow {
    color: #fff;
}

/* Mobile styles for language selector */
@media (max-width: 991px) {
    .language-selector {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .custom-dropdown {
        width: 100%;
        max-width: 200px;
    }

    .dropdown-selected {
        padding: 8px 30px 8px 12px;
        font-size: 13px;
    }

    .selected-text {
        font-size: 13px;
    }

    .dropdown-arrow {
        font-size: 11px;
    }

    [dir="rtl"] .dropdown-selected {
        padding: 8px 12px 8px 30px;
    }
}

.nav-item .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    line-height: 100%;
    margin-left: 3px;
    margin-right: 3px;
}

.nav-item .nav-link:hover {
    border-bottom: 1px solid #A179F3;
    width: fit-content;
    color: #A179F3 !important;
    margin-left: 3px;
    margin-right: 3px;
}

.nav-item .nav-link.active {
    border-bottom: 1px solid #A179F3;
    width: fit-content;
    color: #A179F3 !important;
}

.navbar-brand img {
    width: 140px;
    height: auto;
    transition: opacity .3s ease;
}

.scrolled-logo {
    display: none;
}

.navbar.scrolled .default-logo {
    display: none;
}

.navbar.scrolled .scrolled-logo {
    display: block;
    width: 140px;
    height: auto;
}

.navbar-toggler {
    color: #A179F3;
    border: 2px solid #A179F3;
    border-radius: 5px;
}

.navbar.scrolled {
    background-color: #fff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100px;
}

.navbar.scrolled .nav-item .nav-link {
    color: #000 !important;
}

.navbar.scrolled .nav-item .nav-link.active {
    border-color: #A179F3 !important;
    color: #A179F3 !important;
}

.navbarBtn button {
    width: 195px;
    height: 42px;
    border-radius: 7.84px;
    background-color: #A179F3;
    color: #fff;
    border: 2.35px solid #A179F3;
}

.navbarBtn button span {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}

.navbarBtn button i {
    font-weight: 700;
    font-size: 16px;
    transform: rotate(30deg);
}

@media(max-width:768px) {

    .navbar-brand img {
        width: 120px;
        height: auto;
    }

    .navbar {
        height: 80px;
    }

    .scrolled-logo {
        display: none;
    }

    .default-logo {
        display: block !important;
    }

    .navbar.scrolled .scrolled-logo {
        display: block;
        width: 120px;
        height: auto;
    }

    .navbar.scrolled .default-logo {
        display: none !important;
    }

    .nav-item .nav-link {
        color: #000;
        font-weight: 700;
        font-size: 19px;
        line-height: 100%;
    }

    .nav-item .nav-link.active {
        border-bottom: 1px solid #A179F3;
        width: fit-content;
        color: #A179F3 !important;
    }
}

/* End navbar  */

/* hero-section styles (used in other pages) */
.hero-section {
    background: linear-gradient(to right, #00000099, #00000099), url(../images/home/hero-section.png);
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.hero-section h6 {
    font-weight: 800;
    font-size: 60px;
    line-height: 77px;
}

.hero-section p {
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    text-align: center;
}

.yellow-img {
    bottom: 10px;
    right: 0;
}

.yellow-img-top-right {
    top: 10%;
    right: 0;
}

.yellow-img-bottom-left {
    bottom: 0;
    left: 0;
}

.purple-img {
    top: 30%;
    left: 0;
}

.purple-bottom-right {
    bottom: 0;
    right: 0;
}

.red-img {
    top: 20px;
    left: 0;
    z-index: 1;
}

.red-right-img {
    top: 50%;
    right: 0;
    z-index: 1;
}

@media(max-width:768px) {
    .hero-section p {
        font-size: 20px;
    }

    .hero-section h6 {
        font-size: 40px;
    }

    .hero-section {
        height: 350px;
    }
}

/* start core  */
.core {
    padding-top: 70px;
    padding-bottom: 50px;
    background-color: #F5F5F5;
}

.core .red-img {
    position: absolute;
    top: -50px;
    left: 0;
}

.core .core-card {
    background-color: #fff;
    box-shadow: 0 0 3.7px #A179F340;
    border-radius: 10px;
    padding: 30px;
}

.core .core-card h6 {
    font-weight: 600;
    font-size: 28px;
    line-height: 138%;
    text-align: center;
    color: #000000;
}

.core .core-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
    color: #666666;
}

.core .core-logo {
    position: relative;
}

.core .core-logo::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background-color: #000000;
    top: 50%;
    left: -50%;
}

.core .core-logo::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background-color: #000000;
    top: 50%;
    right: -50%;
}

.core .core-logo img {
    width: 140px;
}

@media(max-width:768px) {
    .circle-width {
        width: 50px;
    }

    .core .red-img {
        top: 0px;
    }
}

/* end core  */

/* start why section  */
.why-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #EEE9F8;
}

.why-section .why-title h6 {
    font-weight: 700;
    font-size: 36.52px;
    line-height: 100%;
    color: #A179F3;
    text-align: center;
}

.why-section .why-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
    color: #666666;
    width: 50%;
    margin: auto;
}

.why-section .why-card .why-card-img {
    background: url(../images/home/girl.png);
    height: 300px;
    border-radius: 19px;
    background-position: top;
    background-size: cover;
}

.why-section .why-card h6 {
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-size: 29.33px;
    line-height: 143%;
    color: #666666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-section .why-card span {
    color: #666666;
}

/* separator line via pseudo-element for perfect baseline alignment */
/* direction-aware separator: after in LTR, before in RTL */
.why-section .why-card h6::before,
.why-section .why-card h6::after {
    content: "";
    flex: 0 0 80px;
    height: 1px;
    background-color: currentColor;
}

/* LTR: line after the text */
.why-section .why-card h6::after {
    margin-inline-start: 12px;
}
.why-section .why-card h6::before {
    display: none;
}

/* RTL: line before the text */
[dir="rtl"] .why-section .why-card h6::before {
    display: block;
    margin-inline-end: 12px;
}
[dir="rtl"] .why-section .why-card h6::after {
    content: none;
}

.why-section .why-card p {
    font-weight: 400;
    font-size: 10.81px;
    line-height: 160%;
    color: #666666;
    width: 80%;
}

.why-section .why-purple {
    top: -50px;
}

.why-section .why-yellow {
    bottom: -30px;
}

@media(max-width:768px) {
    .why-section .why-title p {
        width: 90%;
    }

    .why-section .why-purple {
        top: 0;
    }

    .why-section .why-yellow {
        bottom: 0;
    }

}

/* End why section  */

/* start marketing  */
.marketing {
    padding-top: 70px;
    padding-bottom: 50px;
    background-color: #F5F5F5;
}

.marketing .marketing-title h6 {
    font-weight: 800;
    font-size: 58px;
    line-height: 160%;
    color: #000000;
    text-align: center;
}

.marketing .marketing-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
    color: #000000;
    width: 60%;
    margin: auto;
}

.marketing .marketing-left-side img {
    height: 450px;
    object-fit: cover;
}

.marketing .marketing-left-side p {
    font-weight: 400;
    font-size: 15px;
    line-height: 180%;
    color: #000000;
}

.marketing .marketing-right-side .last-img {
    height: 170px;
    width: 100%;
    object-fit: cover;
}

.marketing .marketing-right-side .first-img {
    border-radius: 45% !important;
}

@media(max-width:768px) {
    .marketing .marketing-title h6 {
        font-size: 25px;
    }

    .marketing .marketing-title p {
        width: 90%;
    }

    .marketing {
        padding-bottom: 10px;
    }

    .marketing .marketing-right-side .last-img {
        height: 60px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
}

/* End marketing  */

/* start services section */
.services-section {
    background-color: #F5F5F5;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
}

.services-box {
    height: 380px;
}

.services-section h5 {
    font-weight: 700;
    font-size: 36.52px;
    line-height: 100%;
    color: #A179F3;
    text-align: center;
    margin-bottom: 30px;
}

.services-section .services-section-btn {
    width: 150px;
    height: 41px;
    box-shadow: 2.35px 3.14px 8.71px #00000040;
    background-color: #A179F3;
    border-radius: 8px;
}

.services-section .services-section-btn button {
    border: 2px solid #A179F3;
    background-color: #A179F3;
    font-weight: 700;
    font-size: 17.61px;
    line-height: 100%;
    color: white;
    width: 100%;
    border-radius: 8px;
}

.services-section .services-card {
    background: linear-gradient(to right, #00000061, #00000061), url(../images/home/girl.png);
    height: 330px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.services-section .services-card h6 {
    font-weight: 700;
    font-size: 30px;
    line-height: 48px;
    text-align: center;
}

.services-section .services-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    font-family: "Barlow", sans-serif;
    width: 70%;
    text-align: center;
}

.services-section .swiper-slide {
    position: relative;
}

.services-card {
    position: relative;
}

.services-card .slider-bottom-img {
    position: absolute;
    bottom: -47px;
    left: 0;
    margin: auto;
    width: 50%;
    z-index: 999;
    width: 40%;
    max-width: 127px;
}

.swiper-slide {
    overflow: visible;
}

.services-section .swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.services-section .swiper-pagination-bullet {
    background-color: #D9D9D9 !important;
    opacity: 1 !important;
    width: 12px;
    height: 12px;
}

.services-section .swiper-pagination-bullet-active {
    background-color: #A179F3 !important;
}

.services-section .swiper-pagination {
    position: absolute;
    bottom: 25% !important;
    left: 0;
    right: 0;
}


@media(max-width:768px) {
    .services-section {
        padding-top: 0;
        padding-bottom: 50px;
    }
}

/* End services section */

/* start clients  */
.clients-section {
    background-color: #000000;
}

.clients-section .clients-caption .section-title {
    font-weight: 700;
    font-size: 59.32px;
    line-height: 100%;
    color: #fff;
}

.clients-section .clients-caption .highlight {
    color: #A179F3;
    font-weight: 700;
    font-size: 36.52px;
    line-height: 100%;
}

.clients-section .clients-caption .description {
    color: #fff;
    font-weight: 500;
    font-size: 15.94px;
    line-height: 19.92px;
}

.clients-section .clients-caption .client-images img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: -25px;
    border: 1px solid #fff;
}

.client-images {
    display: flex;
    align-items: center;
    justify-content: start;
}

.plus-circle {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 60px;
}

.client-box {
    border: 1px solid #FFFFFF;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    color: #aaa;
    font-weight: bold;
    font-size: 1.2rem;
}

.client-box h6 {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #E6E6E6;
}

.big-number span {
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    color: #FFFFFF;
}

.big-number i {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    color: #FFFFFF;
}

.divider {
    border-left: 1px solid #fff !important;
    height: 292px !important;
    width: 4px;
}

.clients-section .yellow-img {
    bottom: -30px;
    right: 0;
}

@media (max-width: 768px) {
    .divider {
        display: none;
    }

    .clients-section .clients-caption .highlight {
        font-size: 20px;
    }

    .clients-section .clients-caption .section-title {
        font-weight: 700;
        font-size: 17.78px;
        line-height: 100%;
    }

    .clients-section .clients-caption .description {
        font-weight: 400;
        font-size: 11px;
        line-height: 18px;
    }


    .big-number span,
    .big-number i {
        font-size: 40px;
    }

    .client-box h6 {
        font-size: 16px;
    }

    .client-box {
        height: 100px;
        padding: 10px;
    }

    .clients-section .yellow-img {
        bottom: -15px;
    }
}

/* End clients  */

/* start testimonials  */
.testimonials {
    padding: 50px 70px 0 70px;
}

.testimonials .testimonials-title h6 {
    font-weight: 700;
    font-size: 36.52px;
    line-height: 100%;
    color: #A179F3;
}

.testimonials .testimonials-card {
    border: 1px solid #FFFFFFC4;
    box-shadow: 0 0 3.5px #00000040;
    border-radius: 27px;
    background: linear-gradient(to right, #5500ff3b, #ffffff7c);
    padding: 20px;
}

.testimonials .testimonials-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.29px solid #FFFFFF;
    margin-top: -50px;
}

.testimonials-box {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .testimonials-card p {
    font-weight: 500;
    font-size: 15.94px;
    line-height: 19.92px;
    text-align: center;
    color: #000000;
}

.testimonials .testimonials-card h6 {
    font-weight: 600;
    font-size: 17px;
    line-height: 16.91px;
    text-align: center;
    color: #8C8C8C;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 12px;
    border: 2.25px solid #8C8C8C;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 25px;
    color: #8C8C8C;
    font-weight: 900;
}

.testimonials .swiper-button-prev {
    left: -60px;
}

.testimonials .swiper-button-next {
    right: -60px;
}

.testimonials .purple-img {
    bottom: -50px;
    left: 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 50px 30px 0;
    }

    .testimonials .swiper-button-prev {
        left: -30px;
    }

    .testimonials .swiper-button-next {
        right: -30px;
    }

    .testimonials .purple-img {
        bottom: -10px;
    }

}

/* End testimonials  */

/* start grow-section  */
.grow-section {
    background: linear-gradient(#0000008F), url(../images/home/grow-bg.png);
    height: 450px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}

.grow-section .grow-box h6 {
    font-weight: 800;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
    width: 50%;
}

.grow-section .grow-box p {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    width: 50%;
}

.grow-section .grow-box button {
    width: 149px;
    height: 41.82407760620117px;
    border-radius: 7.84px;
    background-color: #A179F3;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 19.61px;
    line-height: 100%;
    border: none;
}

@media (max-width: 768px) {

    .grow-section .grow-box h6,
    .grow-section .grow-box p {
        width: 90%;
    }

    .grow-section .grow-box p {
        font-weight: 400;
        font-size: 11px;
        line-height: 20px;
        text-align: center;
    }

    .grow-section .grow-box h6 {
        font-weight: 700;
        font-style: Bold;
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }

    .grow-section {
        height: auto;
        padding: 20px;
        /* border-radius: 5px; */
    }

    .grow-section .grow-box button {
        width: 120px;
        height: 31.82407760620117px;
        border-radius: 7.84px;
        background-color: #A179F3;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 12.61px;
        line-height: 100%;
        border: none;
    }

}

/* End grow-section  */

/* start footer  */
footer {
    background-color: #000000;
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
}

footer .footer-links h6 {
    color: #A179F3;
    font-weight: 700;
    font-size: 30px;
    line-height: 169%;
    margin-bottom: 10px;
}

footer .footer-links ul li {
    color: #FFFFFF;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: "Inter", sans-serif;
}

footer .footer-links ul li::marker {
    color: #A179F3;
}


footer .footer-links ul li a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 24.1px;
    position: relative;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif !important;
}

footer .footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #A179F3;
    transition: width 0.3s ease;
}

footer .footer-links ul li a:hover {
    color: #A179F3;
    transform: translateX(-5px);
}

footer .footer-links ul li a:hover::after {
    width: 100%;
}

footer .footer-news h6 {
    font-weight: 600;
    font-size: 25px;
    line-height: 24.1px;
    color: #FFFFFF;
}

footer .footer-news form input {
    width: 257px;
    height: 50px;
    border-top-left-radius: 85.38px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 85.38px;
    border: none;
    text-align: left;
    padding-left: 20px;
}

footer .footer-news form input:focus {
    outline: none;
}

footer .footer-news form button {
    width: 51px;
    height: 50px;
    left: 205.19px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border: 1px solid #D6D6D6;
    background-color: #FFD600;
    color: #FFFFFF;
    font-size: 22px;
    margin-left: -1px;
}


@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}


footer .footer-news form button:hover .fa-arrow-right {
    animation: shake 0.4s ease;
}

/* RTL overrides for footer newsletter */
html[dir="rtl"] footer .footer-news form {
    flex-direction: row-reverse;
}

html[dir="rtl"] footer .footer-news form input {
    /* sharp corners on both sides for RTL */
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    text-align: right;
    padding-right: 20px;
    padding-left: 0;
    width: 257px;
}

html[dir="rtl"] footer .footer-news form button {
    /* sharp corner on left (next to input), rounded on right */
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    border-top-right-radius: 85.38px;
    border-bottom-right-radius: 85.38px;
    margin-left: -1px;
    margin-right: 0;
    left: auto;
    position: relative;
}

html[dir="rtl"] footer .footer-news form button:hover .fa-arrow-left {
    animation: shake 0.4s ease;
}

footer .footer-news #newsletterMessage {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 8px 12px;
    border-radius: 4px;
    min-height: 20px;
}

footer .footer-news #newsletterMessage:empty {
    display: none !important;
}

footer .social .fa-facebook-f,
footer .social .fa-instagram,
footer .social .fa-youtube,
footer .social .fa-twitter {
    background-color: #E3D6F5;
    padding: 15px;
    border-radius: 50%;
    font-size: 25px;
    color: #532494;
    transition: all 0.4s ease;
    display: inline-block;
}

footer .social .fa-facebook-f:hover,
footer .social .fa-instagram:hover,
footer .social .fa-youtube:hover,
footer .social .fa-twitter:hover {
    background-color: #532494;
    color: #fff;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 15px rgba(83, 36, 148, 0.7);
}

footer .social .fa-facebook-f {
    padding: 15px 20px;
}

footer .footer-news img {
    width: 200px;
    height: auto;
}

footer .left-side {
    position: absolute;
    left: 0;
    bottom: 0;
}

footer .right-side {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width:768px) {

    footer .footer-news img {
        margin: auto;
        display: block;
    }

    footer .footer-news h6 {
        text-align: center;
    }

    footer .left-side,
    footer .right-side {
        display: none;
    }
}

/* End footer  */

/* start blogs  */
.blogs-page .nav-pills .nav-link {
    margin: 10px;
}

.blogs-page .nav-pills .blogs-nav-link {
    border-radius: 86px;
    font-weight: 800;
    font-size: 15px;
    line-height: 25.95px;
    color: #000000;
    background-color: #DAD9DB33;
}

.blogs-page .nav-pills .nav-link.active {
    background-color: #A179F3;
    color: #FFFFFF;
}

.blogs-page .tab-content .title {
    font-weight: 800;
    font-size: 28.13px;
    line-height: 30.14px;
    color: #A179F3;
}

.blogs-page .blogs-card .card-text {
    font-weight: 400;
    font-size: 13.05px;
    line-height: 169%;
    color: #000000;
}

.blogs-page .blogs-card p {
    font-weight: 400;
    font-size: 10.44px;
    line-height: 169%;
    color: #686868;
}

.blogs-page .text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.blogs-page .blogs-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogs-page .blogs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.blogs-page .blogs-card h6 {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blogs-page .blogs-card p {
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.blogs-page .blogs-card .card-title {
    font-weight: 700;
    font-size: 14.59px;
    line-height: 169%;
    color: #000000;
}

.blogs-page .blogs-card .blogs-btn {
    width: 93px;
    height: 36px;
    border-radius: 14.46px;
    background-color: #A179F3;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14.99px;
    line-height: 100%;
    border: 1.6px solid #A179F3;
    box-shadow: 0 0 6.23px #A1A1A1;
    z-index: 1;
    position: relative;
    transition: all 250ms;
    overflow: hidden;
}

.blogs-page .blogs-card .blogs-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #F1EAFA;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px #A1A1A1;
    box-shadow: 4px 8px 19px -3px #A1A1A1;
    transition: all .2s ease-in;
}

.blogs-page .blogs-card .blogs-btn:hover {
    color: #A179F3 !important;
}

.blogs-page .blogs-card .blogs-btn:hover::before {
    width: 100%;
}

/* start blogs-details  */
.blogs-details .blogs-details-title .fa-arrow-left,
.blogs-details .blogs-details-title h6 {
    font-weight: 800;
    font-size: 25px;
    line-height: 30.14px;
    color: #000000;
}

.blogs-img-one {
    margin-right: -50px;
}

.blogs-img-two {
    margin-left: -50px;
}

.blogs-details .bullet-point {
    width: 10px;
    height: 10px;
    background-color: #A179F3;
    border-radius: 50%;
    flex-shrink: 0;
}

.blogs-details h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 169%;
    color: #5B5B5B;
}

.blogs-details h6 {
    font-weight: 800;
    font-size: 27px;
    line-height: 30.14px;
    color: #000000;
}

.blogs-details p {
    font-weight: 400;
    font-size: 20px;
    line-height: 169%;
    color: #000000;
}

.blogs-details-card {
    box-shadow: 0 0 6.5px #00000040;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogs-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 768px) {
    .nav-pills {
        flex-wrap: nowrap !important;
        white-space: nowrap;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .nav-pills::-webkit-scrollbar {
        display: none;
    }

    .state-details-nav-link {
        display: inline-block;
        float: none;
    }

    .nav-arrow-mobile {
        font-size: 1rem;
        color: #6c757d;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s;
    }

    .blogs-details .blogs-details-title .fa-arrow-left {
        font-size: 16px;
    }

    .nav-arrow-mobile:hover {
        color: #0d6efd;
    }

    .nav-arrow-mobile {
        display: none;
    }

    .blogs-details .blogs-img-one,
    .blogs-details .logo {
        width: 100%;
    }

    .blogs-details h6 {
        font-size: 20px;
        line-height: 35.14px;
    }

    .nav-arrow-mobile.visible {
        display: block;
    }

    .blogs-details .blogs-details-title h6 {
        font-size: 10px;
    }

    .blogs-details p {
        width: 100% !important;
        font-size: 16px;
    }

    .blogs-img-one {
        margin-right: 0;
    }

    .blogs-img-two {
        margin-left: 0;
    }

    .blogs-page .nav-pills .blogs-nav-link {
        font-size: 13px;
        line-height: 25.95px;
    }

}

/* End blogs */

/* start contact page */
.contact-page .contact-page-title h5 {
    font-weight: 800;
    font-size: 50px;
    line-height: 77px;
    color: #A179F3;
    text-align: center;
}

.contact-page .contact-page-title p {
    font-weight: 500;
    font-size: 30px;
    line-height: 169%;
    color: #A179F3;
    width: 80%;
    text-align: center;
}

.contact-page .contact-form .form-inputs {
    box-shadow: .89px .89px 8.5px #0000004D;
    background-color: #F1EAFA;
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    padding: 10px;
}

.contact-page .contact-form .form-inputs form textarea,
.contact-page .contact-form .form-inputs form .contact-input {
    background-color: white;
    border: .62px solid #5151518C;
    border-radius: 12px;
    width: 90%;
    height: 45px;
    padding-right: 10px;
    font-weight: 700;
    font-size: 18.75px;
    line-height: 100%;
    text-transform: uppercase;
    color: #5151518C;
}

.contact-page .contact-form .form-inputs form .contact-input-order {
    height: 39px;
    width: 100%;
}

.contact-page .contact-form .form-inputs form .form-btn {
    width: 256px;
    height: 43px;
    border: none;
    border-radius: 10px;
    color: #FFFFFF;
    background-color: #A179F3;
    font-weight: 700;
    font-size: 20px;
    z-index: 1;
    position: relative;
    transition: all 250ms;
    overflow: hidden;
}

.contact-page .contact-form .form-inputs form .form-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #FFFFFF;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px #A1A1A1;
    box-shadow: 4px 8px 19px -3px #A1A1A1;
    transition: all .2s ease-in;
    border: 1px solid #A179F3;
}

.contact-page .contact-form .form-inputs form .form-btn:hover {
    color: #A179F3 !important;
}

.contact-page .contact-form .form-inputs form .form-btn:hover::before {
    width: 100%;
}

.contact-page .contact-form .form-inputs form textarea {
    height: 106px;
    padding-top: 10px;
}

.contact-page .contact-form .form-inputs form .form-textarea-order {
    height: 50px;
    padding-top: 0;
    width: 100%;
}

.contact-page .contact-form .contact-caption {
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    background-color: #A179F3;
    box-shadow: .89px .89px 8.5px #0000004D;
    padding: 40px 15px;
}

.contact-page .contact-form .contact-caption .box h6 {
    font-weight: 800;
    font-size: 23px;
    line-height: 169%;
    color: white;
}

.contact-page .contact-form .contact-caption .box p {
    font-weight: 500;
    font-size: 20.7px;
    line-height: 169%;
    color: white;
}

.contact-page .contact-form .form-inputs label {
    color: #000000;
    font-weight: 700;
    font-size: 15px;
}

.contact-page .contact-form .form-inputs span {
    color: red;
}

.contact-page .contact-form .form-inputs .form-check label {
    color: #A179F3;
    font-weight: 500;
}

.contact-page .contact-form .form-inputs .form-check a {
    color: #A179F3;
    text-decoration: underline;
    font-weight: 700;
}

.contact-page .contact-form .form-inputs-order {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    background-color: white;
}

.contact-page .contact-form .contact-caption-order {
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width:768px) {
    .contact-page .contact-page-title p {
        width: 100%;
        font-size: 18px;
        line-height: 35px;
    }

    .contact-page .contact-form .contact-caption .box h6 {
        font-size: 20px;
    }

    .contact-page .contact-page-title h5 {
        font-size: 25px;
        line-height: 40px;
    }

    .contact-page .contact-form .contact-caption .box p {
        font-size: 16px;
    }

    .contact-page .contact-form .contact-caption,
    .contact-page .contact-form .form-inputs {
        border-radius: 13px;
    }

    .contact-page .contact-form .form-inputs form textarea,
    .contact-page .contact-form .form-inputs form .contact-input {
        width: 100%;
    }

}

/* End contact page */

/* start questions page */

.questions .questions-title h6 {
    font-weight: 500;
    font-size: 25px;
    line-height: 43px;
    text-align: center;
    color: #A179F3;
}

.questions .accordion {
    box-shadow: 1px 3px 8.9px #00000040;
    background-color: #EFEFEF8C !important;
    border-radius: 15px;
}

.questions .accordion-button::after {
    display: none;
}

.questions .accordion-button::before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    margin-right: 0;
    order: -1;
}

.questions .accordion-button:not(.collapsed)::before {
    content: "\f068";
    color: #532494 !important;

}

.questions .accordion-button {
    padding-left: 1.25rem;
    padding-right: 2.5rem;
    flex-direction: row-reverse;
}

.questions .accordion-button:focus {
    box-shadow: none;
}

.questions .accordion-button {
    color: #532494;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    background-color: #EFEFEF8C;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    box-shadow: none;
}

@media (max-width: 768px) {
    .questions .questions-title h6 {
        font-size: 20px;
        line-height: 33px;
    }
}

/* End questions page */

/* start privacy page */
.privacy-page .privacy-title h5 {
    font-weight: 800;
    font-size: 35px;
    line-height: 30.14px;
    color: #A179F3;
}

.privacy-page .privacy-list p {
    font-weight: 600;
    font-size: 25px;
    line-height: 169%;
    color: #000000;
}

.privacy-list .box {
    margin-bottom: 15px;
}

@media (max-width:768px) {
    .privacy-page .privacy-list p {
        font-size: 15px;
        margin-bottom: 0;
    }

    .privacy-page .privacy-title h5 {
        font-size: 25px;
    }
}

/* End privacy page */

/* start services-page  */
.services-page .services-values {
    background-color: #EEE9F8;
}

.services-page .services-card-box {
    background-color: #E1D7F6;
}

.services-page .services-card {
    background-color: #A179F3;
    box-shadow: 1px 5px 7px #00000040;
}

.services-page .services-caption h5 {
    font-weight: 600;
    font-size: 25px;
    line-height: 44px;
    color: #A179F3;
}

.services-page .services-caption h4 {
    font-weight: 800;
    font-size: 60px;
    line-height: 77px;
    color: #A179F3;
}

.services-page .services-caption p {
    font-weight: 600;
    font-size: 30px;
    line-height: 44px;
    color: #424242;
}

.services-page .range-box {
    width: 100%;
    height: 20px;
    box-shadow: 5px 3px 11px #00000026;
    background-color: #FFFFFF;
}

@media(max-width:768px) {

    .services-page .services-caption h4 {
        font-size: 30px;
        line-height: 44px;
    }

    .services-page .services-caption p {
        font-size: 18px;
        line-height: 33px;
    }
}

/* End services-page  */

/* start case-studies  */
.case-studies .case-value .fa-arrow-up {
    padding: 13px 16px;
    font-size: 22px;
}

.case-studies .case-value p {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.case-studies .case-value h6 {
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    font-size: 50px;
}

.case-studies .case-value {
    background-color: #A179F3;
    width: 250px;
    bottom: -50px;
    right: -50px;
}

.case-studies .case-caption h6 {
    font-weight: 700;
    font-size: 54.99px;
    line-height: 64.81px;
    color: #333333;
}

.case-studies .case-caption p {
    font-weight: 400;
    font-size: 15.71px;
    line-height: 31.42px;
    color: #33333380;
}

.case-studies .more h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 64.81px;
    color: #333333AB;
}

.case-studies .case-title h6 {
    font-weight: 800;
    font-size: 60px;
    line-height: 77px;
    color: #A179F3;
}

.case-studies .case-card {
    background-color: #FFFFFF;
    box-shadow: 0 4px 9px #00000040;
}

.case-studies .case-card p {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 9px;
    color: #A179F3;
}

.case-studies .case-card h6 {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin: 0;
    text-align: left;
}

@media(max-width:768px) {

    .case-box,
    .case-value {
        position: static !important;
    }

    .case-studies .case-value {
        width: 100%;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }


    .case-studies .case-caption h6 {
        font-size: 20px;
        line-height: 33px;
    }

    .case-studies .case-title h6 {
        font-size: 35px;
    }
}

/* End case-studies  */

/* start about page  */
.about-us-page .about-caption h6 {
    font-weight: 600;
    font-size: 25px;
    line-height: 44px;
}

.about-us-page .about-caption h5 {
    font-weight: 800;
    font-size: 40px;
    line-height: 55px;
}

.about-us-page .about-caption p {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #000000;
}

.about-us-page .about-card-box .about-card {
    box-shadow: .75px 2.27px 6.75px #00000040;
    background-color: #FFFFFF;
}

.about-us-page .about-card-last {
    box-shadow: .57px 1.7px 5px #00000040;
}

.about-us-page .about-card-box {
    background-color: #EEE9F8;
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-us-page .more h6 {
    font-weight: 800;
    font-size: 40px;
    line-height: 77px;
}

@media (max-width:768px) {
    .about-us-page .about-caption h5 {
        font-size: 25px;
        line-height: 40px;
    }
}

/* End about page  */

#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #A179F3;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px white;
    transition: opacity 0.4s, transform 0.3s;
    opacity: 0;
    pointer-events: none;
    border: 1px solid #A179F3;
}

#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    border: 1px solid white;
    transform: scale(1.1);

}

/* spinner  */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 32, 39, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid #F1EAFA;
    border-top: 5px solid #A179F3;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 15px #A179F3;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #FFFFFF;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    text-align: center;
}
