/* Define each font variant */
@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Regular Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Light Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion SemiBold Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Black Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('/assets/fonts/gelion/Gelion Thin Italic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}


:root {
    --theme-color: #1C63E2;
    --theme-color-b: #042730;
    --theme-color-g: #C5D92E;
    --text-color-1: #374151;
    --text-color-2: #111827;
}



body {
    font-family: "Gelion", sans-serif;
    background-color: #F2FAFF;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Gelion", sans-serif;
}





/* //////////// ------------------------ */

.navbar {
    width: 100%;
    margin: 0px 0px -1px;
    padding: 0px;
    float: left;
    background: transparent;
    position: relative;
    z-index: 999;
    min-height: 80px;
}

.navbar .navbar-brand img {
    height: 35px !important;
}

.navbar .dropdown .dropdown-toggle {
    border-radius: 25px !important;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    height: fit-content;
    padding: 3px 7px;
}

.navbar .navbar-nav .nav-link {
    color: white;
}




.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(3px);
    background: #0000007a;
    z-index: 999;
}

.slide-navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(262.1deg, #1C63E2 -19.45%, #00033D 121.95%);
    z-index: 9999;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-navbar.active {
    left: 0;
}

.slide-navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;

}

.slide-navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-navbar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-navbar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.slide-navbar-content {
    padding: 20px 0;
}

.slide-nav-item {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.slide-nav-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
    text-decoration: none;
}

.slide-navbar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.navbar {
    width: 100%;
    margin: 0px 0px -1px;
    padding: 0px;
    float: left;
    background: transparent;
    position: relative;
    z-index: 999;
    min-height: 80px;
}

.navbar-toggler {
    border: 2px solid #fff;
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-link-base {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-link-base:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex !important;
        align-items: center;
    }

    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }
}

.slide-language-section {
    padding: 10px 20px;
}

.slide-language-btn {
    width: 100%;
    text-align: left;
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.slide-actions {
    padding: 10px 20px;
}

.slide-actions .btn {
    width: 100%;
}



.navbar-integration-detail {
    border-bottom: 1px solid #0000004D
}

.navbar-integration-detail .navbar-nav .nav-link {
    color: var(--theme-color) !important;

}

.navbar-integration-detail .dropdown-toggle {
    box-shadow: 0px 2px 4px 0px #00000040;
}

.navbar-integration-detail .mobile-toggle{
    color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}


.banner {
    position: relative;

}

.banner div div {
    z-index: 2;
}

.banner .subtitle {
    border-radius: 18px;
}

.banner .sec1-txt1 {
    width: 700px;
    margin: auto;
    color: #fff;
}

.banner .sec1-txt2 {
    color: #fff;
    /* color: var(--text-color-1); */
    padding: 25px !important;
    font-size: 20px !important;
}

.btn-link-base {
    background-color: #F2FAFFBF;
    color: var(--theme-color);
    border-radius: 45px;
    padding: 5px 25px;
    height: fit-content;
    width: fit-content;
}

.btn-link-base svg {
    stroke: var(--theme-color);
}

.btn-link-base:hover {
    color: var(--theme-color);

}

.btn-link-sec {
    background-color: var(--theme-color);
    color: #fff;
}

.btn-link-sec svg {
    stroke: #fff;
}

.btn-link-sec:hover {
    color: #fff;

}


.banner .bg-scop {
    position: absolute;
    top: 0;
    height: 60vh;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(262.1deg, #1C63E2 -19.45%, #00033D 121.95%);


}

.banner .sec1-img {
    max-width: 65% !important;
}

.shape {
    position: absolute;
}

.shape img {
    width: 100%;
}

.shape-left {
    top: 45%;
    left: 10px;
    transform: translateY(-50%);
    width: 100px;
}

.shape-right {
    top: 30%;
    right: 10px;
    width: 80px;
    transform: rotate(-35deg);
}

.integrations .integrations-titre {
    color: #00033D;
    position: relative;
    width: fit-content;
    margin: auto;
    font-size: 30px;
}

.integrations .integrations-text {
    color: #000000;
}

.integrations .integrations-p {
    color: #4B5563;
}

.integrations .integrations-p span {
    color: #A9C4FF;
}


.integrations .integration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.integrations .integration-logos .logo {
    max-width: 150px;
}

.integrations .integration-logos .logo img {
    width: 100%;
}

.avantages .avantages-span {
    background-color: #DBEAFE;
    color: #1C63E2;
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 14px;
}

.avantages .avantages-titre {
    color: #000;
    position: relative;
    width: fit-content;
    margin: auto;
    font-size: 35px;
}

.avantages .avantages-text {
    color: #4B5563;
}

.avantages .avantages-titre .brand-name {
    background: linear-gradient(90deg, #1C63E2 34.83%, #00033D 123.79%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




.avantages .avantages-text .brand-name {
    color: var(--theme-color);
}

.avantages .card {
    border: 2px solid #00033D4D;
    background: linear-gradient(0deg, #FFFFFF -7%, #E9F7FF 86.25%);
    border-radius: 10px;
}

.avantages .card .sec5-icon {
    background-color: #DBEAFE;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
}

.avantages .card .card-title {
    color: #111827;
}


.avantages .card .card-text {
    color: #717984;
    font-size: 14px;
}


.avantages .card .btn-card {
    border: 1.33px solid #00033D4D;
    background: #E9F7FF;
    color: #00033D;
    border-radius: 15px;
    padding: 3px 18px;
    font-weight: 500;

}

.points .points-titre {
    color: #000;
    width: fit-content;
    font-size: 35px;
}

.points .points-text {
    color: #4B5563;
    text-align: left;

}




.feature-card {
    background: white;
    border-radius: 16px;
    padding: 10px .5rem;
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    background: linear-gradient(92.3deg, #E9F7FF 0.59%, #FFFFFF 107.47%);
    border: 2px solid #00033D4D;
    box-shadow: 0px 4px 4px 0px #00000040;

}


.points .feature-icon {
    display: flex;
    font-size: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}


.points .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.points .feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #1B1F23;
    /* margin-bottom: 0.75rem; */
    margin: 0;
}

.points .feature-description {
    color: #5F6D7A;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


.points .box-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040;
    width: 300px;
}


.assistance {
    overflow: hidden;
    padding-top: 150px;
    margin-bottom: 50px;

}

.assistance .service-card {
    border-radius: 20px;
    padding: 2.5rem;
    /* margin-bottom: 2rem; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(86.2deg, #00033D -56.43%, #1C63E2 108.32%);


}



.assistance .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.assistance .service-description {
    color: #F2F2F2E5;
    line-height: 1.6;
}

.assistance .box-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.assistance .box-image::before {
    content: '';
    position: absolute;
    background-image: url(../images/screen-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 200%;
    height: 100%;
    left: -50%;
}

.z-index-2 {
    z-index: 2;
}

.assistance .box-image img {
    position: absolute;
    top: -150px;
    z-index: 1;
    /* display: none; */
}




.testimonial-container {
    padding: 40px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-container .rating {
    font-size: 1.5rem;
    color: #2196f3;
    font-weight: 700;
    margin: 30px 0;
}

.testimonial-container .testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial-container .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%;
}

.testimonial-container .testimonial-slide {
    flex: 0 0 20%;
    padding: 0 20px;
}

.testimonial-container .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-container .divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196f3, transparent);
    margin: 30px 0;
}

.testimonial-container .user-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-container .user-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%;
}

.testimonial-container .user-slide {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-container .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #2196f3;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.testimonial-container .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-container .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2196f3, rgba(33, 150, 243, 0.3));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-container .user-info {
    text-align: right;
}

.testimonial-container .user-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-container .user-title {
    color: #666;
    font-size: 14px;
}

.testimonial-container .navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-container .nav-btn {
    background: linear-gradient(135deg, #2196f3, rgba(33, 150, 243, 0.3));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.testimonial-container .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.testimonial-container .nav-btn:active {
    transform: translateY(0);
}



.testimonial-container .slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(33, 150, 243, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #2196f3;
    font-weight: bold;
}







.pourquoi {
    background: linear-gradient(262.1deg, #1C63E2 -19.45%, #00033D 121.95%);
}


.pourquoi .content-pourquoi .sec1-txt1 {
    font-size: 35px;
    max-width: 600px;
    margin: auto;
    background: linear-gradient(90deg, #F2FAFF 17.18%, #1C63E2 174.12%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pourquoi .content-pourquoi .tsec1-txt2 {
    max-width: 700px;
    margin: auto;

}






.cards-wrapper .card {
    /* background: white; */
    background: linear-gradient(180deg, #E9F7FF 0%, #FFFFFF 95.33%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 2px 4px 0px #0000001A;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cards-wrapper .card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 2px 4px 0px #0000001A;
}

.cards-wrapper .card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}




.cards-wrapper .card-content {
    padding: 15px 20px;
}

.cards-wrapper .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    line-height: 1.3;
}

.cards-wrapper .card-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 5px;
}

.cards-wrapper .read-more {
    display: inline-flex;
    align-items: center;
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cards-wrapper .read-more:hover {
    color: #2c5282;
}

.cards-wrapper .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cards-wrapper .card:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cards-wrapper .card-content {
        padding: 20px;
    }

    .cards-wrapper .card-title {
        font-size: 20px;
    }
}



.workflow {
    position: relative;
    margin-bottom: 80px;
    padding-top: 100px;
    max-width: 1000px;
    margin: auto;
}

.workflow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-38%, -50%);
    width: 3px;
    height: calc(100% - 60px);
    background: #4a90e2;
    z-index: 1;
}

.workflow .box-step {
    position: relative;
    margin-bottom: 10px;
    border-bottom: 3px solid #4a90e2;

}

.workflow .box-step:nth-child(odd) {
    border-right: 1px solid #4a90e2;
    border-bottom-right-radius: 15px;
}

.workflow .box-step:nth-child(even) {
    border-left: 2px solid #4a90e2;
    border-bottom-left-radius: 15px;
}

.workflow .box-step:nth-child(even)::after,
.workflow .box-step:nth-child(odd)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background-color: #00033D;
    transform: rotate(45deg);
}

.workflow .box-step:nth-child(odd)::after {
    left: -1px;
}

.workflow .box-step:nth-child(even)::after {
    right: -1px;
}

.workflow .step {
    position: relative;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    z-index: 2;
    margin-bottom: 10px;
}

.workflow .step:hover {
    transform: translateY(-5px);
}

/* .workflow .step::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    z-index: 3;
} */

.workflow .step:nth-child(odd)::before {
    right: -48px;
    top: 50%;
    transform: translateY(-50%);
}

.workflow .step:nth-child(even)::before {
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
}

.workflow .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.workflow .step .step-icon {
    background: #1C63E24D;
    color: #00033D;
}



.workflow .step-number {
    font-size: 28px;
    font-weight: bold;
    color: #00033D;
}

.workflow .step-title {
    font-size: 20px;
    font-weight: 600;
    color: #00033D;
}

.workflow .step-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}




.faq .faq-list {
    space-y: 15px;
    max-width: 900px;
    margin: auto;
}

.faq .faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .faq-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
}

.faq .faq-question {
    padding: 20px 25px;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
    transition: background 0.3s ease;
}

.faq .faq-question:hover {
    background: #f0f8ff;
}

.faq .faq-arrow {
    font-size: 18px;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.faq .faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq .faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}


/* Footer Base Styles */
.footer {
    /* background: var(--theme-color-b); */
    background: linear-gradient(85.02deg, #1C63E2 -17.67%, #00033D 129.54%);

    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}



/* Brand Section */
.footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}


.footer .brand {
    max-width: 200px;
}

.footer .footer-description {
    color: #b8d4da;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer .social-section {
    margin-top: 2rem;
}

.footer .social-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer .social-icons {
    display: flex;
    gap: 0.75rem;
    padding: 0 !important;
    border-top: none !important;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8d4da;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-link:hover {
    background: #C5D92E30;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 209, 199, 0.3);
}

.footer .footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fff, var(--theme-color));
    border-radius: 2px;
}

.rtl .footer .footer-heading::after {
    right: 0;

}

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

.footer .footer-links li {
    margin-bottom: 0.75rem;
}

.footer .footer-links a {
    color: #b8d4da;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer .footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.rtl .footer .footer-links a::before {
    right: -15px;
    left: initial;
}

.footer .footer-links a:hover {
    color: #fff;
    padding-left: 15px;
}

.rtl .footer .footer-links a:hover {
    padding-right: 15px;
    padding-left: 0;

}

.footer .footer-links a:hover::before {
    width: 10px;
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b8d4da;
    font-size: 0.9rem;
}

.footer .contact-item i {
    width: 18px;
    color: #fff;
    font-size: 1rem;
}

.footer .contact-item a {
    color: #b8d4da;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-item a:hover {
    color: #fff;
}

.footer .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright {
    color: #9ab7bd;
    margin: 0;
    font-size: 0.85rem;
}

.footer .made-with {
    color: #9ab7bd;
    font-size: 0.85rem;
}

/* .footer .made-with::before {
        content: '♥';
        color: #ff6b6b;
        margin: 0 0.25rem;
    } */

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer .footer-description {
        text-align: center;
    }

    .footer .social-section {
        text-align: center;
    }

    .footer .social-icons {
        justify-content: center;
    }

    .footer .footer-heading {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .footer-links {
        text-align: center;
    }

    .footer .footer-links a::before {
        display: none;
    }


    .footer .footer-links a:hover {
        padding-left: 0;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .footer .contact-item {
        justify-content: center;
    }

    .footer .footer-bottom {
        text-align: center;
    }

    .footer .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer .brand-text {
        font-size: 1.25rem;
    }

    .footer .footer-heading {
        font-size: 0.9rem;
    }

    .footer .social-link {
        width: 35px;
        height: 35px;
    }
}



@media (max-width: 768px) {

    .workflow::before {
        content: '';
        width: 0;
        height: 0;
    }

    .testimonial-container .testimonial-container {
        padding: 30px 20px;
    }

    .testimonial-container .testimonial-text {
        font-size: 16px;
    }

    .testimonial-container .user-slide {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-container .user-info {
        text-align: center;
    }
}


@media screen and (max-width: 767px) {
    .banner .bg-scop {
        height: 100%;
    }

    .banner .sec1-txt1 {
        padding-top: 20px;
        font-size: 40px;
        line-height: 35px;
        width: 80%;
    }

    .banner .sec1-txt2 {
        padding: 19px !important;
        font-size: 19px !important;
    }


    .banner .subtitle {
        padding-right: 25px;
        padding-left: 25px;
    }

    .banner .subtitle::before {
        width: 15px;
        left: -20px;
    }

    .banner .subtitle::after {
        width: 15px;
        right: -20px;
    }

    .banner .sec1-img {
        max-width: 80% !important;
    }


    /* .assistance .assistance-titre::before,
    .avantages .avantages-titre::before {
        max-width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial .testimonial-grid {
        padding: 20px 5px !important;
    } */

}

.single-page {
    padding-top: 150px;
    padding-bottom: 100px !important;
}

.single-page .bg-scop {
    height: 100%;
    min-height: auto;
}

.single-page .sec1-txt1 {
    background: linear-gradient(-90deg, #1C63E2 41%, #F2FAFF 54%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-page .sec1-txt2 a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.contact .card {
    background: #fff;
    box-shadow: 0px 10px 15px -3px #0000001A;
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: none;
}

.blogs .article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blogs .article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blogs .article-image {
    width: 100%;
    max-height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blogs .article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(79, 70, 229, 0.3);
}

.blogs .article-content {
    padding: 24px;
}

.blogs .article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6b7280;
}

.blogs .article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blogs .article-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blogs .article-excerpt {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blogs .read-more-btn {
    background: var(--theme-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.blogs .read-more-btn:hover {
    background: var(--theme-color);
}

.blogs .sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blogs .sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blogs .sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.blogs .search-box {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.blogs .search-box:focus {
    border-color: #3b82f6;
}

.blogs .category-list,
.blogs .tag-list {
    list-style: none;
}

.blogs .category-list li,
.blogs .tag-list li {
    margin-bottom: 8px;
}

.blogs .category-list a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.blogs .category-list a:hover {
    color: #3b82f6;
}

.blogs .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blogs .tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.blogs .tag:hover {
    background: #3b82f6;
    color: white;
}

.blogs .recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.blogs .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blogs .recent-post-image {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    flex-shrink: 0;
}

.blogs .recent-post-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 4px;
}

.blogs .recent-post-date {
    font-size: 12px;
    color: #6b7280;
}

.blogs .blue-pagination-container {
    border-radius: 15px;
    padding: 20px 30px;
    margin: 20px 0;
}

.blogs .blue-pagination .pagination {
    margin: 0;
}

.blogs .blue-pagination .page-item {
    margin: 0 2px;

}

.blogs .blue-pagination .page-link {
    /* background: rgba(255, 255, 255, 0.2); */
    background: linear-gradient(135deg, var(--theme-color), #357abd);

    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.blogs .blue-pagination .page-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--theme-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blogs .blue-pagination .page-item.active .page-link {
    background: rgba(255, 255, 255, 0.9);
    color: var(--theme-color);
    border-color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blogs .blue-pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.blogs .blue-pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.blogs .blue-pagination-info {
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .blogs .blue-pagination-container {
        padding: 15px 20px;
    }

    .blogs .blue-pagination .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {


    .blogs .main-title {
        font-size: 2rem;
    }

    .blogs .article-image {
        max-height: 200px;
    }
}














.plan .billing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.plan .toggle-wrapper {
    background: white;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plan .toggle-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan .toggle-btn.active {
    background: #4285f4;
    color: white;
}



.plan .pricing-grid .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.plan .pricing-grid .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan .pricing-grid .pricing-card.popular {
    border-color: #4285f4;
}

.plan .pricing-grid .popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #4285f4;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan .pricing-grid .plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.plan .pricing-grid .plan-description {
    color: #718096;
    margin-bottom: 30px;
    font-size: 14px;
}

.plan .pricing-grid .price {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.plan .pricing-grid .price-currency {
    font-size: 16px;
    color: #718096;
    margin-left: 5px;
}

.plan .pricing-grid .features-list {
    margin: 40px 0;
}

.plan .pricing-grid .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #4a5568;
}

.plan .pricing-grid .feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.plan .pricing-grid .feature-icon.check {
    color: #48bb78;
}

.plan .pricing-grid .feature-icon.cross {
    color: #e53e3e;
}

.plan .pricing-grid .cta-button {
    width: 100%;
    padding: 16px;
    border: 2px solid #4285f4;
    border-radius: 8px;
    background: transparent;
    color: #4285f4;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan .pricing-grid .cta-button:hover {
    background: #4285f4;
    color: white;
}

.plan .pricing-grid .cta-button.primary {
    background: #4285f4;
    color: white;
}

.plan .pricing-grid .cta-button.primary:hover {
    background: #3367d6;
}

@media (max-width: 768px) {
    .plan .pricing-grid .main-title {
        font-size: 36px;
    }

    .plan .pricing-grid .pricing-card.popular {
        transform: none;
    }

    .plan .pricing-grid {
        grid-template-columns: 1fr;
    }
}


    .contact .card h2 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .contact .contact-info {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .contact .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        flex-shrink: 0;
        background-color: #1C63E2;
    }

    .contact .contact-icon i {
        font-size: 24px;
    }

    .contact .contact-details h3 {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .contact .contact-details p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1;
        margin-bottom: 10px;
    }

    .contact .form-container {
        margin-bottom: 20px;
    }

    .contact .form-subtitle {
        color: #666;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .contact .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .contact .form-group {
        display: flex;
        flex-direction: column;
    }

    .contact .form-group.full-width {
        grid-column: 1 / -1;
    }

    .contact label {
        font-size: 0.9rem;
        color: #333;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .contact input,
    .contact textarea {
        padding: 12px 16px;
        border: 2px solid #e0e6ed;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: border-color 0.3s ease;
        font-family: inherit;
    }

    .contact input:focus,
    .contact textarea:focus {
        outline: none;
        border-color: #4285f4;
    }

    .contact textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact .send-btn {
        background: #1C63E2;
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .contact .send-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    }

    .contact .bottom-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .contact .social-links {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .contact .social-icon {
        width: 44px;
        height: 44px;
        background: #1C63E2;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: transform 0.2s ease;
    }

    .contact .social-icon:hover {
        transform: translateY(-2px);
    }

    .contact .social-icon:hover i {
        color: #fff;
    }

    .contact .social-icon i {
        font-size: 24px;
    }



    .contact .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        color: #333;
        font-size: 0.95rem;
    }

    .contact .feature-dot {
        width: 8px;
        height: 8px;
        background: #4285f4;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .contact .faq-section {
        background: linear-gradient(88.21deg, #1C63E2 -10.65%, #00033D 149.26%);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        color: white;
    }

    .contact .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .contact .faq-section p {
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .contact .faq-btn {
        background: #F2FAFFBF;
        color: #1C63E2;
        border: 1.33px solid #EFF0F6;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0px 4px 6px -4px #0000001A;

    }

    .contact .faq-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        color: #fff;
    }

    @media (max-width: 768px) {

        .contact .main-content,
        .contact .bottom-section {
            grid-template-columns: 1fr;
        }

        .contact .form-row {
            grid-template-columns: 1fr;
        }

        .contact .header h1 {
            font-size: 2rem;
        }

        .contact .card {
            padding: 20px;
        }
    }