@import url("variables.css");

@font-face {
    font-family: "sans-arabic-Regular";
    src: url(../fonts/IBMPlexSansArabic-Regular.ttf);
}
@font-face {
    font-family: "sans-arabic-Medium";
    src: url(../fonts/IBMPlexSansArabic-Medium.ttf);
}
@font-face {
    font-family: "sans-arabic-SemiBold";
    src: url(../fonts/IBMPlexSansArabic-SemiBold.ttf);
}
@font-face {
    font-family: "sans-arabic-bold";
    src: url(../fonts/IBMPlexSansArabic-bold.ttf);
}
@font-face {
    font-family: "sans-arabic-light";
    src: url(../fonts/IBMPlexSansArabic-Light.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "sans-arabic-SemiBold";
    color: var(--primary-color);
    direction: rtl;
    position: relative;
    background-color: inherit;
    color: inherit;
}
/* main {
  min-height: 600px;
} */

/* global styel carousel */
.main-Carousel .item {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    max-height: 460px;
    border-radius: 10px;
    overflow: hidden;
    object-fit: contain;
}
.main-Carousel .item .carousel-content {
    position: absolute;
    top: 50%;
    color: #fff;
    transform: translateY(-40%);
    padding-inline-start: 230px;
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.main-Carousel .item .carousel-content h4 {
    font-size: 32px;
    line-height: 41px;
    font-family: "sans-arabic-Bold";
}
.main-Carousel .item .carousel-content span {
    color: var(--orange-color);
    margin-bottom: 10px;
    padding-inline-start: 30px;
    position: relative;
    font-family: "sans-arabic-Bold";
}
.main-Carousel .item .carousel-content span:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 9px;
    height: 2px;
    width: 20px;
    background-color: var(--orange-color);
}

.main-Carousel .item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.main-Carousel {
    position: relative;
}
.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.owl-carousel .owl-dots .owl-dot span {
    background-color: #fff;
    height: 8px;
    width: 10px;
    margin: 0 5px;
    display: block;
}
.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #fff;
}
.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--orange-color);
    width: 27px;
    height: 8px;
}

/* form inputs styles */
.custom-container .signin-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.custom-container .signin-content .img-content {
    padding-inline: 10px;
    height: 600px;
    position: relative;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}
.custom-container .signin-content .img-content .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
}
.custom-container .signin-content .img-content .question-board {
    border: 1px solid #ccc;
    padding: 45px 24px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgb(245, 245, 245, 0.1);
    align-items: center;
    border-radius: 23px;
    justify-content: center;
    z-index: 1;
    position: relative;
    max-width: 65%;
}
.custom-container .signin-content .img-content .question-board img {
    width: 85px;
    height: 85px;
    margin-bottom: 20px;
}
.custom-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.custom-container ul li {
    display: inline-block;
}
.custom-container ul li a {
    color: #fff;
    text-decoration: none;
}
.custom-container .form-container {
    padding: 10px 0 10px 20px;
    border-radius: 8px;
    /* width: 63%; */
}
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    color: #444;
    font-family: "sans-arabic-Medium";
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.form-group label svg {
    color: #e50004;
    font-size: 8px;
    margin: 1px 3px;
}
.form-group .form-control {
    padding-inline: 9px;
    position: relative;
    display: flex;
    gap: 7px;
    width: -webkit-fill-available;
}

.form-group .form-control :last-child {
    display: flex;
    gap: 5px;
    align-items: anchor-center;
    font-size: 14px;
    flex-direction: row-reverse;
    object-fit: contain;
}

.form-group .form-control :last-child span {
    color: #a1a6b5;

    font-family: "sans-arabic-Regular";
}
.form-group .form-control :last-child img {
    height: 25px;
    width: 25px;
}
input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    transition: border 0.3s;
    position: relative;
    font-family: "sans-arabic-Medium";
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: #3498db;
    outline: none;
}
.form-group input::placeholder,
select {
    color: #a0a6b3;
    font-family: "sans-arabic-regular";
}

.submit-btn {
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    background-color: var(--btn-color);
    border-radius: 10px;
}

.link-btn {
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    background-color: var(--btn-color);
    border-radius: 10px;
}

.btn-checkbox {
    margin: 10px 0 20px;
    display: flex;
    justify-content: space-between;
}
.custom-container {
    padding-top: 20px;
}

.login-help {
    display: flex;
    align-items: anchor-center;
    gap: 6px;
    display: flex;
}
.login-help .form-check-input[type="checkbox"] {
    margin: 0;
}

.custom-container .form-container .btn-checkbox span {
    margin-inline-start: 6px;
    color: var(--span-color);
    font-family: "sans-arabic-medium";
    font-size: 13px;
    margin-top: 5px;
}
.form-check-input:checked {
    background-color: #648d95;
    border-color: #648d95;
}
.form-check-input:focus {
    box-shadow: none;
    border-color: #c0c1c3;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.verification-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.verification-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ccc !important;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.verification-input:focus {
    border-color: #ccc;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

.instructions {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Custom radios container */

.radios {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.radios p {
    color: #30333c;
    width: 100%;
    margin-bottom: 4px;
}
.radios .custom-checkbox .checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #749ba1;
    border-radius: 3px;
    background-color: white;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    accent-color: #8eaeb4;
}

.radios .custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--span-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radios .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.radios .custom-checkbox input:checked ~ .checkmark {
    border-color: var(--span-color);
    background-color: #f0f4f5;
}

.radios .custom-checkbox:hover .checkmark {
    border-color: var(--span-color);
}

.radios .custom-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    text-indent: 13px;
    padding: 8px 10px;
    border-radius: 20px;
    background-color: #f8f9fa;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.radios .custom-checkbox:hover label {
    position: relative;
    border-color: var(--span-color) !important;
}

.forms-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 30px;
    position: relative;
    width: fit-content;
}
.forms-title h4 {
    color: var(--primary-color);
    /* font-family: "sans-arabic-regular"; */
    font-size: 25px;
}
.forms-title span {
    color: var(--span-color);
    font-size: 16px;
    font-family: "sans-arabic-regular";
    display: block;
    line-height: 25px;
}
.forms-title #tip {
    position: absolute;
    padding: 15px 15px;
    box-shadow: 0px 0px 19px 0px #d6d1d1;
    left: -200px;
    top: -20px;
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    display: inline-block;
    border-radius: 9px;
}

.forms-title span:hover + #tip {
    opacity: 1;
    visibility: visible;
}

.already-haveAccount {
    color: var(--span-color);
    width: 100%;
    text-align: center;
    font-size: 14px;
}
.already-haveAccount a {
    color: var(--btn-color) !important;
}

/* form inputs and page auth style */

.main-fields {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.main-fields section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.main-fields .mainFields-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px 0;
    text-align: center;
}
.main-fields .mainFields-card span {
    color: #3f434f !important;
}
.main-fields .mainFields-card-img {
    width: 130px;
    height: 130px;
    background-color: #fff;
    border-radius: 18px;
    padding: 3px;
    transition: all 0.5s ease-in-out;
    border-color: #fff;
    margin-bottom: 15px;
}
.main-fields section div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.main-fields .mainFields-card:hover .mainFields-card-img {
    border: 1px solid var(--orange-color);
    box-shadow: 0 0 16px 3px #ccc;
}

.postInput {
    border: none;
    gap: 13px;
}

.postInput input {
    background-color: #f8f9fa;
    padding: 7px 9px;
    border-radius: 20px;
    font-size: 14px;
    color: #858585;
    font-family: "sans-arabic-Medium";
}
.postInput .user-mask {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #cccccc4d;
}
.postInput .user-mask img {
    height: 100%;
    width: 100%;
}

.img-small-box {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    display: inline-table;
}

.user-post {
    display: flex;
    align-items: center;
    gap: 9px;
}
.user-post.checkbox-share-card {
    background-color: #f8f9fb;
    padding: 12px 15px;
    border-radius: 18px;
    margin-block: 13px;
}
.user-post.checkbox-share-card .user-post_imgMask {
    width: 40px;
    height: 40px;
}
.user-post .user-post_imgMask {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #ccc;
}
.user-post .user-post_imgMask img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.user-post .user-post_info {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 6px;
    flex: 1;
}
.user-post.shared-companies {
    gap: 12px;
    padding-block: 12px;
    background-color: #f8f9fa;
    margin-bottom: 10px;
}
.user-post.shared-companies p {
    margin-bottom: 3px;
}

.textarea_div {
    display: inline-block;
    width: 200px;
    margin-right: 50px;
}

.send-icon {
    position: absolute;
    top: 21px;
    inset-inline-end: 25px;
}
.comment {
    background-color: var(--white-color) !important;
    border: 1px solid #e3e3e3 !important;
    width: 88%;
}
.user-post .user-post_info a {
    color: #30333c;
}
.user-post .user-post_info a + span {
    color: var(--second-color);
    font-family: "sans-arabic-Regular";
    font-size: 13px;
}

.post-content {
    margin-block: 18px;
}

.post-content button {
    font-size: 15px;
    font-family: inherit;
    color: #413e97;
}
.tag {
    padding: 5px 25px;
    background-color: #edf1f2;
    border-radius: 15px;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 13px;
}
.post-img {
    width: 100%;
    /* height: 400px; */
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
    background-color: #f8f9fb;
}
.post-img img {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 431px;
    border-radius: 15px;
}
.newCompany {
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    /* height: 100%; */
    text-align: center;
}
.newcompany-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
}

.social-actions {
    display: flex;
    gap: 35px;
    padding: 14px 0 9px;
}
.social-actions p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}
.social-actions p img {
    cursor: pointer;
}
.social-actions p:first-of-type img {
    width: 19px;
}
.card-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
}
.card-social button {
    background-color: inherit;
    border: none;
    color: #8e95a6;
    border: 1px solid #e0dfdf;
    border-radius: 50%;
    font-size: 20px;
    width: 35px;
    height: 35px;
}

.gallery-btns {
    gap: 15px;
    align-items: center;
}
.gallery-btns p {
    margin: 0;
}
.gallery-btns p + span {
    background-color: #edf1f2;
    color: #515766;
    border-radius: 17px;
    padding: 6px 29px;
}

.ul-vertical-list {
    display: flex;
    gap: 7px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.ul-vertical-list li {
    background-color: #f8f9fa;
    border-radius: 15px;
    font-family: "sans-arabic-Regular";
}
.ul-vertical-list li button {
    padding: 8px 13px;
    border-radius: 20px;
    line-height: 18px;
    border: none;
    background: transparent;
    /* font-family: "sans-arabic-semibold"; */
}
.ul-vertical-list li button:hover,
.ul-vertical-list li button:focus,
.ul-vertical-list li button.active {
    background: var(--btn-color);
    color: #fff;
    outline: none;
}

/* global styles */
.Regular {
    font-family: "sans-arabic-Regular";
}
.cursor {
    cursor: pointer;
}
.dir-ltr {
    direction: ltr;
}
.font-18 {
    font-size: 18px;
}
.nabza {
    font-size: 16px;
    line-height: 26px;
}
.normal-line-h {
    line-height: 22px;
}
.viewers-mask-img {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 7px;
}
.viewers-mask-img img {
    width: 100%;
    height: 100%;
}
.logout {
    width: 100%;
    padding: 12px;
    background-color: inherit;
    border: 1px solid #e60000;
}
.logout a {
    color: #e60000;
}
.logout:hover {
    border: 1px solid #e60000;
    color: #e60000;
}
.btn-addCompany {
    background-color: #648f96;
    margin-bottom: 15px;
}
.btn-addCompany a {
    color: #fff !important;
}
.btn-addCompany:hover,
.btn-addCompany:focus {
    background-color: #648f96 !important;
}
.btn-addCompany:focus a {
    color: #000 !important;
}

.backbtn {
    background-color: #f8f9fb;
    background-color: #f8f9fb;
    color: var(--petrol-color);
    border: 1px solid var(--border-color);
}
.backbtn a {
    color: #30333c !important;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul li {
    display: inline-block;
}
a {
    text-decoration: none;
    color: #648f96;
}

.br-btm-none {
    border-bottom: none !important;
}
.br-none {
    border: none !important;
}

ul li img {
    margin-inline-end: 10px;
}

img.like-icon {
    filter: invert(52%) sepia(66%) saturate(3361%) hue-rotate(222deg)
    brightness(94%) contrast(101%);
}

.warning {
    background-color: #fff3e5;
    color: #cc6d00;
}
.danger {
    background-color: #ffe5e5;
    color: #e60000;
}
.success {
    background-color: #ecfdf3;
    color: #039855;
}
.grey {
    background-color: #eef1f2;
    color: #515766;
}

.truncate-text .text-post {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "sans-arabic-Regular";
    margin: 0;
}

.read-more:hover,
.read-more:focus {
    color: #413e97;
    border: 0;
}

.truncate-text.expanded .text-post {
    -webkit-line-clamp: unset !important; /* Remove line limit when expanded */
}

.star-rating {
    display: inline-block;
    font-size: 0; /* Remove whitespace between stars */
    unicode-bidi: bidi-override;
    direction: rtl; /* Right-to-left for better hover effect */
    padding-top: 18px;
}

.star-rating input {
    display: none; /* Hide the radio buttons */
}

.star-rating label {
    display: inline-block;
    font-size: 20px;
    padding: 0 5px;
    cursor: pointer;
    color: #ccc; /* Default star color */
    transition: color 0.2s;
}

.star-rating label.active {
    color: #faa135;
}
.stars-opinion {
    padding: 10px 15px;
    background-color: #f7f9fd;
    border-radius: 15px;
}
.stars-opinion label {
    margin: 0 5px;
}
.stars-opinion svg {
    fill: #fff;
}
.stars-opinion .active {
    fill: #ff862c;
}
/*.star-rating input:checked ~ label {
  color: #faa135;
}

.star-rating input:focus + label {
  outline: 2px solid #0066cc;
  color: #ff9900;
}

.star-rating input:checked + label,
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #faa135;
} */

/* .note-icon-caret:before {
  display: none;
} */

.dropdown-toggle::after {
    display: none;
}

/* .note-editor .note-toolbar .note-color .dropdown-toggle,
.note-popover .popover-content .note-color .dropdown-toggle {
  display: none;
} */
.note-editor .note-toolbar .note-color .dropdown-toggle {
    padding: 5px 7px;
    width: auto;
}
.note-editor .note-toolbar .note-color-all .note-dropdown-menu {
    min-width: 500px;
}

.w-200 {
    width: 200px !important;
}

/* vertical list */

.vertical-list {
    margin-top: 15px;
}

.vertical-list ul {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.vertical-list ul li {
    font-family: "sans-arabic-regular";
    font-size: 15px;
}

/* vertical list */

/* cards borders */

.borderCard {
    padding: 15px;
    border: 1px solid #bfc6c8;
    border-radius: 16px;
    margin-bottom: 15px;
}

.Br-bottom {
    padding-bottom: 7px;
    border-bottom: 1px solid #eef1f2;
    margin: 0 0 10px 0;
}

/* cards borders */

.pagination {
    font-family: "sans-arabic-Regular";
}

textarea::placeholder {
    color: #727a90;
    font: 14px;
}
/*over lay pop-up*/
.overlay {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: hidden;
    top: 0;
    left: 0;
    display: none;
}
.overlay-content {
    width: 40%;
    padding: 10px 20px 20px;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.overlay-question {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: hidden;
    top: 0;
    left: 0;
    display: none;
}
.overlay-cardQuestion {
    width: 30%;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.overlay-cardQuestion .popup-header span {
    font-family: "sans-arabic-Regular";
    color: #868686;
}
.overlay-cardQuestion .pop-card-btn {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin: 15px 0;
}
.overlay-cardQuestion .pop-card-btn button {
    background-color: #f8f9fa;
    color: #000;
}
.overlay-cardQuestion .pop-card-btn button:first-of-type {
    background-color: #e60000;
    color: #fff;
}
#show-popup-confirm button {
    background-color: #f8f9fa;
    color: #30333c;
}

.overlay-content .form-group {
    margin-bottom: 5px;
}
.popup-header {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.overlay-content .close-popup {
    font-size: 18px;
    padding: 5px 8px;
    background-color: #f7f7f7;
    border-radius: 50%;
    cursor: pointer;
}
.overlay-content .popup-header p {
    font-family: "sans-arabic-bold";
}
/*overlay pop-up*/
.overlay-content form > span {
    display: block;
    margin-bottom: 12px;
}
/* .uploadImg-content {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.uploadImg-content.highlight {
  border-color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
}

#preview img {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
} */
form textarea {
    width: 100%;
    height: 65px;
    padding: 7px;
    font-family: "sans-arabic-Regular";
    border: 1px solid #d3d6dd;
    border-radius: 10px;
}
.uploadImg-content {
    height: 140px;
}
.uploadImg-content .upload-label {
    width: 100%;
    height: 100%;
}
.uploadImg-content .preview {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.uploadImg-content .preview img {
    width: 100%;
    object-fit: contain;
    height: 100%;
    /* height: 200px; */
}
.uploadImg-content p {
    margin: 2px 0;
    color: #686f83;
    text-align: center;
}
.uploadImg-content p span {
    color: #000;
    margin: 3px;
    /* cursor: pointer; */
}

.share-link {
    padding: 9px 25px;
    border: 1px solid #eef1f2;
    border-radius: 15px;
    font-size: 15px;
}
.share-link p {
    margin: 0;
}
.share-link span {
    color: #686f83;
    font-family: "sans-arabic-Regular";
    font-size: 15px;
}

/* cards borders */

/*global style*/

.mini-PostCompany {
    height: 200px !important;
}
.mini-PostCompany .newcompany-img {
    width: 125px;
    height: 125px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.user-profileCard {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    background-color: aliceblue;
    border-radius: 15px;
    padding-block: 20px;
    margin-bottom: 15px;
}

.user-profileCard .userProfileImg {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #648f96;
    align-items: center;
    margin: 0 auto;
}
.user-profileCard .userProfileImg img {
    width: 100%;
    height: 100%;
}
.user-profileCard ul {
    display: flex;
    flex-direction: column;
}
.user-profileCard ul li {
    padding: 0;
    border: none;
    flex: 1;
    font-size: 13px;
    align-items: start;
    display: flex;
    color: #648f96;
    font-family: "sans-arabic-Medium";
    position: relative;
    line-height: 25px;
    justify-content: center;
    margin-top: 5px;
}
.user-profileCard ul li img {
    top: 0px;
    width: 24px;
    height: 24px;
}
.user-profileCard > span {
    color: #686f83;
    font-size: 14px;
    font-family: "sans-arabic-Regular";
}
.profile-dashboard ul {
    gap: 10px;
    padding: 0 12px;
}
.profile-dashboard li button {
    width: 100%;
    font-size: 14px;
}
.outline-orange {
    border: 1px solid #ffa666;
    color: #ffa666;
}
.outline-orange:focus,
.outline-orange:hover {
    color: #ffa666;
    border-color: #ffa666;
}
.outline-dark {
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
}
.outline-dark:focus,
.outline-dark:hover {
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
}

.profilemeun {
    border-radius: 20px;
    margin-block: 16px;
    padding-inline: 10px;
    border: 1px solid #eef1f2;
    transition: all 0.5s ease-in-out;
}
.user-search {
    margin-bottom: 13px;
}
.user-search p {
    margin-bottom: 12px;
}
.user-search input {
    background-color: #f8f9fb;
    padding: 14px 10px;
    border-radius: 15px;
}
.user-search input::placeholder {
    color: #858585;
    font: 14px;
}

.add-gallary ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.add-gallary ul li img {
    margin-inline-end: 5px;
}
.add-gallary ul li {
    display: flex;
    line-height: 29px;
}
.add-gallary ul li span {
    font-family: "sans-arabic-regular";
}

.Details-card {
    height: auto;
    background-color: #f8f9fa;
    padding: 20px 20px 15px;
    border-radius: 15px;
    margin: 15px 0;
}
.Details-card a {
    color: #3f434f !important;
}
.Details-card .img-mask {
    margin: 0 auto;
}
.Details-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    height: 210px;
}
.Details-card span {
    color: #ccc;
    font-family: "sans-arabic-light";
}

.addresses {
    width: 100%;
}

.addresses .form-group {
    /* width: 40%; */
}
.address-card-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 15px;
}
.address-card-img img {
    width: 100%;
    height: 100%;
}
.vertical-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}
.vertical-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advanced-search {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c1d3d5;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
}
.advanced-search .form-group {
    width: 200px;
    margin: 10px 5px !important;
}
.advanced-search .filter-inputs {
    background-color: #f7fafc;
    border-radius: 15px;
}
.advanced-search .form-group .form-control {
    background-color: transparent;
    border: 0;
}
.advanced-search .filter-inputs select,
.advanced-search .filter-inputs input {
    background-color: transparent;
}

.search-icon {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: var(--petrol-color);
    margin: 3px 7px;
    display: flex;
    align-items: center;
}
.search-icon img {
    width: 24px;
}
.Blog-Cards p,
.Blog-Cards span {
    color: #3f434f !important;
    margin: 0;
}
.blog-card-features {
    font-size: 14px;
    font-family: "sans-arabic-Medium";
}
.blog-card-features span {
    color: var(--span-color) !important;
}

.max-height {
    height: 300px;
}
.page-link {
    border: 0;
    color: var(--primary-color);
}
.page-link svg {
    font-size: 12px;
    margin: 0 5px;
}
.active > .page-link,
.page-link.active {
    background-color: #648f96;
    border-radius: 50%;
    border: none;
}
.blog-details-list {
    font-size: 14px;
    font-family: "sans-arabic-Medium";
}
.blog-details-img {
    max-height: 450px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}
.blog-details-img img {
    width: 100%;
    height: 100%;
}
.blog-details-text {
}
.blog-details-text ul {
    list-style-type: circle;
    list-style-type: "✓ ";
}
.blog-details-text ul li {
    margin-top: 18px;
    padding-inline-start: 15px;
    font-family: "sans-arabic-Medium";
    font-size: 15px;
}
.comments .post-content {
    margin-block: 7px;
    font-family: "sans-arabic-Regular";
}
.Blog-Cards {
    padding-top: 10px;
}

.User-profile .carousel-inline-tabs .owl-item {
    background: #f8fafc;
    padding: 7px 10px;
    display: block;
    border-radius: 10px;
}
.User-profile .carousel-inline-tabs {
    padding: 15px 0;
    margin: 20px 0;
}

.User-profile .carousel-inline-tabs .owl-stage {
    display: flex !important;
}

.User-profile .carousel-inline-tabs .owl-item {
    flex-shrink: 0 !important;
    width: auto !important;
}

.User-profile .carousel-inline-tabs .owl-item.active-link {
    background-color: #648f96;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.statistics {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-definition .definition-content .blog-plus-content {
    max-width: 90%;
}
.blog-plus-content p {
    margin: 5px 0 0;
    font-size: 15px;
    line-height: 26px;
}
.card-definition .definition-content ul li button {
    border: 1px solid #eeeeee;
    outline: none;
    padding: 6px 8px;
    background-color: #f9fafb;
    font-size: 14px;
    color: #3f434f;
    font-family: "sans-arabic-Regular";
    margin-top: 5px;
}
.card-definition .definition-content h4 {
    margin-bottom: 5px;
}
.card-definition .definition-content h4 a {
    color: var(--text-color);
}
.card-definition .definition-content .img-mask {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
}
.card-definition .definition-content .img-mask img {
    width: 100%;
    height: 100%;
}
.card-definition .share-definition {
    display: flex;
    gap: 8px;
}
.card-definition .share-definition .icon-mask {
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #e1dede;
    cursor: pointer;
}
.card-definition .definition-content .blog-dimenation {
    width: auto;
    height: 150px;
    object-fit: contain;
}

.card-definition .definition-content h4 + span {
    color: #727a90;
    font-family: "sans-arabic-regular";
}

.card-statistics {
    background-color: #648f96;
    padding: 20px;
    display: flex;
    gap: 25px;
    justify-content: space-between;
    text-align: center;
    margin-top: 25px;
    border-radius: 10px;
}
.card-statistics .statistics-box {
    padding-inline-end: 4%;
    border-inline-end: 1px solid #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.card-statistics .statistics-box:last-of-type {
    padding: 0;
    border: none;
}
/* .card-statistics .statistics-box:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 50px;
  background-color: #fff;
  left: -30px;
} */
.card-statistics .statistics-box .box-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-right: 8px;
}

.card-statistics .statistics-box .box-text span {
    font-size: 13px;
}
.card-statistics .statistics-box .box-text span a {
    color: inherit !important;
    text-decoration: underline;
}
.statistics-box .icon-mask {
    background-color: #fff;
    padding: 3px;
    height: 30px;
    width: 30px;
    border-radius: 8px;
    right: 2px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.statistics-box .icon-mask img {
    height: 20px;
    width: 20px;
}

.tabs .all-tabs {
    background-color: #f8fafd;
    padding: 13px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.tabs .all-tabs .profile-img-mask {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
}
.tabs .all-tabs .profile-img-mask img {
    width: 100%;
    height: 100%;
}
.tabs .tabContent {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.tabs .tabContent .title-tab {
    background-color: #648f96;
    padding: 8px;
    border-radius: 8px;
    color: #fff;
}
.tabs .tabContent .title-tab h6 {
    margin: 0;

    font-weight: "sans-arabic-Regular";
}
.tabs .tabContent p {
    margin-block: 12px;
    font-family: "sans-arabic-Regular";
}
.tabContent .left-side-list li {
    width: 100%;
    margin-bottom: 10px;
}
.tabContent .left-side-list li button {
    width: 100% !important;
    display: flex;
    background: #648f96;
    color: #fff;
    padding: 15px 10px;
    border-radius: 15px;
    text-align: right;
    font-family: "sans-arabic-light";
    align-items: center;
}
.tabContent .left-side-list li button img {
    width: 36px;
}

.tabs-nav {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: 19px;
    margin-bottom: -7px !important;
    position: relative;
}

.tabs-nav > li {
    margin-bottom: 10px;
    position: relative;
    margin-inline: 5px;
    cursor: pointer;
}

.tabs-nav > li > span {
    display: block;
    padding: 9px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
}

.tabs-nav .active > span {
    background: #648f96;
    /* color: #fff; */
}

.tab-pane {
    display: none;
    padding: 8px;
    border-top: none;
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    min-width: 250px;
    max-height: 150px;
    box-shadow: 0px 0px 2px 1px #ccc;
    top: 50px;
    inset-inline-end: auto;
    overflow-y: scroll;
}
.tabs-nav .tab-pane ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}
.tabs-nav .tab-pane li {
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.tabs-nav .tab-pane.active {
    display: block;
}
.social-list-contact {
    padding: 20px 0;
}
.social-list-contact li {
    font-family: "sans-arabic-Regular";
    width: 50%;
    margin-bottom: 15px;
}
.social-list-contact li span:first-of-type {
    color: #648f96;
}
.social-list-contact li span:last-of-type {
    margin-inline-start: 8px;
}

/* .social-list-contact a {
  margin-inline-start: 8px;
  text-decoration: underline;
  text-decoration-color: #648f96;
} */

.social-media-icon ul {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px 15px;
    justify-content: flex-start;
}
.social-media-icon ul li {
    margin: 10px 15px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 7px;
    border-radius: 50%;
}
.social-media-icon ul li img {
    width: 35px;
    height: 35px;
    margin: 0;
}

.location-tabs > li {
    margin-inline: 8px;
}
.location-tabs > li > span {
    display: block;
    padding: 10px 8px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid;
    font-size: 14px;
    /* color: #a1a4ae; */
}

.location-tabs .active > span {
    background: #fff;
    color: #000;
    box-shadow: 0 0 2px 2px #d7dbe1;
}
.location-tabs .location-text {
    font-family: "sans-arabic-Regular";
}
.location-tabs .location-text li {
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: normal;
}
.location-tabs .location-text a {
    text-decoration: underline;
}
.location-tabs .location-text li span:first-of-type {
    color: var(--petrol-color);
    margin-inline-end: 5px;
}
.location-tabs .location-text li span:last-of-type {
    font-family: "sans-arabic-Medium";
}
.location-tabs .tab-pane {
    min-width: 325px;
    max-height: max-content;
    overflow-y: auto !important;
}
.tabContent .slider-content {
    display: none;
}
.tabContent .slider-content.active {
    display: block;
}

.owl-carousel-tabs {
    padding-bottom: 30px;
}
.userProfile-slider .owl-dots {
    bottom: 0;
}
.userProfile-slider .owl-dots .owl-dot span {
    background-color: gainsboro;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.userProfile-slider .owl-dots .owl-dot.active span {
    width: 23px;
    height: 7px;
    border-radius: 6px;
    background-color: var(--orange-color);
}

.owl-carousel-catlougs {
    padding-bottom: 40px;
}

.owl-carousel-catlougs .img-mask {
    width: 60px;
    height: 60px;
}
.dowloadicon {
    width: 20px !important;
}
.owl-carousel-catlougs .card-download {
    padding: 8px;
    border: 1px solid #edf1f2;
    margin: 20px 0 5px;
    border-radius: 5px;
}

.owl-carousel-logos {
    padding: 30px 0 45px;
}

.logos-icon-bg {
    background-color: #f8f9fb !important;
}
.card-logos {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}
.card-logos .logo-mask {
    width: 90px;
    height: 90px;
}
.card-logos .logo-mask img {
    width: 100%;
    height: 100%;
}
.logo-mask-small {
    width: 60px;
    height: 60px;
}
.second-card-logos {
    border-left: 1px solid #ccc;
    /* margin: 25px 0px 10px; */
}
.owl-carousel-similar-Company {
    padding: 30px 0;
}
.owl-carousel-similar-Company .img-mask {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}
.owl-carousel-similar-Company .card-download {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.video-card {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.video-card.shadow-none {
    box-shadow: none !important;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 25px solid white;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* Hide play button when video is playing */
.video-container.playing .play-button {
    opacity: 0;
    pointer-events: none;
}

/* Video info (optional) */
.video-info {
    padding: 16px;
    background: white;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.video-description {
    font-size: 0.9rem;
    color: #666;
}

.owl-carousel-videos {
    padding: 20px 0;
}

.fixed-Bar {
    position: fixed;
    top: 75px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 0 5px;
    box-shadow: 0 0 12px 0px #ccc;
    transition: all 0.5s ease-in-out;
    padding: 15px 15px !important;
}
body.has-fixed-bar {
    padding-top: 60px; /* Should match your bar height */
}
.contact-us-page .contact-info {
    border: 1px solid #eef1f2;
    padding: 10px;
    border-radius: 10px;
}
.contact-us-page .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    border-left: 1px solid #eef1f2;
}
.contact-info .item p {
    margin-block: 10px;
    font-family: "sans-arabic-medium";
    font-size: 17px;
}
.contact-info .item:last-of-type {
    border: none;
}
.contact-info .item span {
    color: #686f83;
    font-family: "sans-arabic-regular";
}

.img-container img:hover {
    transform: scale(0.97);
    -webkit-transform: scale(0.97);
    -moz-transform: scale(0.97);
    -o-transform: scale(0.97);
    opacity: 0.75;
    -webkit-opacity: 0.75;
    -moz-opacity: 0.75;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
}

.Exhibtion .img-mask {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    margin-bottom: 18px;
    cursor: pointer;
}
.Exhibtion .img-mask img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.Exhibtion p + span {
    font-family: "sans-arabic-light";
    margin-block: 6px;
    display: flex;
    gap: 5px;
}
.brief-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brief-card p {
    margin-bottom: 5px;
}
.brief-card span {
    font-family: "sans-arabic-bold";
    color: var(--span-color);
    margin-top: 5px;
    font-size: 20px;
}

.dates {
    margin-bottom: 13px;
    display: flex;
    gap: 7px;
    font-family: "sans-arabic-Regular";
    font-size: 16px;
    align-items: center;
    padding: 3px 0;
    color: #30333c;
    line-height: 8px;
}
.notes-card .img-mask {
    width: 50px;
    height: 50px;
    overflow: hidden;
    object-fit: contain;
    border-radius: 50%;
}
.notes-card .img-mask img {
    width: 100%;
    height: 100%;
}
.notes-card p {
    color: #3f434f;
    font-family: "sans-arabic-Regular";
}
.favorite-card {
    position: relative;
}
.favorite-card .addToFavorite {
    position: absolute;
    top: 7px;
    left: 14px;
    padding: 7px;
    border-radius: 50%;
    background-color: #eef1f2;
    display: flex;
}
.favorite-card .img-mask {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.favorite-card .img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.favorite-card p:first-of-type {
    margin-top: 30px;
    margin-bottom: 5px;
    font-family: "sans-arabic-Medium";
    font-size: 17px;
}
.favorite-card p:last-of-type {
    margin-block: 0px;
    padding-block: 10px;
    font-family: "sans-arabic-Regular";
    color: #333333;
}
.favorite-card a span,
.favorite-card a + span {
    font-size: 13px;
    font-family: "sans-arabic-Medium";
    padding: 5px 10px;
    border-radius: 17px;
    margin: 4px 0 0;
    display: inline-block;
}
.favorite-card span {
    font-size: 15px;
    font-family: "sans-arabic-Regular";
}
.favorite-card a + span img {
    margin-inline-end: 5px;
}
/* .bottomSection {
  padding-block: 5px;
} */
.bottomSection img {
    margin-inline-end: 5px;
}
.gallery-card-userAction {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gallery-btns {
    gap: 15px;
    align-items: center;
    padding: 7px 0 12px;
}
.gallery-btns p {
    margin: 0;
}
.gallery-btns p + span {
    background-color: #edf1f2;
    color: #515766;
    border-radius: 17px;
    padding: 6px 29px;
}

.gallery-btns .pinned-icon {
    padding: 6px 10px;
    border: 1px solid #789da3;
    border-radius: 7px;
}
.gallery-btns button {
    background-color: #648f96;
    color: #fff;
    border-radius: 7px;
}

.all-info {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-family: "sans-arabic-Regular";
}
.all-info ul {
    display: flex;
    flex-direction: row;
    gap: 11px;
    font-family: "sans-arabic-Regular";
}
.all-info li {
    display: flex;
    gap: 6px;
}
.all-info li img {
    margin-inline-end: 5px !important;
}

/* dashboard style */
.company-Data {
    display: flex;
    justify-content: center;
    margin-block: 35px;
}

.company-Data .company-data-inline-list {
    padding: 0 85px;
    display: inline-flex;
    justify-content: space-around;
    text-align: center;
    width: 100%;
}
.company-Data .company-data-inline-list li {
    position: relative;
    width: 33.33%;
    overflow: hidden;
}

.company-Data .company-data-inline-list li.active span {
    background-color: #638b94;
}
.company-Data .company-data-inline-list li.active span b {
    background-color: #fff;
}
.company-Data .company-data-inline-list li.active::after {
    background-color: #638b94 !important;
    content: "\f375"; /* Unicode for fa-unicef */
    font-weight: 900;
    font-family: "Font Awesome 7 Pro";
}
.company-Data .company-data-inline-list li.before-active::before {
    background-color: #638b94 !important;
}
.company-Data .company-data-inline-list li.active p {
    color: #638b94;
}

.company-Data .company-data-inline-list li:first-of-type::after {
    content: "";
    position: absolute;
    top: 13px;
    left: -8px;
    width: 50%;
    height: 2px;
    background-color: #ccc;
}
.company-Data .company-data-inline-list li:last-of-type::after {
    content: "";
    position: absolute;
    top: 13px;
    right: -8px;
    width: 50%;
    height: 2px;
    background-color: #ccc;
}
.company-Data .company-data-inline-list li:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 13px;
    left: -8px;
    width: 50%;
    height: 2px;
    background-color: #ccc;
}
.company-Data .company-data-inline-list li:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 13px;
    right: -8px;
    width: 50%;
    height: 2px;
    background-color: #ccc;
}
.company-Data .company-data-inline-list li span {
    background-color: #fafbff;
    width: 17px;
    height: 17px;
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: space-around;
}
.company-Data .company-data-inline-list li span b {
    background-color: #dbdee5;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.danger-message {
    padding: 15px;
    margin-bottom: 25px;
    border: 2px solid #e50003;
    border-radius: 10px;
    background-color: #fef0ef;
    color: #e5000d;
    font-family: "sans-arabic-Regular";
}
.danger-message p {
    margin: 0;
    margin-bottom: 8px;
    position: relative;
}
.danger-message p span {
    padding: 4px 5px;
    border: 2px solid #e50003;
    border-radius: 50%;
    margin-inline-end: 5px;
    display: inline-flex;
}
.danger-message p span svg {
    font-size: 12px;
}
.danger-message ul {
    padding-inline-start: 50px;
    list-style-type: disc;
    display: block;
    color: #e50003;
}
.danger-message ul li {
    margin-bottom: 4px;
    line-height: 25px;
    padding-top: 0px;
    display: list-item;
}
.company-form-basicData .uploadImg-content {
    height: 230px;
}
.company-form-basicData .form-select {
    padding: 0.5rem 10px 0.5rem 30px;
    background-position: left 0.75rem center;
    border-radius: 8px;
    font-family: "sans-arabic-Regular";
    color: #8a8b91;
    font-size: 14px;
}
.company-form-basicData .form-select:focus {
    box-shadow: 0 0 0 0.1rem #d9dce3;
    border-color: none !important;
}
.company-logo {
    width: max-content;
    margin: 0 auto;
}
.company-logo .logo-content {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background-color: #eef1f2;
    border: 1px solid #e9e6e6;
    position: relative;
    overflow: hidden;
}
.company-form-basicData .edit-profile {
    display: flex;
    gap: 14px;
    width: 100% !important;
    align-items: center;
}
.company-form-basicData .edit-profile .preview {
    width: 70px;
    height: 70px;
}
/* .company-logo .logo-content .preview {
  width: 100%;
  height: 100%;
} */

.company-logo .logo-content label {
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.company-logo .logo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-logo input {
    border: 1px solid #ccc;
    padding: 8px;
    margin: 5px 0;
}
/* .textEditor-code {
  display: flex;
}
.textEditor-code .form-group {
  margin-inline-end: 5px;
} */
.company-form-basicData .tabs-nav {
    justify-content: space-between;
    margin-top: 5px;
}
.company-form-basicData .tabs-nav > li {
    flex: 1;
    text-align: center;
    position: static;
}
.company-form-basicData .tabs-nav > li > span {
    padding: 10px 16px;
    background-color: #f8f9fb;
    border-radius: 6px;
}
.company-form-basicData .tabs-nav .tab-pane {
    max-width: 35%;
    max-height: 200px;
    z-index: 1;
}
.company-form-basicData .tabs-nav .tab-pane ul {
    justify-content: flex-start;
}
.company-form-basicData .tabs-nav .tab-pane li {
    display: flex;
    /* align-items: center; */
}
.company-form-basicData
.tabs-nav
.tab-pane
li
.form-check-input[type="checkbox"] {
    margin-inline-end: 8px;
}
.company-form-basicData .tabs-nav .active > span {
    background: #fff !important;
    color: #000;
    border: 1px solid #a1a6b5;
    box-shadow: 0 0 3px 1px #d9dce3;
}
.btns-container {
    display: flex;
    justify-content: space-between;
    padding: 3px;
}
.btns-container a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
}
.hours-content {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}
.hours-content .time-input {
    display: inline-flex;
    /* border: 1px solid #dfe0e2 !important; */
    padding: 8px 10px;
    border-radius: 6px;
    align-items: center;
    flex: 5;
}
.hours-content label {
    flex: 1;
    text-align: center;
    color: #5d5c5c;
    margin-top: 3px;
}
.hours-content .time-input input {
    flex: 2;
}
.hours-content .time-input select {
    flex: 0.5;
}
.form-control-icon {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.form-control-icon .form-control {
    flex: 8;
}
.form-control-icon .img-icon {
    display: flex;
    justify-content: center;
}
.form-control-icon .img-icon img {
    width: 38px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.User-profile-img {
    margin-bottom: 15px;
}

.User-profile-img .rightContent .logo-content {
    width: 75px;
    height: 75px;
}
.User-profile-img .rightContent .logo-content img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.User-profile-img .rightContent span,
.User-profile-img .rightContent p {
    font-family: "sans-arabic-Regular";
    font-size: 15px;
}
.User-profile-img .rightContent span {
    padding: 6px 15px;
    border: 1px solid #648f96;
    border-radius: 21px;
    color: #648f96;
    cursor: pointer;
}
.User-profile-img .rightContent p img {
    width: 20px;
}

.User-profile-img .leftContent span {
    color: #686f83;
    font-size: 13px;
}

.select-image {
    display: flex;
    gap: 20px;
}
.select-image .image-with-delBtn {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    position: relative;
}
.select-image .image-with-delBtn img:first-of-type {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.select-image .image-with-delBtn img:last-of-type {
    position: absolute;
    top: -15px;
    left: -10px;
}

.empty-company-content {
    height: 35vw;
}
.empty-company-content img {
    width: 130px;
    margin: 0 auto;
}
.empty-company-content p {
    margin: 0px 0;
    font-family: "sans-arabic-SemiBold";
    font-size: 18px;
}
.empty-company-content p + span {
    display: block;
    margin-block: 5px;
    color: #686f83;
    font-family: "sans-arabic-Regular";
}
.empty-company-content button {
    border: 1px solid #648f96;
    color: #648f96;
    margin-top: 4px;
}
.empty-company-content button:hover {
    border-color: #648f96;
    color: #648f96;
}
.company-search input {
    background-color: #f8f9fb;
    padding: 8px 10px;
    border-radius: 15px;
    font-size: 15px;
    font-family: "sans-arabic-Medium";
    border: none;
}
.border-trash {
    padding: 6px;
    display: flex;
    align-self: flex-start;
    top: 7px;
    position: relative;
    border-radius: 7px;
    cursor: pointer;
}
.border-trash img {
    width: 15px;
}
.edit-del-btns {
    display: flex;
    gap: 5px;
    align-self: baseline;
}
.edit-del-btns .border-trash:first-child {
    border: 1px solid red !important;
}

.edit-del-btns .border-trash:last-child {
    border: 1px solid #648f96;
}
.edit-del-btns a {
    display: inline-flex;
}

.notes-btn {
    background-color: #f8f9fa;
    color: #3f434f;
}
.notes-btn.active {
    color: #fff;
    background-color: #648f96;
}
.notes-btn:hover {
    color: #fff;
    background-color: #648f96;
}
.profile-card {
    padding: 10px;
    transition: all 0.5s ease-in-out;
    position: relative;
}
.profile-card > img {
    position: absolute;
    top: 8px;
    left: 10px;
}
.profile-card-icon {
    background-color: #f8f9fa;
    border-radius: 50%;
    padding: 10px;
    margin: 8px 0 5px;
    transition: all 0.5s ease-in-out;
}
.profile-card:hover {
    box-shadow: 0 0 12px 3px #e5e5e5;
    border: 1px solid #ffb37d;
}
.profile-card:hover .profile-card-icon {
    background-color: #ffb37d;
}
.profile-card:hover .profile-card-icon img {
    filter: invert(100%) brightness(1000%) contrast(100%);
}

.subscribe-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: #6e8f93;
    color: #fff;
    text-align: center;
    border-radius: 20px;
    width: 290px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 7px 2px #e7e7e7;
    margin-bottom: 14px;
}
.subscribe-card p {
    margin: 0;
}
.subscribe-card .monthly {
    background: #fff0e5 !important ;
    padding-block: 5px;
    margin-block: 10px;
    color: #cc5500 !important;
}
.subscribe-card ul li {
    font-size: 14px;
}
.subscribe-card button {
    padding: 0;
}
.subscribe-card button a {
    color: #fff;
    width: 100%;
    display: block;
    padding: 7px;
}
.subscribe-card.white-bg {
    background-color: #fff;
}

.subscribe-card.white-bg span {
    background-color: #fafafa;
    color: #30333c;
}
.subscribe-card.white-bg button {
    background-color: transparent;

    border: 1px solid var(--btn-color);
}
.subscribe-card.white-bg button a {
    color: var(--btn-color);
}
.subscribe-card.white-bg p {
    color: var(--btn-color);
}
.subscribe-card.white-bg label {
    color: #30333c;
}
.subscribe-card.white-bg ul li {
    color: #686f83;
}

.subscribe-card span {
    padding: 10px 15px;
    background-color: #85a8ad;
    border-radius: 15px;
    width: max-content;
    margin: 0 auto 5px;
}
.subscribe-card button {
    background-color: #ffb37d;
    color: #fff;
    margin-bottom: 12px;
}
.subscribe-card button:hover,
.subscribe-card button:focus {
    background-color: #ffb37d;
    color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: inherit;
    margin-inline-end: 5px;
    padding: 0;
}
.breadcrumb-item {
    padding-inline-end: 8px;
}
.breadcrumb-item a {
    color: #000 !important;
}
.breadcrumb-item.active {
    color: #648f96;
}
.upgrade {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 350px;
}
.upgrade button {
    border: 1px solid #ccc;
    width: 100%;
    margin-block: 15px;
}
.upgrade button:hover {
    border: 1px solid var(--second-color);
}
.form-check-label {
    font-size: 14px;
    /* font-family: "sans-arabic-Medium"; */
    line-height: 15px;
}
.form-switch .form-check-input {
    position: relative;
    top: 2px;
}
.btn-permission {
    background-color: transparent;
    border: 1px solid var(--petrol-color);
}
.btn-permission:hover a {
    color: #fff !important;
}
.btn-permission a {
    color: var(--petrol-color) !important;
}
.newEmploy {
}
.EmployInfo {
    display: flex;
    gap: 8px;
}
.newEmploy .EmployInfo .employMask {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
.newEmploy .employMask img {
    width: 100%;
    height: 100%;
}
.newEmploy .info {
    display: flex;
    flex-direction: column;
}
.newEmploy .info p {
    margin: 0 0px 5px 0px;
    color: #58595d;
    font-family: "sans-arabic-bold";
    font-size: medium;
}
.jop {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 4px;
}
.jop span {
    padding: 7px;
    border: 1px solid #eeeeee;
    color: #3f434f;
    font-size: 11px;
    border-radius: 6px;
    margin-inline-end: 6px;
    background-color: #f9fafb;
    font-family: "sans-arabic-Regular";
}
.select-container {
    position: relative;
}
.select-box {
    border: 1px solid #ddd;
    padding: 6px 9px;
    border-radius: 4px;
    cursor: pointer;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.select-box span {
    line-height: 21px;
    font-size: 12px;
}
.options-container {
    border: 1px solid #ddd;
    border-top: none;
    overflow-y: auto;
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    z-index: 100;
}
.options-container .option {
    padding: 8px 10px;
    display: flex;
    align-items: center;
}
.options-container .option label {
    margin: 0;
}
.options-container .option:hover {
    background-color: #f0f8ff;
}
.options-container .option input {
    margin-inline-end: 8px;
    width: 20px;
    height: 19px;
}
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    min-height: 40px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}
.options-container .option input:checked {
    background: #3498db !important;
}
#tagsContainer {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #a1a6b5;
    font-family: "sans-arabic-Regular";
}
#tagsContainer .tag {
    background: #f9fafb;
    padding: 3px 7px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin: 0;
    color: #686f83;
    font-family: "sans-arabic-Regular";
    border: 1px solid #eeeeee;
}
#tagsContainer .tag .tag-remove {
    margin-inline-start: 7px;
    cursor: pointer;
    font-weight: bold;
}
.search-box {
    padding: 8px;
    border-bottom: 1px solid #eee;
}
.search-box input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.search-box-items {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.search-box-items input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.none {
    display: none !important;
}

.recommend-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.recommend-content button {
    background-color: #fafcff;
    color: #648f96;
    font-size: 20px;
    padding: 2px 11px;
    border: 1px solid #e2e2e2;
}
.recommend-content button img {
    width: 35px;
    padding: 5px;
}
.recommend-content .recommend-content-text span {
    color: var(--petrol-color);
    margin-inline-start: 5px;
}
.recommend-content .recommend-content-text {
    display: inline-flex;
    align-items: center;
}
.recommend-content .recommend-content-text p {
    margin: 0;
    margin-inline-start: 25px;
    font-size: 15px;
    color: #3f434f;
}

.new-permission {
    padding-block: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding-inline: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.new-permission h6 {
    margin: 0;
    flex: 4;
}
.new-permission ul {
    flex: 2;
    justify-content: space-evenly;
    /* gap: 20%; */
}
.checkbox-list {
    flex: 1;
    justify-content: center;
    gap: 20%;
}
.permission-title {
    flex: 2;
    display: flex;
}
.radios-list {
    position: absolute;
    background: #fff;
    top: 45px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 9px -1px #ccc;
    display: none;
    z-index: 999;
}
.form-check {
    padding-inline-start: 1.5em;
    position: relative;
}
.radios-list .form-check-input[type="radio"] {
    position: absolute;
    inset-inline: 0px;
    inset-block: 2px;
}
.advertisement {
    overflow: hidden;
    margin-bottom: 35px;
}
.advertisement-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 10px;
}
.advertisement-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.advertisement-data {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.advertisement-data span {
    width: max-content;
    border-radius: 11px;
    padding: 5px 5px;
    font-size: 13px;
}
.advertisement-data p {
    margin: 0;
}
.advertisement-data span:last-of-type {
    font-size: 13px;
    font-family: "sans-arabic-Regular";
}
.second-part {
    padding-top: 14px;
}
.second-part p a {
    color: #30333c;
}
.second-part p:first-of-type {
    font-size: 13px;
    font-family: "sans-arabic-Regular";
    margin: 0;
}
.second-part p:last-of-type {
    margin: 0;
    font-size: 14px;
}
.second-part p:last-of-type span:last-of-type {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 16px;
}
.form-notes {
    font-family: "sans-arabic-Regular";
}
.form-notes p {
    margin: 21px 0 3px;
}
.form-notes p span {
    margin-inline-start: 8px;
}
.list-form-notes {
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    padding-inline-start: 25px;
    color: #727a90;
}
.list-form-notes li {
    list-style: circle;
    display: list-item;
}

.Products span {
    font-size: 15px;
    font-family: "sans-arabic-Medium";
    padding: 0px;
}
.Products p {
    font-size: 20px;
    margin: 0 0 5px;
}
.gallary-card {
}
.gallary-card p {
    margin: 7px 0;
}
.gallary-card span {
    font-size: 15px;
    font-family: "sans-arabic-Regular";
    display: block;
    margin: 9px 0 5px;
    display: flex;
}
.gallary-card span img {
    margin-inline-end: 5px;
}
.card-actions {
    font-size: 14px !important;
    padding: 0;
    gap: 11px;
}
.favorite-card .file-mask {
    width: 60px;
    height: 60px;
    overflow: hidden;
}
.favorite-card .file-mask img {
    width: 100%;
    height: 100%;
}
.Download-conten {
    padding: 7px 15px !important;
}
.Download-conten p {
    font-family: "sans-arabic-semiBold" !important;
}
.Download-conten .edit-del-btns {
    align-self: auto;
}
input[type="date"] {
    border: none !important;
    border: 0 !important;
}
input[type="date"],
input[type="date"]:focus {
    border: none !important;
    border: 0 !important;
    outline: 0;
    font-size: 13px;
}
.card-Statictics {
    background-color: #f8f9fa;
    padding: 10px;
}
.card-Statictics .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    padding: 11px 8px;
    border: 0;
    margin-top: 10px;
    border-radius: 8px;
}
.card-Statictics .card img {
    width: 40px;
    height: 40px;
}
.card-Statictics .card .Statictics-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.Statictics-text p {
    margin: 0;
    font-family: "sans-arabic-Medium";
    color: #7e7a7a;
}

.group-control {
    padding-inline: 9px;
    position: relative;
    display: flex;
    gap: 7px;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
}
.form-group .group-control .content {
    flex-direction: row !important;
    display: flex;
}
.form-group .group-control .content .input-container {
    display: flex;
    flex-direction: row;
}
.form-group .group-control .badges-container {
    display: flex !important;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.content input[type="text"] {
    margin-inline-start: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: #eeeeee;
    color: #3f434f;
    padding: 5px 6px 5px 5px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 0.5s;
}
.badge span {
    font-family: "sans-arabic-Regular";
}

.badge .remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-inline-start: 4px;
    font-weight: bold;
    font-size: 16px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}
.inBox .form-control {
    background-color: #f8f9fb;
    padding-inline-start: 39px;
    color: #8e95a6;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    padding-block: 0px;
    border: 0;
}
.inBox img {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 23px;
}
.inBox input::placeholder {
    color: #8e95a6;
}
.inBox input {
    border-radius: 0;
    padding: 14px 0px;
}
.inBox .form-control {
}
.inbox-message {
}

.menusBorder.inbox-message ul li {
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 5px;
    display: flex;
}
.menusBorder.inbox-message ul li p {
    margin: 0;
    font-size: 15px;
}
.menusBorder.inbox-message ul li span {
    font-size: 12px;
    color: #686f83;
    font-family: unset;
}
.inbox-message .activate {
    background-color: #e0e9eb;
}
.menusBorder.inbox-message ul li .text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.menusBorder.inbox-message ul li:hover,
.menusBorder.inbox-message ul li:focus {
    background-color: #e0e9eb;
}
.inbox-message ul li .img-mask {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-inline-end: 14px;
    object-fit: contain;
    background: #d9d5d582;
}

.message-box-content {
    display: flex;
}

.message-box-content .img-mask {
    width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 50%;
    margin-inline: 15px;
    background: #e3dbdb;
}
.message-box-content .text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.message-box-content .text p {
    margin: 0;
    font-size: 15px;
}
.message-box-content .text span {
    font-size: 11px;
    color: #686f83;
    font-family: unset;
}
.ask {
    margin: 7px 0px;
    display: flex;
    justify-content: start;
}
.ask p {
    margin: 0;
    padding: 10px 15px;
    background-color: #ededed;
    border-radius: 21px;
    margin-top: 15px;
    line-height: 22px;
    margin: 0;
    width: 55%;
}
.response {
    display: flex;
    justify-content: end;
    margin: 7px 0;
    flex-direction: row-reverse;
}
.ask.response p {
    background-color: #46767d6b;
    color: #000000;
    margin-top: 5px;
}
.add-text {
    position: relative;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 15px;
}
.add-text .send-icon {
    top: 35px;
}
.add-text .postInput {
    border: none;
    display: flex;
    gap: 8px;
}
#tags-container {
    display: flex;
    gap: 5px;
    font-size: 14px;
    color: #151515;
    font-family: "sans-arabic-Regular";
}
.iframe-container {
    padding: 15px 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.iframe-container .iframe-content {
    padding: 60px 25px 20px;
    border: 0;
    width: 100%;
    zoom: 59%;
    height: 1500px;
    background-color: #f8f9fa;
    overflow: hidden;
    border-radius: 15px;
}
.iframe-container .iframe-content h3 {
    margin-bottom: 40px;
}
iframe {
    width: 100%;
    height: 94%;
    background-color: #fff !important;
    overflow: hidden;
}
.User-about {
    background-color: #f9fcff;
    padding: 20px 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.User-about p {
    margin: 0;
    line-height: 28px;
    font-size: 14px;
    font-family: "sans-arabic-Medium";
    word-spacing: 2px;
}

/* all Media Query*/
@media (min-width: 1600px) {
    .container-lg {
        max-width: 1530px;
    }
}

@media (max-width: 1400px) {
    .item .carousel-content {
        top: 45% !important;
        width: 60% !important;
    }
}

@media (max-width: 1200px) {
    .main-Carousel .item .carousel-content h4 {
        font-size: 22px;
        line-height: 29px;
    }
    .main-Carousel .item .carousel-content p {
        font-size: 16px;
        font-size: 12px;
    }

    .main-fields section .mainFields-card-img {
        width: 100px;
        height: 100px;
    }
    /* .menusBorder ul li {
    font-size: 12px;
  } */
    .vertical-list ul li {
        display: flex;
        align-items: center;
    }
    .card-statistics .statistics-box {
        padding: 0;
        border: 0;
    }
    .social-list-contact li {
        width: auto;
    }
    .list-location li {
        width: 50%;
    }
    .overlay-content {
        width: 70%;
    }
}

@media (max-width: 992px) {
    .fixed-Bar {
        margin: 0;
        top: 50px;
    }
    .company-Data .company-data-inline-list {
        padding: 0;
    }
    .item .carousel-content {
        top: 40% !important;
        width: 100% !important;
    }

    .custom-container .signin-content .img-content .question-board {
        max-width: 75%;
        padding: 20px;
    }

    .forms-title #tip {
        left: -81px;
        top: -11px;
        font-size: 12px;
    }

    .User-profile .carousel-inline-tabs {
        margin: 0;
    }
    .filter-inputs {
        flex-direction: column;
    }
    .filter-inputs .form-group {
        width: auto;
    }
    .card-statistics {
        flex-wrap: wrap;
    }
    .card-statistics .statistics-box {
        width: 46%;
        justify-content: flex-start;
    }
    .card-statistics .statistics-box .box-text {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .custom-container .signin-content {
        flex-direction: column-reverse;
    }
    .custom-container .signin-content .img-content {
        padding-inline: 10px;
        padding-inline-start: 25px;
        position: relative;
        border-radius: 35px;
        overflow: hidden;
        width: 80%;
        padding: 24px 0;
        margin-bottom: 20px;
        display: flex;
        margin: 0 auto;
        height: 300px;
    }
    .custom-container .form-container {
        padding: 25px 15px;
        border-radius: 8px;
    }
    .forms-title #tip {
        left: -25px;
        top: -7px;
        font-size: 10px;
    }
    .custom-container .signin-content .img-content .question-board {
        max-width: 70%;
        padding: 10px;
    }
    .menusBorder ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    ul li span {
        display: revert;
    }
    .profilemeun {
        text-align: center;
    }
    .social-list-contact li {
        width: 50% !important;
        align-items: center;
    }
    .list-location li {
        display: flex;
        align-items: center;
    }
    /* .location-tabs {
    position: relative;
    display: block !important;
  }
  .location-tabs > li {
    position: sticky !important;
    width: auto !important;
  } */
    /* .location-tabs {
    display: block;
  } */
    .tabContent .tab-pane {
        min-width: 160px;
    }
    .company-form-basicData .tabs-nav .tab-pane {
        right: 0;
        max-width: 60%;
    }
    .company-form-basicData .tabs-nav > li {
        flex: auto;
        position: relative;
    }
    .location-tabs .tab-pane {
        min-width: auto;
        right: 0;
    }
    .tabs-nav.location-tabs > li {
        position: unset;
        width: auto !important;
    }

    .sliderTabs {
        flex-wrap: nowrap;
        text-align: center;
    }
    .row-direction {
        flex-direction: column-reverse;
    }
    .item .carousel-content {
        top: 40% !important;
        width: 70% !important;
        padding-inline-start: 120px !important;
    }
    .vipClients-list li {
        width: 33%;
        padding-left: 15px;
        font-size: 14px;
    }
    .overlay-content {
        width: 80%;
    }
    .overlay-cardQuestion {
        width: 80%;
    }
}

@media (max-width: 722px) {
    .item .carousel-content {
        top: 40%;
        width: 100%;
        gap: 0;
    }
    .main-Carousel .owl-dots {
        bottom: 3px;
    }
    .item .carousel-content span {
        font-size: 15px !important;
    }
    .item .carousel-content h4 {
        font-size: 15px !important;
        line-height: 15px !important;
    }
    .item .carousel-content p {
        font-size: 12px !important;
    }
    .tabs-nav {
        justify-content: center;
    }
    .tabs-nav > li {
        width: 45%;
    }
    .tabs-nav > li > span {
        font-size: 14px;
    }
    .contact-us-page .contact-info {
        flex-direction: column;
    }
    .contact-us-page .contact-info .item {
        border: none;
        margin-bottom: 10px;
    }
}

@media (max-width: 596px) {
    .banner {
        overflow: hidden;
        border-radius: 10px;
        /* width: 75%; */
        height: 22vw;
        margin: 15px 0px;
    }
    .logo img {
        width: 30%;
    }
    .vertical-list ul {
        flex-wrap: wrap;
    }
    .vertical-list ul li {
        margin-bottom: 10px;
        width: 100%;
    }
    .mini-PostCompany {
        height: auto;
    }
    .social-media-icon ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .social-media-icon ul li {
        margin: 10px;
    }
    .social-list-contact li {
        width: 100% !important;
        display: flex;
        font-size: 14px;
    }
    /* .menusBorder ul {
    flex-direction: column;
  } */
    .menusBorder ul li {
        width: 100%;
        align-items: center;
        display: flex;
        border: 0;
    }
    .main-list ul li {
        width: 50% !important;
    }
    .ul-vertical-list li button {
        padding: 11px;
        font-size: 14px;
    }
    .card-definition .definition-content h4 {
        font-size: 16px;
        line-height: 25px;
        margin-inline-end: 5px;
    }
    .card-definition .definition-content span {
        font-size: 13px;
    }
    .item .carousel-content {
        display: none !important;
    }
    .card-definition .definition-content {
        position: relative;
        padding-inline-start: 90px;
    }
    .card-definition .definition-content .img-mask {
        width: 75px;
        height: 75px;
        border-radius: 15px;
        overflow: hidden;
        position: absolute;
        right: 0;
        top: 0;
    }
    .card-statistics .statistics-box {
        width: 70%;
    }
    .fixed-Bar {
        padding-inline: 30px;
    }
    .overlay-content textarea {
        height: 100px;
    }
    .overlay-content .uploadImg-content {
        height: 100px;
    }
    .overlay-content .form-group {
        margin-top: 2px;
    }
    .Exhibtion .img-mask {
        height: 165px;
    }
    .User-profile-img {
        flex-direction: column;
    }
    .User-profile-img .rightContent {
        margin-bottom: 10px;
    }
    .permission-title {
        flex: 1;
    }
    .ask p {
        width: 100%;
        margin-block: 15px;
    }
    .iframe-container .iframe-content {
        display: none;
    }
}

.chart-Statictics {
    display: flex;
    gap: 8px;
}
.chart-Statictics span {
    padding-inline-start: 25px;
    position: relative;
    font-family: "sans-arabic-Regular";
    font-size: 15px;
}
.chart-Statictics span:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    top: 5px;
    right: 4px;
    background-color: #ffb37d;
}
.chart-Statictics span:last-of-type::before {
    background-color: #648f96;
}
p {
    margin-top: 2rem;
    font-size: 15px;
}
#bar-chart {
    width: 100%;
    height: 300px;
    position: relative;
    font-family: "sans-arabic-Regular";
    margin: 0 auto;
    /* overflow-x: scroll; */
}
#bar-chart2 {
    width: 100%;
    height: 300px;
    position: relative;
    font-family: "sans-arabic-Regular";
    margin: 0 auto;
    /* overflow-x: scroll; */
}
#line-chart {
    width: 70%;
    height: 100%;
    position: relative;
    font-family: "sans-arabic-Regular";
}
#pie-chart {
    width: 70%;
    height: 250px;
    position: relative;
    font-family: "sans-arabic-Regular";
}

.dropdown-select {
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: border-color 0.3s;
    position: relative;
}

.dropdown-select:hover {
    border-color: #4a6ee0;
}

.dropdown-select.open {
    border-color: #4a6ee0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-select span {
    color: #555;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 2px solid #4a6ee0;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-list .search-box {
    padding: 4px;
    width: 100%;
    border: none;
    border: 1px solid #eee;
    outline: none;
    font-size: 1rem;
}

.dropdown-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-options li {
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.dropdown-options li:hover {
    background: #f0f5ff;
}

.bg-title-preparation {
    background-color: #648f97 !important;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.dropdown-options li i {
    margin-right: 10px;
    color: #4a6ee0;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.selected {
    background: #e6f0ff !important;
    font-weight: 500;
}

input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
    border-color: #648f97;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgb(100 143 151 / 15%);
    transition: all 0.2s ease-in-out;
}

.form-control:has(input:focus) {
    border-color: #648f97;
    box-shadow: 0 0 0 0.25rem rgb(100 143 151 / 15%);
    transition: all 0.2s ease-in-out;
}
