@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700;800&display=swap");

.bg-primary {
    background-color: #007bff !important;
}

.text-primary {
    color: #007bff !important;
}

/* ===================================== Basic CSS ==================================== */
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    outline: none;
    color: #444;
}

    a:hover {
        color: #444;
    }

ul {
    margin-bottom: 0;
    padding-left: 0;
}

a:hover,
a:focus,
input,
textarea {
    text-decoration: none;
    outline: none;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.cp {
    cursor: pointer;
}

html,
body {
    height: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
}

p {
    margin-bottom: 0px;
    width: 100%;
}

.no-padding {
    padding: 0px;
}

.no-margin {
    margin: 0px;
}

.hid {
    display: none;
}

.top-mar {
    margin-top: 15px;
}

.h-100 {
    height: 100%;
}

::placeholder {
    color: #747f8a !important;
    font-size: 13px;
    opacity: 0.5 !important;
}

.container-fluid {
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #545454;
}

body {
    background-color: #f5f8fc !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #6a6a6a;
    overflow-x: hidden;
}

.section-title {
    padding: 5px;
    margin: 0px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .section-title {
        padding: 15px;
    }
}

.section-title h2 {
    width: 100%;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 2.5rem;
}

.section-title p {
    max-width: 850px;
    text-align: center;
    float: none;
    margin: auto;
    font-size: 0.9rem;
    margin-top: 0px;
    font-weight: 700;
}

.section-title span {
    font-weight: 700;
}

.inner-title {
    padding: 20px;
    padding-left: 0px;
    margin: 0px;
    margin-bottom: 10px;
    padding-bottom: 0px;
    border-bottom: 1px solid #ccccccc4;
    display: block;
    padding-right: 0px;
}

    .inner-title h2 {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        text-align: left;
        border-bottom: 1px solid #863dd9;
        padding-bottom: 10px;
        margin-bottom: 0px;
        width: 300px;
        margin-bottom: 15px;
    }

    .inner-title p {
        width: 100%;
        text-align: center;
    }

    .inner-title .btn {
        float: right;
        margin-top: -38px;
        font-weight: 600;
        font-size: 0.8rem;
    }
/*======================== LANG SWITCHER KEY STYLE ================================== */
.custom-select-wrapper {
    --primary-color: #4361ee;
    --hover-color: #3a56d4;
    --text-color: #fff;
    --option-text: #333;
    --option-hover: #f8f9fa;
    --transition-speed: 0.2s;
}

.custom-select {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
    border: none;
    width: 70px;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

    .custom-select:hover {
        background-color: var(--hover-color);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.flag-icon {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.arrow {
    margin-left: auto;
    font-size: 10px;
    transition: transform var(--transition-speed) ease;
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.custom-options {
    display: none;
    background: white;
    border: 1px solid #e9ecef;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100px;
    max-height: 180px;
    overflow-y: auto;
    color: var(--option-text);
    border-radius: 6px;
    z-index: 100;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.15s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

    .custom-option:first-child {
        border-radius: 6px 6px 0 0;
    }

    .custom-option:last-child {
        border-radius: 0 0 6px 6px;
    }

    .custom-option:hover {
        background-color: var(--option-hover);
    }

    .custom-option.selected {
        background-color: rgba(67, 97, 238, 0.1);
        font-weight: 500;
    }
/* ================ NAV==================== */
.nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .nav-list li {
        display: inline-block;
        margin-right: 15px;
        /* مسافة بين العناصر */
    }

        .nav-list li a {
            white-space: nowrap;
            text-decoration: none;
            color: inherit;
        }

.page-nav {
    background-size: 100%;
    padding: 68px;
    text-align: center;
    padding-top: 68px;
    background-color: #eaeaea;
}

    .page-nav ul {
        float: none;
        margin: auto;
    }

@media screen and (max-width: 992px) {
    .page-nav {
        background-size: auto;
    }
}

@media screen and (max-width: 767px) {
    .page-nav {
        padding-top: 200px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 356px) {
    .page-nav {
        padding-top: 200px;
        padding-bottom: 40px;
    }
}

.page-nav h2 {
    font-size: 28px;
    width: 100%;
    font-weight: 700;
    color: #444;
}

@media screen and (max-width: 600px) {
    .page-nav h2 {
        font-size: 26px;
    }
}

.page-nav ul li {
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-size: 0.93rem;
    font-weight: 600;
    color: #444;
}

    .page-nav ul li i {
        width: 30px;
        text-align: center;
        color: #444;
    }

    .page-nav ul li a {
        color: #444;
        font-size: 0.93rem;
        font-weight: 600;
    }

.btn-success {
    background-color: #51be78;
    border-color: #51be78;
}

    .btn-success:hover {
        background-color: #51be78 !important;
        border-color: #51be78 !important;
    }

    .btn-success:active {
        background-color: #51be78 !important;
        border-color: #51be78 !important;
    }

    .btn-success:focus {
        background-color: #51be78 !important;
        border-color: #51be78 !important;
        box-shadow: none !important;
    }

.btn-primary {
    background-color: #007bff;
    border-color: orange;
}

    .btn-primary:hover {
        background-color: #007bff !important;
        border-color: #007bff !important;
        transform: translateY(-5px);
        transition: all 0.3s ease-in-out;
    }

    .btn-primary:active {
        background-color: #007bff !important;
        border-color: #007bff !important;
    }

    .btn-primary:focus {
        background-color: #007bff !important;
        border-color: #007bff !important;
        box-shadow: none !important;
    }

.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
}

    .btn-outline-primary:hover {
        background-color: #007bff !important;
        border-color: #007bff !important;
    }

    .btn-outline-primary:active {
        background-color: #007bff !important;
        border-color: #007bff !important;
    }

    .btn-outline-primary:focus {
        background-color: #007bff !important;
        border-color: #007bff !important;
        box-shadow: none !important;
    }

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #ccc;
}

.btn-light {
    background-color: #fff;
    color: #3f3f3f;
}

.collapse.show {
    display: block !important;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #ccc;
}

.form-control {
    background-color: #f8f8f8;
    margin-bottom: 20px;
}

    .form-control:focus {
        background-color: #fff;
        border-color: #ccc;
    }

.container {
    max-width: 1170px;
}

@media screen and (max-width: 575px) {
    .container {
        padding: 10px 15px;
    }
}

.container-xl {
    max-width: 1170px;
}

/* ===================================== Basic CSS ==================================== */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.fw-md {
    font-weight: 600;
}

.fw-sm {
    font-weight: 500;
}

.big-padding {
    padding: 50px;
}

@media screen and (max-width: 940px) {
    .big-padding {
        padding: 30px 10px;
    }
}

.bggray {
    background-color: #f7f5f4 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fs-11 {
    font-size: 4rem;
}

@media screen and (max-width: 767px) {
    .fs-11 {
        font-size: 2rem;
    }
}

.shadow-md {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xs {
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.13);
}

.truncate-2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 42px;
    overflow: hidden;
    line-height: 21px;
}

.truncate-4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 82px;
    overflow: hidden;
    line-height: 21px;
}

.truncate-6 {
    display: -webkit-box !important;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    height: 130px;
    overflow: hidden;
    line-height: 21px;
}

.rtable {
    max-width: 500px;
    float: none;
    margin: auto;
}

    .rtable tr td {
        padding: 5px;
    }

.fs-7 {
    font-size: 0.95rem;
}

.fs-8 {
    font-size: 0.9rem;
}

.sticky {
    position: sticky;
}

.bg-gray {
    background: rgba(217, 217, 217, 0.25);
}

.btn-xs {
    padding: 2px 8px;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

    .btn-xs i {
        font-size: 16px;
    }

@media screen and (max-width: 767px) {
    .bordernosm {
        border: 0px !important;
    }
}

.h400 {
    height: 400px;
    overflow: auto;
}

.sticky-top-90 {
    position: -webkit-sticky;
    position: sticky;
    top: 85px;
    z-index: 1020;
}

.fs-9 {
    font-size: 0.79rem;
}

.fs-55 {
    font-size: 1.1rem;
}

.mt-25 {
    margin-top: 11px;
}

.width-fit {
    width: fit-content;
}

.text-justify {
    text-align: justify;
}

.max-1200 {
    max-width: 1200px;
}

.max-230 {
    max-width: 230px;
    align-items: center;
}

.scroll-to-fixed-fixed {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mtm-4 {
    margin-top: -40px !important;
    z-index: 999;
    position: sticky;
}

.copy {
    padding: 20px;
    background-color: #000000;
    color: #fff;
}

    .copy a {
        color: #fff;
    }

    .copy span {
        float: right;
    }

        .copy span i {
            margin-right: 20px;
        }

.testimonial-container {
    background-color: #fff;
}

.testimonial {
    text-align: center;
    padding: 15px;
}

    .testimonial .pic img {
        max-width: 90px;
        border-radius: 50%;
        background-color: #fff;
        padding: 2px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        margin-bottom: 10px;
    }

    .testimonial .title {
        font-size: 1.5rem;
        margin-top: 3px;
        margin-top: 10px;
    }

section {
    scroll-padding-top: 120px;
}

.sdiv {
    scroll-padding-top: 120px;
}

/*# sourceMappingURL=style.css.map */
.navcol ul li a {
    transition: color 0.3s ease;
}

    .navcol ul li a:hover {
        color: orange;
    }



/*=============== CONTACT ===============*/
.contact__container {
    row-gap: 3.5rem;
}

.contact__data {
    display: grid;
    row-gap: 2rem;
}

.contact__subtitle {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--mb-0-5);
}

.contact__description {
    display: inline-flex;
    align-items: center;
    column-gap: 0.5rem;
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.contact__icon {
    font-size: 1.25rem;
}

.contact__inputs {
    display: grid;
    row-gap: 2rem;
    margin-bottom: var(--mb-2-5);
}

.contact__content {
    position: relative;
    height: 3rem;
    border-bottom: 1px solid var(--text-color-light);
}

.contact__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 1rem 1rem 0;
    background: none;
    color: var(--text-color);
    border: none;
    outline: none;
    z-index: 1;
}

.contact__label {
    position: absolute;
    top: 0.75rem;
    width: 100%;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    transition: 0.3s;
}

.contact__area {
    height: 7rem;
}

    .contact__area textarea {
        resize: none;
    }

/*Input focus move up label*/
.contact__input:focus + .contact__label {
    top: -0.75rem;
    left: 0;
    font-size: var(--smaller-font-size);
    z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus) + .contact__label {
    top: -0.75rem;
    font-size: var(--smaller-font-size);
    z-index: 10;
}

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
    font-family: "Segoe UI", sans-serif;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer__logo img {
    max-width: 200px;
}

.footer__title {
    font-size: 18px;
    color: #ff9149;
    margin-bottom: 15px;
}

.footer__section p {
    margin: 5px;
    line-height: 1.6;
}

.footer__flag {
    width: 20px;
    vertical-align: middle;
    margin-left: 5px;
}

.footer__social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

    .footer__social a {
        font-size: 22px;
        color: #ff9149;
        transition: transform 0.3s;
    }

        .footer__social a:hover {
            transform: translateY(-4px);
        }

.footer__bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #374151;
    padding-top: 20px;
    font-size: 14px;
}

    .footer__bottom span {
        color: blue;
    }


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .home__img {
        width: 180px;
    }

    .home__title {
        font-size: var(--h1-font-size);
    }

    .steps__bg {
        padding: 2rem 1rem;
    }

    .steps__card {
        padding: 1.5rem;
    }

    .product__container {
        grid-template-columns: 0.6fr;
        justify-content: center;
    }
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .steps__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product__description {
        padding: 0 4rem;
    }

    .product__container {
        grid-template-columns: repeat(2, 170px);
        justify-content: center;
        column-gap: 5rem;
    }

    .footer__subscribe {
        width: 400px;
    }
}

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
        column-gap: 3rem;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 2rem;
    }

    .nav__menu {
        margin-left: auto;
    }

    .home__container,
    .about__container,
    .questions__container,
    .contact__container,
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .home {
        padding: 10rem 0 5rem;
    }

    .home__container {
        align-items: center;
    }

    .home__img {
        width: 280px;
        order: 1;
    }

    .home__social {
        top: 30%;
    }

    .questions__container {
        align-items: flex-start;
    }

    .footer__container {
        column-gap: 3rem;
    }

    .footer__subscribe {
        width: initial;
    }
}

/* For large devices */
@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 8rem 0 1rem;
    }

    .section__title,
    .section__title-center {
        font-size: var(--h1-font-size);
    }

    .home {
        padding: 7rem 0 5rem;
    }

    .home__img {
        width: 350px;
    }

    .home__description {
        padding-right: 7rem;
    }

    .about__img {
        width: 380px;
    }

    .steps__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps__bg {
        padding: 3.5rem 2.5rem;
    }

    .steps__card-title {
        font-size: var(--normal-font-size);
    }

    .product__description {
        padding: 0 16rem;
    }

    .product__container {
        padding: 4rem 0;
        grid-template-columns: repeat(3, 185px);
        gap: 4rem 6rem;
    }

    .product__img {
        width: 160px;
    }

    .product__circle {
        width: 110px;
        height: 110px;
    }

    .product__title,
    .product__price {
        font-size: var(--normal-font-size);
    }

    .questions__container {
        padding: 1rem 0 4rem;
    }

    .questions__title {
        text-align: initial;
    }

    .questions__group {
        row-gap: 2rem;
    }

    .questions__header {
        padding: 1rem;
    }

    .questions__description {
        padding: 0 3.5rem 2.25rem 2.75rem;
    }

    .footer__logo {
        font-size: var(--h3-font-size);
    }

    .footer__container {
        grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr;
    }

    .footer__copy {
        margin: 7rem 0 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .home__social {
        right: -3rem;
        row-gap: 4.5rem;
    }

    .home__social-follow {
        font-size: var(--small-font-size);
    }

        .home__social-follow::after {
            width: 1.5rem;
            right: -60%;
        }

    .home__social-link {
        font-size: 1.15rem;
    }

    .about__container {
        column-gap: 7rem;
    }

    .scrollup {
        right: 3rem;
    }
}

.home__img {
    width: auto;
    /* animation: slide 4s ease-in-out infinite; */
}

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

    25% {
        transform: translateX(20px);
    }

    50% {
        transform: translateX(0);
    }

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

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

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: transform 0.2s ease-out;
    overflow: hidden; /* Ensure overflow is hidden to prevent icon overflow */
}

    .button:hover {
        transform: translateY(-3px); /* Move the button up slightly on hover */
        background-color: #fdc134;
        color: black;
    }

.button__icon {
    margin-left: 5px; /* Add some space between text and icon */
}

.ri-arrow-right-down-line {
    /* Define styles for the arrow icon */
    display: inline-block;
    vertical-align: middle; /* Align icon vertically with text */
    transition: transform 0.2s ease-out; /* Apply transition to icon */
}

.button:hover .ri-arrow-right-down-line {
    transform: translateX(5px); /* Move the icon horizontally on hover */
}

.francis-tech {
    font-family: "Courier New", Courier, monospace; /* Change font family to Arial or any preferred sans-serif font */
    color: rgb(12, 79, 179); /* Change text color to blue */
    transition: color 0.3s ease; /* Smooth transition for color change */
    cursor: pointer; /* Change cursor to pointer */
    transition: transform 0.9s ease; /* Smooth transition for transform */
}

    /* Hover effect */
    .francis-tech:hover {
        color: #fdc134; /* Darker shade of blue on hover */
        transform: scale(1.3); /* Scale the image by 1.1 on hover (10% larger) */
    }

.footer__logo img {
    display: block; /* Ensure the image is displayed as a block element */
    width: 200px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease; /* Smooth transition for transform */
    animation: pulse 1.5s infinite; /* Define the pulse animation */
}

/* Define the pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1); /* Initial scale */
    }

    50% {
        transform: scale(1.1); /* Scale up to 110% */
    }

    100% {
        transform: scale(1); /* Back to the original scale */
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px); /* Adjust the bounce height as needed */
    }
}

.product__card img {
    display: block;
    width: 200px;
    height: auto;
    transition: transform 0.3s ease; /* You can keep this transition for hover effects */
    /* animation: bounce 1s ease-in-out infinite;  */
}

/* .clients__card img {
  display: block;
  width: 200px;
  height: auto;
  transition: transform 0.3s ease; 
 
} */

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.footer__address {
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    margin: 0;
}

.footer__address-item {
    display: block;
    margin-bottom: 8px;
}

.footer__flag {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}
