@charset "UTF-8";
/*
    // File Map
    - Global
    - Custom
    - Components
    - pagination custom for laravel
    - buttons-bar ( add new , draft..) buttons
*/
.cursor-pointer {
  cursor: pointer;
}

.display-none {
  display: none;
}

.fixed-whatsapp {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
}
.fixed-whatsapp img {
  width: 50px;
}

.fixed-links {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 99;
}
.fixed-links a {
  overflow: hidden !important;
  padding: 10px 20px;
  background-color: var(--second-color);
  border-radius: var(--border-radius);
  box-shadow: 0px 0px 15px var(--second-color);
  color: #fff;
  font-size: 15px;
}
.fixed-links a svg {
  fill: #fff;
  width: 18px;
}
.fixed-links .loader {
  width: 20px;
  display: inline-block;
  position: relative;
}
.fixed-links .loader::after,
.fixed-links .loader::before {
  content: "";
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: -2px;
  top: -23.5px;
  animation: animloader 1.5s linear infinite;
  opacity: 0;
}
.fixed-links .loader::after {
  animation-delay: 0.75s;
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/*
|
|
| Global
|
|
*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  transition: padding 0.3s linear;
  overflow-x: hidden !important;
  padding-top: var(--navbar-height);
  color: var(--color);
}
@media (max-width: 991px) {
  body {
    padding-top: 0px;
  }
}

td {
  border: var(--border) solid 1px !important;
}

button {
  outline: none;
  border: 0px;
  background-color: transparent;
}
button:disabled {
  cursor: not-allowed;
}

a {
  text-decoration: none !important;
}

hr {
  border-top: 1px solid var(--border-color);
}

.scroll-margin {
  scroll-margin-top: 60px;
}

/*
|
|
| Components
|
|
*/
.error {
  color: #ff0000;
  display: block;
  border-radius: var(--border-radius);
  margin-top: 3px;
  font-size: 14px;
}

#links-bar {
  margin-top: 15px;
  margin-bottom: 15px;
}
#links-bar a {
  font-size: 13px;
  color: var(--main-color);
  font-weight: 300;
}
#links-bar .links-bar-item-slash {
  margin: 0px 3px;
}
#links-bar a:first-child {
  font-size: 22px !important;
  color: var(--color);
  margin-bottom: 0px;
  font-weight: 500;
}

.btn-add-new {
  padding: 3px 10px;
  margin-top: 15px;
  font-size: 14px;
}

.active-link {
  color: var(--main-color);
}

.submit-spinner {
  border: 0.2em solid var(--btn-main-color);
  border-right-color: transparent;
}

/*
|
|
| Inputs
|
|
*/
input[type=submit] {
  border: 0px;
}

input:-moz-read-only {
  background-color: var(--input-focus-background) !important;
  cursor: not-allowed;
}

input:read-only {
  background-color: var(--input-focus-background) !important;
  cursor: not-allowed;
}

input[type=file],
[type=checkbox],
input[type=color] {
  opacity: 1 !important;
  cursor: pointer !important;
  background-color: var(--input-background) !important;
}

/*
|
|
| pagination custom for laravel
|
|
*/
.pagination li a {
  background-color: var(--card-background);
  padding: 9px 15px;
  border-radius: var(--border-radius);
  color: var(--card-color);
  transition: all 0.1s linear;
}
.pagination li a:hover {
  background-color: var(--btn-main-background);
  color: var(--btn-main-color);
}
.pagination .pages {
  margin: 0px 8px;
}

.ltr {
  direction: ltr !important;
}

/*
|
|
| buttons-bar ( add new , draft..) buttons
|
|
*/
#publish-buttons-bar {
  position: fixed;
  width: 100%;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: var(--card-background);
  z-index: 9;
  padding: 12px 15px;
  box-shadow: var(--card-shadow);
  text-align: right;
}

.table thead th {
  border-bottom: 1px solid var(--border-color) !important;
  border-top: none;
}

th,
td {
  white-space: nowrap;
}

.text-wrap {
  white-space: normal !important;
}

.editor .table-bordered td {
  border: solid 1px #eee !important;
}
.editor li {
  list-style-position: inside !important;
}
.editor li p {
  display: inline-block !important;
}
.editor blockquote {
  background: #f9f9f9 !important;
  border-right: 5px solid #414141 !important;
  padding: 5px 15px;
}
.editor p,
.editor ol {
  margin-bottom: 0px !important;
}
.editor pre {
  display: block;
  font-size: 90%;
  color: #e7e7e7;
  background-color: #1e1e1e;
  padding: 10px;
  border-radius: 3px;
  direction: ltr !important;
  text-align: left !important;
  margin: 0.8em 0px;
}

.section-title {
  font-weight: 700 !important;
}

.line-after {
  position: relative;
}
.line-after::after {
  content: "";
  height: 5px;
  background-color: var(--second-color);
  position: absolute;
  top: 45%;
  border-radius: 15px;
}

.product-box {
  transition: all 0.1s linear;
  background-color: #fff;
  border-radius: var(--border-radius);
}
.product-box:hover {
  transform: translateY(-5px);
  box-shadow: rgba(17, 12, 46, 0.04) 0px 48px 100px 0px;
}
.product-box .title {
  font-size: clamp(1rem, 0.912rem + 0.2817vw, 1.25rem);
}
.product-box .item-content {
  padding: 25px;
  border-top: 1px dashed #eee;
}
.product-box .image {
  padding: 10px;
}
.product-box img {
  border-radius: var(--border-radius);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .row-space > .col,
  .row-space > [class*=col-] {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .product-box .title {
    font-size: 16px !important;
  }
}
.section-space {
  padding: 80px 0px;
}

.page-links {
  list-style: none;
}
.page-links li {
  display: inline-block;
  font-size: 15px;
}
.page-links li a svg {
  width: 16px;
  height: 25px;
}
.page-links svg {
  vertical-align: bottom;
}

#services {
  background-color: var(--second-color);
  position: relative;
}
#services h2 {
  font-size: clamp(1.5rem, 1.1479rem + 1.1268vw, 2.5rem);
  line-height: clamp(2.1875rem, 1.7474rem + 1.4085vw, 3.4375rem);
}
#services .service-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: background-color 0.5s linear, color 0.5 linear;
  min-height: 320px;
}
#services .service-box::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: -50px;
  right: 0px;
  left: 0px;
  transition: all 0.3s ease;
  z-index: 2;
}
#services .service-box .content {
  position: relative;
  z-index: 3;
}
#services .service-box .content .service-icon {
  background-color: #fff;
  width: 65px;
  padding: 12px;
  border-radius: 50%;
  display: inline-block;
}
#services .service-box .content img {
  width: 100%;
}
#services .service-box .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
  z-index: 1;
}
#services .service-box:hover::before {
  bottom: 0px;
}
#services .service-even {
  background-color: #fff;
}
#services .service-even .bg-image {
  opacity: 0;
}
#services .service-even:hover {
  background-color: transparent;
}
#services .service-even:hover .bg-image {
  opacity: 1;
}
#services .service-even:hover .content {
  color: #ffffff;
}
#services .service-even:hover::before {
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #000000 100%);
}
#services .service-even .content {
  color: #000000;
}
#services .service-odd::before {
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #000000 100%);
}
#services .service-odd .bg-image {
  opacity: 1;
}
#services .service-odd .content {
  color: #ffffff;
}
#services .service-odd:hover {
  background-color: transparent;
}
#services .service-odd:hover .bg-image {
  opacity: 1;
}
#services .service-odd:hover::before {
  bottom: 0px;
}

.fixed-social-media {
  position: fixed;
  right: 5px;
  top: calc(50% - 95px);
  width: 55px;
  z-index: 99;
  transition: all 0.2s ease-in-out;
}
.fixed-social-media .social-media-container {
  background-color: #fff;
  padding: 5px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  justify-content: center;
}
.fixed-social-media .social-media-container a {
  border-radius: var(--radius-md);
  width: 45px;
  height: 45px;
  align-content: center;
  text-align: center;
  margin: 2px 0px;
}
.fixed-social-media .social-media-container a svg {
  fill: #fff !important;
}
.fixed-social-media #close-fixed-social-media {
  position: absolute;
  top: 40%;
  left: -50px;
  width: 45px;
  height: 45px;
  background-color: rgb(255, 255, 255);
  border: solid 1px #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s linear;
}
.fixed-social-media #close-fixed-social-media svg {
  width: 18px;
  fill: #000000;
}

.hide-social-media {
  right: -55px; /* أو حسب موقع العنصر */
  transition: all 0.2s ease-in-out;
}

@media (max-width: 768px) {
  .fixed-social-media #close-fixed-social-media {
    width: 35px;
    height: 35px;
    left: -36px;
  }
  .fixed-social-media #close-fixed-social-media svg {
    width: 15px;
  }
  .hide-social-media {
    right: -55px; /**/
  }
}
.rotate-me {
  transform: rotate(180deg);
  transition: all 0.2s linear;
  background-color: var(--btn-bg) !important;
  border: none !important;
}
.rotate-me svg {
  fill: var(--btn-color) !important;
}

.navbar-overlay {
  position: absolute;
  top: 0px;
  z-index: 99;
}

.project-card {
  background-color: #fff;
  padding: var(--card-padding);
  border-radius: var(--radius-sm);
  transition: all 0.1s linear;
}
.project-card h3 {
  font-size: clamp(1.125rem, 1.037rem + 0.2817vw, 1.375rem);
}
.project-card p {
  font-size: clamp(0.9375rem, 0.9155rem + 0.0704vw, 1rem);
}
.project-card img {
  border-radius: var(--radius-xs);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}/*# sourceMappingURL=global.css.map */