/*!
Theme Name: vendoor
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vendoor
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, rtl-language-support

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

vendoor is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/







@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-ExtraLight.woff2') format('woff2'),
        url('fonts/Heebo-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-Light.woff2') format('woff2'),
        url('fonts/Heebo-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-Medium.woff2') format('woff2'),
        url('fonts/Heebo-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-Regular.woff2') format('woff2'),
        url('fonts/Heebo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-SemiBold.woff2') format('woff2'),
        url('fonts/Heebo-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-Thin.woff2') format('woff2'),
        url('fonts/Heebo-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-Black.woff2') format('woff2'),
        url('fonts/Heebo-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-Bold.woff2') format('woff2'),
        url('fonts/Heebo-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Heebo';
    src: url('fonts/Heebo-ExtraBold.woff2') format('woff2'),
        url('fonts/Heebo-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: 'Heebo';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: var(--page_bg);
    overflow-x: hidden;
}

.container {
    max-width: 1468px;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}


:root {

    /***** font-weights ******/
    --fw_thin: 100;
    --fw_extra-light: 200;
    --fw_light: 300;
    --fw_regular: 400;
    --fw_medium: 500;
    --fw_semi-bold: 600;
    --fw_bold: 700;
    --fw_extra-bold: 800;
    --fw_black: 900;

    /******** border radius *******/
    --br_twelve: 12px;
    --br_sixteen: 16px;
    --transition: all 0.3s ease-in-out;

    /************ linear img gradient *************/

    --bg-gradient-mesh:
        radial-gradient(at 20% 20%, hsl(263 90% 65% / .15) 0, transparent 50%), radial-gradient(at 80% 80%, hsl(290 80% 60% / .1) 0, transparent 50%), radial-gradient(at 50% 50%, hsl(320 80% 60% / .05) 0, transparent 70%);

    --bg-gradient-radial-top:
        radial-gradient(ellipse 60% 40% at 50% 0%, hsl(263 90% 65% / .12) 0%, transparent 100%);


    /************ colors *************/

    --page_bg: #fafafa;
    --foreground: #17171c;
    --white: #666670;
    --purple: #8249df;
    --op-black: #ffffff;
    --btn-white: #ffffff;
    --nav-bg: #eaeaec80;
    --text-muted-foreground: #666670;
    --surface-glass: 0 0% 100%;
    --border: hsl(240, 6%, 88%);
    --muted: 240 5% 92%;
    --light-purple: #eeeaf6;
    --primary: 263 70% 58%;


}

.dark {
    --page_bg: #070708;
    --foreground: #f2f2f2;
    --white: #ffffff;
    --purple: #8249df;
    --op-black: #13131699;
    --btn-white: #ffffff;
    --nav-bg: #22222580;
    --text-muted-foreground: #878792;
    --surface-glass: 240 6% 8%;
    --border: hsl(240, 6%, 14%);
    --muted: 240 5% 14%;
    --light-purple: #1b0f2e;
}

a {
    text-decoration: none;
    list-style-type: none;
    color: var(--foreground);
    font-size: 14px;
    line-height: 28px;
    font-weight: var(--fw_medium);
}

li {
    list-style-type: none;
}

/************** btn ***************/

.btn {
    font-size: 18px;
    line-height: 28px;
    font-weight: var(--fw_bold);
    background-color: var(--dynamic_purple);
    color: var(--btn-white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    transition: var(--transition);
    font-family: 'Heebo';
    border-radius: var(--br_twelve);
    width: max-content;
    gap: 8px;
    cursor: pointer;
}
/* 
.btn:hover {
    box-shadow: 0 0 30px #9355f680, 0 0 80px #9355f626;
    opacity: 0.9;
} */

.blue_bg_btn svg {
    transition: right 0.4s ease-in-out;
    position: relative;
    right: 0;
}

.blue_bg_btn:hover svg {
    right: 5px;
    transition: right 0.4s ease-in-out;
}

.white_bg_btn {
    color: var(--foreground);
    font-weight: var(--fw_semi-bold);
}

.white_bg_btn:hover {
    background-color: hsl(var(--muted) / 0.5);
    box-shadow: none;
}

/************* typography ***************/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Heebo';
    font-weight: var(--fw_medium);
    color: var(--foreground);
}

h1,
.title_h1 {
    font-size: 72px;
    line-height: 1;
    font-weight: var(--fw_black);
}

h2,
.title_h2 {
    font-size: 48px;
    line-height: 1;
}

h3,
.title_h3 {
    font-size: 30px;
    line-height: 36px;
}

h4,
.title_h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: var(--fw_black);
}

h5,
.title_h5,
.twenty_p p {
    font-size: 20px;
    line-height: 28px;
}

h6,
.title_h6,
.eighteen_p p {
    font-size: 18px;
    line-height: 28px;
    font-weight: var(--fw_bold);
}

p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    font-family: 'Heebo';
}

.fourteen_p p {
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--fw_bold);
}

.twelve_p p,
.twelve_p {
    font-size: 12px;
    line-height: 16px;
}


/**************** common css ******************/

.cmn_pad {
    padding: 120px 0;
}

.text-gradient,
.text-gradient_span span {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, #a26ef7, #d55eed, #ed5ebe);
}

.glow-border:before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, hsl(263 90% 65% / .4), transparent 40%, transparent 60%, hsl(290 80% 60% / .3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass,
.white_bg_btn {
    background: hsl(var(--surface-glass) / .6);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid var(--border);
}


/************************ Header ********************/

.header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
    z-index: 99;
    width: 100%;
}

.menu-scrolled .header {
    background: hsl(var(--surface-glass) / .8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    backdrop-filter: blur(40px) saturate(1.8);
}

.header_logo .logo-icon {
    font-size: 18px;
    line-height: 28px;
    font-weight: 900;
    color: var(--btn-white);
    background: var(--purple);
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    border-radius: var(--br_twelve);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.book_demo_btn .btn {
    padding: 10px 24px;
    font-size: 14px;
    line-height: 20px;
}

.header_logo .logo-icon:hover {
    box-shadow: 0 0 30px #9355f680, 0 0 80px #9355f626;
}

.header_logo .logo {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header_logo .logo span {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--foreground);
    font-weight: var(--fw_bold);
    line-height: 28px;
    letter-spacing: -0.05px;
}

.header_main {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile_shown {
    display: none;
}

.header_logo {
    width: max-content;
}

.header_right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_menu {
    width: max-content;
    margin: 0 auto;
}

.dark_btn_otr {
    width: max-content;
    display: flex;
    gap: 12px;
    align-items: center;
}

.header_menu .menu {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.header_menu .menu li a {
    color: var(--text-muted-foreground);
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--br_sixteen);
}

.header_menu .menu li a:hover {
    color: var(--foreground);
    background: var(--nav-bg);
}

.mode_btn.active {
    background: hsla(220, 10%, 14%, 0.5);
    color: #fff;
}

.mode_btn {
    border: none;
    margin: 0;
    width: 40px;
    border-radius: var(--br_twelve);
    aspect-ratio: 1/1;
    position: relative;
    cursor: pointer;
    background: #eaeaec80;
}

.sun_icon,
.moon_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sun_icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(360deg);
    pointer-events: none;
}

.moon_icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(180deg);
}

body.dark .sun_icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
    pointer-events: auto;
}

body.dark .moon_icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    pointer-events: none;
}

.dark_mode_toggle {
    display: flex;
}

/************************** Hero Section ***********************/

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--br_sixteen);
}

.banner_main {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.herobanner,
.our_values_otr,
.contact_otr {
    position: relative;
}

.herobanner::after,
.our_values_otr::after,
.contact_otr::after {
    content: '';
    position: absolute;
    background: var(--bg-gradient-mesh);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.banner_left {
    width: 46.572%;
    position: relative;
}

.banner_star {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 30px;
    left: -25px;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: var(--br_twelve);
}

.banner_left_content {
    position: absolute;
    bottom: 35px;
    right: -25px;
    padding: 16px;
    border-radius: var(--br_twelve);
}

.banner_right {
    flex: 1;
}

.banner_img {
    aspect-ratio: 652/815;
}

.banner_star svg,
.banner_small_tag svg,
.white_bg_btn svg {
    stroke: var(--purple);
}

.banner_small_tag {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 20px;
    margin-bottom: 32px;
    border-radius: 500px;
}

.banner_small_tag p {
    font-weight: var(--fw-medium);
}

.banner_description {
    padding: 24px 0 40px;
}

.banner_btn_otr {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.banner_counter_otr {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.banner_counter_box .title_h4 {
    text-align: center;
    margin-bottom: 4px;
}

.banner_counter_box p {
    font-weight: var(--fw_regular);
}

.banner_img_title p {
    color: var(--foreground);
}

/******************* our services section ******************/

.cmn_title_otr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

.cmn_main_description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.our_services_box_otr {
    display: flex;
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.our_services_box_otr .our_services_box {
    padding: 32px;
    border-radius: 16px;
    position: relative;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    animation-duration: .5s;
    display: flex;
    flex-direction: column;
    width: 31.750%;
}


.our_services_box_otr .our_services_box:before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, hsl(263 90% 65% / .4), transparent 40%, transparent 60%, hsl(290 80% 60% / .3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.our_services_box_otr .our_services_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px #9355f626;
}

.our_services_box_otr .our_services_box .our_services_icon {
    margin-bottom: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    animation-duration: .5s;
    background: var(--light-purple);
    border-radius: 16px;
}

.our_services_box_otr .our_services_box .our_services_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expand_collaps {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_services_box.expanded .expand_collaps {
    -webkit-line-clamp: unset;
    display: block;
}

.learn_more_btn svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_services_box.expanded .learn_more_btn svg {
    transform: rotate(90deg);
}

.our_services_description p {
    color: var(--text-muted-foreground);
    font-weight: var(--fw_normal);
}

.cmn_main_description p {
    color: var(--text-muted-foreground);
}

.our_services_description .learn_more_btn {
    font-size: 14px;
    font-weight: var(--fw_semi-bold);
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}

.our_services_box:hover .learn_more_btn svg {
    transform: translateX(-4px);
}

.our_services_box .float_title {
    position: absolute;
    top: -10px;
    background: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
}

.our_services_box .float_title p {
    font-size: 12px;
    font-weight: var(--fw_bold);
    line-height: 16px;
    color: var(--btn-white);
}

.our_services_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.our_services_box:hover .our_services_icon {
    scale: 1.1;
}

.our_services_content .title_h5 {
    font-weight: var(--fw_bold);
}

.our_services_otr , .cmn_bg_otr {
    position: relative;
}

.our_services_otr::after,
.footer::after,
.blogs:after ,
.cmn_bg_otr::after {
    content: '';
    position: absolute;
    background-image: var(--bg-gradient-radial-top);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.cmn_title_otr .cmn_small_line_title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmn_title_otr .cmn_small_line_title .title_h6 {
    font-size: 14px;
    color: var(--purple);
}

.cmn_title_otr .cmn_small_line_title .blank_line {
    background: var(--purple);
    width: 30px;
    height: 1px;
    position: relative;
}

.cmn_main_description .title_h2 {
    font-weight: var(--fw_black);
}

.dark .our_services_icon img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(37%) saturate(6583%) hue-rotate(209deg) brightness(100%) contrast(86%);
}

/******************** our value section ******************/

.our_value_box_otr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.our_value_box_otr .our_value_box {
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border);
}

.our_value_image,
.contact_info_image {
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .5s;
    animation-duration: .5s;
    background: var(--light-purple);
    border-radius: 12px;
}

.our_value_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.our_value_content .title_h5 {
    font-weight: var(--fw_bold);
    font-size: 18px;
}

.our_value_box_otr .our_value_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px #9355f626;
}

.our_value_box_otr .our_value_box:hover .our_value_image {
    scale: 1.1;
}

.our_value_description p {
    text-align: center;
    font-weight: var(--fw_regular);
    color: var(--text-muted-foreground);
}

.dark .our_value_image img,
.dark .contact_info_image img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(37%) saturate(6583%) hue-rotate(209deg) brightness(100%) contrast(86%);
}

/******************** customer section ******************/

.customers_section.cmn_pad {
    padding-top: 0;
}

/* .customer_box {
    width: max-content !important;
    padding: 16px 32px;
    border-radius: var(--br_sixteen);
    transition: var(--transition);
} */

.customer_box {
    width: 130px !important;
    padding: 14px;
    border-radius: var(--br_sixteen);
    transition: var(--transition);
    height: 80px !important;
}

.customer_box img {
    width: 100%;
    height: 100%;
}

.customer_swiper .customer_wrapper {
    transition-timing-function: linear !important;
}

.customers_section {
    overflow: hidden;
}

.customer_box:hover p {
    color: var(--purple);
}

.customer_box p {
    transition: var(--transition);
}

.customer_box:hover {
    border-color: #8249df4d;
}

.customers_title .title_h3,
.customers_description p {
    text-align: center;
}

.customers_title {
    margin-bottom: 48px;
}

.customers_title .title_h3 {
    margin-bottom: 12px;
}

.customers_description p {
    font-weight: var(--fw_regular);
    color: var(--text-muted-foreground);
}

/******************** contact section ******************/

.contact_content_otr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
}

.contact_form {
    padding: 32px;
    border-radius: var(--br_sixteen);
    position: relative;
}

.contact_form form {
    direction: rtl;
}

.form_field_otr {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_field_otr .cmn_row p br {
    display: none;
}

.form_field_otr .cmn_row p label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--foreground);
}

.form_field_otr .cmn_row p label input,
.form_field_otr .cmn_row p label textarea {
    width: 100%;
    resize: none;
    padding: 12px 16px;
    direction: rtl;
    color: var(--foreground) !important;
    border-radius: var(--br_twelve) !important;
    border: 1px solid var(--border) !important;
    background-color: hsl(var(--muted) / 0.5) !important;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Heebo' !important;
    outline: none;
    box-shadow: none;
}

.form_field_otr .cmn_row p label textarea {
    max-height: 105px;
}

.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 14px;
    line-height: 20px;
}

.form_field_otr .cmn_row p label textarea:hover,
.form_field_otr .cmn_row p label input:active,
.form_field_otr .cmn_row p label textarea:active,
.form_field_otr .cmn_row p label input:focus,
.form_field_otr .cmn_row p label textarea:focus,
.form_field_otr .cmn_row p label input:hover,
.form_field_otr .cmn_row p label input:not(:placeholder-shown),
.form_field_otr .cmn_row p label textarea:not(:placeholder-shown) {
    border: 1px solid var(--purple) !important;
}

.form_submit_btn .btn {
    outline: none;
    border: none;
    margin-top: 20px;
    width: 100%;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0 0 0;
    border-color: var(--purple) !important;
    color: var(--foreground) !important;
}

.contact_description_otr .title_h4 {
    margin-bottom: 24px;
}

.contact_description_btm {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.cmn_contact_box {
    padding: 16px;
    border-radius: var(--br_sixteen);
    display: flex;
    gap: 16px;
    align-items: center;
    transition: var(--transition);
}

.contact_info_image {
    margin-bottom: 0;
}

.cmn_contact_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px #9355f626;
}

.cmn_contact_box.choose_us_box_inner {
    flex-direction: column;
    align-items: unset;
    padding: 24px;
}

.contact_info_content a {
    font-size: 16px;
    font-weight: var(--fw_semi-bold);
}

.cmn_contact_box:not(:last-child) .contact_info_content p:not(:first-child) {
    font-weight: var(--fw_semi-bold);
    color: var(--foreground);
}

.cmn_us_points li {
    display: flex;
    color: var(--text-muted-foreground);
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 28px;
}

.cmn_us_points li span {
    width: 20px;
    border-radius: 50%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--primary));
    background-color: hsl(var(--primary) / 0.2);
}

/******************** footer ******************/

.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer_top {
    display: flex;
    gap: 40px;
}

.footer_logo_otr {
    width: 23%;
}

.footer_menu_otr {
    flex: 1;
}

.footer_menu_main .menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer_text {
    margin-top: 20px;
}

.footer_text p {
    font-weight: var(--fw_regular);
}

.footer_menu_main .menu>li>a {
    font-size: 16px;
    pointer-events: none;
}

.footer_menu_main .menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.footer_menu_main .menu .sub-menu li a {
    font-weight: var(--fw_regular);
    color: var(--text-muted-foreground);
    position: relative;
}

.copyright_text p {
    font-weight: var(--font_regular);
    text-align: center;
}

.copyright_text {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer_menu_main .menu .sub-menu li a:hover {
    color: var(--purple);
}

.footer_menu_main .menu .sub-menu li a::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    right: 0;
    background: var(--purple);
    bottom: -1px;
    transition: var(--transition);
}

.footer_menu_main .menu .sub-menu li a:hover::after {
    width: 100%;
}


/***************************** blog section ***************************/

.blogs {
    position: relative;
}

.blog-slider {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    overflow: hidden;
    padding: 6px 0 30px 0;
}

.blog-slider .swiper-slide .bolg_list_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: var(--transition);
}

.blog-slider .swiper-slide .bolg_box:hover .bolg_list_image img {
    transform: scale(1.1);
}

.blog-slider .swiper-slide {
    height: auto !important;
}

.blog-slider .swiper-slide .bolg_box {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
    border-radius: var(--br_sixteen);
    overflow: hidden;
    transition: var(--transition);
}

.blog-slider .swiper-slide .bolg_box .bolg_list_image {
    position: relative;
    padding-top: 65.14%;
    overflow: hidden;
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content .blog_date {
    padding-bottom: 12px;
    font-size: 12px;
    line-height: 16px;
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content h5 {
    font-weight: var(--fw_bold);
    padding-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
}

.blog_excerpt p {
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content .blog_list_btn {
    margin-top: auto;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 20px;
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content .blog_list_btn svg {
    transform: rotate(180deg);
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content .blog_list_btn svg path {
    stroke: #fff;
}

.blog-slider .swiper-slide .bolg_box .bolg_list_content .blog_list_btn:hover {
    box-shadow: none;
}

.blog-slider .swiper-slide .bolg_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px #9355f626;
}

.blog-slider .swiper-slide .bolg_box:hover .bolg_list_content h5 {
    color: var(--purple);
}

.blog_pagination {
    margin-top: 0 !important;
}

.blog_list_section {
    position: relative;
}

.blog-slider .swiper-slide .bolg_box:hover .blog_list_btn svg {
    right: 5px;
    transition: right 0.4s ease-in-out;
}

.cmn_navigation_btn {
    position: absolute;
    display: flex;
    left: 50%;
    top: 45%;
    justify-content: space-between;
    width: 83%;
    transform: translate(-50%, -50%);
}

.cmn_navigation_btn .swiper-button-next,
.cmn_navigation_btn .swiper-button-prev {
    position: relative;
    inset: 0;
    margin: 0;
}

.cmn_pagination {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    position: relative !important;
    gap: 10px;
    margin-top: 30px;
}

.cmn_pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #000000;
}

.cmn_pagination .swiper-pagination-bullet-active {
    background: var(--purple);
    border-color: var(--purple);
}

.cmn_navigation_btn .swiper-button-prev::before {
    background: url('data:image/svg+xml,<svg width="13" height="24" viewBox="0 0 13 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.4996 1.3583C12.4996 1.57774 12.4156 1.79718 12.2493 1.9652L2.56972 11.6447L12.2493 21.3243C12.5836 21.6586 12.5836 22.2021 12.2493 22.5364C11.915 22.8707 11.3715 22.8707 11.0372 22.5364L0.750733 12.2499C0.416424 11.9156 0.416424 11.3722 0.750733 11.0378L11.0372 0.751394C11.3715 0.417086 11.915 0.417086 12.2493 0.751394C12.4173 0.919407 12.4996 1.13885 12.4996 1.3583Z" fill="black" stroke="black"/></svg>');
    background-repeat: no-repeat;
    content: '';
    width: 15px;
    height: 25px;
}

.cmn_navigation_btn .swiper-button-prev::after {
    content: none;
}

.cmn_navigation_btn .swiper-button-next::before {
    content: '';
    width: 15px;
    height: 25px;
    background: url('data:image/svg+xml,<svg width="13" height="24" viewBox="0 0 13 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.500429 21.9288C0.500429 21.7094 0.584435 21.4899 0.750732 21.3219L10.4303 11.6424L0.750732 1.96282C0.416423 1.62851 0.416423 1.08504 0.750732 0.750732C1.08504 0.416423 1.62851 0.416423 1.96282 0.750732L12.2493 11.0372C12.5836 11.3715 12.5836 11.915 12.2493 12.2493L1.96282 22.5357C1.62851 22.87 1.08504 22.87 0.750732 22.5357C0.58272 22.3677 0.500429 22.1483 0.500429 21.9288Z" fill="black" stroke="black"/></svg>');
    background-repeat: no-repeat;
}

.cmn_navigation_btn .swiper-button-next::after {
    content: none;
}

.dark .cmn_pagination .swiper-pagination-bullet {
    border: 1px solid #ffffff;
    opacity: 0.6;
}

.dark .cmn_pagination .swiper-pagination-bullet-active {
    border: 1px solid var(--purple);
    opacity: 1;
}

.dark .cmn_navigation_btn .swiper-button-next::before,
.dark .cmn_navigation_btn .swiper-button-prev::before {
    filter: invert(1);
}


/************************ testimonial section ***********************/

.testimonial_row {
    position: relative;
}
.testimonial_swiper {
    overflow: hidden;
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}

.testimonial_box {
    padding: 10px 10px 30px 40px;
    overflow: hidden;
    display: flex !important;
    border-radius: var(--br_twelve);
    gap: 12px;
    height: auto !important;
}

.testimonial_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
}

.testimonial_user {
    flex: 1 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* .testimonial_navigation_btn.cmn_navigation_btn {
    display: none;
} */

.testimonial_box_description p:not(:last-child) {
    padding-bottom: 12px;
}

.testimonial_box_description p {
    font-weight: var(--fw_regular);
}

.testimonial_box_description {
    margin: 8px 0;
}

.testimonail_star_img {
    display: flex;
    justify-content: end;
    margin-top: auto;
}


/******************************* blog detail cmn css******************************/

.blog_title_otr {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog_title_otr .blog_title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog_image {
    position: relative;
    aspect-ratio: 16/9;
}

.blog_image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.blog_content {
    margin-top: 40px;
    margin-bottom: 50px;
}

.blog_content div {
    margin-bottom: 30px;
}

.blog_content h1,
.blog_content h2,
.blog_content h3,
.blog_content h4,
.blog_content h5,
.blog_content h6 {
    padding-bottom: 16px;
}

.post_pagination_main {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 50px;
}

.blog_otr {
    padding-bottom: 100px;
}

.post_pagination_main .post_pagination_left,
.post_pagination_main .post_pagination_right {
    width: 50%;
}

.post_pagination_main .post_pagination_left a,
.post_pagination_main .post_pagination_right a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
    padding: 15px;
    transition: var(--transition);
    border-radius: 10px;
    background: #eaeaec80;
}

.post_pagination_main .post_pagination_left a:hover,
.post_pagination_main .post_pagination_right a:hover {
       background: var(--dynamic_purple);
}

.post_pagination_main .post_pagination_left a:hover svg path,
.post_pagination_main .post_pagination_right a:hover svg path {
    fill: #fff;
}

.post_pagination_main .post_pagination_left a svg,
.post_pagination_main .post_pagination_right a svg {
    transition: var(--transition);
}

.post_pagination_main .post_pagination_left a:hover p,
.post_pagination_main .post_pagination_right a:hover p {
    color: #fff;
}

.post_pagination_main .post_pagination_right a {
    justify-content: flex-end;
}

.post_pagination_section .container {
    padding: 0;
}

.dark .blog_otr .post_pagination_section .post_pagination_left a,
.dark .blog_otr .post_pagination_section .post_pagination_right a {
    background: transparent;
    border: 1px solid #fff;
}

.dark .blog_otr .post_pagination_section .post_pagination_left a svg path,
.dark .blog_otr .post_pagination_section .post_pagination_right a svg path {
    fill: #fff;
}

.dark .blog_otr .post_pagination_section .post_pagination_left a:hover,
.dark .blog_otr .post_pagination_section .post_pagination_right a:hover {
    background: var(--dynamic_purple);
    border-color: var(--dynamic_purple);
}
.dark .blog_title .publish_date {
    color: #fff;
}
.bolg_list_image:after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: -15px;
    width: 105%;
    height: 108%;
    z-index: 1;
    background: linear-gradient(to top, #ffffff -41%, transparent 75%);
}
 


.our_project_row {
    position: relative;
}
.our_project_swiper {
    overflow: hidden;
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}

.our_project_row .cmn_navigation_btn {
    display: none;
}

.dark .our_project_slide a:after {
     background: linear-gradient(to top, hsl(220 10% 7%), hsl(220 10% 15% / 0.4), transparent);
     opacity: 1;
}




/* Project Listing */


.project_wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.project_listing_item{
    position:relative;
}
.project_listing_otr {
    max-width: 1024px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project_pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.page-numbers li , .page-numbers li a , .page-numbers li a span {
    display: flex;
    line-height: normal;
}
.pagination_prev svg {
    transform: rotate(180deg);
}








/* Project Details */


        /* .gallery-swiper {
            max-width: 1000px;
            width: 100%;
            background: var(--card-bg);
            border-radius: 24px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        } */
           /* .swiper-nav-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0;
        } */

       .gallery_slider_main {
            max-width: 1100px;
            margin: 0px auto;
        }
        .gallery-swiper {
            max-width: 100%;
            width: 100%;
            display: flex;
            flex-direction: row-reverse;
            gap: 20px;
        }
        .swiper-nav-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-shrink: 0;
            width: 15%;
            max-width: 150px;
            flex-direction: column;
        }

        .swiper-thumb-track {
            display: flex;
            flex-direction: row;
            gap: 12px;
            overflow: hidden;
            flex-shrink: 0;
            padding: 5px;
            width: calc((90px * 3) + (12px * 2) + 10px);
            scrollbar-width: none;
            scroll-behavior: smooth;
            overflow-x: auto;
            overflow-y:hidden;
        }

        .swiper-thumb-track::-webkit-scrollbar {
            display: none;
        }

        @media (min-width: 768px) {
            .swiper-thumb-track {
                flex-direction: column;
                width: 100%;
                height: 0;
                flex-grow: 1;
                overflow-y: hidden;
            }
        }

        .swiper-thumb-item {
            flex-shrink: 0;
            width: 90px;
            height: 65px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.4;
        }

        @media (min-width: 768px) {
            .swiper-thumb-item {
                width: 100%;
                height: calc((100% - (12px * 2)) / 3);
            }
        }

        .swiper-thumb-item.active {
            opacity: 1;
            transform: scale(0.96);
        }

        .swiper-thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .swiper-nav-btn {
            display: flex;
            background: #f1f5f9;
            border: none;
            color: #475569;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }
        .cmn_gallery_btn {
            background: var(--purple);
            color: var(--btn-white);
        }
        .cmn_gallery_btn  svg {
            transform: rotate(90deg);
        }
        .swiper-nav-btn svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 3;
        }

        .swiper-main-display {
            flex-grow: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: #f1f5f9;
            aspect-ratio: 16 / 10;
        }

        .swiper-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.4s ease;
            display: block;
        }

        .our_recommends .cmn_navigation_btn {
            display: flex;
        } 


/* Project Details Banner */

  .porject_banner_otr {
    position: relative;
    aspect-ratio: 18 / 7;
    display: flex;
    align-items: flex-end;
}
.banner.porject_banner_otr.cmn_pad{
    padding-bottom: 60px;
}
.porject_banner_otr:after {
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(  to top, hsl(0 0% 98%),hsl(0 0% 98% / 0.8),hsl(0 0% 98% / 0.3));
}
.dark .porject_banner_otr:after {
    background-image: linear-gradient(to top, hsl(240 7% 3%), hsl(240 7% 3% / 0.85), hsl(240 7% 3% / 0.4));
}
.porject_banner_otr .banner_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.porject_banner_otr .banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.porject_banner_otr .banner_main {
    justify-content: flex-end;
    align-items: flex-start;
}
.porject_banner_otr .banner_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.banner.porject_banner_otr .project_banner_title {
    margin: unset;
    align-items: flex-start;
    gap: unset;
}
.back_to_projects  a {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    align-items: center;
    color: var(--purple);
}
.back_to_projects span:hover {
    transform: translateX(-5px);
}
.back_to_projects span {
    transition: all 0.3s ease-in-out;
}
.project_meta p {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}
.project_meta svg {
    margin: unset !important;
    stroke: var(--purple);
}

.project_info_otr  .our_value_box_otr {
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.project_info_otr .our_value_box {
    gap: 16px;
}
.project_info_otr .our_value_box_otr .our_value_box:nth-child(3) {
    grid-column: span 2;
    min-height: 400px;
    overflow-y: auto;
}
.project_info_otr  .our_value_box , .project_info_otr .our_value_box .our_value_content {
    align-items: flex-start;
}
.project_info_otr p {
    text-align: right;
}
.project_info_otr .our_value_icon_title {
    display: flex;
    align-items: center;
    gap: 16px;
}
.project_info_otr .our_value_image {
    margin: unset;
}
.project_cta_main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}
.project_cta_title_otr {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.our_recommends_main h2 {
    text-align: center;
    margin-bottom: 40px;
}




/* Home - Our Project  */


@media (max-width: 600px) {
    .banner_left.hide-mobile {
        display: none;
    }
}

.our_project_wrapper {
    padding: 6px 0 30px;
}

 
.our_project_img {
    position: relative;
    padding-top: 135%;
    overflow: hidden;
}
.our_project_img img {
    width: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
		transition: var(--transition);
}
 .our_project_slide a:hover .our_project_img img {
    transform: scale(1.1);
}
.our_project_slide.swiper-slide {
    height: auto !important;
}

.our_project_slide a {
    border-radius: var(--br_sixteen);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
}
.our_project_slide a:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px #9355f626;
}
.our_project_slide a:after {
    z-index: 1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to top, hsl(0 0% 96%), hsl(0 0% 89% / 0.4), transparent);
     border-radius: var(--br_sixteen);
}

.our_project_content {
    position: absolute;
    bottom: 0;
    padding: 24px;
    width: 100%;
    z-index: 3;
}

.our_project_number {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: var(--br_sixteen);
	z-index: 3;
}
.our_project_number p {
    color: var(--purple);
}
.our_project_label {
    padding: 6px 12px;
    background: #8249df33;
    width: max-content;
    border-radius: 9999px;
    border: 1px solid var(--primary);
    backdrop-filter: blur(4px);
	margin-bottom:12px;
}
.our_project_label p {
    color: var(--purple);
    font-weight: 700;
}
.our_project_title{
    margin-bottom:6px;
}
.our_project_title h5 {
    font-weight: 700;
}
.our_project_description p {
    font-weight: normal;
}

.our_project_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_btn {
    color: var(--foreground);
}
.project_btn:hover {
    background: var(--nav-bg);
	 box-shadow: unset;
}
.project_btn svg {
    transition: var(--transition);
    transform: translate(0);
}
.project_btn:hover svg {
    transform: translateX(-4px);
}



.logo_otr_slider{
	overflow:hidden;
}