@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
    --main-color: #29029B;
    --hover-color: #ACDAFB;
    --second-color: #881CBD;
}

body {
    font-family: "Tajawal", sans-serif;
    /* background: #F7F7F8; */
}

a {
    text-decoration: none;
}

main {
    overflow: hidden;
}

hr {
    border-color: #aeaeae;
}

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

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

.btn-outline-primary {
    border-color: var(--main-color);
    color: var(--main-color);
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.show {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff;
}

.btn-info {
    background-color: #05BCC8;
    border-color: #05BCC8;
    color: #fff;
}

.btn-info:hover {
    color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--main-color);
}

/* Start Navbar Style */

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(0px);
        transition: all 0.3s ease-in;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        transform: translateY(10px);
        opacity: 1;
        visibility: visible;
    }

    .navbar .dropdown:hover>.dropdown-menu:hover>.dropdown-menu {
        display: block;
        transform: translateY(-5px);
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.3s ease-in;

        margin-top: 0;
        box-shadow: 0 0 8px 0 rgba(1, 0, 64, 0.07);
        border: 0;
    }

    .navbar .nav-item:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        position: relative;
        padding: 0 15px;
    }

    .dropdown-menu .submenu {
        right: auto;
        left: 100%;
        transition: all 0.3s ease;
    }

    .dropdown-menu>li:hover>.submenu {
        transform: translateY(-40px);
        visibility: visible;
        opacity: 1;
    }
}

header .navbar {
    background-color: #fff !important;
    border-bottom: 1px solid #F1F1F3;
}

header ul.second-nav,
header ul.main-nav {
    gap: 10px;
}

header ul.second-nav>li:last-child a {
    color: var(--main-color);
    font-size: 16px;
}

header .dropdown-toggle::after {
    border: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 13px;
    margin-left: unset;
    vertical-align: unset;
}

header .dropdown-menu .dropdown-toggle::after {
    position: absolute;
    right: 5px;
    transform: rotate(-90deg);
    font-size: 12px;
}

header a.cart-link.nav-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

header a.cart-link.nav-link:hover {
    background: var(--main-color);
}

header a.cart-link.nav-link svg path,
header a.lang-link.nav-link svg path {
    transition: all .15s ease-in-out;
}

header a.cart-link.nav-link:hover svg path {
    stroke: #fff;
}

header a.lang-link.nav-link:hover {
    color: var(--main-color);
}

header a.lang-link.nav-link:hover svg path {
    stroke: var(--main-color);
}

header ul.dropdown-menu {
    border-color: #F7F6F9;
}


header ul.dropdown-menu::before {
    content: '';
    top: -11px;
    left: 10px;
    display: inline-block;
    position: absolute;
    background: url('data:image/svg+xml,<svg width="22" height="17" viewBox="0 0 22 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4208 1.73003L11 1.07399L10.5792 1.73003L1.9189 15.23L1.42496 16H2.33975H19.6603H20.575L20.0811 15.23L11.4208 1.73003Z" fill="white" stroke="%23F7F6F9"/></svg>') no-repeat;
    background-size: contain;
    width: 15px;
    height: 12px;
}

header .dropdown-menu[data-bs-popper] {
    top: 115%;
}

header form {
    position: relative;
    width: 40%;
}

header form input {
    background-color: #F2F5F8 !important;
    border: 0 !important;
    border-radius: 20px !important;
}

header form button {
    position: absolute;
    background: transparent;
    border: 0;
    right: 18px;
    top: 9px;
}

header ul.main-nav>li:last-child a {
    background: #FAFAFA;
    border-radius: 8px;
    color: #0A0A0B;
    padding-right: 12px;
    padding-left: 12px;
}

header ul a {
    font-weight: 500 !important;
    color: #0A0A0B;
}

header ul.first-nav a.active,
header ul.first-nav a:hover {
    color: var(--main-color) !important;
    position: relative;
}

header ul.first-nav a {
    position: relative;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0 10px;
    color: #160647 !important;
}

header ul.first-nav a:after {
    content: '';
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background-color: transparent;
    position: absolute;
    bottom: 0px;
    right: 0;
    transition: all .3s ease;
}

header ul a.active:after,
header ul.first-nav a:hover:after {
    background-color: var(--main-color);
}

header ul.dropdown-menu li a {
    padding: 8px 10px;
    border-bottom: 1px solid rgb(230 233 234 / 50%);
}

/* header ul.dropdown-menu {
    padding: 0px 15px;
} */

header ul.dropdown-menu.submenu::before {
    display: none;
}

/* End Navbar Style */

/* Start Hero Style */

.hero .content {
    background: url(../images/hero-bg.jfif) no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 32px;
    overflow: hidden;
    padding: 30px 0;
}
i[class*="arrow-left"] {
    transform: rotate(180deg);
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0A0B0A;
}

.hero h1 span,
.intro h2 span {
    background: linear-gradient(246.87deg, var(--main-color) 29.18%, var(--second-color) 51.69%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
}

.hero .text {
    /* margin-inline-start: -80px; */
}

.hero a {
    background: linear-gradient(246.87deg, var(--second-color) 29.18%, var(--main-color) 51.69%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 60px;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
    transition: all .3s ease;
    border: 1px solid transparent;
}

.hero a:hover {
    background: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
    background-color: #fff;
}

/* End Hero Style */

/* Start Into Style */
.intro {
    padding: 85px 0;
}

.intro h2 {
    font-size: 42px;
    font-weight: 700;
}

.intro p {
    font-size: 22px;
    font-weight: 400;
    line-height: 39px;
    color: #2B2928;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
}

.video-wrapper .bg {
    object-fit: cover;
    display: block;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
}

.video-wrapper:hover .bg {
    -webkit-filter: brightness(75%);
    filter: brightness(75%);
}

.video-wrapper .icon {
    height: 85px;
    width: 85px;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    position: absolute;
    cursor: pointer;
}

/* End Into Style */

/* Start Pro Tools Style */
.pro-tools {
    background: linear-gradient(-180deg, rgba(232, 247, 248, 0.8) 0%, rgba(232, 247, 248, 0.6) 0%, rgba(228, 245, 237, 0) 100%);
    padding: 50px 0;
}

.pro-tools h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0A0B0A;
}

.pro-tools .desc {
    width: 70%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
    margin-bottom: 40px;
}

.pro-tools .nav-pills {
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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


.pro-tools .nav-pills .nav-item {
    margin: 0 5px;
}

.pro-tools .nav-pills .nav-link {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #160647;
    gap: 10px;
    padding: 10px;
    justify-content: flex-start;

}

.pro-tools .nav-pills .nav-link.active,
.pro-tools .nav-pills .nav-link:hover {
    background-color: var(--main-color);
    color: #fff;
}

.pro-tools .nav-pills .nav-link .icon {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    border: 1px solid #DEF7F0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.pro-tools .nav-pills .nav-link .icon img {
    width: 40px;
    height: auto;
}

.pro-tools .tab-content {
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 4px 4px -1px rgba(12, 12, 13, 0.1);
}

.pro-tools .tab-content .img-content {
    position: relative;
}

.pro-tools .tab-content .img-content img {
    max-width: 100%;
}

.pro-tools .tab-content .img-content .image {
    position: absolute;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 90px);
    object-fit: cover;
    top: 50px;
}

.pro-tools .tab-content h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-color);
}

.pro-tools .tab-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 43px;
    color: rgba(0, 0, 0, 0.698);
    margin: 20px 0 30px;
}

.pro-tools .tab-content a {
    font-size: 20px;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    border: 1px solid var(--main-color);
    transition: all .3s ease;
}

.pro-tools .tab-content a:hover {
    background-color: transparent;
    color: var(--main-color);
}

.pro-tools .tab-content .tab-pane:nth-child(even) h4 {
    color: var(--second-color);
}

.pro-tools .tab-content .tab-pane:nth-child(even) a {
    background-color: var(--second-color);
    border: 1px solid var(--second-color);
}

.pro-tools .tab-content .tab-pane:nth-child(even) a:hover {
    background-color: transparent;
    color: var(--second-color);
}

.pro-tools .tab-content .tab-pane:nth-child(even) .row {
    flex-direction: row-reverse;
}

.pro-tools .tab-content .tab-pane .row {
    overflow: hidden;
}

.pro-tools .tab-content .tab-pane .row > div:first-child {
    transform: translateX(-100%);
    opacity: 0;
    transition: all .8s ease;
}

.pro-tools .tab-content .tab-pane .row > div:last-child {
    transform: translateX(100%);
    opacity: 0;
    transition: all .8s ease;
}

.pro-tools .tab-content .tab-pane.show .row > div {
    transform: translateX(0);
    opacity: 1;
}

/* End Pro Tools Style */

/* Start Solution Style */
.solutions {
    padding: 60px 0;
}

.solutions h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0A0B0A;
}

.solutions h2 span {
    background: linear-gradient(246.87deg, var(--main-color) 29.18%, var(--second-color) 51.69%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solutions .desc {
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
    width: 70%;
    color: #0A0B0A;
    margin: 15px auto 30px;
}

.solutions .btn {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    padding: 10px 50px;
    border-radius: 30px;
}

.solutions .btn:hover {
    background-color: transparent;
    color: var(--main-color);
}

.timeline {
    width: 90%;
    margin: 50px auto 0;
    position: relative;
    padding: 30px 0;
}

/* .timeline:before, */
.timeline:after {
    content: '';
    width: 2px;
    height: 0;
    position: absolute;
    top: 0;
    right: calc(50% - 1px);
    background-color: var(--main-color);
    transition: all 4s ease;
}

.timeline.active-timeline:after {
    /* background-color: var(--main-color); */
    height: 100%;
}

.timeline .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.timeline .item::after {
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/Navigator.png) no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 22;
}

.timeline .item > div {
    width: 45%;
    flex-shrink: 0;
}

.timeline .item .text-wrapper {
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 1px 4px 0px #0C0C0D1A;
    gap: 20px;
    position: relative;
}

.timeline .item .text-wrapper:after {
    content: '';
    display: inline-block;
    position: absolute;
    background: url('data:image/svg+xml,<svg width="22" height="17" viewBox="0 0 22 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4208 1.73003L11 1.07399L10.5792 1.73003L1.9189 15.23L1.42496 16H2.33975H19.6603H20.575L20.0811 15.23L11.4208 1.73003Z" fill="white" stroke="%23F7F6F9"/></svg>') no-repeat;
    background-size: contain;
    top: 50%;
    left: -15px;
    width: 18px;
    height: 15px;
    transform: rotate(-90deg);
}

.timeline .item2 .text-wrapper:after {
    right: -15px;
    left: unset;
    transform: rotate(-270deg);
}

.timeline .item .text-wrapper img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.timeline .item .text-wrapper p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin: 0;
}

.timeline .item .number-wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
}

.timeline .item .number-wrapper span {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background-color: var(--main-color);
    margin: 0 1px;
    padding: 0 18px;
    border-radius: 5px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.timeline .item .number-wrapper .number {
    font-size: 30px;
    font-weight: 700;
}

.timeline .item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline .item2 .number-wrapper span {
    background-color: #4066B0
}

.timeline .item3 .number-wrapper span {
    background-color: #D193C0
}


.timeline .item:nth-child(odd) .number-wrapper {
    justify-content: flex-end;
}
/* End Solution Style */


/* Start AI Tools Style */
.ai-tools {
    background-color: #F7F7F8;
    padding: 60px 0;
    width: 96%;
    margin: 0 auto;
    border-radius: 30px;
}

.ai-tools .fancy-title h2 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(246.87deg, var(--second-color) 29.18%, var(--main-color) 51.69%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-tools .fancy-title p {
    font-size: 20px;
    font-weight: 400;
    color: #0A0B0A;
}

.ai-tools .fancy-title .btn {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 20px;
}

.ai-tools .fancy-title .btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.ai-tools .item {
    background-color: #fff;
    border-radius: 10px;
}

.ai-tools .item .content-wrap {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    padding-bottom: 0;
    min-height: 158px;
}

.ai-tools .item .content-wrap .icon {
    width: 70px;
    height: 70px;
    background-color: #4260AA;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.ai-tools .item:hover .content-wrap .icon {
    background-color: var(--main-color);
}

.ai-tools .item .content-wrap .icon img {
    width: 18px;
}

.ai-tools .item .content-wrap h3 {
    font-size: 18.8px;
    font-weight: 500;
}

.ai-tools .item .content-wrap h3 a {
    color: #0A0B0A;
    transition: all .3s ease;
}

.ai-tools .item:hover .content-wrap h3 a {
    color: var(--main-color);
}

.ai-tools .item .content-wrap p {
    font-weight: 400;
    line-height: 22.5px;
    color: #160647;
}

.ai-tools .item .link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #4260AA;
    gap: 20px;
    transition: all .3s ease;
    padding-bottom: 20px;
}

.ai-tools .item:hover .link {
    transform: scale(1.1);
}

/* End AI Tools Style */

/* Start Features Style */
.features {
    background: url(../images/bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.features h2 {
    font-size: 36px;
    font-weight: 700;
    color: black;
    line-height: 38.4px;
    text-align: center;
}

.features .desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.88px;
    text-align: center;
}

.features .card {
    padding: 35px;
    border-radius: 12px;
    transition: all .3s ease;
    height: 100%;
}

.features .card:hover {
    box-shadow: 0px 16px 16px -8px rgba(12, 12, 13, 0.1) !important;
}

.features .card img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    object-fit: contain;
}

.features .card h5 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.features .card p {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;

}

.features .row>div {
    padding: 8px;
}

.features .row>div:not(:first-child) .card:after {
    content: '';
    display: inline-block;
    position: absolute;
    background: url('data:image/svg+xml,<svg width="22" height="17" viewBox="0 0 22 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.4208 1.73003L11 1.07399L10.5792 1.73003L1.9189 15.23L1.42496 16H2.33975H19.6603H20.575L20.0811 15.23L11.4208 1.73003Z" fill="white" stroke="%23F7F6F9"/></svg>') no-repeat;
    background-size: contain;
    top: 50%;
    left: -15px;
    width: 18px;
    height: 15px;
    transform: rotate(-90deg);
}

.features a.btn {
    padding: 10px 60px;
    background-color: white;
    color: var(--main-color);
    border-color: var(--main-color);
}

.features a.btn:hover,
.features a.btn:active,
.features a.btn:focus {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* End Features Style */


/* Start Latest News Style */
.latest-news h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4260AA;
}

.latest-news .btn {
    color: #4260AA;
    border: 1px solid #4260AA;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 20px;
}

.latest-news .btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.latest-news .item {
    /* box-shadow: 0px 4px 4px -4px rgba(12, 12, 13, 0.05); */
    border-radius: 25px;
    box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1);
    height: 100%;
    padding: 15px;
}

.latest-news .item img {
    width: 100%;
    height: 278px;
    border-radius: 25px;
    object-fit: cover;
}

.latest-news .item h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    min-height: 58px;
    margin: 15px 0 25px;
}

.latest-news .item h3 a {
    color: #160647;
}

.latest-news .item:hover h3 a {
    color: var(--second-color);
}

.latest-news .item .link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #4260AA;
    gap: 20px;
    transition: all .3s ease;
}

.latest-news .item:hover .link {
    transform: scale(1.15);
}

.latest-news .row>div {
    padding: 8px;
}

/* End Latest News Style */


/* Start Footer Style */

footer {
    background:linear-gradient(45deg,  var(--main-color) 40%, var(--second-color) 80%, var(--hover-color) 100%);
    color: #fff;
}

footer a {
    color: #FAFAFA;
    opacity: .9;
    /* font-size: 18px; */
}

footer .footer-widget li {
    margin-bottom: 18px;
}

footer .footer-widget h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFF9EA;
    margin-bottom: 25px;
}

footer .footer-widget li a {
    display: block;
    transition: all .3s ease;
}

footer .footer-widget li a:hover {
    color: #fff;
    opacity: 1;
    transform: translateX(3%);
}

footer .main-footer {
    padding: 80px 0 40px 0;
}

footer .copyright .social a {
    display: inline-flex;
    margin-left: 10px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FAFAFA;
    font-size: 20px;
    opacity: .8;
    transition: all .3s ease;
}

footer .copyright .social a:hover {
    opacity: 1;
}

footer img {
    max-width: 100%;
}

/* footer .copyright .social a i {
    transition: all .7s ease;
}

footer .copyright .social a:hover i {
    transform: rotate(360deg);
} */

/* Start Responsive Code */

@media (max-width: 767px) {

    .hero .text {
        margin-inline-start: 0;
        margin-top: 20px;
		text-align: center;
    }
	.hero img {
		margin-left: 20px;
	}

    .hero h1,
    .pro-tools h2,
    .solutions h2,
    .ai-tools .fancy-title h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .hero a {
        margin-top: 0;
        font-size: 20px;
    }

    .hero p,
    .intro p,
    .pro-tools .desc,
    .solutions .desc,
    .ai-tools .fancy-title p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
        width: 100%;
    }

    section.hero {
        margin-bottom: 30px;
    }

    .intro h2 {
        font-size: 28px;
    }


    .features .row>div:not(:first-child) .card:after {
        right: 50%;
        top: -13px;
        left: unset;
        transform: rotate(-360deg);
    }

    .pro-tools .tab-content {
        padding: 20px;
    }

    .pro-tools .tab-content .img-content .image {
        left: 25px;
        width: calc(100% - 50px);
        height: calc(100% - 70px);
        top: 40px;
    }

    .pro-tools .tab-content h4 {
        font-size: 28px;
        margin-top: 15px;
    }

    .pro-tools .tab-content p {
        font-size: 16px;
        font-weight: 500;
        line-height: unset
    }

    .timeline .item,
    .timeline .item:nth-child(even) {
        flex-direction: column;
    }

    .timeline .item > div {
        width: 100%;
    }

    .timeline .item:nth-child(odd) .number-wrapper {
        justify-content: flex-start;
    }

    .timeline .item .text-wrapper p {
        font-size: 16px;
    }

    .timeline .item .text-wrapper img {
        width: 60px;
        height: 60px;
    }

    .timeline .item .number-wrapper span {
        font-size: 18px;
    }

    .fancy-title {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .timeline .item::after,
    .timeline:after {
        right: calc(100% + 20px);
    }

    .pro-tools .tab-content a {
        font-size: 18px;
        padding: 6px 30px;
    }

    .pro-tools .nav-pills .nav-link .icon {
        width: 50px;
        height: 50px;
    }

    .pro-tools .nav-pills .nav-link .icon img {
        width: 30px;
    }

    .pro-tools .nav-pills .nav-link {
        font-size: 16px;
        padding: 5px;
        padding-inline-end: 12px;
    }

    .features .card {
        padding: 20px;
    }
    .video-wrapper .icon {
        height: 60px;
        width: 60px;
    }

    .intro {
        padding: 30px 0;
    }

    .solutions {
        padding: 0;
    }

    .solutions .btn {
        font-size: 18px;
        padding: 8px 40px;
    }

    .timeline .item .number-wrapper {
        margin-bottom: 15px;
    }

    .timeline .item .text-wrapper {
        padding: 20px;
    }

    .ai-tools .item .content-wrap .icon {
        width: 50px;
        height: 50px;
    }

    header ul.first-nav a:after {
        display: none;
    }

    footer .main-footer {
        padding: 40px 15px 0;
    }

    footer .main-footer .footer-widget {
        margin-bottom: 40px;
    }

    footer .footer-widget li {
        margin-bottom: 10px;
    }

    footer .main-footer .footer-widget img {
        width: 40%;
        margin: 0 auto;
        display: block;
    }

    footer .copyright>div {
        flex-direction: column;
    }

    footer .copyright .social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    footer .footer-widget h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .features h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .features .desc {
        width: 100% !important;
        font-size: 16px;
        line-height: 26px;
    }

}

@media (max-width: 1200px) {
    header .offcanvas {
        padding: 30px;
        max-width: 85%;
        overflow-y: auto;
    }

    header .offcanvas form {
        width: 100%;
        order: 1;
        margin: 0 !important;
        margin-bottom: 15px !important;
    }

    header .offcanvas ul {
        order: 2;
    }

    ul.mobile-menu {
        flex-direction: row;
        margin-bottom: 0 !important;
    }

    ul.mobile-menu ul.dropdown-menu {
        position: absolute;
    }

    header .navbar-toggler {
        padding: 5px;
        width: 40px;
        height: 40px;
        box-shadow: none !important;
    }

    header .navbar-toggler span {
        width: 1.8rem;
    }

    header a.navbar-brand img {
        max-width: 120px;
    }

    header .offcanvas a.btn {
        width: 100%;
        text-align: start;
    }

    header .offcanvas .main-nav>li>.dropdown-menu {
        display: block;
    }
}

@media (min-width: 767px) and (max-width: 1100px) {
    .hero h1 {
        font-size: 28px;
        line-height: 40px;
    }

    .hero .hero-img {
        max-width: 85%;
    }

    .hero .title {
        padding: 15px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .hero a {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .offcanvas {
        flex-direction: row;
    }
}

@media (max-width: 991px) {
    .hero .hero-img {
        width: 100%;
        max-width: 100%;
    }
}

/* End Responsive Code */


/* Back End Style */

.user-plan .relative {
    position: relative;
}

h3.text-user {
    position: absolute;
    top: calc(50% - 5px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

.text-user strong {
    font-size: 32px;
}

.price-plane {
    display: flex;
    flex-direction: column;
    border-radius: 24px !important;
    padding-bottom: 0 !important;
    position: relative;
    overflow: hidden;
}

.price-plane a.cancel,
.price-plane a.choose {
    padding: 10px;
    margin: 0 -1.5rem;
    color: #dc3545;
    border: 1px solid #dee2e6;
    border-radius: 28px;
    transition: all .3s ease;
    display: block;
    font-weight: 500;
}

.price-plane a.choose {
    color: var(--main-color);
}

.price-plane a.choose:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-2px);
}

.price-plane a.cancel:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-2px);
}

.price-plane .popular {
    position: absolute;
    top: 20px;
    left: unset;
    right: -30px;
    background: var(--main-color);
    color: #fff;
    padding: 2px 30px;
    transform: rotate(45deg);
    font-size: 14px;
}

.price-plane strong.price {
    font-size: 60px;
    line-height: 50px;
    margin-inline-end: 5px;
}

.price-plane p.name {
    margin-top: 2rem;
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 500;
}

.price-plane ul span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    margin-inline-end: 5px;
}

.price-plane ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu-end {
    left: 0;
    right: auto;
}
/*  */

header .dropdown-toggle::after {
    margin-inline-start: 5px;
}

.avatar-sm {
    margin-inline-end: 10px;
}
html {
    overflow-x: hidden;
}
div.eapps-widget {
    position: relative;
    height: 0;
    overflow: hidden;
}
.btn-whatss {
    position: fixed;
    inset-inline-start: 12px;
    bottom: 35px;
    left: 25px;
    border-radius: 100px;
    width: 48px;
    height: 48px;
    z-index: 100;
    color: rgb(79, 206, 93);
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    border-color: rgba(0, 0, 0, 0);
    border-width: 0px;
    max-width: 1262px;
    padding: 8px 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px 0px;
    display: flex;
    justify-content: center;
}
.btn-whatss i{
    font-size: 30px;
}
.btn-whatss:hover{
    color: white;
    background-color: green;
    border-color: green;
}

/*  chatboot stlye  */

.chatbot-toggler {
    position: fixed;
    bottom: 90px;
    left: 25px;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--main-color);
    transition: all 0.2s ease;
}
body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}
.chatbot-toggler span {
    color: #fff;
    position: absolute;
}
.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child  {
    opacity: 0;
}
body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}
.chatbot {
    position: fixed;
    left: 60px;
    bottom: 135px;
    width: 420px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
    0 32px 64px -48px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
}
body.show-chatbot .chatbot {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 200;
}
.chatbot header {
    padding: 22px 0;
    position: relative;
    text-align: center;
    color: #fff;
    background: var(--main-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.chatbot header span {
    position: absolute;
    right: 15px;
    top: 50%;
    display: none;
    cursor: pointer;
    transform: translateY(-50%);
}
.close-btn.clear-btn{
    left: 15px;
    right: auto !important;
    display: block;
}
header h2 {
    font-size: 1.4rem;
}
.chatbot .chatbox {
    overflow-y: auto;
    height: 310px;
    padding: 30px 20px 100px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar {
    width: 6px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}
.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}
.chatbox .chat {
    display: flex;
    list-style: none;
}
.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}
.chatbox .incoming span {
    width: 32px;
    height: 32px;
    color: #fff;
    cursor: default;
    text-align: center;
    line-height: 32px;
    align-self: flex-end;
    background: var(--main-color);
    border-radius: 4px;
    margin: 0 10px 7px 0;
}
.chatbox .chat p {
    white-space: pre-wrap;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    max-width: 75%;
    color: #fff;
    font-size: 0.95rem;
    background: var(--main-color);
}
.chatbox .incoming p {
    border-radius: 10px 10px 10px 0;
}
.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}
.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
}
.chatbot .chat-input {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 3px 20px;
    border-top: 1px solid #ddd;
}
.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    max-height: 180px;
    padding: 15px 15px 15px 0;
    font-size: 0.95rem;
}
.chat-input span {
    align-self: flex-end;
    color: var(--main-color);
    cursor: pointer;
    height: 55px;
    display: flex;
    align-items: center;
    visibility: hidden;
    font-size: 1.35rem;
}
.message-div{
    display: flex;
    justify-content: center;
    gap: 5px;
    position: absolute;
    top: 13%;
    font-size: 12px;
    width: 100%;
    background:var(--main-color);
    color: white;
    padding: 3px 20px;
}
.chat-input textarea:valid ~ span {
    visibility: visible;
}
@media (max-width: 490px) {
    .chatbot-toggler {
        left: 20px;
        bottom: 100px;
    }

    .chatbot {
        width: 320px;
    }

    .chatbot .chatbox {
        /*height: 90%;*/
        padding: 25px 15px 100px;
    }

    .chatbot .chat-input {
        padding: 5px 15px;
    }
    .chatbot header {
        padding: 25px 0;
    }

    .chatbot header span {
        display: block;
    }
    .btn-whatss{
        left: 20px;
    }
}
