/* @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
  --primary-color: #9d3b33;
  --secondary-color: #00234a;
  --text-color: #231f20;
}
/* Smooth scrolling for the page */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cairo", sans-serif;
}

a,
a:hover {
  text-decoration: none;
}
ul {
  padding: 0;
  list-style: none;
}
.text-primary {
  color: var(--primary-color) !important;
}
.btn {
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 10px;
  /* padding-bottom: 6px; */
}
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-weight: 600;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--secondary-color), transparent 70%);
  color: #fff;
}
.btn-primary:focus {
  background-color: color-mix(in srgb, var(--secondary-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: none;
  color: #fff;
}
.btn:active,
.btn-primary:active {
  transform: translateY(0) scale(0.92);
}
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .btn-primary {
    padding: 8px;
    font-size: 13px;
  }
}
.btn-outline-dark {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-outline-dark:hover {
  color: #fff;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* From Uiverse.io by cssbuttons-io */
.btn_custom1 {
  --color: var(--primary-color);
  display: inline-flex;
  padding: 0.8rem 1rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: 0.5s;
  z-index: 1;
  border-radius: 10px;
  font-weight: bold;
  color: var(--color);
}
.btn_custom1:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 300px;
  border-radius: 50%;
}
.btn_custom1:hover {
  color: #fff;
  border: 2px solid transparent;
}
.btn_custom1:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}
.btn_custom1:hover:before {
  top: -30px;
  left: -30px;
}
.btn_custom1:active:before {
  background: var(--primary-color);
  transition: background 0s;
}
@media (max-width: 991px) {
  .btn_custom1 {
    padding: 0.4rem 0.5rem;
    font-size: 12px;
  }
  .btn_custom1 span svg {
    width: 20px;
    height: 20px;
  }
}

/* Custom style for positions [top, bottom, end, start] with: 5px, 10px, etc... classes names [top_5, bottom_5, end_5, start_5] */
.top_5 {
  top: 5px;
}
.bottom_5 {
  bottom: 5px;
}
.end_5 {
  inset-inline-end: 5px;
}
.start_5 {
  inset-inline-start: 5px;
}

.loader_site {
  z-index: 99999;
}

/* Navbar */
.logo-site a {
  background-color: #fff;
  padding: 10px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.logo-site a::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  z-index: -1;
  transform: rotate(32deg);
}
.logo-site a::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
  z-index: -1;
  transform: rotate(-32deg);
}
.logo-site img {
  width: 130px;
  display: block;
  margin: auto;
}
@media (max-width: 991px) {
  .logo-site a {
    background-color: #fff;
    padding: 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 8px;
    position: relative;
  }
  .logo-site {
    width: 80px;
  }
}
header .navbar-nav {
}
.navbar-nav .nav-item a {
  color: #fff;
  font-weight: bold;
}
.languages {
  color: #fff;
}
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active,
.languages:hover {
  color: #66110a;
}
header a.btn_custom1 {
  color: #fff;
  border-color: #fff;
}

header {
  z-index: 9999;
}
.fixed-header {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.fixed-header .languages,
.fixed-header .navbar-nav .nav-item a {
  color: #000;
}
.fixed-header .navbar-nav .nav-item a:hover,
.fixed-header .navbar-nav .nav-item a.active,
.fixed-header .languages:hover {
  color: var(--primary-color);
}
.fixed-header .navbar-nav .dropdown a:hover {
  color: var(--primary-color);
}
.fixed-header .btn_custom1 {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.fixed-header .btn_custom1:hover {
  color: #fff;
  border-color: transparent;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navbar .dropdown ul {
    padding: 0 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    inset-inline-start: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    text-transform: none;
    color: #000;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    background-color: var(--primary-color);
    color: #fff;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    inset-inline-start: -90%;
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    inset-inline-start: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .navbar ul.dropdown {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar .navbar-nav .nav-item a,
  .navbar .navbar-nav .nav-item a:focus {
    color: #000;
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar .navbar-nav .nav-item a:hover,
  .navbar .navbar-nav .nav-item a.active,
  .navbar .navbar-nav .nav-item a.active:focus {
    color: var(--primary-color);
  }
  .navbar .navbar-nav .nav-item a i,
  .navbar .navbar-nav .nav-item a.active i,
  .navbar .navbar-nav .nav-item a.active:focus i {
    background-color: #fff;
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navbar .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  .navbar .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navbar .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navbar {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navbar > ul {
    display: block;
  }
}

/* Home Slides */
.hero-section {
  width: 100%;
  height: 90vh;
  overflow: clip;
  scroll-margin-top: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .hero-section {
    height: 65vh;
  }
}
@media screen and (max-width: 576px) {
  .hero-section {
    height: 65vh;
  }
}

.hero-section .swiper-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  /* For better animation handling */
  will-change: transform; /* Changed from background-size to transform for better performance */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-section .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  z-index: 0;
  opacity: 0.7;
}

/* Zoom animation effect for slide background using transforms */
.hero-section .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit;
  -webkit-animation: zoomBackground 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  -moz-animation: zoomBackground 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  -o-animation: zoomBackground 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation: zoomBackground 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  z-index: -1;
  /* Fix for small screens */
  transform-origin: center center;
}

@-webkit-keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.1);
  }
}

@-moz-keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.1);
  }
}

@-o-keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.1);
  }
}
.slide_content {
  color: #fff;
  max-width: 70%;
  position: relative;
  z-index: 1;
}
.slide_content h1 {
  font-size: 60px;
  font-weight: bold;
}
.slide_content h2 {
  line-height: 1.4;
}
.slide_content a.btn_custom1 {
  font-size: 20px;
  padding: 15px 30px;
  color: #fff;
  border-color: #fff;
}
.slide_content a.btn_custom1:hover {
  border-color: transparent;
}

/* Animation classes for slide content */
.slide_content .animated {
  opacity: 0;
  position: relative;
}

.slide_content .fadeInDown {
  animation: fadeInDown 0.8s ease forwards;
}

.slide_content .fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.slide_content .fadeInLeft {
  animation: fadeInLeft 0.8s ease forwards;
}

.slide_content .fadeInRight {
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-slides .c_nav {
  background-color: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 3px;
}
.home-slides .c_nav::after {
  font-size: 24px;
  color: #fff;
}
.home-slides .c_nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive styles for slider content and animations */
@media (max-width: 991px) {
  .slide_content {
    max-width: 100%;
    padding: 0 15px;
  }

  .slide_content h1 {
    font-size: 40px;
  }

  .slide_content h2 {
    font-size: 16px;
  }

  .slide_content a.btn_custom1 {
    font-size: 16px;
    padding: 10px 20px;
  }

  /* Adjust animation distances for smaller screens */
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@media (max-width: 575px) {
  .slide_content h1 {
    font-size: 28px;
  }

  .slide_content h2 {
    font-size: 14px;
  }

  /* Ensure proper background coverage on smaller screens */
  .hero-section .swiper-slide {
    background-size: cover !important;
  }

  .hero-section .swiper-slide::after {
    background-size: cover !important;
    background-position: center center !important;
    transform: scale(
      1.05
    ); /* Start slightly zoomed to avoid any visible edges */
  }

  .hero-section .swiper-slide.zoom-animation::after {
    -webkit-animation: zoomBackgroundMobile 7s ease-in-out forwards;
    -moz-animation: zoomBackgroundMobile 7s ease-in-out forwards;
    -o-animation: zoomBackgroundMobile 7s ease-in-out forwards;
    animation: zoomBackgroundMobile 7s ease-in-out forwards;
  }

  @-webkit-keyframes zoomBackgroundMobile {
    0% {
      transform: scale(1.05);
    }
    20% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1.15);
    }
  }

  @-moz-keyframes zoomBackgroundMobile {
    0% {
      transform: scale(1.05);
    }
    20% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1.15);
    }
  }

  @-o-keyframes zoomBackgroundMobile {
    0% {
      transform: scale(1.05);
    }
    20% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1.15);
    }
  }

  @keyframes zoomBackgroundMobile {
    0% {
      transform: scale(1.05);
    }
    20% {
      transform: scale(1.08);
    }
    100% {
      transform: scale(1.15);
    }
  }
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-section .hero-waves {
  bottom: 0;
}
footer .hero-waves {
  top: -60px;
}
.hero-waves use {
  fill: #fff;
}
footer .hero-waves use {
  fill: var(--secondary-color);
}
.hero-waves .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  opacity: 0.6;
}
.hero-waves .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  opacity: 0.4;
}
.hero-waves .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* About */
.about-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg_pattern {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 54%;
  z-index: -1;
  background-position: bottom;
  background-repeat: repeat-x;
  animation: slideBackground 20s linear infinite;
}
@-webkit-keyframes slideBackground {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -1000px 0;
  }
}
@-moz-keyframes slideBackground {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -1000px 0;
  }
}
@-ms-keyframes slideBackground {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -1000px 0;
  }
}
@-o-keyframes slideBackground {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -1000px 0;
  }
}
@keyframes slideBackground {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -1000px 0;
  }
}
.about-section .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--primary-color), transparent 95%);
  color: var(--primary-color);
  border-radius: 7px;
  display: inline-block;
}
.about-section .content h2 {
  font-weight: 700;
}
.about-section .icon-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px 20px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  min-height: 300px;
}
.about-section .icon-box span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--primary-color), transparent 95%);
  color: var(--primary-color);
}
.about-section .icon-box span svg {
  width: 35px;
  height: 35px;
}
.about-section .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}
.about-section .icon-box p {
  margin-bottom: 0;
}
.about-section .icon-box:hover span {
  background-color: var(--primary-color);
  color: #fff;
}
.about-section .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about-section .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}
@media (max-width: 768px) {
  .about-section .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about-section .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/* Counter Section */
.counter-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* Add a subtle pattern overlay */
.counter-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--secondary-color), transparent 40%);
}
.counter-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  z-index: 1;
}
/* Glassmorphism background */
.counter-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  transition: all 2s ease-in-out;
  animation: morphing 5s infinite;
  border: 3px solid var(--primary-color);
}
/* Different colors for each counter */
.counter-box::before {
  background-color: color-mix(in srgb, var(--secondary-color), transparent 0%);
}
/* Animated morphing effect */
@keyframes morphing {
  0% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  }
  25% {
    border-radius: 40% 60% 30% 70% / 70% 30% 60% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 30% 60% 70%;
  }
  75% {
    border-radius: 60% 40% 30% 70% / 30% 70% 40% 60%;
  }
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  }
}
/* Icon styling */
.counter-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  background-color: color-mix(in srgb, #fff, transparent 70%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.counter-box .icon svg {
  width: 60%;
  height: 60%;
}
.counter-box:nth-child(1) .icon svg {
  color: #fff;
}
/* Counter number styling */
.counter-box span:not(.icon) {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 15px 0;
  background-image: linear-gradient(135deg, #fff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Counter title styling */
.counter-box p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-shadow: 0px 2px 15px var(--primary-color);
}
/* Hover effect */
.counter-box:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(1.2);
}
.counter-box:hover .icon {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
/* Responsive adjustments */
@media (max-width: 767.98px) {
  .counter-box::before {
    width: 180px;
    height: 180px;
  }
  .counter-box span:not(.icon) {
    font-size: 3rem;
  }
}

/* Services */
.services-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.service-item .img {
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}
.service-item .img img {
  transition: 0.6s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.service-item .details {
  background: color-mix(in srgb, #fff, transparent 5%);
  padding: 16px 10px;
  margin: -80px 24px 0 24px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}
.service-item .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
  color: var(--secondary-color);
}
.service-item .details p {
  color: color-mix(in srgb, var(--text-color), transparent 10%);
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 600;
}
.service-item:hover .details h3 {
  color: var(--primary-color);
}
.service-item:hover .img img {
  transform: scale(1.2);
}

/* Projects */
.projects-section {
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
}
.projects-section:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  height: 50%;
  z-index: -1;
  background-image: linear-gradient(
    to bottom,
    #f5f5f5,
    #f7f7f7,
    #fafafa,
    #fcfcfc,
    #ffffff
  );
}
.project_image::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 30%;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  background: rgba(#000, 0);
  background: linear-gradient(
    to top,
    rgb(0, 0, 0) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.project_image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.project_image > img {
  position: relative;
  width: 100%;
  display: block;
}
.project_overlay {
  position: absolute;
  left: 35px;
  bottom: -65px;
  right: 35px;
  z-index: 2;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.project_card:hover .project_overlay {
  bottom: 35px;
}
.project_card:hover .project_button {
  opacity: 1;
}
.project_area {
  position: relative;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  color: #fff;
  font-weight: 600;
}
.project_type {
  position: relative;
  font-size: 16px;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
  color: #fff;
  font-weight: 600;
}
.project_title {
  color: #fff;
}
.project_title h3 {
  font-weight: 700;
}
.project_button {
  position: relative;
  margin-top: 30px;
  opacity: 0;
  transition: all 0.5s ease;
}
.project_button .btn_custom1 {
  position: relative;
  text-transform: uppercase;
}

.custom-swiper-buttons .btn_swiper {
  background-color: var(--text-color);
  color: #fff;
  border: none;
  padding: 5px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
}
.custom-swiper-buttons .btn_swiper:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--primary-color), transparent 70%);
}
.custom-swiper-buttons .btn_swiper:active,
.custom-swiper-buttons .btn_swiper:focus {
  background-color: var(--primary-color);
  transform: translateY(0);
  box-shadow: none;
}
.custom-swiper-buttons .btn_swiper:after {
  font-size: 40px;
}
.custom-swiper-buttons .swiper-pagination-bullet {
  width: 10px;
  height: 6px;
  background-color: var(--text-color);
  opacity: 1;
  border-radius: 0;
  transition: all 0.3s ease;
}
.custom-swiper-buttons .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 24px;
}

/* News */
.blog_item {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.blog_item-inner {
  position: relative;
  background-color: #fff;
  border-radius: 30px 30px 0 0;
}
.blog_item-image_outer {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border-end-start-radius: 0px;
  height: 350px;
}
.blog_item-image_outer:before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 0px;
  width: 174px;
  height: 66px;
  z-index: 9;
  background: url(../imgs/patterns/shape-3.png);
  background-repeat: no-repeat;
}
.blog_item-content {
  position: relative;
  padding-top: 30px;
}
.blog_item-date {
  position: absolute;
  right: 10px;
  bottom: 0px;
  z-index: 10;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 35px;
  border-radius: 50px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  background-color: var(--secondary-color);
}
.blog_item-meta {
  position: relative;
}
.blog_item-meta li {
  position: relative;
  font-size: 16px;
  padding-left: 30px;
  margin-right: 15px;
  display: inline-block;
  color: #000;
}
.blog_item-meta li .icon {
  position: absolute;
  left: 0px;
  top: 2px;
  line-height: 1em;
  color: var(--primary-color);
}
.blog_item-meta li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}
.blog_item-title {
  position: relative;
  margin-top: 15px;
  text-transform: capitalize;
}
.blog_item-title a {
  position: relative;
  color: #000;
}
.blog_item-title a:hover {
  color: var(--primary-color);
}
.blog_item-text {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
}
.blog_item-button {
  position: relative;
  margin-top: 25px;
}
.blog_item-button:before {
  position: absolute;
  content: "";
  inset-inline-start: 25px;
  inset-inline-end: 0;
  bottom: 0px;
  border-bottom: 2px solid #f5f5f5;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.blog_item-button:after {
  position: absolute;
  content: "";
  inset-inline-end: 0px;
  bottom: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateX(100px);
}
.blog_item-more {
  position: relative;
  border-radius: 50px 50px 0px 50px;
}
.blog_item-inner:hover .blog_item-button:after {
  background-color: var(--primary-color);
  transform: translateX(0);
}
.blog_item-inner:hover .blog_item-button:before {
  border-color: var(--primary-color);
}
.blog_item-inner:hover .blog_item-more {
  color: #fff;
  background-color: var(--primary-color);
}

/* Testimonials */
.section-testimonials {
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
}
.testimonials-title strong {
  font-weight: 700;
}
.testi-img {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: auto;
}
.testi-img img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.testi-img img.logo-icon {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.testi-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: -1;
}
.fa-star {
  color: #ffaa17;
}
.comma-icon svg {
  width: 80px;
  height: 80px;
  opacity: 0.08;
}
.txt-comment p {
  font-size: 16px;
  line-height: 1.8;
}

.user-info {
  margin-top: 2rem;
}
.user-info .user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.user-info .user-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.user-info .user-name span {
  font-size: 13px;
  font-weight: 600;
  color: #23a815;
}

.navs-arrows {
  position: absolute;
  bottom: 0px;
  inset-inline-end: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .comma-icon svg {
    width: 50px;
    height: 50px;
  }
  .txt-comment p {
    font-size: 14px;
    line-height: 1.4;
  }
  .navs-arrows {
    inset-inline-end: 0;
  }
}
.navs-arrows > div {
  position: static;
  color: #333;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: 0.3s;
}
.navs-arrows .swiper-button-next:after,
.navs-arrows .swiper-button-prev:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M5 12h14m-7-7l-7 7l7 7'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.navs-arrows .swiper-button-next:after {
  transform: rotate(-180deg);
}
.navs-arrows > div:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Star Rating System */
.star-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
}
.star-rating .star {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}
.star-rating .star::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffaa17' d='M9.153 5.408C10.42 3.136 11.053 2 12 2s1.58 1.136 2.847 3.408l.328.588c.36.646.54.969.82 1.182s.63.292 1.33.45l.636.144c2.46.557 3.689.835 3.982 1.776c.292.94-.546 1.921-2.223 3.882l-.434.507c-.476.557-.715.836-.822 1.18c-.107.345-.071.717.001 1.46l.066.677c.253 2.617.38 3.925-.386 4.506s-1.918.051-4.22-1.009l-.597-.274c-.654-.302-.981-.452-1.328-.452s-.674.15-1.328.452l-.596.274c-2.303 1.06-3.455 1.59-4.22 1.01c-.767-.582-.64-1.89-.387-4.507l.066-.676c.072-.744.108-1.116 0-1.46c-.106-.345-.345-.624-.821-1.18l-.434-.508c-1.677-1.96-2.515-2.941-2.223-3.882S3.58 8.328 6.04 7.772l.636-.144c.699-.158 1.048-.237 1.329-.45s.46-.536.82-1.182z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.star-rating .star.empty::before {
  opacity: 0.3;
}

/* Clients */
.clients-section {
  padding-bottom: 100px;
}
.img-clients {
  height: 153px;
  border: 1px solid #eee;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .img-clients {
    height: 100px;
  }
}

/* Footer */
footer {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: relative;
  z-index: 1;
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/patterns/05.svg);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  opacity: 0.05;
  filter: invert(1);
}
.footer-logo {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 20px;
}
footer p {
  font-size: 16px;
}
footer strong.h4 {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  margin: 0;
  margin-bottom: 30px;
}
ul.footer-menu li {
  padding-bottom: 10px;
}
ul.footer-menu li a {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}
ul.footer-menu li a i {
  padding-left: 20px;
}
.footer-map {
  display: flex;
  align-items: baseline;
}
.footer-map p {
  color: #fff;
}
.footer-contacts a {
  color: #fff;
  font-size: 16px;
  display: block;
  padding-top: 20px;
}
.footer-contacts svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
ul.footer-menu li a:hover,
.footer-contacts a:hover {
  color: var(--primary-color);
}
.social-icons a {
  border: 1px solid #eee;
}

.iframe_map {
  padding: 0;
  line-height: 0;
  overflow: hidden;
  border-radius: 10px;
}
.iframe_map iframe {
  width: 100% !important;
  height: 250px !important;
  padding: 0;
  line-height: 0;
  border: 0;
}

.footer-copyright {
  padding-top: 25px;
  margin-top: 50px;
  border: 1px solid #eee;
  border-bottom: 0;
  border-inline-start: 0;
  border-inline-end: 0;
  padding-bottom: 25px;
}
.footer-copyright a {
  color: #fff;
  font-size: 14px;
  padding-inline-start: 20px;
}
.footer-copyright p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

.button {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: none;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s;
}
.button svg {
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
  z-index: 9;
}
.button.instagram {
  background: linear-gradient(120deg, #833ab4, #fd1d1d, #fcb045);
}
.button.whatsapp {
  background: linear-gradient(120deg, #02ff2c, #008a12);
}
.button.youtube {
  background: rgb(255, 33, 33);
}
.button:active {
  transform: scale(0.85);
}
.button::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50px;
  z-index: -1;
  border: 0px solid rgba(255, 255, 255, 0.411);
  transition: 0.4s;
}
.button:hover::before {
  width: 0px;
  height: 0px;
}
.button:hover svg {
  color: #fff;
}

/* Page hero title */
.hero-header {
}
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
}
.hero-header .bg_pattern {
  top: 0;
}

/* About */
.item_w_icon {
  background-color: #fff;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--secondary-color), transparent 85%);
  transition: 0.3s;
}
.item_w_icon .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: #fff;
}
.item_w_icon .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--secondary-color);
}
.item_w_icon .description {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.item_w_icon:hover {
  border-color: var(--primary-color);
}
.item_w_icon:hover .title {
  color: var(--primary-color);
}
.item_w_icon .icon {
  position: absolute;
  inset-inline-end: -8px;
  top: -8px;
  color: var(--text-color);
  z-index: -1;
  opacity: 0.2;
}
.item_w_icon .icon svg {
  width: 100px;
  height: 100px;
  transition: 0.3s;
}
.item_w_icon:hover .icon svg {
  width: 190px;
  height: 190px;
  color: var(--primary-color);
}

/* Service Details */
.sidebar-page-container {
  position: relative;
}
/* Sidebar Title */
.sidebar-widget {
  position: relative;
  margin-bottom: 40px;
}
.sidebar-title {
  position: relative;
  margin-bottom: 15px;
}
.sidebar-title h4 {
  position: relative;
  color: var(--text-color);
}
/* Category List */
.category-list {
  position: relative;
  z-index: 1;
}
.category-list li {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.category-list li a {
  position: relative;
  display: block;
  font-size: 16px;
  z-index: 1;
  font-weight: 600;
  border-radius: 50px;
  color: var(--text-color);
  text-transform: capitalize;
  padding: 14px 15px 14px 30px;
  font-family: "Lexend Deca", sans-serif;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.category-list li a:hover::before {
  opacity: 1;
}
.category-list li a:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  opacity: 0;
  border-radius: 50px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  background-image: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}
.category-list li span {
  position: absolute;
  inset-inline-end: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  padding: 0px 0px;
  border-radius: 50px;
  display: inline-block;
  color: #fff;
  background-color: var(--secondary-color);
}
.category-list li a:hover span {
  color: var(--text-color);
  background-color: #fff;
}
.category-list li a:hover {
  color: #fff;
  transform: rotate(2deg);
}
.category-list li:last-child {
  margin-bottom: 0px;
}

.service-detail {
  position: relative;
}
.service-detail_inner {
  position: relative;
}
.service-detail_image {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.service-detail_image img {
  position: relative;
  width: 100%;
  display: block;
}
.service-detail_tag {
  position: absolute;
  right: 0px;
  bottom: 60px;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 30px;
  display: inline-block;
  color: var(--primary-color);
  border-radius: 50px 0px 0px 50px;
  background-color: #fff;
  font-family: "Lexend Deca", sans-serif;
}
.service-detail_tag:before {
  position: absolute;
  content: "";
  inset-inline-start: 0px;
  top: -48px;
  width: 57px;
  height: 49px;
  background: url(../imgs/corner-b.png) no-repeat;
}
.service-detail_tag:after {
  position: absolute;
  content: "";
  inset-inline-start: -2px;
  bottom: -50px;
  width: 68px;
  height: 54px;
  background: url(../imgs/corner-t.png) no-repeat;
}
.service-detail_title {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.service-detail p {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 28px;
}
.service-detail_subtitle {
  position: relative;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.service-detail_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

/* Project Details */
.galler_sw .swiper-slide {
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.galler_sw .swiper-slide img {
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.galler_sw .swiper-slide:hover img {
  filter: blur(5px);
}
.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.galler_sw .swiper-slide:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1.5);
}
.galler_sw .swiper-button-next,
.swiper-rtl.galler_sw .swiper-button-prev {
  right: -50px;
  left: auto;
  opacity: 0;
}
.galler_sw.swiper-button-prev,
.swiper-rtl.galler_sw .swiper-button-next {
  left: -50px;
  right: auto;
  opacity: 0;
}
.galler_sw:hover .swiper-button-next,
.swiper-rtl.galler_sw:hover .swiper-button-prev {
  right: 10px;
  left: auto;
  opacity: 1;
}
.galler_sw:hover.swiper-button-prev,
.swiper-rtl.galler_sw:hover .swiper-button-next {
  left: 10px;
  right: auto;
  opacity: 1;
}
.galler_thum .swiper-slide {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid #ddd;
}
.galler_thum .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide.swiper-slide-thumb-active {
  border: 2px solid var(--color22);
}
@media screen and (max-width: 767px) {
  .galler_sw .swiper-slide {
    height: 200px;
  }
  .galler_thum .swiper-slide {
    height: 50px;
  }
}
.swiper-button-next,
.swiper-button-prev {
  transition: 0.3s;
  width: 50px;
  height: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--color1);
  border-radius: 5px;
  padding: 18px 20px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color22);
  color: #fff;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: inline-block;
  font-size: 5rem;
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.swiper-button-next:after {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20 12H4m0 0l6-6m-6 6l6 6'/%3E%3C/svg%3E");
}
.swiper-button-prev:after {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h16m0 0l-6-6m6 6l-6 6'/%3E%3C/svg%3E");
}

/* Blog Details */
.sidebar-page-container {
  position: relative;
  padding: 110px 0px 100px;
}
.sticky-top {
  top: 150px;
}
/* Sidebar Title */
.sidebar-widget {
  position: relative;
}
.sidebar-title {
  position: relative;
  margin-bottom: 15px;
}
.sidebar-title h4 {
  position: relative;
  color: var(--primary-color);
}
.widget-content .content .post .thumb a {
}
.widget-content .content .post .thumb a img {
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.widget-content .content .post h5 a {
  color: var(--secondary-color);
}
.widget-content .content .post h5 a:hover {
  color: var(--primary-color);
}
@media screen and (max-width: 991px) {
  .widget-content .content .post .thumb a img {
    max-width: 100px;
  }
  .widget-content .content .post h5 {
    font-size: 1rem;
  }
}

/* Jobs */
.job_card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.job_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.job_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job_brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.job_logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
  display: grid;
  place-items: center;
}
.job_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.job_title {
  line-height: 1.4;
  min-height: calc(1.4em * 2); /* ارتفاع سطرين */
}
.job_card:hover .job_title {
  color: var(--primary-color);
}
.job_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
}
.job_badge {
  display: inline-block;
  padding: 6px 12px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #111;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}
.job_footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.job_salary {
  font-weight: 700;
  color: #111;
}
.job_location {
  color: #6b7280;
}

@media (max-width: 575.98px) {
  .job_card {
    padding: 1.25rem !important;
  }
  .job_title {
    font-size: 1.125rem;
  }
  .job_footer {
    flex-direction: column;
    gap: 12px;
  }
}

/* Start Contact */
.contact .container {
  max-width: 1280px;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}
.contact .contact-info-panel {
  background: linear-gradient(
    145deg,
    var(--primary-color),
    color-mix(in srgb, var(--primary-color), #1a4372 40%)
  );
  color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}
.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}
.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}
@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}
.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .info-card .icon-container i {
  font-size: 20px;
  color: #fff;
}
.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}
.contact .info-card .card-content p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.8 !important;
  font-weight: 600;
}
.contact .social-links-panel {
  margin-top: 35px;
}
.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}
.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.contact .form-container {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  background: linear-gradient(
    120deg,
    var(--primary-color),
    color-mix(in srgb, var(--primary-color), var(--primary-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contact .form-container .form-floating {
  margin-bottom: 20px;
}
.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, #35211f, transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: #fff;
  color: #35211f;
  transition: all 0.3s ease;
}
.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px
    color-mix(in srgb, var(--primary-color), transparent 85%);
  border-color: color-mix(in srgb, var(--primary-color), transparent 40%);
  background-color: #fff;
}
.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}
.contact .form-container .form-floating label {
  color: color-mix(in srgb, #35211f, transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}
.contact .form-container .form-floating label::after {
  background-color: transparent;
}
.contact .form-container .btn-submit {
  background: linear-gradient(
    145deg,
    var(--primary-color),
    color-mix(in srgb, var(--primary-color), #1a4372 30%)
  );
  color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--primary-color), transparent 75%);
}
.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}
.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }
  .contact .form-container {
    padding: 30px 25px;
  }
}
@media (max-width: 576px) {
  .social-icons {
    flex-wrap: wrap;
  }
}
/* End Contact */
