:root {
    --bs-body-font-family: Janna LT, sans-serif;
    --heading-font: OPTIItzach, sans-serif;
    --white: #fff;
    --black: #000;
    --primary: #245135;
    --primary-100: #006233;
    --secondary: #F5A81C;
    --accent-color: #F8E69F;
    --grey: #939393;
    --grey-100: #EFEFEF;
    --bs-body-font-size: 16px;
    --bs-body-line-height: 30px;
    --bs-body-font-weight: 400;
    --bs-body-color: #000;
    --bs-body-bg: var(--white);
    --bs-border-color: #E5E5E5;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* body {
    text-transform: capitalize;
} */

body:has(header .navbar-toggler[aria-expanded="true"]) {
    overflow: hidden;
}

.text-11 {
    font-size: 11px;
}
.text-11 ul {
    line-height: 1.8;
}
.text-12 {
    font-size: 12px;
}

.text-20 {
    font-size: 20px;
}

.fs-18 {
    font-size: 18px;
}

.text-primary {
    color: var(--primary) !important;
}

.text-primary-100 {
    color: var(--primary-100) !important;
}

.text-grey {
    color: var(--grey) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-grey-100 {
    background-color: var(--grey-100) !important;
}

.border-primary-100 {
    border-color: var(--primary-100) !important;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.py-54 {
    padding-top: 54px;
    padding-bottom: 54px;
}
.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.pl-5 {
    padding-inline-start: 5px;
}

.pl-30 {
    padding-inline-start: 30px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 40px;
}

/* Apply Zarid font to h1 elements only when language is Arabic */
h1 {
    font-family: 'Zarid Display', Arial, sans-serif !important;
    font-weight: bold;
}

/* Specific classes for Arabic page titles */
.page-title,
.hero-title,
.section-title {
    font-family: 'Zarid Display', Arial, sans-serif !important;
    font-weight: bold;
}


.banner-title {
    font-size: 70px;
    line-height: 80px;
    font-family: var(--heading-font);
    max-width: 800px;
    margin: 0 auto;
}

.banner-subtitle {
    font-size: 25px;
    line-height: 32px;
    font-weight: 400;
}

.common-title {
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -1px;
}

.common-subtitle {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: -1px;
}

.-letter-spacing-1 {
    letter-spacing: -1px;
}

.-letter-spacing-2 {
    letter-spacing: -2px;
}

.-letter-spacing-3 {
    letter-spacing: -3px;
}

.slider-next,
.slider-prev {
    width: 66px;
    height: 66px;
}

/* Button */
.btn {
    padding: 10px 28px;
    border-radius: 100rem;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 217px;
    min-height: 59px;
    transition: 0.2s all ease-in-out;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary,
.btn.btn-primary:active {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.btn.btn-secondary,
.btn.btn-secondary:active {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--primary);
}

.btn.btn-outline-secondary,
.btn.btn-outline-secondary:active {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);

}

/* Button */

/* Header */
.main-header {
    z-index: 9;
    transition: 0.2s linear;
}

body .main-header.scrolled {
    position: fixed !important;
    background-color: var(--primary) !important;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}

.main-header nav {
    padding: 30px 0;
}

.main-header nav .navbar-nav .nav-link,
.main-header nav .lang-dropdown a {
    font-size: 15px;
    transition: 0.2s linear;
}

.main-header nav .navbar-nav .nav-link:hover,
.main-header nav .lang-dropdown a:hover {
    color: var(--secondary) !important;
}

.main-header nav .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.main-header nav .lang-dropdown {
    margin: 0 13px 0 60px;
}

.main-header nav .lang-dropdown .dropdown-toggle::after {
    display: none;
}

.main-header nav .header-button .btn {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    min-width: 156px;
    min-height: 47px;
}

/* Header */

/* Footer */
footer .copywrite {
    background-color: rgba(255, 255, 255, .08);
}

footer .copywrite p {
    font-size: 10px;
    line-height: 16px;
    /* letter-spacing: 3px; */
}

footer .copywrite ul a {
    color: rgba(255, 255, 255, .4);
}

footer .footer-link a {
    color: var(--white);
}

footer .copywrite ul a {
    font-size: 14px;
}

footer .footer-link a:hover,
footer .copywrite ul a:hover {
    color: var(--secondary);
}

footer .footer-social a i {
    font-size: 20px;
}

/* Footer */

/* hero-banner */
.hero-banner .banner-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-banner .banner-image>* {
    min-height: 459px;
}

/* Common Page */
.inner-banner .banner-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.inner-banner .banner-image img {
    min-height: 249px;
}

.inner-banner .breadcrumb {
    font-size: 25px;
    line-height: 30px;
    color: var(--white);
    letter-spacing: -0.75px;
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before,
.inner-banner .breadcrumb-item.active {
    color: var(--white);
}

/* Common Page */

/* hero-banner */

/* gem-story */
.gem-story {
    text-transform: none;
}
.gem-story p {
    font-size: 18px;
}

/* gem-story */

/* what-we-offer */
.what-we-offer .what-we-offer-slider .image-box .bottom-img {
    margin-top: -50px;
}

.what-we-offer .slider-prev {
    inset-inline-end: calc(100% + 20px);
}

.what-we-offer .slider-next {
    inset-inline-start: calc(100% + 20px);
}

/* what-we-offer */

/* how-it-works */
.how-it-works ul {
    gap: 24px;
}

.how-it-works ul::before,
.how-it-works ul::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 120px;
    background-color: var(--primary);
    inset-inline-start: 31px;
    z-index: -1;
}

.how-it-works ul::before {
    top: 0;
}

.how-it-works ul::after {
    opacity: 0.15;
    bottom: 0;
}

.how-it-works ul li .icon-box {
    width: 64px;
    height: 64px;
    min-width: 64px;
}

.how-it-works ul li .title {
    font-size: 20px;
}

/* how-it-works */

/* satisfaction */
.satisfaction {
    margin-bottom: 471px;
}

.satisfaction .image {
    margin-bottom: -408px;
}

.satisfaction .image svg {
    bottom: -90px;
}

/* satisfaction */
/* brand-story */
.value-list {
    margin-inline-start: -110px;
}

.value-list li+li {
    margin-top: 19px;
    padding-top: 19px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.our-laboratory-section {
    margin-bottom: 86px;
}

.our-laboratory-section .our-laboratory-img {
    margin-bottom: -186px;
}

/* client logo section*/
.client-logo ul li {
    width: 230px;
    height: 151px;
}

.client-logo .image-box {
    border-inline-end: 1px solid rgba(0, 0, 0, 0.1);
}

.client-logo ul li:nth-child(5) .image-box,
.client-logo ul li:last-child .image-box {
    border-inline-end: none;
}

.client-logo .affiliations-slider .swiper {
    overflow: unset;
}

/* FAQs  */
.faqs .accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
}

.faqs .accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.faqs .accordion-button {
    font-size: 18px;
    padding: 24px;
    color: #090D2B;
    border: 0;
    box-shadow: none;
}

.faqs .accordion-body {
    padding: 0 24px 24px 24px;
    background-color: var(--accent-color);
    color: #282828;
}

.faqs .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
}

.faqs .accordion-button::after {
    background-image: none;
    transform: none;
    content: "";
    width: 14px;
    background: #8C94A4;
    height: 2px;
    border-radius: 100rem;
}

.faqs .accordion-button::before {
    content: "";
    flex-shrink: 0;
    margin-left: auto;
    position: absolute;
    height: 14px;
    width: 2px;
    background: #8C94A4;
    position: absolute;
    inset-inline-end: 30px;
    border-radius: 100rem;
}

.faqs .accordion-button:not(.collapsed)::before {
    display: none;
}

/* FAQs  */

/* terms-conditions */
.terms-conditions-main .banner-title {
    max-width: 910px;
}

/* terms-conditions */

/* Blog */
.blog-img {
    height: 368px;
}

.blog-detail-image {
    min-height: 223px;
}

.blog-detail h5 {
    font-size: 43px;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 40px 0;
}

/* Blog */

/* Service List */
.service-list .nav-tabs-wrapper {
    box-shadow: 0px 6px 24px 0px #00000029;
}

.service-list .nav-tabs {
    min-width: 1110px;
}

.service-list .nav-link {
    font-size: 15px;
    padding: 23px 20px;
    letter-spacing: -1px;
    color: var(--black);
    position: relative;
    border: none;
}

.service-list .nav-link.active {
    font-size: 16px;
    color: var(--primary-100);
}

.service-list .nav-link.active::before {
    content: "";
    background-color: var(--primary-100);
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 6px 6px 0 0;
}

.service-list .jewelry-report .report-list li {
    font-size: 13px;
    line-height: 1;
}

/* contact-us */
.contact-us .title {
    font-size: 50px;
    line-height: 60px;
}

.contact-us .content {
    font-size: 16px;
    line-height: 27px;
}

.contact-brnach {
    margin-top: 80px;
    margin-bottom: 15px;
}

.contact-brnach h4 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -1px;
    font-weight: 700;
}

.contact-brnach form {
    gap: 20px;
}

.contact-brnach .form-check {
    margin: 0;
    padding: 0;
}

.contact-brnach .form-check-label {
    position: relative;
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.contact-brnach .form-check-input[type=radio] {
    width: 22px;
    height: 22px;
    margin: 0;
    border-radius: 100%;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.contact-brnach .form-check-input.active,
.contact-brnach .form-check-input:focus {
    box-shadow: none;
    filter: none;
}

.contact-brnach .form-check-input[type="radio"]:checked {
    background-color: transparent;
}

.contact-brnach .form-check-input[type="radio"]:checked+label::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--primary);
    position: absolute;
    inset-inline-start: -25px;
    top: 5px;
}

.branches-list {
    margin-top: 36px;
    background-color: rgba(242, 242, 242, 0.6);
}

.branch-box {
    padding: 24px;
}

.branch-box .icon-round {
    min-width: fit-content;
}

.branch-box li h5 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
}

.branch-box li p {
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
}

.contact-form {
    background-color: rgba(242, 242, 242, 0.6);
    margin-top: 80px;
    margin-bottom: 15px;
}

.contact-form .form-control {
    border-color: rgba(0, 0, 0, 0.09);
    line-height: 24px;
    font-size: 16px;
    color: #000;
    padding: 11px;
    background-color: #FFFFFF;
    border-radius: 0;
}

.contact-map iframe {
    width: 100%;
}

/* contact-us */

/* Service */
.compare-jewelry-report table {
    font-size: 15px;
    line-height: 25px;
}

.compare-jewelry-report table .table-dashed {
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--primary);
    display: block;
    margin: 0 auto;
}

.compare-jewelry-report table td {
    font-size: 14px;
    line-height: 16px;
    width: 170px;
}

.compare-jewelry-report table tr th:first-child {
    min-width: 211px;
}

.compare-jewelry-report table th:first-child {
    position: sticky;
    inset-inline-start: 0;
}

.table-bordered>:not(caption)>* {
    border-color: #CCCCCC;
    vertical-align: middle;
}

.verify-diamonds-card .verify-icon {
    padding: 18px;
    border-radius: 100%;
    background-color: var(--primary);
    font-size: 0;
    line-height: 0;
}

.verify-diamonds-card .verify-title,
.verify-diamonds-card .verify-paragraph {
    line-height: 30px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.verify-diamonds-card .verify-paragraph {
    font-weight: 400;
}

/* Service List */

/* report */
.verify-report .card {
    padding: 60px 80px;
    border-radius: 10px;
}

.verify-report .card .form-control-box .form-control {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-inline-start: 56px;
    padding-inline-end: 230px;
    background-color: #ECECEC;
    font-size: 15px;
    min-height: 59px;
}

.verify-report .card .form-control-box .form-control::placeholder {
    color: #959595;
}

.verify-report .form-control-box .icon {
    inset-inline-start: 20px;
}

.verify-report .notes-list {
    font-size: 12px;
    line-height: 22px;
}

.verify-report .report-desc-box .report-data span:nth-child(1) {
    max-width: 150px;
    width: 100%;
}

.verify-report .report-desc-box .report-data span:nth-child(2) {
    flex: 1;
    text-align: right;
}

.your-report {
    display: none;
}

.your-report .card {
    padding: 40px;
    border-radius: 10px;
}

.your-report .report-title {
    font-size: 25px;
}

.your-report .report-data {
    font-size: 17px;
    line-height: 33px;
}

.your-report .barcode-box .report-data {
    letter-spacing: 8px;
}

/* report */

/* login-main */
.login-main .main-header {
    position: relative !important;
    background: var(--primary);
}

.login-section .login-inner {
    background-color: #F7F7F7;
    padding: 64px 99px;
}

/* login-main */




/* RTL Mode */

[dir="rtl"] [type=email],
[dir="rtl"] [type=number],
[dir="rtl"] [type=tel],
[dir="rtl"] [type=url] {
    direction: rtl;
}

[dir="rtl"] :is(.service-list .jewelry-report .report-list li img,
    .service-list .onsite-testing-link svg, .branch-box .icon-round img, .blog-post a svg) {
    transform: scaleX(-1);
}

[dir="rtl"] .what-we-offer .slider-prev {
    inset-inline-end: unset;
    inset-inline-start: calc(100% + 20px);
}

[dir="rtl"] .what-we-offer .slider-next {
    inset-inline-start: unset;
    inset-inline-end: calc(100% + 20px);
}

@media (max-width: 1399.98px) {
    [dir="rtl"] .what-we-offer .slider-prev {
        inset-inline-end: unset;
        inset-inline-start: calc(100% - 20px);
    }

    [dir="rtl"] .what-we-offer .slider-next {
        inset-inline-start: unset;
        inset-inline-end: calc(100% - 20px);
    }

    [dir="rtl"] .slider-btn {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991.98px) {
    [dir="rtl"] .main-header nav .lang-dropdown .dropdown-menu[data-bs-popper] {
        inset-inline-end: 50%;
        inset-inline-start: unset;
    }

    [dir="rtl"] .what-we-offer .slider-prev {
        inset-inline-start: calc(50% + 5px);
    }

    [dir="rtl"] .what-we-offer .slider-next {
        inset-inline-end: calc(50% + 5px);
    }
}

/* RTL Mode */
