@charset "utf-8";

:root {
  --primary_color: #ed1c24;
  --primary_color_light: #fefbfb;
  --white: #ffffff;
  --black: #000000;
  --gray: #a8a8a8;
  --prograph: #606060;
  --footer: #16181d;
}

/* Start recall fonts*/
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2'),
      url('fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kaisei Decol';
  src: url('fonts/KaiseiDecol-Bold.woff2') format('woff2'),
      url('fonts/KaiseiDecol-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ------------ Arabic Font ------------ */

@font-face {
  font-family: 'Almarai-Regular';
  src: url('fonts/Almarai-Regular.woff2') format('woff2'),
      url('fonts/Almarai-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai-Bold';
  src: url('fonts/Almarai-Bold.woff2') format('woff2'),
      url('fonts/Almarai-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}


/* End recall fonts*/
::-moz-selection {
  /* Code for Firefox */
  background: var(--primary_color_color);
  color: var(--white);
  opacity: 10%;
}

::selection {
  background: var(--primary_color);
  color: var(--white);
  opacity: 10%;
}
/* direction requerment */
.ltr {
  direction: ltr !important;
}
.rtl {
  direction: rtl !important;
}
/* font requerment */
body[dir="ltr"] .Inter-font {
  font-family: "Inter" !important;
}

body[dir="ltr"] .Kaisei-font {
  font-family: 'Kaisei Decol'!important;
}
/* font requerment */
body[dir="rtl"] .Inter-font {
  font-family: "Almarai-Regular" !important;
}

body[dir="rtl"] .Kaisei-font {
  font-family: 'Almarai-Bold'!important;
}

/* color requerment */
.prograph_color {
  color: var(--prograph);
}

.white_color {
  color: var(--white);
}

.black_color {
  color: var(--black);
}

.gray_color {
  color: var(--gray);
}

.primary_color {
  color: var(--primary_color) !important;
}

.bg_primary {
  background-color: var(--primary_color);
}
.bg_primary_light {
  background-color: var(--primary_color_light);
}

.bg_white {
  background-color: var(--white);
}

.bg_black {
  background-color: var(--black);
}

.bg_footer {
  background-color: var(--footer);
}


body[dir="ltr"] * {
  font-family: 'Inter';
}
body[dir="rtl"] * {
  font-family: 'Almarai-Regular' ;
}


body {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0 !important;
}

a {
  text-decoration: none !important;
}

a:hover {
  color: var(--primary_color) !important;
}
a.primary_color:hover {
  color: var(--gray) !important;
}
a.btn-outline-primary:hover ,a.btn-primary:hover {
  color: var(--white) !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.center {
  display: block !important;
  margin: auto !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.justify {
  text-align: justify !important;
}

.sticky {
  position: fixed;
  background-color: var(--white);
  top: 0;
  padding-top: 5px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

/* to change the tooltips color and the background color */
.tooltip-inner {
  color: var(--white);
  font-size: 0.7rem;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: var(--scoundary_color) !important;
}

.form-control:focus {
  border: none !important;
  border-bottom: 0.1px solid var(--primary_color);
  box-shadow: 0 0 0 0.1rem var(--primary_color);
}

.form-control::placeholder {
  color: var(--prograph);
}
.close {
  color: var(--white);
  position: fixed;
  margin-right: -38px;
  margin-top: -50px;
  box-flex-group: var(--white);
}

.close:hover {
  color: var(--primary_color) !important;
}
/*--------------------Start page style ---------------------------*/

header {
  position: relative;
  z-index: 1000;
}
.underline-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--black) !important;
}

.underline-link::after {
  content: '';
  position: absolute;
  left: var(--bs-navbar-nav-link-padding-x);
  bottom: -5px; /* Adjust based on font size */
  width: 0;
  height: 2px; /* Adjust based on the thickness of the underline */
  background-color: var(--primary_color); /* Color of the underline */
  transition: width 0.3s ease; /* Adjust duration and easing as needed */
}
.underline-link.active::after {

  width: 13px;
}

.underline-link:hover::after {
  width: 100%;
}
.btn{border-radius: 50px; padding-left: 20px; padding-right: 20px;}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary_color);
  --bs-btn-border-color: var(--primary_color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary_color);
  --bs-btn-disabled-border-color: var(--primary_color);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary_color);
  --bs-btn-border-color: var(--primary_color);
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: var(--primary_color);
  --bs-btn-hover-border-color: var(--primary_color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary_color);
  --bs-btn-active-border-color: var(--primary_color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary_color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary_color);
  --bs-gradient: none;
}

.gradient{
  background: rgb(254,240,240);
  background: linear-gradient(90deg, rgba(254,240,240,1) 0%, rgba(255,255,255,1) 33%, rgba(255,255,255,1) 67%, rgba(254,240,240,1) 100%);
}
.circle-border {
  display: inline-block;
  padding: 0; /* Space around text inside the border */
  border: 5px solid #f2c12e; /* Border color and thickness */
  border-radius: 50%; /* Makes the border circular */
  text-align: center;
}


.slanted-rectangle {
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 100px); /* Slanted effect */
  margin-top: -85px;
}

.radius-20{border-radius: 20px;}



.radial_light_bg{
  background: rgb(255,255,255);
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(254,251,251,1) 100%);}

.one-check-list{
  list-style-image: url('../images/one_check_icon_list.svg'); 
}
.two-check-list{
  list-style-image: url('../images/two_check_icon_list.svg'); 
}
.checkmark-list{
  list-style-image: url('../images/checkmark-icon.svg'); 
}
.checkmark-circle-list{
  list-style-image: url('../images/checkmark-circle-icon.svg'); 
}
.testimonials_bg{
  background-image: url(../images/testmonial_bg.svg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
body[dir="ltr"] .Quotation_mark{
  display: inline-block;
  background-color: var(--primary_color);
  position: absolute;
  left: 0;
  bottom: 0;
}
body[dir="rtl"] .Quotation_mark{
  display: inline-block;
  background-color: var(--primary_color);
  position: absolute;
  right: 0;
  bottom: 0;
}
.owl-dots{
  margin-top: 30px !important;
}
.owl-dots .owl-dot span{
  background-color: #D9D9D9 !important;
}
.owl-dots .owl-dot.active span{
  background-color: var(--primary_color) !important;
}

.bg_dark_gray{background-color: #16181D;}
.Subscribe button{
  position: absolute;
  top: 0;
  right: 0;
}
.Subscribe input{
  background-color: var(--black);
  border: var(--black);
}


.bg_gray{background-color: #292E38;}

.solution-items a:hover .bg_dark_gray{background-color: var(--primary_color);}
.red_gradint{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(237,28,36,0.3) 100%);
height: 100%; width: 100%;}
.solution-items a:hover .red_gradint{display: block;}
.solutions{background-image: url(../images/Solutions_bg.svg); background-size: cover; background-repeat: no-repeat; background-attachment: fixed;}
.Accounts_Payable{background-image: url(../images/Accounts_Payable.svg); background-size: cover; background-repeat: no-repeat; background-attachment: fixed;}
.Customization{background-image: url(../images/Customization.svg); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; margin-top: -112px;}
.pagination .page-item a{background-color: #e6eff500 !important; border-color: var(--primary_color); color: var(--primary_color);}
.pagination .page-item a:hover, .pagination .page-item.active a{background-color: var(--scoundary_color) !important; border-color: var(--scoundary_color); color: var(--white) !important;}
.pagination .page-item.disabled a{ color: var(--gray) !important;}

.carousel-control-next, .carousel-control-prev {bottom: 0 !important; top: 85% !important; width: 50px !important;}
.control-prev-icon, .control-next-icon{ border: 1px solid var(--gray); padding: 11px 14px 11px 14px; border-radius: 50px;}
.control-prev-icon:hover, .control-next-icon:hover{ border: 1px solid var(--primary_color);}
body[dir="ltr"] .carousel-control-prev { left: 86%;}
body[dir="ltr"] .carousel-control-next{  right: 0%; }
body[dir="rtl"] .carousel-control-prev { left: 0%;}
body[dir="rtl"] .carousel-control-next{  right: 86%; }

.border_primary_light{border: 1px solid #ed1c2323;}
.bg_primary_light_10{background-color: #FEE9EA;}
.mb_40px{margin-bottom: -40px;}
.Supported-logo{margin-top: -50px;}
.pointer{cursor: pointer;}
.custom_form .form-control{border-radius: 0;}
.custom_form .form-control::placeholder ,.custom_form .form-control p{color: #8E8C8C !important;}
.custom_form .form-control ,.custom_form .form-control label{border: none; border-bottom: 1.5px solid var(--black); font-family: "Inter" !important;}
.custom_form .form-control:focus ,.custom_form .form-control:focus label{border: none !important; border-bottom: 1.5px solid var(--primary_color) !important; box-shadow: 0 0 0 0 var(--primary_color);}
.custom_form .btn-primary {
  --bs-btn-color: var(--black);
  --bs-btn-bg: var(--white);
  --bs-btn-border-color: var(--white);
  --bs-btn-hover-color: var(--primary_color);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-border-color: var(--white);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: var(--primary_color);;
  --bs-btn-active-bg: var(--white);
  --bs-btn-active-border-color: var(--primary_color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--white);
  --bs-btn-disabled-bg: var(--primary_color);
  --bs-btn-disabled-border-color: var(--primary_color);
  padding: 0;
}
.custom_form .btn-primary:hover span {
  color: var(--primary_color);
}
.dark_gray_color{color: #403F3F;}
.about_img{border-radius: 0 40px 0 0;}
.mission_vision{border-radius: 40px 0 40px 0; position: relative; z-index: 1;}
.year_exp{width: 120px; border-radius: 20px 0 20px 0; margin-top: -65px; position: relative; z-index: 1;}
.px_5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.dashed-list {
  list-style-type: none; 
  padding: 0;           
}

.dashed-list li {
  position: relative;    
  padding-left: 20px;   
  margin: 5px 0;        
}

.dashed-list li::before {
  content: "";           
  position: absolute;   
  left: 0;              
  top: 50%;             
  transform: translateY(-50%); 
  width: 8px;          
  height: 2px;          
  border-top: 2px solid var(--gray); 
}
.accordion-item{border: none; border-bottom: 1px solid var(--gray); border-radius: 0;}
button.accordion-button{background-color: var(--white) !important;}
button.accordion-button:focus{box-shadow: none !important;}
.accordion-button::after {display: none;}
.accordion-button::before {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 0;
  margin-right: 10px;
  content: "";
  background-image: url(../images/accordinate_open_icon.svg);
  background-repeat: no-repeat;}
.accordion-button.collapsed::before  {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 0;
  margin-right: 10px;
  content: "";
  background-image: url(../images/accordinate_close_icon.svg);
  background-repeat: no-repeat;}

  .primary_link{color: var(--primary_color) !important;}

  :root{
    --transition-duration: 0.3s;
  --transition-delay: 0.2s;
  }

  .products a{
    position: relative;
    display: block;
  
  }
  
  .products .bg_primary_light .border {
    position: absolute;
    left: 0;
    border-color: #fae0e1 !important;
    transition: transform var(--transition-duration) ease-in-out;
    
  }
  
  .products .bg_primary_light .border_top,
  .products .bg_primary_light .border_bottom {
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    border-radius: 20px;

  }
  
  .products .bg_primary_light .border_left,
  .products .bg_primary_light .border_right {
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    border-radius: 20px;
  }
  
  .products .bg_primary_light .border_top,
  .products .bg_primary_light .border_left,
  .products .bg_primary_light .border_right {
    top: 0;
  }
  
  .products .bg_primary_light .border_bottom {
    bottom: 0;
    transform-origin: bottom right;
  }
  
  .products .bg_primary_light .border_top {
    transform-origin: top left;
  }
  
  .products .bg_primary_light .border_left {
    transform-origin: bottom left;
  }
  
  .products .bg_primary_light .border_right {
    left: auto;
    right: 0;
    transform-origin: top right;
  }
  
  .products  a:hover .bg_primary_light .border_top,
  .products  a:hover .bg_primary_light .border_bottom {
    transform: scaleX(1);
  }
  
  .products  a:hover .bg_primary_light .border_left,
  .products  a:hover .bg_primary_light .border_right {
    transform: scaleY(1);
  }
  
  .products a:hover .bg_primary_light .border_right {
    transition-delay: var(--transition-delay);
  }
  
  .products  a:hover .bg_primary_light .border_bottom {
    transition-delay: calc(var(--transition-delay) * 2);
  }
  
  .products  a:hover .bg_primary_light .border_left {
    transition-delay: calc(var(--transition-delay) * 3);
  }
  .products  a:hover .bg_primary_light.radius-20 {
border-radius: 0;
  }
  
  /* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.products .bg_primary_light[data-animation="diagonal"] .border-left {
  transform-origin: top left;
}

.products .bg_primary_light[data-animation="diagonal"] .border-right,
.products .bg_primary_light[data-animation="diagonal"] .border-bottom {
  transform-origin: bottom right;
}

.products a:hover .bg_primary_light[data-animation="diagonal"] [class^=border]{
  transition-delay: 0s;
}

  .products a:hover p{
   color: var(--primary_color);
  }

  .pb_70{padding-bottom: 70px;}
  
  .btn-primary{
    background-image: linear-gradient(to right, var(--primary_color), var(--primary_color), #f52c33, #9e020a); 
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }

  .btn-primary:hover{
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.custom_btn.btn-primary{    background-image: linear-gradient(to right, var(--white), var(--white), #fff, #fff); }
.navbar-nav .dropdown-menu{font-size: 14px;}

/*----------------------------------------------------------------*/
/*--                  The media query Started                   --*/
/*----------------------------------------------------------------*/
/*--------------------Start mobile device style ---------------------------*/
@media screen and (max-width: 480px) {
  .navbar-brand img{ width: 60%;}
  .slanted-rectangle {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    margin-top: 0px;
}
.testimonial-items{
  flex-direction: column;
}

.arrow-icon{display: none;}

.pb_70{padding-bottom: 0px;}
}


/*--------------------Start ipade and device style ---------------------------*/
@media (max-width: 991px) and (min-width: 480px) {
  .arrow-icon{margin-top: 200px;}

}

/*--------------------Start laptop device style ---------------------------*/

@media (min-width: 992px) {
  body[dir="ltr"] .red_rectangular{position: absolute; z-index: 0;  top: 0; right: 0; width: 250px; height: 100%;}
  body[dir="rtl"] .red_rectangular{position: absolute; z-index: 0;  top: 0; left: 0; width: 250px; height: 100%;}
  .arrow-icon{margin-top: 200px;}
}
/*--------------------Start Full HD device style ---------------------------*/
@media screen and (min-width: 1900px) {

}